diff --git a/.vscode/twenty.code-workspace b/.vscode/twenty.code-workspace index c791ac11a..41549b6f9 100644 --- a/.vscode/twenty.code-workspace +++ b/.vscode/twenty.code-workspace @@ -16,6 +16,10 @@ "name": "packages/twenty-front", "path": "../packages/twenty-front" }, + { + "name": "packages/twenty-ui", + "path": "../packages/twenty-ui" + }, { "name": "packages/twenty-postgres", "path": "../packages/twenty-postgres" diff --git a/packages/twenty-front/src/App.tsx b/packages/twenty-front/src/App.tsx index 75460ee37..a8eff6886 100644 --- a/packages/twenty-front/src/App.tsx +++ b/packages/twenty-front/src/App.tsx @@ -12,6 +12,7 @@ import { import { useRecoilValue } from 'recoil'; import { ApolloProvider } from '@/apollo/components/ApolloProvider'; +import { AuthProvider } from '@/auth/components/AuthProvider'; import { VerifyEffect } from '@/auth/components/VerifyEffect'; import { ChromeExtensionSidecarEffect } from '@/chrome-extension-sidecar/components/ChromeExtensionSidecarEffect'; import { ChromeExtensionSidecarProvider } from '@/chrome-extension-sidecar/components/ChromeExtensionSidecarProvider'; @@ -99,28 +100,30 @@ const ProvidersThatNeedRouterContext = () => { - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/twenty-front/src/generated-metadata/graphql.ts b/packages/twenty-front/src/generated-metadata/graphql.ts index 8fa9f7601..f3c3f0e78 100644 --- a/packages/twenty-front/src/generated-metadata/graphql.ts +++ b/packages/twenty-front/src/generated-metadata/graphql.ts @@ -346,6 +346,7 @@ export type FieldConnection = { export enum FieldMetadataType { Address = 'ADDRESS', Boolean = 'BOOLEAN', + Actor = 'ACTOR', Currency = 'CURRENCY', Date = 'DATE', DateTime = 'DATE_TIME', @@ -1303,6 +1304,7 @@ export type User = { updatedAt: Scalars['DateTime']['output']; userVars: Scalars['JSONObject']['output']; workspaceMember?: Maybe; + workspaceMembers?: Maybe>; workspaces: Array; }; diff --git a/packages/twenty-front/src/generated/graphql.tsx b/packages/twenty-front/src/generated/graphql.tsx index f72707004..ce20dd81f 100644 --- a/packages/twenty-front/src/generated/graphql.tsx +++ b/packages/twenty-front/src/generated/graphql.tsx @@ -1,5 +1,5 @@ -import { gql } from '@apollo/client'; import * as Apollo from '@apollo/client'; +import { gql } from '@apollo/client'; export type Maybe = T | null; export type InputMaybe = Maybe; export type Exact = { [K in keyof T]: T[K] }; @@ -251,6 +251,7 @@ export type FieldConnection = { export enum FieldMetadataType { Address = 'ADDRESS', Boolean = 'BOOLEAN', + Actor = 'ACTOR', Currency = 'CURRENCY', Date = 'DATE', DateTime = 'DATE_TIME', @@ -1000,6 +1001,7 @@ export type User = { updatedAt: Scalars['DateTime']; userVars: Scalars['JSONObject']; workspaceMember?: Maybe; + workspaceMembers?: Maybe>; workspaces: Array; }; @@ -1350,7 +1352,7 @@ export type ImpersonateMutationVariables = Exact<{ }>; -export type ImpersonateMutation = { __typename?: 'Mutation', impersonate: { __typename?: 'Verify', user: { __typename?: 'User', id: any, firstName: string, lastName: string, email: string, canImpersonate: boolean, supportUserHash?: string | null, onboardingStatus?: OnboardingStatus | null, userVars: any, workspaceMember?: { __typename?: 'WorkspaceMember', id: any, colorScheme: string, avatarUrl?: string | null, locale?: string | null, timeZone?: string | null, dateFormat?: WorkspaceMemberDateFormatEnum | null, timeFormat?: WorkspaceMemberTimeFormatEnum | null, name: { __typename?: 'FullName', firstName: string, lastName: string } } | null, defaultWorkspace: { __typename?: 'Workspace', id: any, displayName?: string | null, logo?: string | null, domainName?: string | null, inviteHash?: string | null, allowImpersonation: boolean, activationStatus: WorkspaceActivationStatus, currentCacheVersion?: string | null, workspaceMembersCount?: number | null, featureFlags?: Array<{ __typename?: 'FeatureFlag', id: any, key: string, value: boolean, workspaceId: string }> | null, currentBillingSubscription?: { __typename?: 'BillingSubscription', id: any, status: SubscriptionStatus, interval?: SubscriptionInterval | null } | null }, workspaces: Array<{ __typename?: 'UserWorkspace', workspace?: { __typename?: 'Workspace', id: any, logo?: string | null, displayName?: string | null, domainName?: string | null } | null }> }, tokens: { __typename?: 'AuthTokenPair', accessToken: { __typename?: 'AuthToken', token: string, expiresAt: string }, refreshToken: { __typename?: 'AuthToken', token: string, expiresAt: string } } } }; +export type ImpersonateMutation = { __typename?: 'Mutation', impersonate: { __typename?: 'Verify', user: { __typename?: 'User', id: any, firstName: string, lastName: string, email: string, canImpersonate: boolean, supportUserHash?: string | null, onboardingStatus?: OnboardingStatus | null, userVars: any, workspaceMember?: { __typename?: 'WorkspaceMember', id: any, colorScheme: string, avatarUrl?: string | null, locale?: string | null, timeZone?: string | null, dateFormat?: WorkspaceMemberDateFormatEnum | null, timeFormat?: WorkspaceMemberTimeFormatEnum | null, name: { __typename?: 'FullName', firstName: string, lastName: string } } | null, workspaceMembers?: Array<{ __typename?: 'WorkspaceMember', id: any, colorScheme: string, avatarUrl?: string | null, locale?: string | null, timeZone?: string | null, dateFormat?: WorkspaceMemberDateFormatEnum | null, timeFormat?: WorkspaceMemberTimeFormatEnum | null, name: { __typename?: 'FullName', firstName: string, lastName: string } }> | null, defaultWorkspace: { __typename?: 'Workspace', id: any, displayName?: string | null, logo?: string | null, domainName?: string | null, inviteHash?: string | null, allowImpersonation: boolean, activationStatus: WorkspaceActivationStatus, currentCacheVersion?: string | null, workspaceMembersCount?: number | null, featureFlags?: Array<{ __typename?: 'FeatureFlag', id: any, key: string, value: boolean, workspaceId: string }> | null, currentBillingSubscription?: { __typename?: 'BillingSubscription', id: any, status: SubscriptionStatus, interval?: SubscriptionInterval | null } | null }, workspaces: Array<{ __typename?: 'UserWorkspace', workspace?: { __typename?: 'Workspace', id: any, logo?: string | null, displayName?: string | null, domainName?: string | null } | null }> }, tokens: { __typename?: 'AuthTokenPair', accessToken: { __typename?: 'AuthToken', token: string, expiresAt: string }, refreshToken: { __typename?: 'AuthToken', token: string, expiresAt: string } } } }; export type RenewTokenMutationVariables = Exact<{ appToken: Scalars['String']; @@ -1382,7 +1384,7 @@ export type VerifyMutationVariables = Exact<{ }>; -export type VerifyMutation = { __typename?: 'Mutation', verify: { __typename?: 'Verify', user: { __typename?: 'User', id: any, firstName: string, lastName: string, email: string, canImpersonate: boolean, supportUserHash?: string | null, onboardingStatus?: OnboardingStatus | null, userVars: any, workspaceMember?: { __typename?: 'WorkspaceMember', id: any, colorScheme: string, avatarUrl?: string | null, locale?: string | null, timeZone?: string | null, dateFormat?: WorkspaceMemberDateFormatEnum | null, timeFormat?: WorkspaceMemberTimeFormatEnum | null, name: { __typename?: 'FullName', firstName: string, lastName: string } } | null, defaultWorkspace: { __typename?: 'Workspace', id: any, displayName?: string | null, logo?: string | null, domainName?: string | null, inviteHash?: string | null, allowImpersonation: boolean, activationStatus: WorkspaceActivationStatus, currentCacheVersion?: string | null, workspaceMembersCount?: number | null, featureFlags?: Array<{ __typename?: 'FeatureFlag', id: any, key: string, value: boolean, workspaceId: string }> | null, currentBillingSubscription?: { __typename?: 'BillingSubscription', id: any, status: SubscriptionStatus, interval?: SubscriptionInterval | null } | null }, workspaces: Array<{ __typename?: 'UserWorkspace', workspace?: { __typename?: 'Workspace', id: any, logo?: string | null, displayName?: string | null, domainName?: string | null } | null }> }, tokens: { __typename?: 'AuthTokenPair', accessToken: { __typename?: 'AuthToken', token: string, expiresAt: string }, refreshToken: { __typename?: 'AuthToken', token: string, expiresAt: string } } } }; +export type VerifyMutation = { __typename?: 'Mutation', verify: { __typename?: 'Verify', user: { __typename?: 'User', id: any, firstName: string, lastName: string, email: string, canImpersonate: boolean, supportUserHash?: string | null, onboardingStatus?: OnboardingStatus | null, userVars: any, workspaceMember?: { __typename?: 'WorkspaceMember', id: any, colorScheme: string, avatarUrl?: string | null, locale?: string | null, timeZone?: string | null, dateFormat?: WorkspaceMemberDateFormatEnum | null, timeFormat?: WorkspaceMemberTimeFormatEnum | null, name: { __typename?: 'FullName', firstName: string, lastName: string } } | null, workspaceMembers?: Array<{ __typename?: 'WorkspaceMember', id: any, colorScheme: string, avatarUrl?: string | null, locale?: string | null, timeZone?: string | null, dateFormat?: WorkspaceMemberDateFormatEnum | null, timeFormat?: WorkspaceMemberTimeFormatEnum | null, name: { __typename?: 'FullName', firstName: string, lastName: string } }> | null, defaultWorkspace: { __typename?: 'Workspace', id: any, displayName?: string | null, logo?: string | null, domainName?: string | null, inviteHash?: string | null, allowImpersonation: boolean, activationStatus: WorkspaceActivationStatus, currentCacheVersion?: string | null, workspaceMembersCount?: number | null, featureFlags?: Array<{ __typename?: 'FeatureFlag', id: any, key: string, value: boolean, workspaceId: string }> | null, currentBillingSubscription?: { __typename?: 'BillingSubscription', id: any, status: SubscriptionStatus, interval?: SubscriptionInterval | null } | null }, workspaces: Array<{ __typename?: 'UserWorkspace', workspace?: { __typename?: 'Workspace', id: any, logo?: string | null, displayName?: string | null, domainName?: string | null } | null }> }, tokens: { __typename?: 'AuthTokenPair', accessToken: { __typename?: 'AuthToken', token: string, expiresAt: string }, refreshToken: { __typename?: 'AuthToken', token: string, expiresAt: string } } } }; export type CheckUserExistsQueryVariables = Exact<{ email: Scalars['String']; @@ -1443,7 +1445,7 @@ export type GetAisqlQueryQueryVariables = Exact<{ export type GetAisqlQueryQuery = { __typename?: 'Query', getAISQLQuery: { __typename?: 'AISQLQueryResult', sqlQuery: string, sqlQueryResult?: string | null, queryFailedErrorMessage?: string | null } }; -export type UserQueryFragmentFragment = { __typename?: 'User', id: any, firstName: string, lastName: string, email: string, canImpersonate: boolean, supportUserHash?: string | null, onboardingStatus?: OnboardingStatus | null, userVars: any, workspaceMember?: { __typename?: 'WorkspaceMember', id: any, colorScheme: string, avatarUrl?: string | null, locale?: string | null, timeZone?: string | null, dateFormat?: WorkspaceMemberDateFormatEnum | null, timeFormat?: WorkspaceMemberTimeFormatEnum | null, name: { __typename?: 'FullName', firstName: string, lastName: string } } | null, defaultWorkspace: { __typename?: 'Workspace', id: any, displayName?: string | null, logo?: string | null, domainName?: string | null, inviteHash?: string | null, allowImpersonation: boolean, activationStatus: WorkspaceActivationStatus, currentCacheVersion?: string | null, workspaceMembersCount?: number | null, featureFlags?: Array<{ __typename?: 'FeatureFlag', id: any, key: string, value: boolean, workspaceId: string }> | null, currentBillingSubscription?: { __typename?: 'BillingSubscription', id: any, status: SubscriptionStatus, interval?: SubscriptionInterval | null } | null }, workspaces: Array<{ __typename?: 'UserWorkspace', workspace?: { __typename?: 'Workspace', id: any, logo?: string | null, displayName?: string | null, domainName?: string | null } | null }> }; +export type UserQueryFragmentFragment = { __typename?: 'User', id: any, firstName: string, lastName: string, email: string, canImpersonate: boolean, supportUserHash?: string | null, onboardingStatus?: OnboardingStatus | null, userVars: any, workspaceMember?: { __typename?: 'WorkspaceMember', id: any, colorScheme: string, avatarUrl?: string | null, locale?: string | null, timeZone?: string | null, dateFormat?: WorkspaceMemberDateFormatEnum | null, timeFormat?: WorkspaceMemberTimeFormatEnum | null, name: { __typename?: 'FullName', firstName: string, lastName: string } } | null, workspaceMembers?: Array<{ __typename?: 'WorkspaceMember', id: any, colorScheme: string, avatarUrl?: string | null, locale?: string | null, timeZone?: string | null, dateFormat?: WorkspaceMemberDateFormatEnum | null, timeFormat?: WorkspaceMemberTimeFormatEnum | null, name: { __typename?: 'FullName', firstName: string, lastName: string } }> | null, defaultWorkspace: { __typename?: 'Workspace', id: any, displayName?: string | null, logo?: string | null, domainName?: string | null, inviteHash?: string | null, allowImpersonation: boolean, activationStatus: WorkspaceActivationStatus, currentCacheVersion?: string | null, workspaceMembersCount?: number | null, featureFlags?: Array<{ __typename?: 'FeatureFlag', id: any, key: string, value: boolean, workspaceId: string }> | null, currentBillingSubscription?: { __typename?: 'BillingSubscription', id: any, status: SubscriptionStatus, interval?: SubscriptionInterval | null } | null }, workspaces: Array<{ __typename?: 'UserWorkspace', workspace?: { __typename?: 'Workspace', id: any, logo?: string | null, displayName?: string | null, domainName?: string | null } | null }> }; export type DeleteUserAccountMutationVariables = Exact<{ [key: string]: never; }>; @@ -1460,7 +1462,9 @@ export type UploadProfilePictureMutation = { __typename?: 'Mutation', uploadProf export type GetCurrentUserQueryVariables = Exact<{ [key: string]: never; }>; -export type GetCurrentUserQuery = { __typename?: 'Query', currentUser: { __typename?: 'User', id: any, firstName: string, lastName: string, email: string, canImpersonate: boolean, supportUserHash?: string | null, onboardingStatus?: OnboardingStatus | null, userVars: any, workspaceMember?: { __typename?: 'WorkspaceMember', id: any, colorScheme: string, avatarUrl?: string | null, locale?: string | null, timeZone?: string | null, dateFormat?: WorkspaceMemberDateFormatEnum | null, timeFormat?: WorkspaceMemberTimeFormatEnum | null, name: { __typename?: 'FullName', firstName: string, lastName: string } } | null, defaultWorkspace: { __typename?: 'Workspace', id: any, displayName?: string | null, logo?: string | null, domainName?: string | null, inviteHash?: string | null, allowImpersonation: boolean, activationStatus: WorkspaceActivationStatus, currentCacheVersion?: string | null, workspaceMembersCount?: number | null, featureFlags?: Array<{ __typename?: 'FeatureFlag', id: any, key: string, value: boolean, workspaceId: string }> | null, currentBillingSubscription?: { __typename?: 'BillingSubscription', id: any, status: SubscriptionStatus, interval?: SubscriptionInterval | null } | null }, workspaces: Array<{ __typename?: 'UserWorkspace', workspace?: { __typename?: 'Workspace', id: any, logo?: string | null, displayName?: string | null, domainName?: string | null } | null }> } }; +export type GetCurrentUserQuery = { __typename?: 'Query', currentUser: { __typename?: 'User', id: any, firstName: string, lastName: string, email: string, canImpersonate: boolean, supportUserHash?: string | null, onboardingStatus?: OnboardingStatus | null, userVars: any, workspaceMember?: { __typename?: 'WorkspaceMember', id: any, colorScheme: string, avatarUrl?: string | null, locale?: string | null, timeZone?: string | null, dateFormat?: WorkspaceMemberDateFormatEnum | null, timeFormat?: WorkspaceMemberTimeFormatEnum | null, name: { __typename?: 'FullName', firstName: string, lastName: string } } | null, workspaceMembers?: Array<{ __typename?: 'WorkspaceMember', id: any, colorScheme: string, avatarUrl?: string | null, locale?: string | null, timeZone?: string | null, dateFormat?: WorkspaceMemberDateFormatEnum | null, timeFormat?: WorkspaceMemberTimeFormatEnum | null, name: { __typename?: 'FullName', firstName: string, lastName: string } }> | null, defaultWorkspace: { __typename?: 'Workspace', id: any, displayName?: string | null, logo?: string | null, domainName?: string | null, inviteHash?: string | null, allowImpersonation: boolean, activationStatus: WorkspaceActivationStatus, currentCacheVersion?: string | null, workspaceMembersCount?: number | null, featureFlags?: Array<{ __typename?: 'FeatureFlag', id: any, key: string, value: boolean, workspaceId: string }> | null, currentBillingSubscription?: { __typename?: 'BillingSubscription', id: any, status: SubscriptionStatus, interval?: SubscriptionInterval | null } | null }, workspaces: Array<{ __typename?: 'UserWorkspace', workspace?: { __typename?: 'Workspace', id: any, logo?: string | null, displayName?: string | null, domainName?: string | null } | null }> } }; + +export type WorkspaceMemberQueryFragmentFragment = { __typename?: 'WorkspaceMember', id: any, colorScheme: string, avatarUrl?: string | null, locale?: string | null, timeZone?: string | null, dateFormat?: WorkspaceMemberDateFormatEnum | null, timeFormat?: WorkspaceMemberTimeFormatEnum | null, name: { __typename?: 'FullName', firstName: string, lastName: string } }; export type AddUserToWorkspaceMutationVariables = Exact<{ inviteHash: Scalars['String']; @@ -1596,6 +1600,21 @@ export const AuthTokensFragmentFragmentDoc = gql` } } ${AuthTokenFragmentFragmentDoc}`; +export const WorkspaceMemberQueryFragmentFragmentDoc = gql` + fragment WorkspaceMemberQueryFragment on WorkspaceMember { + id + name { + firstName + lastName + } + colorScheme + avatarUrl + locale + timeZone + dateFormat + timeFormat +} + `; export const UserQueryFragmentFragmentDoc = gql` fragment UserQueryFragment on User { id @@ -1606,17 +1625,10 @@ export const UserQueryFragmentFragmentDoc = gql` supportUserHash onboardingStatus workspaceMember { - id - name { - firstName - lastName - } - colorScheme - avatarUrl - locale - timeZone - dateFormat - timeFormat + ...WorkspaceMemberQueryFragment + } + workspaceMembers { + ...WorkspaceMemberQueryFragment } defaultWorkspace { id @@ -1650,7 +1662,7 @@ export const UserQueryFragmentFragmentDoc = gql` } userVars } - `; + ${WorkspaceMemberQueryFragmentFragmentDoc}`; export const GetTimelineCalendarEventsFromCompanyIdDocument = gql` query GetTimelineCalendarEventsFromCompanyId($companyId: UUID!, $page: Int!, $pageSize: Int!) { getTimelineCalendarEventsFromCompanyId( diff --git a/packages/twenty-front/src/modules/activities/timelineActivities/components/EventList.tsx b/packages/twenty-front/src/modules/activities/timelineActivities/components/EventList.tsx index 49692cee1..d6087d825 100644 --- a/packages/twenty-front/src/modules/activities/timelineActivities/components/EventList.tsx +++ b/packages/twenty-front/src/modules/activities/timelineActivities/components/EventList.tsx @@ -7,6 +7,7 @@ import { filterOutInvalidTimelineActivities } from '@/activities/timelineActivit import { groupEventsByMonth } from '@/activities/timelineActivities/utils/groupEventsByMonth'; import { ActivityTargetableObject } from '@/activities/types/ActivityTargetableEntity'; import { useObjectMetadataItem } from '@/object-metadata/hooks/useObjectMetadataItem'; +import { useObjectMetadataItems } from '@/object-metadata/hooks/useObjectMetadataItems'; import { ScrollWrapper } from '@/ui/utilities/scroll/components/ScrollWrapper'; type EventListProps = { @@ -34,9 +35,12 @@ export const EventList = ({ events, targetableObject }: EventListProps) => { objectNameSingular: targetableObject.targetObjectNameSingular, }).objectMetadataItem; + const { objectMetadataItems } = useObjectMetadataItems(); + const filteredEvents = filterOutInvalidTimelineActivities( events, - mainObjectMetadataItem, + targetableObject.targetObjectNameSingular, + objectMetadataItems, ); const groupedEvents = groupEventsByMonth(filteredEvents); diff --git a/packages/twenty-front/src/modules/activities/timelineActivities/rows/activity/components/EventRowActivity.tsx b/packages/twenty-front/src/modules/activities/timelineActivities/rows/activity/components/EventRowActivity.tsx index ffb341b03..30c13a721 100644 --- a/packages/twenty-front/src/modules/activities/timelineActivities/rows/activity/components/EventRowActivity.tsx +++ b/packages/twenty-front/src/modules/activities/timelineActivities/rows/activity/components/EventRowActivity.tsx @@ -22,7 +22,9 @@ export const EventRowActivity = ({ authorFullName, objectNameSingular, }: EventRowActivityProps & { objectNameSingular: CoreObjectNameSingular }) => { - const [, eventAction] = event.name.split('.'); + const [eventLinkedObject, eventAction] = event.name.split('.'); + + const eventObject = eventLinkedObject.replace('linked-', ''); if (!event.linkedRecordId) { throw new Error('Could not find linked record id for event'); @@ -39,7 +41,9 @@ export const EventRowActivity = ({ return ( <> {authorFullName} - {eventAction} + + {`${eventAction} a related ${eventObject}`} + {activityInStore ? ( openActivityRightDrawer(event.linkedRecordId)} diff --git a/packages/twenty-front/src/modules/activities/timelineActivities/utils/filterOutInvalidTimelineActivities.ts b/packages/twenty-front/src/modules/activities/timelineActivities/utils/filterOutInvalidTimelineActivities.ts index a7badf00b..1bdfcbf79 100644 --- a/packages/twenty-front/src/modules/activities/timelineActivities/utils/filterOutInvalidTimelineActivities.ts +++ b/packages/twenty-front/src/modules/activities/timelineActivities/utils/filterOutInvalidTimelineActivities.ts @@ -1,14 +1,34 @@ import { TimelineActivity } from '@/activities/timelineActivities/types/TimelineActivity'; +import { CoreObjectNameSingular } from '@/object-metadata/types/CoreObjectNameSingular'; import { ObjectMetadataItem } from '@/object-metadata/types/ObjectMetadataItem'; export const filterOutInvalidTimelineActivities = ( timelineActivities: TimelineActivity[], - mainObjectMetadataItem: ObjectMetadataItem, + mainObjectSingularName: string, + objectMetadataItems: ObjectMetadataItem[], ): TimelineActivity[] => { + const mainObjectMetadataItem = objectMetadataItems.find( + (objectMetadataItem) => + objectMetadataItem.nameSingular === mainObjectSingularName, + ); + + const noteObjectMetadataItem = objectMetadataItems.find( + (objectMetadataItem) => + objectMetadataItem.nameSingular === CoreObjectNameSingular.Note, + ); + + if (!mainObjectMetadataItem || !noteObjectMetadataItem) { + throw new Error('Object metadata items not found'); + } + const fieldMetadataItemMap = new Map( mainObjectMetadataItem.fields.map((field) => [field.name, field]), ); + const noteFieldMetadataItemMap = new Map( + noteObjectMetadataItem.fields.map((field) => [field.name, field]), + ); + return timelineActivities.filter((timelineActivity) => { const diff = timelineActivity.properties?.diff; const canSkipValidation = !diff; @@ -17,8 +37,14 @@ export const filterOutInvalidTimelineActivities = ( return true; } + const isNoteOrTask = + timelineActivity.name.startsWith('linked-note') || + timelineActivity.name.startsWith('linked-task'); + const validDiffEntries = Object.entries(diff).filter(([diffKey]) => - fieldMetadataItemMap.has(diffKey), + isNoteOrTask + ? noteFieldMetadataItemMap.has(diffKey) + : fieldMetadataItemMap.has(diffKey), ); if (validDiffEntries.length === 0) { diff --git a/packages/twenty-front/src/modules/auth/components/AuthProvider.tsx b/packages/twenty-front/src/modules/auth/components/AuthProvider.tsx new file mode 100644 index 000000000..c174ed333 --- /dev/null +++ b/packages/twenty-front/src/modules/auth/components/AuthProvider.tsx @@ -0,0 +1,19 @@ +import React from 'react'; +import { useRecoilValue } from 'recoil'; + +import { AuthContext } from '@/auth/contexts/AuthContext'; +import { currentWorkspaceMembersState } from '@/auth/states/currentWorkspaceMembersStates'; + +export const AuthProvider = ({ children }: React.PropsWithChildren) => { + const currentWorkspaceMembers = useRecoilValue(currentWorkspaceMembersState); + + return ( + + {children} + + ); +}; diff --git a/packages/twenty-front/src/modules/auth/contexts/AuthContext.ts b/packages/twenty-front/src/modules/auth/contexts/AuthContext.ts new file mode 100644 index 000000000..f3cfac5f0 --- /dev/null +++ b/packages/twenty-front/src/modules/auth/contexts/AuthContext.ts @@ -0,0 +1,10 @@ +import { CurrentWorkspaceMember } from '@/auth/states/currentWorkspaceMemberState'; +import { createContext } from 'react'; + +export type AuthContextType = { + currentWorkspaceMembers: CurrentWorkspaceMember[]; +}; + +export const AuthContext = createContext( + {} as AuthContextType, +); diff --git a/packages/twenty-front/src/modules/auth/hooks/useAuth.ts b/packages/twenty-front/src/modules/auth/hooks/useAuth.ts index 13bf37c5f..229372520 100644 --- a/packages/twenty-front/src/modules/auth/hooks/useAuth.ts +++ b/packages/twenty-front/src/modules/auth/hooks/useAuth.ts @@ -32,6 +32,7 @@ import { } from '~/generated/graphql'; import { isDefined } from '~/utils/isDefined'; +import { currentWorkspaceMembersState } from '@/auth/states/currentWorkspaceMembersStates'; import { dateTimeFormatState } from '@/localization/states/dateTimeFormatState'; import { detectDateFormat } from '@/localization/utils/detectDateFormat'; import { detectTimeFormat } from '@/localization/utils/detectTimeFormat'; @@ -47,6 +48,9 @@ export const useAuth = () => { const setCurrentWorkspaceMember = useSetRecoilState( currentWorkspaceMemberState, ); + const setCurrentWorkspaceMembers = useSetRecoilState( + currentWorkspaceMembersState, + ); const setCurrentWorkspace = useSetRecoilState(currentWorkspaceState); const setIsVerifyPendingState = useSetRecoilState(isVerifyPendingState); @@ -109,6 +113,18 @@ export const useAuth = () => { setCurrentUser(user); + if (isDefined(user.workspaceMembers)) { + const workspaceMembers = user.workspaceMembers.map( + (workspaceMember) => ({ + ...workspaceMember, + colorScheme: workspaceMember.colorScheme as ColorScheme, + locale: workspaceMember.locale ?? 'en', + }), + ); + + setCurrentWorkspaceMembers(workspaceMembers); + } + if (isDefined(user.workspaceMember)) { workspaceMember = { ...user.workspaceMember, @@ -163,10 +179,11 @@ export const useAuth = () => { verify, setTokenPair, setCurrentUser, - setCurrentWorkspaceMember, setCurrentWorkspace, - setWorkspaces, + setCurrentWorkspaceMembers, + setCurrentWorkspaceMember, setDateTimeFormat, + setWorkspaces, ], ); diff --git a/packages/twenty-front/src/modules/auth/states/currentWorkspaceMembersStates.ts b/packages/twenty-front/src/modules/auth/states/currentWorkspaceMembersStates.ts new file mode 100644 index 000000000..a8059259a --- /dev/null +++ b/packages/twenty-front/src/modules/auth/states/currentWorkspaceMembersStates.ts @@ -0,0 +1,9 @@ +import { CurrentWorkspaceMember } from '@/auth/states/currentWorkspaceMemberState'; +import { createState } from 'twenty-ui'; + +export const currentWorkspaceMembersState = createState< + CurrentWorkspaceMember[] +>({ + key: 'currentWorkspaceMembersState', + defaultValue: [], +}); diff --git a/packages/twenty-front/src/modules/debug/components/RecoilDebugObserver.tsx b/packages/twenty-front/src/modules/debug/components/RecoilDebugObserver.tsx index 5031c1963..f6ce48693 100644 --- a/packages/twenty-front/src/modules/debug/components/RecoilDebugObserver.tsx +++ b/packages/twenty-front/src/modules/debug/components/RecoilDebugObserver.tsx @@ -1,6 +1,6 @@ +import { isDebugModeState } from '@/client-config/states/isDebugModeState'; import { useRecoilTransactionObserver_UNSTABLE, useRecoilValue } from 'recoil'; -import { isDebugModeState } from '@/client-config/states/isDebugModeState'; import { logDebug } from '~/utils/logDebug'; const formatTitle = (stateName: string) => { diff --git a/packages/twenty-front/src/modules/object-metadata/constants/SortableFieldMetadataTypes.ts b/packages/twenty-front/src/modules/object-metadata/constants/SortableFieldMetadataTypes.ts index be5e856bd..9271c4d2b 100644 --- a/packages/twenty-front/src/modules/object-metadata/constants/SortableFieldMetadataTypes.ts +++ b/packages/twenty-front/src/modules/object-metadata/constants/SortableFieldMetadataTypes.ts @@ -12,5 +12,6 @@ export const SORTABLE_FIELD_METADATA_TYPES = [ FieldMetadataType.FullName, FieldMetadataType.Rating, FieldMetadataType.Currency, + FieldMetadataType.Actor, FieldMetadataType.Links, ]; diff --git a/packages/twenty-front/src/modules/object-metadata/utils/formatFieldMetadataItemsAsFilterDefinitions.ts b/packages/twenty-front/src/modules/object-metadata/utils/formatFieldMetadataItemsAsFilterDefinitions.ts index 5ae8f9741..7fa1fae41 100644 --- a/packages/twenty-front/src/modules/object-metadata/utils/formatFieldMetadataItemsAsFilterDefinitions.ts +++ b/packages/twenty-front/src/modules/object-metadata/utils/formatFieldMetadataItemsAsFilterDefinitions.ts @@ -35,6 +35,7 @@ export const formatFieldMetadataItemsAsFilterDefinitions = ({ FieldMetadataType.Select, FieldMetadataType.Currency, FieldMetadataType.Rating, + FieldMetadataType.Actor, ].includes(field.type) ) { return acc; @@ -88,6 +89,8 @@ export const getFilterTypeFromFieldType = (fieldType: FieldMetadataType) => { return 'ADDRESS'; case FieldMetadataType.Rating: return 'RATING'; + case FieldMetadataType.Actor: + return 'ACTOR'; default: return 'TEXT'; } diff --git a/packages/twenty-front/src/modules/object-metadata/utils/getOrderByForFieldMetadataType.ts b/packages/twenty-front/src/modules/object-metadata/utils/getOrderByForFieldMetadataType.ts index bb00505dd..6fc684d40 100644 --- a/packages/twenty-front/src/modules/object-metadata/utils/getOrderByForFieldMetadataType.ts +++ b/packages/twenty-front/src/modules/object-metadata/utils/getOrderByForFieldMetadataType.ts @@ -26,6 +26,14 @@ export const getOrderByForFieldMetadataType = ( }, }, ]; + case FieldMetadataType.Actor: + return [ + { + [field.name]: { + name: direction ?? 'AscNullsLast', + }, + }, + ]; case FieldMetadataType.Links: return [ { diff --git a/packages/twenty-front/src/modules/object-metadata/utils/mapFieldMetadataToGraphQLQuery.ts b/packages/twenty-front/src/modules/object-metadata/utils/mapFieldMetadataToGraphQLQuery.ts index b9c7ebc91..7f46e887d 100644 --- a/packages/twenty-front/src/modules/object-metadata/utils/mapFieldMetadataToGraphQLQuery.ts +++ b/packages/twenty-front/src/modules/object-metadata/utils/mapFieldMetadataToGraphQLQuery.ts @@ -147,5 +147,14 @@ ${mapObjectMetadataToGraphQLQuery({ }`; } + if (fieldType === FieldMetadataType.Actor) { + return `${field.name} +{ + source + workspaceMemberId + name +}`; + } + return ''; }; diff --git a/packages/twenty-front/src/modules/object-record/graphql/types/RecordGqlOperationFilter.ts b/packages/twenty-front/src/modules/object-record/graphql/types/RecordGqlOperationFilter.ts index 3b81d20d6..29658b5cb 100644 --- a/packages/twenty-front/src/modules/object-record/graphql/types/RecordGqlOperationFilter.ts +++ b/packages/twenty-front/src/modules/object-record/graphql/types/RecordGqlOperationFilter.ts @@ -90,6 +90,10 @@ export type LinksFilter = { primaryLinkLabel?: StringFilter; }; +export type ActorFilter = { + name?: StringFilter; +}; + export type LeafFilter = | UUIDFilter | StringFilter @@ -101,6 +105,7 @@ export type LeafFilter = | BooleanFilter | AddressFilter | LinksFilter + | ActorFilter | undefined; export type AndObjectRecordFilter = { diff --git a/packages/twenty-front/src/modules/object-record/object-filter-dropdown/components/MultipleFiltersDropdownContent.tsx b/packages/twenty-front/src/modules/object-record/object-filter-dropdown/components/MultipleFiltersDropdownContent.tsx index 142f3d8ca..f795fdddb 100644 --- a/packages/twenty-front/src/modules/object-record/object-filter-dropdown/components/MultipleFiltersDropdownContent.tsx +++ b/packages/twenty-front/src/modules/object-record/object-filter-dropdown/components/MultipleFiltersDropdownContent.tsx @@ -65,6 +65,7 @@ export const MultipleFiltersDropdownContent = ({ 'LINK', 'LINKS', 'ADDRESS', + 'ACTOR', ].includes(filterDefinitionUsedInDropdown.type) && ( )} diff --git a/packages/twenty-front/src/modules/object-record/object-filter-dropdown/types/FilterType.ts b/packages/twenty-front/src/modules/object-record/object-filter-dropdown/types/FilterType.ts index 7b081d87b..36ba51c20 100644 --- a/packages/twenty-front/src/modules/object-record/object-filter-dropdown/types/FilterType.ts +++ b/packages/twenty-front/src/modules/object-record/object-filter-dropdown/types/FilterType.ts @@ -13,4 +13,5 @@ export type FilterType = | 'ADDRESS' | 'SELECT' | 'RATING' - | 'MULTI_SELECT'; + | 'MULTI_SELECT' + | 'ACTOR'; diff --git a/packages/twenty-front/src/modules/object-record/object-filter-dropdown/utils/__tests__/getOperandsForFilterType.test.tsx b/packages/twenty-front/src/modules/object-record/object-filter-dropdown/utils/__tests__/getOperandsForFilterType.test.tsx index d5eded8bf..7b4b9516e 100644 --- a/packages/twenty-front/src/modules/object-record/object-filter-dropdown/utils/__tests__/getOperandsForFilterType.test.tsx +++ b/packages/twenty-front/src/modules/object-record/object-filter-dropdown/utils/__tests__/getOperandsForFilterType.test.tsx @@ -28,6 +28,7 @@ describe('getOperandsForFilterType', () => { ['ADDRESS', [...containsOperands, ...emptyOperands]], ['LINK', [...containsOperands, ...emptyOperands]], ['LINKS', [...containsOperands, ...emptyOperands]], + ['ACTOR', [...containsOperands, ...emptyOperands]], ['CURRENCY', [...numberOperands, ...emptyOperands]], ['NUMBER', [...numberOperands, ...emptyOperands]], ['DATE_TIME', [...numberOperands, ...emptyOperands]], diff --git a/packages/twenty-front/src/modules/object-record/object-filter-dropdown/utils/getOperandsForFilterType.ts b/packages/twenty-front/src/modules/object-record/object-filter-dropdown/utils/getOperandsForFilterType.ts index f1196ea79..a7400625e 100644 --- a/packages/twenty-front/src/modules/object-record/object-filter-dropdown/utils/getOperandsForFilterType.ts +++ b/packages/twenty-front/src/modules/object-record/object-filter-dropdown/utils/getOperandsForFilterType.ts @@ -20,6 +20,7 @@ export const getOperandsForFilterType = ( case 'PHONE': case 'LINK': case 'LINKS': + case 'ACTOR': return [ ViewFilterOperand.Contains, ViewFilterOperand.DoesNotContain, diff --git a/packages/twenty-front/src/modules/object-record/record-field/__mocks__/fieldDefinitions.ts b/packages/twenty-front/src/modules/object-record/record-field/__mocks__/fieldDefinitions.ts index a439e13dc..3a3b49e69 100644 --- a/packages/twenty-front/src/modules/object-record/record-field/__mocks__/fieldDefinitions.ts +++ b/packages/twenty-front/src/modules/object-record/record-field/__mocks__/fieldDefinitions.ts @@ -1,11 +1,12 @@ import { formatFieldMetadataItemAsFieldDefinition } from '@/object-metadata/utils/formatFieldMetadataItemAsFieldDefinition'; import { FieldDefinition } from '@/object-record/record-field/types/FieldDefinition'; import { + FieldActorMetadata, FieldFullNameMetadata, FieldLinkMetadata, FieldRatingMetadata, FieldSelectMetadata, - FieldTextMetadata, + FieldTextMetadata } from '@/object-record/record-field/types/FieldMetadata'; import { FieldMetadataType } from '~/generated-metadata/graphql'; import { @@ -79,7 +80,7 @@ export const phoneFieldDefinition = formatFieldMetadataItemAsFieldDefinition({ objectMetadataItem: mockedPersonObjectMetadataItem, }); -export const ratingfieldDefinition: FieldDefinition = { +export const ratingFieldDefinition: FieldDefinition = { fieldMetadataId, label: 'Rating', iconName: 'iconName', @@ -97,3 +98,14 @@ export const booleanFieldDefinition = formatFieldMetadataItemAsFieldDefinition({ field: booleanFieldMetadataItem!, objectMetadataItem: mockedCompanyObjectMetadataItem, }); + +export const actorFieldDefinition: FieldDefinition = { + fieldMetadataId, + label: 'Created By', + iconName: 'restart', + type: FieldMetadataType.Actor, + defaultValue: { source: 'MANUAL', name: '' }, + metadata: { + fieldName: 'actor', + }, +}; \ No newline at end of file diff --git a/packages/twenty-front/src/modules/object-record/record-field/components/FieldDisplay.tsx b/packages/twenty-front/src/modules/object-record/record-field/components/FieldDisplay.tsx index b402d1c59..6f648f145 100644 --- a/packages/twenty-front/src/modules/object-record/record-field/components/FieldDisplay.tsx +++ b/packages/twenty-front/src/modules/object-record/record-field/components/FieldDisplay.tsx @@ -1,11 +1,13 @@ import { useContext } from 'react'; +import { ActorFieldDisplay } from '@/object-record/record-field/meta-types/display/components/ActorFieldDisplay'; import { BooleanFieldDisplay } from '@/object-record/record-field/meta-types/display/components/BooleanFieldDisplay'; import { LinksFieldDisplay } from '@/object-record/record-field/meta-types/display/components/LinksFieldDisplay'; import { RatingFieldDisplay } from '@/object-record/record-field/meta-types/display/components/RatingFieldDisplay'; import { RelationFromManyFieldDisplay } from '@/object-record/record-field/meta-types/display/components/RelationFromManyFieldDisplay'; import { RichTextFieldDisplay } from '@/object-record/record-field/meta-types/display/components/RichTextFieldDisplay'; import { isFieldIdentifierDisplay } from '@/object-record/record-field/meta-types/display/utils/isFieldIdentifierDisplay'; +import { isFieldActor } from '@/object-record/record-field/types/guards/isFieldActor'; import { isFieldBoolean } from '@/object-record/record-field/types/guards/isFieldBoolean'; import { isFieldDisplayedAsPhone } from '@/object-record/record-field/types/guards/isFieldDisplayedAsPhone'; import { isFieldLinks } from '@/object-record/record-field/types/guards/isFieldLinks'; @@ -96,5 +98,7 @@ export const FieldDisplay = () => { ) : isFieldRichText(fieldDefinition) ? ( + ) : isFieldActor(fieldDefinition) ? ( + ) : null; }; diff --git a/packages/twenty-front/src/modules/object-record/record-field/hooks/__tests__/useIsFieldReadOnly.test.tsx b/packages/twenty-front/src/modules/object-record/record-field/hooks/__tests__/useIsFieldReadOnly.test.tsx new file mode 100644 index 000000000..2dbee3f3c --- /dev/null +++ b/packages/twenty-front/src/modules/object-record/record-field/hooks/__tests__/useIsFieldReadOnly.test.tsx @@ -0,0 +1,50 @@ +import { renderHook } from '@testing-library/react'; +import { ReactNode } from 'react'; +import { RecoilRoot } from 'recoil'; + +import { + actorFieldDefinition, + phoneFieldDefinition, +} from '@/object-record/record-field/__mocks__/fieldDefinitions'; +import { FieldContext } from '@/object-record/record-field/contexts/FieldContext'; +import { useIsFieldReadOnly } from '@/object-record/record-field/hooks/useIsFieldReadOnly'; +import { FieldDefinition } from '@/object-record/record-field/types/FieldDefinition'; +import { FieldMetadata } from '@/object-record/record-field/types/FieldMetadata'; + +const entityId = 'entityId'; + +const getWrapper = + (fieldDefinition: FieldDefinition) => + ({ children }: { children: ReactNode }) => ( + + {children} + + ); + +const ActorWrapper = getWrapper(actorFieldDefinition); +const PhoneWrapper = getWrapper(phoneFieldDefinition); + +describe('useIsFieldReadOnly', () => { + it('should return true', () => { + const { result } = renderHook(() => useIsFieldReadOnly(), { + wrapper: ActorWrapper, + }); + + expect(result.current).toBe(true); + }); + + it('should return false', () => { + const { result } = renderHook(() => useIsFieldReadOnly(), { + wrapper: PhoneWrapper, + }); + + expect(result.current).toBe(false); + }); +}); diff --git a/packages/twenty-front/src/modules/object-record/record-field/hooks/useIsFieldReadOnly.ts b/packages/twenty-front/src/modules/object-record/record-field/hooks/useIsFieldReadOnly.ts index 192eb843f..e4e4970c0 100644 --- a/packages/twenty-front/src/modules/object-record/record-field/hooks/useIsFieldReadOnly.ts +++ b/packages/twenty-front/src/modules/object-record/record-field/hooks/useIsFieldReadOnly.ts @@ -1,14 +1,16 @@ import { useContext } from 'react'; -import { FieldMetadataType } from '~/generated-metadata/graphql'; +import { isFieldActor } from '@/object-record/record-field/types/guards/isFieldActor'; +import { isFieldRichText } from '@/object-record/record-field/types/guards/isFieldRichText'; import { FieldContext } from '../contexts/FieldContext'; export const useIsFieldReadOnly = () => { const { fieldDefinition } = useContext(FieldContext); return ( - fieldDefinition.type === FieldMetadataType.RichText || fieldDefinition.metadata.fieldName === 'noteTargets' || - fieldDefinition.metadata.fieldName === 'taskTargets' // TODO: do something cleaner + fieldDefinition.metadata.fieldName === 'taskTargets' || + isFieldActor(fieldDefinition) || + isFieldRichText(fieldDefinition) ); }; diff --git a/packages/twenty-front/src/modules/object-record/record-field/meta-types/display/components/ActorFieldDisplay.tsx b/packages/twenty-front/src/modules/object-record/record-field/meta-types/display/components/ActorFieldDisplay.tsx new file mode 100644 index 000000000..129d0ebdb --- /dev/null +++ b/packages/twenty-front/src/modules/object-record/record-field/meta-types/display/components/ActorFieldDisplay.tsx @@ -0,0 +1,25 @@ +import { useActorFieldDisplay } from '@/object-record/record-field/meta-types/hooks/useActorFieldDisplay'; +import { ActorDisplay } from '@/ui/field/display/components/ActorDisplay'; +import { isNonEmptyString } from '@sniptt/guards'; + +export const ActorFieldDisplay = () => { + const { fieldValue } = useActorFieldDisplay(); + + const name = !fieldValue.workspaceMemberId + ? fieldValue.name + : [ + fieldValue.workspaceMember?.name.firstName, + fieldValue.workspaceMember?.name.lastName, + ] + .filter(isNonEmptyString) + .join(' '); + + return ( + + ); +}; diff --git a/packages/twenty-front/src/modules/object-record/record-field/meta-types/display/components/__stories__/perf/ActorFieldDisplay.perf.stories.tsx b/packages/twenty-front/src/modules/object-record/record-field/meta-types/display/components/__stories__/perf/ActorFieldDisplay.perf.stories.tsx new file mode 100644 index 000000000..dabbfb6ae --- /dev/null +++ b/packages/twenty-front/src/modules/object-record/record-field/meta-types/display/components/__stories__/perf/ActorFieldDisplay.perf.stories.tsx @@ -0,0 +1,41 @@ +import { ActorFieldDisplay } from '@/object-record/record-field/meta-types/display/components/ActorFieldDisplay'; +import { FieldActorValue } from '@/object-record/record-field/types/FieldMetadata'; +import { Meta, StoryObj } from '@storybook/react'; +import { ComponentDecorator } from 'twenty-ui'; + +import { ChipGeneratorsDecorator } from '~/testing/decorators/ChipGeneratorsDecorator'; +import { getFieldDecorator } from '~/testing/decorators/getFieldDecorator'; +import { MemoryRouterDecorator } from '~/testing/decorators/MemoryRouterDecorator'; +import { getProfilingStory } from '~/testing/profiling/utils/getProfilingStory'; + +const meta: Meta = { + title: 'UI/Data/Field/Display/ActorFieldDisplay', + decorators: [ + MemoryRouterDecorator, + ChipGeneratorsDecorator, + getFieldDecorator('person', 'actor', { + name: 'John Doe', + source: 'API', + workspaceMemberId: undefined, + } satisfies FieldActorValue), + ComponentDecorator, + ], + component: ActorFieldDisplay, + args: {}, + parameters: { + chromatic: { disableSnapshot: true }, + }, +}; + +export default meta; + +type Story = StoryObj; + +export const Default: Story = {}; + +export const Performance = getProfilingStory({ + componentName: 'ActorFieldDisplay', + averageThresholdInMs: 0.2, + numberOfRuns: 20, + numberOfTestsPerRun: 100, +}); diff --git a/packages/twenty-front/src/modules/object-record/record-field/meta-types/hooks/useActorFieldDisplay.ts b/packages/twenty-front/src/modules/object-record/record-field/meta-types/hooks/useActorFieldDisplay.ts new file mode 100644 index 000000000..c870b96e6 --- /dev/null +++ b/packages/twenty-front/src/modules/object-record/record-field/meta-types/hooks/useActorFieldDisplay.ts @@ -0,0 +1,30 @@ +import { useContext } from 'react'; + +import { FieldActorValue } from '@/object-record/record-field/types/FieldMetadata'; +import { useRecordFieldValue } from '@/object-record/record-store/contexts/RecordFieldValueSelectorContext'; + +import { AuthContext } from '@/auth/contexts/AuthContext'; +import { FieldContext } from '../../contexts/FieldContext'; + +export const useActorFieldDisplay = () => { + const { entityId, fieldDefinition } = useContext(FieldContext); + + const { currentWorkspaceMembers } = useContext(AuthContext); + + const fieldName = fieldDefinition.metadata.fieldName; + + const fieldValue = useRecordFieldValue( + entityId, + fieldName, + ); + + return { + fieldDefinition, + fieldValue: { + ...fieldValue, + workspaceMember: currentWorkspaceMembers?.find( + (member) => member.id === fieldValue?.workspaceMemberId, + ), + }, + }; +}; diff --git a/packages/twenty-front/src/modules/object-record/record-field/meta-types/hooks/useChipFieldDisplay.ts b/packages/twenty-front/src/modules/object-record/record-field/meta-types/hooks/useChipFieldDisplay.ts index c0840bf7c..18dc49289 100644 --- a/packages/twenty-front/src/modules/object-record/record-field/meta-types/hooks/useChipFieldDisplay.ts +++ b/packages/twenty-front/src/modules/object-record/record-field/meta-types/hooks/useChipFieldDisplay.ts @@ -8,6 +8,7 @@ import { isFieldText } from '@/object-record/record-field/types/guards/isFieldTe import { useRecordValue } from '@/object-record/record-store/contexts/RecordFieldValueSelectorContext'; import { isDefined } from '~/utils/isDefined'; +import { isFieldActor } from '@/object-record/record-field/types/guards/isFieldActor'; import { FieldContext } from '../../contexts/FieldContext'; export const useChipFieldDisplay = () => { @@ -25,7 +26,8 @@ export const useChipFieldDisplay = () => { const objectNameSingular = isFieldText(fieldDefinition) || isFieldFullName(fieldDefinition) || - isFieldNumber(fieldDefinition) + isFieldNumber(fieldDefinition) || + isFieldActor(fieldDefinition) ? fieldDefinition.metadata.objectMetadataNameSingular : undefined; diff --git a/packages/twenty-front/src/modules/object-record/record-field/types/FieldInputDraftValue.ts b/packages/twenty-front/src/modules/object-record/record-field/types/FieldInputDraftValue.ts index ae1d63e54..55a25af1c 100644 --- a/packages/twenty-front/src/modules/object-record/record-field/types/FieldInputDraftValue.ts +++ b/packages/twenty-front/src/modules/object-record/record-field/types/FieldInputDraftValue.ts @@ -1,5 +1,6 @@ import { CurrencyCode } from '@/object-record/record-field/types/CurrencyCode'; import { + FieldActorValue, FieldAddressValue, FieldBooleanValue, FieldCurrencyValue, @@ -51,6 +52,11 @@ export type FieldAddressDraftValue = { addressLng: number | null; }; export type FieldJsonDraftValue = string; +export type FieldActorDraftValue = { + source: string; + workspaceMemberId?: string; + name: string; +}; export type FieldInputDraftValue = FieldValue extends FieldTextValue ? FieldTextDraftValue @@ -88,4 +94,6 @@ export type FieldInputDraftValue = FieldValue extends FieldTextValue ? FieldAddressDraftValue : FieldValue extends FieldJsonValue ? FieldJsonDraftValue - : never; + : FieldValue extends FieldActorValue + ? FieldActorDraftValue + : never; diff --git a/packages/twenty-front/src/modules/object-record/record-field/types/FieldMetadata.ts b/packages/twenty-front/src/modules/object-record/record-field/types/FieldMetadata.ts index 4aea03c27..04d6f6571 100644 --- a/packages/twenty-front/src/modules/object-record/record-field/types/FieldMetadata.ts +++ b/packages/twenty-front/src/modules/object-record/record-field/types/FieldMetadata.ts @@ -142,6 +142,11 @@ export type FieldMultiSelectMetadata = { options: { label: string; color: ThemeColor; value: string }[]; }; +export type FieldActorMetadata = { + objectMetadataNameSingular?: string; + fieldName: string; +}; + export type FieldMetadata = | FieldBooleanMetadata | FieldCurrencyMetadata @@ -158,7 +163,8 @@ export type FieldMetadata = | FieldMultiSelectMetadata | FieldTextMetadata | FieldUuidMetadata - | FieldAddressMetadata; + | FieldAddressMetadata + | FieldActorMetadata; export type FieldTextValue = string; export type FieldUUidValue = string; @@ -204,3 +210,9 @@ export type FieldRelationValue< export type Json = ZodHelperLiteral | { [key: string]: Json } | Json[]; export type FieldJsonValue = Record | Json[] | null; + +export type FieldActorValue = { + source: string; + workspaceMemberId?: string; + name: string; +}; diff --git a/packages/twenty-front/src/modules/object-record/record-field/types/guards/assertFieldMetadata.ts b/packages/twenty-front/src/modules/object-record/record-field/types/guards/assertFieldMetadata.ts index 901612a86..8445a468e 100644 --- a/packages/twenty-front/src/modules/object-record/record-field/types/guards/assertFieldMetadata.ts +++ b/packages/twenty-front/src/modules/object-record/record-field/types/guards/assertFieldMetadata.ts @@ -2,6 +2,7 @@ import { FieldMetadataType } from '~/generated-metadata/graphql'; import { FieldDefinition } from '../FieldDefinition'; import { + FieldActorMetadata, FieldAddressMetadata, FieldBooleanMetadata, FieldCurrencyMetadata, @@ -63,7 +64,9 @@ type AssertFieldMetadataFunction = < ? FieldRawJsonMetadata : E extends 'RICH_TEXT' ? FieldTextMetadata - : never, + : E extends 'ACTOR' + ? FieldActorMetadata + : never, >( fieldType: E, fieldTypeGuard: ( diff --git a/packages/twenty-front/src/modules/object-record/record-field/types/guards/isFieldActor.ts b/packages/twenty-front/src/modules/object-record/record-field/types/guards/isFieldActor.ts new file mode 100644 index 000000000..c6a899507 --- /dev/null +++ b/packages/twenty-front/src/modules/object-record/record-field/types/guards/isFieldActor.ts @@ -0,0 +1,9 @@ +import { FieldMetadataType } from '~/generated-metadata/graphql'; + +import { FieldDefinition } from '../FieldDefinition'; +import { FieldActorMetadata, FieldMetadata } from '../FieldMetadata'; + +export const isFieldActor = ( + field: Pick, 'type'>, +): field is FieldDefinition => + field.type === FieldMetadataType.Actor; diff --git a/packages/twenty-front/src/modules/object-record/record-field/types/guards/isFieldActorValue.ts b/packages/twenty-front/src/modules/object-record/record-field/types/guards/isFieldActorValue.ts new file mode 100644 index 000000000..a26a2820f --- /dev/null +++ b/packages/twenty-front/src/modules/object-record/record-field/types/guards/isFieldActorValue.ts @@ -0,0 +1,13 @@ +import { z } from 'zod'; + +import { FieldActorValue } from '../FieldMetadata'; + +const actorSchema = z.object({ + source: z.string(), + workspaceMemberId: z.optional(z.string().nullable()), + name: z.string(), +}); + +export const isFieldActorValue = ( + fieldValue: unknown, +): fieldValue is FieldActorValue => actorSchema.safeParse(fieldValue).success; diff --git a/packages/twenty-front/src/modules/object-record/record-field/types/guards/isFieldFullNameValue.ts b/packages/twenty-front/src/modules/object-record/record-field/types/guards/isFieldFullNameValue.ts index a85ceb510..15a21d4d7 100644 --- a/packages/twenty-front/src/modules/object-record/record-field/types/guards/isFieldFullNameValue.ts +++ b/packages/twenty-front/src/modules/object-record/record-field/types/guards/isFieldFullNameValue.ts @@ -2,7 +2,7 @@ import { z } from 'zod'; import { FieldFullNameValue } from '../FieldMetadata'; -const currencySchema = z.object({ +const fullnameSchema = z.object({ firstName: z.string(), lastName: z.string(), }); @@ -10,4 +10,4 @@ const currencySchema = z.object({ export const isFieldFullNameValue = ( fieldValue: unknown, ): fieldValue is FieldFullNameValue => - currencySchema.safeParse(fieldValue).success; + fullnameSchema.safeParse(fieldValue).success; diff --git a/packages/twenty-front/src/modules/object-record/record-field/utils/isFieldValueEmpty.ts b/packages/twenty-front/src/modules/object-record/record-field/utils/isFieldValueEmpty.ts index 9b0c97b3b..1519a2fd1 100644 --- a/packages/twenty-front/src/modules/object-record/record-field/utils/isFieldValueEmpty.ts +++ b/packages/twenty-front/src/modules/object-record/record-field/utils/isFieldValueEmpty.ts @@ -2,6 +2,8 @@ import { isString } from '@sniptt/guards'; import { FieldDefinition } from '@/object-record/record-field/types/FieldDefinition'; import { FieldMetadata } from '@/object-record/record-field/types/FieldMetadata'; +import { isFieldActor } from '@/object-record/record-field/types/guards/isFieldActor'; +import { isFieldActorValue } from '@/object-record/record-field/types/guards/isFieldActorValue'; import { isFieldAddress } from '@/object-record/record-field/types/guards/isFieldAddress'; import { isFieldAddressValue } from '@/object-record/record-field/types/guards/isFieldAddressValue'; import { isFieldBoolean } from '@/object-record/record-field/types/guards/isFieldBoolean'; @@ -13,9 +15,9 @@ import { isFieldEmail } from '@/object-record/record-field/types/guards/isFieldE import { isFieldFullName } from '@/object-record/record-field/types/guards/isFieldFullName'; import { isFieldFullNameValue } from '@/object-record/record-field/types/guards/isFieldFullNameValue'; import { isFieldLink } from '@/object-record/record-field/types/guards/isFieldLink'; +import { isFieldLinkValue } from '@/object-record/record-field/types/guards/isFieldLinkValue'; import { isFieldLinks } from '@/object-record/record-field/types/guards/isFieldLinks'; import { isFieldLinksValue } from '@/object-record/record-field/types/guards/isFieldLinksValue'; -import { isFieldLinkValue } from '@/object-record/record-field/types/guards/isFieldLinkValue'; import { isFieldMultiSelect } from '@/object-record/record-field/types/guards/isFieldMultiSelect'; import { isFieldMultiSelectValue } from '@/object-record/record-field/types/guards/isFieldMultiSelectValue'; import { isFieldNumber } from '@/object-record/record-field/types/guards/isFieldNumber'; @@ -112,6 +114,10 @@ export const isFieldValueEmpty = ({ ); } + if (isFieldActor(fieldDefinition)) { + return !isFieldActorValue(fieldValue) || isValueEmpty(fieldValue.name); + } + throw new Error( `Entity field type not supported in isFieldValueEmpty : ${fieldDefinition.type}}`, ); diff --git a/packages/twenty-front/src/modules/object-record/record-filter/utils/isRecordMatchingFilter.ts b/packages/twenty-front/src/modules/object-record/record-filter/utils/isRecordMatchingFilter.ts index 53f50c3a9..bf0b4a545 100644 --- a/packages/twenty-front/src/modules/object-record/record-filter/utils/isRecordMatchingFilter.ts +++ b/packages/twenty-front/src/modules/object-record/record-filter/utils/isRecordMatchingFilter.ts @@ -2,6 +2,7 @@ import { isObject } from '@sniptt/guards'; import { ObjectMetadataItem } from '@/object-metadata/types/ObjectMetadataItem'; import { + ActorFilter, AddressFilter, AndObjectRecordFilter, BooleanFilter, @@ -256,6 +257,17 @@ export const isRecordMatchingFilter = ({ value: record[filterKey].amountMicros, }); } + case FieldMetadataType.Actor: { + const actorFilter = filterValue as ActorFilter; + + return ( + actorFilter.name === undefined || + isMatchingStringFilter({ + stringFilter: actorFilter.name, + value: record[filterKey].name, + }) + ); + } case FieldMetadataType.Relation: { throw new Error( `Not implemented yet, use UUID filter instead on the corredponding "${filterKey}Id" field`, diff --git a/packages/twenty-front/src/modules/object-record/record-filter/utils/turnObjectDropdownFilterIntoQueryFilter.ts b/packages/twenty-front/src/modules/object-record/record-filter/utils/turnObjectDropdownFilterIntoQueryFilter.ts index 7cecb828b..159a064cf 100644 --- a/packages/twenty-front/src/modules/object-record/record-filter/utils/turnObjectDropdownFilterIntoQueryFilter.ts +++ b/packages/twenty-front/src/modules/object-record/record-filter/utils/turnObjectDropdownFilterIntoQueryFilter.ts @@ -1,6 +1,7 @@ import { isNonEmptyString } from '@sniptt/guards'; import { + ActorFilter, AddressFilter, CurrencyFilter, DateFilter, @@ -212,6 +213,22 @@ const applyEmptyFilters = ( [correspondingField.name + 'Id']: { is: 'NULL' } as RelationFilter, }; break; + case 'ACTOR': + emptyRecordFilter = { + or: [ + { + [correspondingField.name]: { + name: { ilike: '' }, + } as ActorFilter, + }, + { + [correspondingField.name]: { + name: { is: 'NULL' }, + } as ActorFilter, + }, + ], + }; + break; default: throw new Error(`Unsupported empty filter type ${filterType}`); } @@ -744,6 +761,51 @@ export const turnObjectDropdownFilterIntoQueryFilter = ( } break; } + case 'ACTOR': + switch (rawUIFilter.operand) { + case ViewFilterOperand.Contains: + objectRecordFilters.push({ + or: [ + { + [correspondingField.name]: { + name: { + ilike: `%${rawUIFilter.value}%`, + }, + } as ActorFilter, + }, + ], + }); + break; + case ViewFilterOperand.DoesNotContain: + objectRecordFilters.push({ + and: [ + { + not: { + [correspondingField.name]: { + name: { + ilike: `%${rawUIFilter.value}%`, + }, + } as ActorFilter, + }, + }, + ], + }); + break; + case ViewFilterOperand.IsEmpty: + case ViewFilterOperand.IsNotEmpty: + applyEmptyFilters( + rawUIFilter.operand, + correspondingField, + objectRecordFilters, + rawUIFilter.definition.type, + ); + break; + default: + throw new Error( + `Unknown operand ${rawUIFilter.operand} for ${rawUIFilter.definition.type} filter`, + ); + } + break; default: throw new Error('Unknown filter type'); } diff --git a/packages/twenty-front/src/modules/object-record/record-inline-cell/components/RecordInlineCell.tsx b/packages/twenty-front/src/modules/object-record/record-inline-cell/components/RecordInlineCell.tsx index a85c72ed3..278916867 100644 --- a/packages/twenty-front/src/modules/object-record/record-inline-cell/components/RecordInlineCell.tsx +++ b/packages/twenty-front/src/modules/object-record/record-inline-cell/components/RecordInlineCell.tsx @@ -14,6 +14,7 @@ import { RelationPickerHotkeyScope } from '@/object-record/relation-picker/types import { useInlineCell } from '../hooks/useInlineCell'; import { RecordInlineCellContainer } from './RecordInlineCellContainer'; +import { useIsFieldReadOnly } from '@/object-record/record-field/hooks/useIsFieldReadOnly'; type RecordInlineCellProps = { readonly?: boolean; @@ -32,8 +33,12 @@ export const RecordInlineCell = ({ const isFieldInputOnly = useIsFieldInputOnly(); + const isFieldReadOnly = useIsFieldReadOnly(); + const { closeInlineCell } = useInlineCell(); + const cellIsReadOnly = readonly || isFieldReadOnly; + const handleEnter: FieldInputEvent = (persistField) => { persistField(); closeInlineCell(); @@ -72,7 +77,7 @@ export const RecordInlineCell = ({ return ( } displayModeContent={} diff --git a/packages/twenty-front/src/modules/object-record/record-table/record-table-cell/components/RecordTableCellSoftFocusMode.tsx b/packages/twenty-front/src/modules/object-record/record-table/record-table-cell/components/RecordTableCellSoftFocusMode.tsx index 29c513857..b40114986 100644 --- a/packages/twenty-front/src/modules/object-record/record-table/record-table-cell/components/RecordTableCellSoftFocusMode.tsx +++ b/packages/twenty-front/src/modules/object-record/record-table/record-table-cell/components/RecordTableCellSoftFocusMode.tsx @@ -78,7 +78,11 @@ export const RecordTableCellSoftFocusMode = ({ useScopedHotkeys( Key.Enter, () => { - if (!isFieldInputOnly && !isCellReadOnly) { + if (isCellReadOnly) { + return; + } + + if (!isFieldInputOnly) { openTableCell(); } else { toggleEditOnlyInput(); @@ -91,6 +95,10 @@ export const RecordTableCellSoftFocusMode = ({ useScopedHotkeys( '*', (keyboardEvent) => { + if (isCellReadOnly) { + return; + } + if (!isFieldInputOnly) { const isWritingText = !isNonTextWritingKey(keyboardEvent.key) && @@ -150,6 +158,8 @@ export const RecordTableCellSoftFocusMode = ({ (!isFirstColumn || !isEmpty) && !isCellReadOnly; + const dontShowContent = isEmpty && isCellReadOnly; + return ( <> - {editModeContentOnly ? editModeContent : nonEditModeContent} + {dontShowContent ? ( + <> + ) : editModeContentOnly ? ( + editModeContent + ) : ( + nonEditModeContent + )} {showButton && ( diff --git a/packages/twenty-front/src/modules/object-record/spreadsheet-import/constants/CompositeFieldImportLabels.ts b/packages/twenty-front/src/modules/object-record/spreadsheet-import/constants/CompositeFieldImportLabels.ts index 3c5fa16d0..35a697bc1 100644 --- a/packages/twenty-front/src/modules/object-record/spreadsheet-import/constants/CompositeFieldImportLabels.ts +++ b/packages/twenty-front/src/modules/object-record/spreadsheet-import/constants/CompositeFieldImportLabels.ts @@ -30,4 +30,7 @@ export const COMPOSITE_FIELD_IMPORT_LABELS = { primaryLinkUrlLabel: 'Link URL', primaryLinkLabelLabel: 'Link Label', } satisfies Partial>, + [FieldMetadataType.Actor]: { + sourceLabel: 'Source', + }, }; diff --git a/packages/twenty-front/src/modules/object-record/spreadsheet-import/util/buildRecordFromImportedStructuredRow.ts b/packages/twenty-front/src/modules/object-record/spreadsheet-import/util/buildRecordFromImportedStructuredRow.ts index c354fc2ff..5ddbe0609 100644 --- a/packages/twenty-front/src/modules/object-record/spreadsheet-import/util/buildRecordFromImportedStructuredRow.ts +++ b/packages/twenty-front/src/modules/object-record/spreadsheet-import/util/buildRecordFromImportedStructuredRow.ts @@ -160,6 +160,11 @@ export const buildRecordFromImportedStructuredRow = ( }; } break; + case FieldMetadataType.Actor: + recordToBuild[field.name] = { + source: 'IMPORT', + }; + break; default: recordToBuild[field.name] = importedFieldValue; break; diff --git a/packages/twenty-front/src/modules/object-record/utils/generateEmptyFieldValue.ts b/packages/twenty-front/src/modules/object-record/utils/generateEmptyFieldValue.ts index f77e2be50..b83d2bdf0 100644 --- a/packages/twenty-front/src/modules/object-record/utils/generateEmptyFieldValue.ts +++ b/packages/twenty-front/src/modules/object-record/utils/generateEmptyFieldValue.ts @@ -87,6 +87,12 @@ export const generateEmptyFieldValue = ( case FieldMetadataType.RichText: { return null; } + case FieldMetadataType.Actor: { + return { + source: 'MANUAL', + name: '', + }; + } default: { throw new Error('Unhandled FieldMetadataType'); } diff --git a/packages/twenty-front/src/modules/settings/data-model/constants/SettingsFieldTypeConfigs.ts b/packages/twenty-front/src/modules/settings/data-model/constants/SettingsFieldTypeConfigs.ts index dd0f75991..71791488a 100644 --- a/packages/twenty-front/src/modules/settings/data-model/constants/SettingsFieldTypeConfigs.ts +++ b/packages/twenty-front/src/modules/settings/data-model/constants/SettingsFieldTypeConfigs.ts @@ -4,6 +4,7 @@ import { IconCheck, IconCoins, IconComponent, + IconCreativeCommonsSa, IconFilePencil, IconJson, IconKey, @@ -137,6 +138,10 @@ export const SETTINGS_FIELD_TYPE_CONFIGS = { Icon: IconFilePencil, defaultValue: { key: 'value' }, }, + [FieldMetadataType.Actor]: { + label: 'Actor', + Icon: IconCreativeCommonsSa, + }, } as const satisfies Record< SettingsSupportedFieldType, SettingsFieldTypeConfig diff --git a/packages/twenty-front/src/modules/ui/field/display/components/ActorDisplay.tsx b/packages/twenty-front/src/modules/ui/field/display/components/ActorDisplay.tsx new file mode 100644 index 000000000..ba107aa61 --- /dev/null +++ b/packages/twenty-front/src/modules/ui/field/display/components/ActorDisplay.tsx @@ -0,0 +1,50 @@ +import { FieldActorValue } from '@/object-record/record-field/types/FieldMetadata'; +import { useMemo } from 'react'; +import { + AvatarChip, + AvatarChipVariant, + IconApi, + IconCalendar, + IconCsv, + IconGmail, +} from 'twenty-ui'; + +type ActorDisplayProps = Partial & { + avatarUrl?: string | null; +}; + +export const ActorDisplay = ({ + name, + source, + workspaceMemberId, + avatarUrl, +}: ActorDisplayProps) => { + const LeftIcon = useMemo(() => { + switch (source) { + case 'API': + return IconApi; + case 'IMPORT': + return IconCsv; + case 'EMAIL': + return IconGmail; + case 'CALENDAR': + return IconCalendar; + default: + return undefined; + } + }, [source]); + + const isIconInverted = source === 'API' || source === 'IMPORT'; + + return ( + + ); +}; diff --git a/packages/twenty-front/src/modules/ui/field/display/components/__stories__/ActorDisplay.stories.tsx b/packages/twenty-front/src/modules/ui/field/display/components/__stories__/ActorDisplay.stories.tsx new file mode 100644 index 000000000..fd2b49063 --- /dev/null +++ b/packages/twenty-front/src/modules/ui/field/display/components/__stories__/ActorDisplay.stories.tsx @@ -0,0 +1,46 @@ +import { Meta, StoryObj } from '@storybook/react'; + +import { ComponentWithRouterDecorator } from '~/testing/decorators/ComponentWithRouterDecorator'; + +import { ActorDisplay } from '@/ui/field/display/components/ActorDisplay'; +import { CatalogDecorator } from 'twenty-ui'; + +const meta: Meta = { + title: 'UI/Display/ActorDisplay', + component: ActorDisplay, + args: { + name: 'John Doe', + }, + decorators: [ComponentWithRouterDecorator], +}; + +export default meta; + +type Story = StoryObj; + +export const Default: Story = {}; + +export const Catalog: Story = { + decorators: [CatalogDecorator], + parameters: { + catalog: { + dimensions: [ + { + name: 'source', + values: ['API', 'IMPORT', 'EMAIL', 'CALENDAR', 'MANUAL'], + props: (source: string) => ({ source }), + }, + { + name: 'workspaceMemberId', + values: [null, '123'], + props: (workspaceMemberId: string) => ({ workspaceMemberId }), + }, + { + name: 'avatarUrl', + values: [null, 'https://picsum.photos/16'], + props: (avatarUrl: string) => ({ avatarUrl }), + }, + ], + }, + }, +}; diff --git a/packages/twenty-front/src/modules/users/components/UserProviderEffect.tsx b/packages/twenty-front/src/modules/users/components/UserProviderEffect.tsx index 7213ffdda..4c51e6da4 100644 --- a/packages/twenty-front/src/modules/users/components/UserProviderEffect.tsx +++ b/packages/twenty-front/src/modules/users/components/UserProviderEffect.tsx @@ -2,6 +2,7 @@ import { useEffect, useState } from 'react'; import { useRecoilState, useSetRecoilState } from 'recoil'; import { currentUserState } from '@/auth/states/currentUserState'; +import { currentWorkspaceMembersState } from '@/auth/states/currentWorkspaceMembersStates'; import { currentWorkspaceMemberState } from '@/auth/states/currentWorkspaceMemberState'; import { currentWorkspaceState } from '@/auth/states/currentWorkspaceState'; import { isCurrentUserLoadedState } from '@/auth/states/isCurrentUserLoadingState'; @@ -13,6 +14,7 @@ import { detectTimeZone } from '@/localization/utils/detectTimeZone'; import { getDateFormatFromWorkspaceDateFormat } from '@/localization/utils/getDateFormatFromWorkspaceDateFormat'; import { getTimeFormatFromWorkspaceTimeFormat } from '@/localization/utils/getTimeFormatFromWorkspaceTimeFormat'; import { ColorScheme } from '@/workspace-member/types/WorkspaceMember'; +import { WorkspaceMember } from '~/generated-metadata/graphql'; import { useGetCurrentUserQuery } from '~/generated/graphql'; import { isDefined } from '~/utils/isDefined'; @@ -31,6 +33,9 @@ export const UserProviderEffect = () => { const setCurrentWorkspaceMember = useSetRecoilState( currentWorkspaceMemberState, ); + const setCurrentWorkspaceMembers = useSetRecoilState( + currentWorkspaceMembersState, + ); const { loading: queryLoading, data: queryData } = useGetCurrentUserQuery({ skip: isCurrentUserLoaded, @@ -47,15 +52,26 @@ export const UserProviderEffect = () => { setCurrentUser(queryData.currentUser); setCurrentWorkspace(queryData.currentUser.defaultWorkspace); - const { workspaceMember, workspaces: userWorkspaces } = - queryData.currentUser; + const { + workspaceMember, + workspaceMembers, + workspaces: userWorkspaces, + } = queryData.currentUser; - if (isDefined(workspaceMember)) { - setCurrentWorkspaceMember({ + const affectDefaultValuesOnEmptyWorkspaceMemberFields = ( + workspaceMember: WorkspaceMember, + ) => { + return { ...workspaceMember, colorScheme: (workspaceMember.colorScheme as ColorScheme) ?? 'Light', locale: workspaceMember.locale ?? 'en', - }); + }; + }; + + if (isDefined(workspaceMember)) { + setCurrentWorkspaceMember( + affectDefaultValuesOnEmptyWorkspaceMemberFields(workspaceMember), + ); // TODO: factorize setDateTimeFormat({ @@ -72,6 +88,13 @@ export const UserProviderEffect = () => { }); } + if (isDefined(workspaceMembers)) { + setCurrentWorkspaceMembers( + workspaceMembers.map(affectDefaultValuesOnEmptyWorkspaceMemberFields) ?? + [], + ); + } + if (isDefined(userWorkspaces)) { const workspaces = userWorkspaces .map(({ workspace }) => workspace) @@ -81,6 +104,7 @@ export const UserProviderEffect = () => { } }, [ setCurrentUser, + setCurrentWorkspaceMembers, isLoading, queryLoading, setCurrentWorkspace, diff --git a/packages/twenty-front/src/modules/users/graphql/fragments/userQueryFragment.ts b/packages/twenty-front/src/modules/users/graphql/fragments/userQueryFragment.ts index baaad11ca..0d1971e29 100644 --- a/packages/twenty-front/src/modules/users/graphql/fragments/userQueryFragment.ts +++ b/packages/twenty-front/src/modules/users/graphql/fragments/userQueryFragment.ts @@ -10,17 +10,10 @@ export const USER_QUERY_FRAGMENT = gql` supportUserHash onboardingStatus workspaceMember { - id - name { - firstName - lastName - } - colorScheme - avatarUrl - locale - timeZone - dateFormat - timeFormat + ...WorkspaceMemberQueryFragment + } + workspaceMembers { + ...WorkspaceMemberQueryFragment } defaultWorkspace { id diff --git a/packages/twenty-front/src/modules/workspace-member/grapqhql/fragments/workspaceMemberQueryFragment.ts b/packages/twenty-front/src/modules/workspace-member/grapqhql/fragments/workspaceMemberQueryFragment.ts new file mode 100644 index 000000000..16aa562ed --- /dev/null +++ b/packages/twenty-front/src/modules/workspace-member/grapqhql/fragments/workspaceMemberQueryFragment.ts @@ -0,0 +1,17 @@ +import { gql } from '@apollo/client'; + +export const USER_QUERY_FRAGMENT = gql` + fragment WorkspaceMemberQueryFragment on WorkspaceMember { + id + name { + firstName + lastName + } + colorScheme + avatarUrl + locale + timeZone + dateFormat + timeFormat + } +`; diff --git a/packages/twenty-front/src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldStep2.tsx b/packages/twenty-front/src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldStep2.tsx index 61207d602..b70ada9a1 100644 --- a/packages/twenty-front/src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldStep2.tsx +++ b/packages/twenty-front/src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldStep2.tsx @@ -164,6 +164,7 @@ export const SettingsObjectNewFieldStep2 = () => { FieldMetadataType.Link, FieldMetadataType.Numeric, FieldMetadataType.RichText, + FieldMetadataType.Actor, ] as const ).filter(isDefined); diff --git a/packages/twenty-front/src/testing/decorators/getFieldDecorator.tsx b/packages/twenty-front/src/testing/decorators/getFieldDecorator.tsx index a4aeee895..139396948 100644 --- a/packages/twenty-front/src/testing/decorators/getFieldDecorator.tsx +++ b/packages/twenty-front/src/testing/decorators/getFieldDecorator.tsx @@ -1,5 +1,5 @@ -import { useEffect } from 'react'; import { Decorator } from '@storybook/react'; +import { useEffect } from 'react'; import { useRecoilCallback } from 'recoil'; import { formatFieldMetadataItemAsColumnDefinition } from '@/object-metadata/utils/formatFieldMetadataItemAsColumnDefinition'; diff --git a/packages/twenty-front/src/testing/mock-data/generated/standard-metadata-query-result.ts b/packages/twenty-front/src/testing/mock-data/generated/standard-metadata-query-result.ts index 5af0f701b..af408a953 100644 --- a/packages/twenty-front/src/testing/mock-data/generated/standard-metadata-query-result.ts +++ b/packages/twenty-front/src/testing/mock-data/generated/standard-metadata-query-result.ts @@ -1,5 +1,5 @@ import { - ObjectMetadataItemsQuery + ObjectMetadataItemsQuery } from '~/generated-metadata/graphql'; // This file is not designed to be manually edited. @@ -8,13396 +8,15961 @@ import { export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = { __typename: 'Query', objects: { - "__typename": "ObjectConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjI4" - }, - "edges": [ - { - "__typename": "objectEdge", - "node": { - "__typename": "object", - "id": "ff218fee-2274-4c2e-91b2-ff56249ce144", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations", - "labelSingular": "Message Channel Message Association", - "labelPlural": "Message Channel Message Associations", - "description": "Message Synced with a Message Channel", - "icon": "IconMessage", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "labelIdentifierFieldMetadataId": null, - "imageIdentifierFieldMetadataId": null, - "fields": { - "__typename": "ObjectFieldsConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjEw" - }, - "edges": [ - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "a7e6e901-e96b-46fd-8138-4883b8a5107a", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "105bb68b-9422-40cb-9857-7c421a0ef844", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Update date", - "description": "Update date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "50f1dba6-68b1-4b91-8d2f-6f8a7dc00899", - "type": "UUID", - "name": "messageId", - "label": "Message Id id (foreign key)", - "description": "Message Id id foreign key", - "icon": "IconHash", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "ed7b7c8a-84ea-40c2-af56-8b34e4316585", - "type": "UUID", - "name": "messageChannelId", - "label": "Message Channel Id id (foreign key)", - "description": "Message Channel Id id foreign key", - "icon": "IconHash", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "57d32dec-d975-4e0d-bcd8-4fb4eaba978d", - "type": "RELATION", - "name": "messageThread", - "label": "Message Thread Id", - "description": "Message Thread Id", - "icon": "IconHash", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "8518d75e-58c3-46c2-a111-a43f3987bb5a", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "ff218fee-2274-4c2e-91b2-ff56249ce144", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "57d32dec-d975-4e0d-bcd8-4fb4eaba978d", - "name": "messageThread" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "8a811392-01fa-4725-bf18-6f94e60d9d8e", - "nameSingular": "messageThread", - "namePlural": "messageThreads" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "c89757a5-8251-4b4f-a5ec-8aba89a50a49", - "name": "messageChannelMessageAssociations" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "8518d75e-58c3-46c2-a111-a43f3987bb5a", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "c89757a5-8251-4b4f-a5ec-8aba89a50a49", - "fromObjectMetadata": { - "__typename": "object", - "id": "8a811392-01fa-4725-bf18-6f94e60d9d8e", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "messageThread", - "namePlural": "messageThreads", - "isSystem": true, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "24f85128-df33-47c7-8126-9bcb65670f76", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "uuid", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "0eedf2e2-3b5b-427c-9d6e-b5c3773856d2", - "type": "TEXT", - "name": "messageExternalId", - "label": "Message External Id", - "description": "Message id from the messaging provider", - "icon": "IconHash", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "e100f9e7-aff5-46ea-bff6-3239a01ea828", - "type": "RELATION", - "name": "message", - "label": "Message Id", - "description": "Message Id", - "icon": "IconHash", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "a098dd38-d544-43c2-ad72-eee88fa60b9c", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "ff218fee-2274-4c2e-91b2-ff56249ce144", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "e100f9e7-aff5-46ea-bff6-3239a01ea828", - "name": "message" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "ef2f11c1-d293-4774-bd79-006a8f367fd8", - "nameSingular": "message", - "namePlural": "messages" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "2950341d-338c-46ed-a866-61a5c397e558", - "name": "messageChannelMessageAssociations" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "a098dd38-d544-43c2-ad72-eee88fa60b9c", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "2950341d-338c-46ed-a866-61a5c397e558", - "fromObjectMetadata": { - "__typename": "object", - "id": "ef2f11c1-d293-4774-bd79-006a8f367fd8", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "message", - "namePlural": "messages", - "isSystem": true, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "4bddaa2a-d49f-414f-919e-d40f936af413", - "type": "UUID", - "name": "messageThreadId", - "label": "Message Thread Id id (foreign key)", - "description": "Message Thread Id id foreign key", - "icon": "IconHash", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "c279d1a1-b4a2-424a-b61f-cfe986b4b1f0", - "type": "TEXT", - "name": "messageThreadExternalId", - "label": "Thread External Id", - "description": "Thread id from the messaging provider", - "icon": "IconHash", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "57b02715-a5e9-42fc-92c2-23d8a4aac792", - "type": "RELATION", - "name": "messageChannel", - "label": "Message Channel Id", - "description": "Message Channel Id", - "icon": "IconHash", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "965a3bf0-b43a-4391-a26f-27a1bd30476f", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "ff218fee-2274-4c2e-91b2-ff56249ce144", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "57b02715-a5e9-42fc-92c2-23d8a4aac792", - "name": "messageChannel" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "ad8a423b-20c4-4545-abd3-1694294406e5", - "nameSingular": "messageChannel", - "namePlural": "messageChannels" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "198509cb-277f-4da0-acde-482cd52cd814", - "name": "messageChannelMessageAssociations" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "965a3bf0-b43a-4391-a26f-27a1bd30476f", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "198509cb-277f-4da0-acde-482cd52cd814", - "fromObjectMetadata": { - "__typename": "object", - "id": "ad8a423b-20c4-4545-abd3-1694294406e5", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "messageChannel", - "namePlural": "messageChannels", - "isSystem": true, - "isRemote": false - } - } - } - } - ] - } - } - }, - { - "__typename": "objectEdge", - "node": { - "__typename": "object", - "id": "f9fd99a8-108f-4066-9675-cde753cf5de9", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "company", - "namePlural": "companies", - "labelSingular": "Company", - "labelPlural": "Companies", - "description": "A company", - "icon": "IconBuildingSkyscraper", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "labelIdentifierFieldMetadataId": null, - "imageIdentifierFieldMetadataId": null, - "fields": { - "__typename": "ObjectFieldsConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjE5" - }, - "edges": [ - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "661391a1-6655-424b-b1c2-d8b5722aec49", - "type": "BOOLEAN", - "name": "idealCustomerProfile", - "label": "ICP", - "description": "Ideal Customer Profile: Indicates whether the company is the most suitable and valuable customer for you", - "icon": "IconTarget", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": false, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "29f5afd2-b0e3-43b9-bcd1-f9a767192dba", - "type": "RELATION", - "name": "people", - "label": "People", - "description": "People linked to the company.", - "icon": "IconUsers", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "2b293dd1-7b1e-4349-b77d-5d1effe53cf7", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "f9fd99a8-108f-4066-9675-cde753cf5de9", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "29f5afd2-b0e3-43b9-bcd1-f9a767192dba", - "name": "people" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "f90f0471-1042-4f38-a285-d870fb5a5a26", - "nameSingular": "person", - "namePlural": "people" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "8cfc11ef-201d-4fb6-9cfd-f82a872a3f77", - "name": "company" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "2b293dd1-7b1e-4349-b77d-5d1effe53cf7", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "8cfc11ef-201d-4fb6-9cfd-f82a872a3f77", - "toObjectMetadata": { - "__typename": "object", - "id": "f90f0471-1042-4f38-a285-d870fb5a5a26", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "person", - "namePlural": "people", - "isSystem": false, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "8fcf63f1-91cd-42c7-bc6d-99f21ab3e9af", - "type": "RELATION", - "name": "accountOwner", - "label": "Account Owner", - "description": "Your team member responsible for managing the company account", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "4d810e79-eae5-4212-984b-8e95632fd07d", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "f9fd99a8-108f-4066-9675-cde753cf5de9", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "8fcf63f1-91cd-42c7-bc6d-99f21ab3e9af", - "name": "accountOwner" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "79edf404-895d-4db5-9c93-140c547d5af9", - "name": "accountOwnerForCompanies" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "4d810e79-eae5-4212-984b-8e95632fd07d", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "79edf404-895d-4db5-9c93-140c547d5af9", - "fromObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers", - "isSystem": true, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "fb558bde-aad6-4d0b-a4c6-54750c530e5e", - "type": "RELATION", - "name": "attachments", - "label": "Attachments", - "description": "Attachments linked to the company", - "icon": "IconFileImport", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "36daf4c7-9fdf-48f3-9baf-a60d290b729c", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "f9fd99a8-108f-4066-9675-cde753cf5de9", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "fb558bde-aad6-4d0b-a4c6-54750c530e5e", - "name": "attachments" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "0c99085d-8a5a-4854-ad0d-ec29f3570f3a", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "8e9ba278-5293-4e30-9faf-369eb3459790", - "name": "company" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "36daf4c7-9fdf-48f3-9baf-a60d290b729c", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "8e9ba278-5293-4e30-9faf-369eb3459790", - "toObjectMetadata": { - "__typename": "object", - "id": "0c99085d-8a5a-4854-ad0d-ec29f3570f3a", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "attachment", - "namePlural": "attachments", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "e214ccd0-756d-49aa-ba7a-1b7b47ceaa65", - "type": "RELATION", - "name": "opportunities", - "label": "Opportunities", - "description": "Opportunities linked to the company.", - "icon": "IconTargetArrow", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "ab95d4bd-fa78-43b0-ba0b-7414a4bc85f0", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "f9fd99a8-108f-4066-9675-cde753cf5de9", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "e214ccd0-756d-49aa-ba7a-1b7b47ceaa65", - "name": "opportunities" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "afdbcc7a-95bc-4e30-917d-ba583448b405", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "fd2615ef-8c24-47e6-862c-ed2b0d9eddf4", - "name": "company" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "ab95d4bd-fa78-43b0-ba0b-7414a4bc85f0", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "fd2615ef-8c24-47e6-862c-ed2b0d9eddf4", - "toObjectMetadata": { - "__typename": "object", - "id": "afdbcc7a-95bc-4e30-917d-ba583448b405", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "opportunity", - "namePlural": "opportunities", - "isSystem": false, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "245f5a05-4fac-4e17-8a74-abb8113ca6a3", - "type": "CURRENCY", - "name": "annualRecurringRevenue", - "label": "ARR", - "description": "Annual Recurring Revenue: The actual or estimated annual revenue of the company", - "icon": "IconMoneybag", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": { - "amountMicros": null, - "currencyCode": "''" - }, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "8558d1d1-7c48-4222-a41f-acff24ea695b", - "type": "RELATION", - "name": "timelineActivities", - "label": "Timeline Activities", - "description": "Timeline Activities linked to the company", - "icon": "IconIconTimelineEvent", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "44825151-f568-4e5b-833a-70093068fb37", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "f9fd99a8-108f-4066-9675-cde753cf5de9", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "8558d1d1-7c48-4222-a41f-acff24ea695b", - "name": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "ae47ee7c-ea45-4273-94ee-336d1433ae33", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "0c27da2b-afde-48bc-90f4-c58c1f6bd1d1", - "name": "company" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "44825151-f568-4e5b-833a-70093068fb37", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "0c27da2b-afde-48bc-90f4-c58c1f6bd1d1", - "toObjectMetadata": { - "__typename": "object", - "id": "ae47ee7c-ea45-4273-94ee-336d1433ae33", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "516f8e21-ffe3-4d1c-814d-996048e8559e", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Company record position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "bdff89f8-3731-42f6-acb9-228181e8c99a", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "c66e1086-cbcf-46f8-abec-19d141a83a10", - "type": "NUMBER", - "name": "employees", - "label": "Employees", - "description": "Number of employees in the company", - "icon": "IconUsers", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "f80b2ce2-1836-4533-8c22-08eb8ebaa002", - "type": "TEXT", - "name": "address", - "label": "Address", - "description": "The company address", - "icon": "IconMap", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "78363357-09c3-450d-b335-9d9cd219b784", - "type": "TEXT", - "name": "name", - "label": "Name", - "description": "The company name", - "icon": "IconBuildingSkyscraper", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "6b97ae7c-9b97-4a8f-885b-7f8ee3122a7d", - "type": "LINKS", - "name": "domainName", - "label": "Domain Name", - "description": "The company website URL. We use this url to fetch the company icon", - "icon": "IconLink", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "efaa1ccd-4c1f-4d81-9d30-f93030d32190", - "type": "RELATION", - "name": "favorites", - "label": "Favorites", - "description": "Favorites linked to the company", - "icon": "IconHeart", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "b45f0926-607e-418f-9e26-613594f97868", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "f9fd99a8-108f-4066-9675-cde753cf5de9", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "efaa1ccd-4c1f-4d81-9d30-f93030d32190", - "name": "favorites" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "038a733b-641f-4f09-8509-c210e729e6c5", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "f56c8d42-3894-4ccf-8588-ad97d2a7df0a", - "name": "company" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "b45f0926-607e-418f-9e26-613594f97868", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "f56c8d42-3894-4ccf-8588-ad97d2a7df0a", - "toObjectMetadata": { - "__typename": "object", - "id": "038a733b-641f-4f09-8509-c210e729e6c5", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "favorite", - "namePlural": "favorites", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "dddef9c7-6dc3-492e-b35a-6e2b2e0eb1e6", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Update date", - "description": "Update date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "c5938b67-e0e5-471b-94eb-32bfc7f8b4c6", - "type": "RELATION", - "name": "activityTargets", - "label": "Activities", - "description": "Activities tied to the company", - "icon": "IconCheckbox", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "63a61588-de8c-47ec-b695-da342836625f", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "f9fd99a8-108f-4066-9675-cde753cf5de9", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "c5938b67-e0e5-471b-94eb-32bfc7f8b4c6", - "name": "activityTargets" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "b3db5174-865b-4da3-9c7f-fd2a816b3d90", - "nameSingular": "activityTarget", - "namePlural": "activityTargets" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "1e7a5c6f-b913-4349-a672-295018c2437c", - "name": "company" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "63a61588-de8c-47ec-b695-da342836625f", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "1e7a5c6f-b913-4349-a672-295018c2437c", - "toObjectMetadata": { - "__typename": "object", - "id": "b3db5174-865b-4da3-9c7f-fd2a816b3d90", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "activityTarget", - "namePlural": "activityTargets", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "d85ca4ac-d23a-4a72-8cec-95d1d9de84f5", - "type": "LINK", - "name": "xLink", - "label": "X", - "description": "The company Twitter/X account", - "icon": "IconBrandX", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": { - "url": "''", - "label": "''" - }, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "6d35699a-5f7b-44b9-843e-2f6a267a4d90", - "type": "LINK", - "name": "linkedinLink", - "label": "Linkedin", - "description": "The company Linkedin account", - "icon": "IconBrandLinkedin", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": { - "url": "''", - "label": "''" - }, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "688991bc-3bb7-4515-ab65-7b6a85cd791c", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "uuid", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "c09e6901-108d-48b4-a854-bd693104cbe5", - "type": "UUID", - "name": "accountOwnerId", - "label": "Account Owner id (foreign key)", - "description": "Your team member responsible for managing the company account id foreign key", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - } - ] - } - } - }, - { - "__typename": "objectEdge", - "node": { - "__typename": "object", - "id": "f90f0471-1042-4f38-a285-d870fb5a5a26", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "person", - "namePlural": "people", - "labelSingular": "Person", - "labelPlural": "People", - "description": "A person", - "icon": "IconUser", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "labelIdentifierFieldMetadataId": null, - "imageIdentifierFieldMetadataId": null, - "fields": { - "__typename": "ObjectFieldsConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjI5" - }, - "edges": [ - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "8c2a0d3d-3c52-4ae2-b78a-852b5775b377", - "type": "ADDRESS", - "name": "testAddress", - "label": "Test address", - "description": null, - "icon": "IconUsers", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:32:19.818Z", - "updatedAt": "2024-06-07T09:32:19.818Z", - "defaultValue": { - "addressLat": null, - "addressLng": null, - "addressCity": "''", - "addressState": "''", - "addressCountry": "''", - "addressStreet1": "''", - "addressStreet2": "''", - "addressPostcode": "''" - }, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "d987bd9a-f83b-4238-8260-42511d8f2aba", - "type": "UUID", - "name": "companyId", - "label": "Company id (foreign key)", - "description": "Contact’s company id foreign key", - "icon": "IconBuildingSkyscraper", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "2df6ebe6-7fc5-4220-b672-881788798001", - "type": "LINK", - "name": "xLink", - "label": "X", - "description": "Contact’s X/Twitter account", - "icon": "IconBrandX", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": { - "url": "''", - "label": "''" - }, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "64564882-8823-4b00-8cc5-2cc6d8cbc23c", - "type": "FULL_NAME", - "name": "name", - "label": "Name", - "description": "Contact’s name", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": { - "lastName": "''", - "firstName": "''" - }, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "8a0d463e-00b2-4053-b972-a4824a9dfbaf", - "type": "MULTI_SELECT", - "name": "testMultiSelect", - "label": "Test multi select", - "description": null, - "icon": "IconUsers", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:39:20.747Z", - "updatedAt": "2024-06-07T09:39:20.747Z", - "defaultValue": null, - "options": [ - { - "id": "c39d006a-4bef-4b8d-98ee-29ef7218750f", - "color": "green", - "label": "Option 1", - "value": "OPTION_1", - "position": 0 - }, - { - "id": "b7aa0c66-ba2f-434f-80ec-149a9325549f", - "color": "turquoise", - "label": "Option 2", - "value": "OPTION_2", - "position": 1 - }, - { - "id": "01b3d48b-3d29-4769-b9ab-b6dd029179ae", - "color": "sky", - "label": "Option 3", - "value": "OPTION_3", - "position": 2 - }, - { - "id": "438a6323-d33e-40ea-9ce8-0a6cd2db6ddf", - "color": "blue", - "label": "Option 4", - "value": "OPTION_4", - "position": 3 - }, - { - "id": "2d6449fd-7b3a-4c44-8892-7f4a5485ba7f", - "color": "purple", - "label": "Option 5", - "value": "OPTION_5", - "position": 4 - }, - { - "id": "78d6cb72-b065-4c9c-b4ee-d63b813bf6c4", - "color": "pink", - "label": "Option 6", - "value": "OPTION_6", - "position": 5 - } - ], - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "7b1e5fbc-1418-4e35-9df2-5f5e3b64a2dd", - "type": "RELATION", - "name": "messageParticipants", - "label": "Message Participants", - "description": "Message Participants", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "e2296019-f6ef-4bab-aa5e-2cd60b4c886c", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "f90f0471-1042-4f38-a285-d870fb5a5a26", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "7b1e5fbc-1418-4e35-9df2-5f5e3b64a2dd", - "name": "messageParticipants" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "810c0e7f-5e65-4d68-8596-1e585862bee9", - "nameSingular": "messageParticipant", - "namePlural": "messageParticipants" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "392dc86a-75b5-433e-9a1e-ef11e022e975", - "name": "person" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "e2296019-f6ef-4bab-aa5e-2cd60b4c886c", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "392dc86a-75b5-433e-9a1e-ef11e022e975", - "toObjectMetadata": { - "__typename": "object", - "id": "810c0e7f-5e65-4d68-8596-1e585862bee9", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "messageParticipant", - "namePlural": "messageParticipants", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "f75a661f-531f-4df3-a2da-0ffe1c34ac51", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Update date", - "description": "Update date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "a1f598f7-f449-40e5-84c7-69d31842f683", - "type": "LINKS", - "name": "testLinks", - "label": "Test links", - "description": null, - "icon": "IconUsers", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:32:46.002Z", - "updatedAt": "2024-06-07T09:37:05.524Z", - "defaultValue": { - "primaryLinkUrl": "''", - "secondaryLinks": null, - "primaryLinkLabel": "''" - }, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "2ab56606-c3b4-451e-a73a-c01c96f35055", - "type": "TEXT", - "name": "avatarUrl", - "label": "Avatar", - "description": "Contact’s avatar", - "icon": "IconFileUpload", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "dbb954bf-992b-4d62-b492-1dd25226b7e4", - "type": "DATE", - "name": "testDate", - "label": "Test date", - "description": null, - "icon": "IconUsers", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:38:48.913Z", - "updatedAt": "2024-06-07T09:38:48.913Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "812aea3f-b533-43a1-b8bd-b87aaa84c76e", - "type": "RELATION", - "name": "favorites", - "label": "Favorites", - "description": "Favorites linked to the contact", - "icon": "IconHeart", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "313373c0-98af-4e63-9ecd-e689302ea794", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "f90f0471-1042-4f38-a285-d870fb5a5a26", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "812aea3f-b533-43a1-b8bd-b87aaa84c76e", - "name": "favorites" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "038a733b-641f-4f09-8509-c210e729e6c5", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "83e3f065-3419-424d-b46e-76e0d422bacc", - "name": "person" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "313373c0-98af-4e63-9ecd-e689302ea794", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "83e3f065-3419-424d-b46e-76e0d422bacc", - "toObjectMetadata": { - "__typename": "object", - "id": "038a733b-641f-4f09-8509-c210e729e6c5", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "favorite", - "namePlural": "favorites", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "2e35f235-2139-478c-a540-e9bccd9c0a4d", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Person record Position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "31d8c0d4-a2a2-4d28-9ea2-d55f287d8999", - "type": "SELECT", - "name": "testSelect", - "label": "Test select", - "description": null, - "icon": "IconUsers", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:39:03.797Z", - "updatedAt": "2024-06-07T09:39:03.797Z", - "defaultValue": null, - "options": [ - { - "id": "05410d4f-3447-4b3a-836b-6724876ee9bc", - "color": "green", - "label": "Option 1", - "value": "OPTION_1", - "position": 0 - }, - { - "id": "d0165ddd-7ad5-4a19-9cfb-5596ebc4a41b", - "color": "turquoise", - "label": "Option 2", - "value": "OPTION_2", - "position": 1 - }, - { - "id": "d2747df7-44dc-4cd1-ae4d-76559bf35e4e", - "color": "sky", - "label": "Option 3", - "value": "OPTION_3", - "position": 2 - }, - { - "id": "696cdf92-d12c-4a74-ab57-70a9f7f62de9", - "color": "blue", - "label": "Option 4", - "value": "OPTION_4", - "position": 3 - }, - { - "id": "fc6ba02d-6853-490d-97e5-9ddea4f0ab20", - "color": "purple", - "label": "Option 5", - "value": "OPTION_5", - "position": 4 - } - ], - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "7a39618f-1aa7-4a6d-8965-fd6a1a4b7c20", - "type": "NUMBER", - "name": "testNumber", - "label": "Test number", - "description": null, - "icon": "IconUsers", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:38:36.510Z", - "updatedAt": "2024-06-07T09:38:36.510Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "062edd24-2b82-47b4-903c-4d5ba8756d9d", - "type": "BOOLEAN", - "name": "testBoolean", - "label": "Test boolean", - "description": null, - "icon": "IconUsers", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:32:57.922Z", - "updatedAt": "2024-06-07T09:39:40.715Z", - "defaultValue": true, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "a1ff7641-5c7f-4dce-8264-455666d77450", - "type": "LINK", - "name": "linkedinLink", - "label": "Linkedin", - "description": "Contact’s Linkedin account", - "icon": "IconBrandLinkedin", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": { - "url": "''", - "label": "''" - }, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "adcf8f46-55b8-4060-af85-cbdb82308aca", - "type": "RELATION", - "name": "timelineActivities", - "label": "Events", - "description": "Events linked to the company", - "icon": "IconTimelineEvent", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "05f685a8-eda1-4c8d-a367-4d165f1b5ee0", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "f90f0471-1042-4f38-a285-d870fb5a5a26", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "adcf8f46-55b8-4060-af85-cbdb82308aca", - "name": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "ae47ee7c-ea45-4273-94ee-336d1433ae33", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "d5c27551-c047-4409-8cfb-346056cb9b92", - "name": "person" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "05f685a8-eda1-4c8d-a367-4d165f1b5ee0", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "d5c27551-c047-4409-8cfb-346056cb9b92", - "toObjectMetadata": { - "__typename": "object", - "id": "ae47ee7c-ea45-4273-94ee-336d1433ae33", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "a2534d90-aaf2-474b-84da-77492ce31c0b", - "type": "EMAIL", - "name": "email", - "label": "Email", - "description": "Contact’s Email", - "icon": "IconMail", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "cd47c9fc-e5d1-43f5-ba2f-d3357b6d86c6", - "type": "TEXT", - "name": "city", - "label": "City", - "description": "Contact’s city", - "icon": "IconMap", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "dd71f23a-4717-475c-9765-df35ee7adf57", - "type": "LINK", - "name": "testLink", - "label": "Test link", - "description": null, - "icon": "IconUsers", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:32:35.068Z", - "updatedAt": "2024-06-07T09:37:13.904Z", - "defaultValue": { - "url": "''", - "label": "''" - }, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "5c9c1774-1f7d-4b7e-ba08-5ddd3dae09f1", - "type": "RELATION", - "name": "calendarEventParticipants", - "label": "Calendar Event Participants", - "description": "Calendar Event Participants", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "c8a635ef-198d-44a3-98cc-f803f5a1700f", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "f90f0471-1042-4f38-a285-d870fb5a5a26", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "5c9c1774-1f7d-4b7e-ba08-5ddd3dae09f1", - "name": "calendarEventParticipants" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "c8fcc468-5891-4938-abf8-ad4d99078d7c", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "9ff8ffc5-4747-4729-a72c-f2f9860b8aa2", - "name": "person" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "c8a635ef-198d-44a3-98cc-f803f5a1700f", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "9ff8ffc5-4747-4729-a72c-f2f9860b8aa2", - "toObjectMetadata": { - "__typename": "object", - "id": "c8fcc468-5891-4938-abf8-ad4d99078d7c", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "ccefd09d-2d62-4ac2-9920-a0dfd8603d9b", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "7dfcf973-36cd-4dd7-8405-31807108f465", - "type": "TEXT", - "name": "phone", - "label": "Phone", - "description": "Contact’s phone number", - "icon": "IconPhone", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "f67cab28-c0f0-4cc3-9878-366bf34d5d9d", - "type": "RAW_JSON", - "name": "testJson", - "label": "Test JSON", - "description": null, - "icon": "IconUsers", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:40:06.402Z", - "updatedAt": "2024-06-07T09:40:06.402Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "48459697-8b98-474d-a114-f4cc4b0a91b1", - "type": "RELATION", - "name": "activityTargets", - "label": "Activities", - "description": "Activities tied to the contact", - "icon": "IconCheckbox", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "b60d73fb-4bff-4c74-9376-e638bfd4a715", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "f90f0471-1042-4f38-a285-d870fb5a5a26", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "48459697-8b98-474d-a114-f4cc4b0a91b1", - "name": "activityTargets" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "b3db5174-865b-4da3-9c7f-fd2a816b3d90", - "nameSingular": "activityTarget", - "namePlural": "activityTargets" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "44a6181f-f572-4fc1-ba33-09c4499514a1", - "name": "person" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "b60d73fb-4bff-4c74-9376-e638bfd4a715", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "44a6181f-f572-4fc1-ba33-09c4499514a1", - "toObjectMetadata": { - "__typename": "object", - "id": "b3db5174-865b-4da3-9c7f-fd2a816b3d90", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "activityTarget", - "namePlural": "activityTargets", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "8cfc11ef-201d-4fb6-9cfd-f82a872a3f77", - "type": "RELATION", - "name": "company", - "label": "Company", - "description": "Contact’s company", - "icon": "IconBuildingSkyscraper", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "2b293dd1-7b1e-4349-b77d-5d1effe53cf7", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "f90f0471-1042-4f38-a285-d870fb5a5a26", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "8cfc11ef-201d-4fb6-9cfd-f82a872a3f77", - "name": "company" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "f9fd99a8-108f-4066-9675-cde753cf5de9", - "nameSingular": "company", - "namePlural": "companies" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "29f5afd2-b0e3-43b9-bcd1-f9a767192dba", - "name": "people" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "2b293dd1-7b1e-4349-b77d-5d1effe53cf7", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "29f5afd2-b0e3-43b9-bcd1-f9a767192dba", - "fromObjectMetadata": { - "__typename": "object", - "id": "f9fd99a8-108f-4066-9675-cde753cf5de9", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "company", - "namePlural": "companies", - "isSystem": false, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "137ce599-3dfe-4021-a437-03a787f74cec", - "type": "TEXT", - "name": "jobTitle", - "label": "Job Title", - "description": "Contact’s job title", - "icon": "IconBriefcase", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "326f4ddb-7e33-415a-8bee-11e886e08b52", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "uuid", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "3715c0ac-c16f-4db3-b9be-e908b787929e", - "type": "RATING", - "name": "testRating", - "label": "Test rating", - "description": null, - "icon": "IconUsers", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-17T13:03:52.175Z", - "updatedAt": "2024-06-17T13:03:52.175Z", - "defaultValue": null, - "options": [ - { - "id": "9876aaeb-91ac-4e02-b521-356ff0c0a6f9", - "label": "1", - "value": "RATING_1", - "position": 0 - }, - { - "id": "4651d042-0804-465b-8265-5fae554de3a8", - "label": "2", - "value": "RATING_2", - "position": 1 - }, - { - "id": "a6942bdd-a8c8-44f9-87fc-b9a7f64ee5dd", - "label": "3", - "value": "RATING_3", - "position": 2 - }, - { - "id": "a838666f-cd2f-4feb-a72f-d3447b23ad42", - "label": "4", - "value": "RATING_4", - "position": 3 - }, - { - "id": "428f765e-4792-4cea-8270-9dba60f45fd9", - "label": "5", - "value": "RATING_5", - "position": 4 - } - ], - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "489177bb-2349-4319-9fda-efb466487ccb", - "type": "RELATION", - "name": "pointOfContactForOpportunities", - "label": "POC for Opportunities", - "description": "Point of Contact for Opportunities", - "icon": "IconTargetArrow", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "cb2d1429-2bed-4ad5-9c4d-5637efbdb339", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "f90f0471-1042-4f38-a285-d870fb5a5a26", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "489177bb-2349-4319-9fda-efb466487ccb", - "name": "pointOfContactForOpportunities" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "afdbcc7a-95bc-4e30-917d-ba583448b405", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "c6008099-5271-43d6-9ab5-55a1d7be7d1b", - "name": "pointOfContact" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "cb2d1429-2bed-4ad5-9c4d-5637efbdb339", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "c6008099-5271-43d6-9ab5-55a1d7be7d1b", - "toObjectMetadata": { - "__typename": "object", - "id": "afdbcc7a-95bc-4e30-917d-ba583448b405", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "opportunity", - "namePlural": "opportunities", - "isSystem": false, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "50024036-0722-4727-bdff-ea073fcdc831", - "type": "RELATION", - "name": "attachments", - "label": "Attachments", - "description": "Attachments linked to the contact.", - "icon": "IconFileImport", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "4b99c7e5-a47e-4919-93fb-056f7813ce39", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "f90f0471-1042-4f38-a285-d870fb5a5a26", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "50024036-0722-4727-bdff-ea073fcdc831", - "name": "attachments" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "0c99085d-8a5a-4854-ad0d-ec29f3570f3a", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "179aa192-8b24-49ba-a9a2-e81b19f6ac6e", - "name": "person" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "4b99c7e5-a47e-4919-93fb-056f7813ce39", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "179aa192-8b24-49ba-a9a2-e81b19f6ac6e", - "toObjectMetadata": { - "__typename": "object", - "id": "0c99085d-8a5a-4854-ad0d-ec29f3570f3a", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "attachment", - "namePlural": "attachments", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - } - ] - } - } - }, - { - "__typename": "objectEdge", - "node": { - "__typename": "object", - "id": "f2785a7a-b2b7-4ce7-9042-ec63b49931eb", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "view", - "namePlural": "views", - "labelSingular": "View", - "labelPlural": "Views", - "description": "(System) Views", - "icon": "IconLayoutCollage", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "labelIdentifierFieldMetadataId": null, - "imageIdentifierFieldMetadataId": null, - "fields": { - "__typename": "ObjectFieldsConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjEz" - }, - "edges": [ - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "03ffaeae-992b-45f3-a3da-03fff10c93cb", - "type": "TEXT", - "name": "kanbanFieldMetadataId", - "label": "kanbanfieldMetadataId", - "description": "View Kanban column field", - "icon": null, - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "f254836c-5164-4125-9f6e-5f278fa08e5f", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "uuid", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "b97bc9bb-3e68-40d2-9b33-c2937915fc9f", - "type": "RELATION", - "name": "viewFields", - "label": "View Fields", - "description": "View Fields", - "icon": "IconTag", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "0e501570-837b-4473-af63-07400ce99b52", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "f2785a7a-b2b7-4ce7-9042-ec63b49931eb", - "nameSingular": "view", - "namePlural": "views" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "b97bc9bb-3e68-40d2-9b33-c2937915fc9f", - "name": "viewFields" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "7fb647a5-af0b-4f95-8428-fa72571a8bee", - "nameSingular": "viewField", - "namePlural": "viewFields" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "4f355b63-a015-488e-8d67-ea8c2c28e58a", - "name": "view" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "0e501570-837b-4473-af63-07400ce99b52", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "4f355b63-a015-488e-8d67-ea8c2c28e58a", - "toObjectMetadata": { - "__typename": "object", - "id": "7fb647a5-af0b-4f95-8428-fa72571a8bee", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "viewField", - "namePlural": "viewFields", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "4b4e38fe-4cf5-4504-8a62-f34f593dda92", - "type": "RELATION", - "name": "viewSorts", - "label": "View Sorts", - "description": "View Sorts", - "icon": "IconArrowsSort", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "d94fad0b-db58-4f7b-b546-5f86d645ebca", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "f2785a7a-b2b7-4ce7-9042-ec63b49931eb", - "nameSingular": "view", - "namePlural": "views" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "4b4e38fe-4cf5-4504-8a62-f34f593dda92", - "name": "viewSorts" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "a5521923-2a4f-4dff-8330-69ba0b26ea73", - "nameSingular": "viewSort", - "namePlural": "viewSorts" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "9daddfd5-c437-45cd-8070-311c049d36fb", - "name": "view" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "d94fad0b-db58-4f7b-b546-5f86d645ebca", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "9daddfd5-c437-45cd-8070-311c049d36fb", - "toObjectMetadata": { - "__typename": "object", - "id": "a5521923-2a4f-4dff-8330-69ba0b26ea73", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "viewSort", - "namePlural": "viewSorts", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "8a96c5d8-43e9-42f1-be4a-473189a316d6", - "type": "TEXT", - "name": "type", - "label": "Type", - "description": "View type", - "icon": null, - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "'table'", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "2d03e711-7791-4c1d-bb40-378232397120", - "type": "RELATION", - "name": "viewFilters", - "label": "View Filters", - "description": "View Filters", - "icon": "IconFilterBolt", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "09c6bd7d-7601-4dd2-b143-9f08b25a5566", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "f2785a7a-b2b7-4ce7-9042-ec63b49931eb", - "nameSingular": "view", - "namePlural": "views" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "2d03e711-7791-4c1d-bb40-378232397120", - "name": "viewFilters" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "8c617a9b-9e5e-4b8a-951e-4b4066786a26", - "nameSingular": "viewFilter", - "namePlural": "viewFilters" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "aaee6a8c-b7d4-4de0-9bdc-de5c1fe9b539", - "name": "view" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "09c6bd7d-7601-4dd2-b143-9f08b25a5566", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "aaee6a8c-b7d4-4de0-9bdc-de5c1fe9b539", - "toObjectMetadata": { - "__typename": "object", - "id": "8c617a9b-9e5e-4b8a-951e-4b4066786a26", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "viewFilter", - "namePlural": "viewFilters", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "cdf0bf44-ecd7-4404-b3b4-9b4859256482", - "type": "UUID", - "name": "objectMetadataId", - "label": "Object Metadata Id", - "description": "View target object", - "icon": null, - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "5b406d20-f904-4752-9ebf-25978bb59669", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "67f3e4d2-2139-4c0c-91a1-2dc423423e19", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "View position", - "icon": null, - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "31e2dd00-bff3-43e3-8c5f-cfa526acf891", - "type": "TEXT", - "name": "name", - "label": "Name", - "description": "View name", - "icon": null, - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "77397ee3-5f66-42fe-91a6-28bc02b4f577", - "type": "BOOLEAN", - "name": "isCompact", - "label": "Compact View", - "description": "Describes if the view is in compact mode", - "icon": null, - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": false, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "0bb67fec-fc79-40c0-b6cd-b48443ad8140", - "type": "TEXT", - "name": "icon", - "label": "Icon", - "description": "View icon", - "icon": null, - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "b61118a7-6518-4b9f-b04a-221044ee54db", - "type": "SELECT", - "name": "key", - "label": "Key", - "description": "View key", - "icon": null, - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "'INDEX'", - "options": [ - { - "id": "f4917981-10ac-401e-a10a-3b25ade2d591", - "color": "red", - "label": "Index", - "value": "INDEX", - "position": 0 - } - ], - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "a62d649e-477f-41f9-8db5-eb8dbf42ddf6", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Update date", - "description": "Update date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - } - ] - } - } - }, - { - "__typename": "objectEdge", - "node": { - "__typename": "object", - "id": "ef2f11c1-d293-4774-bd79-006a8f367fd8", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "message", - "namePlural": "messages", - "labelSingular": "Message", - "labelPlural": "Messages", - "description": "Message", - "icon": "IconMessage", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "labelIdentifierFieldMetadataId": null, - "imageIdentifierFieldMetadataId": null, - "fields": { - "__typename": "ObjectFieldsConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjEx" - }, - "edges": [ - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "e9ea5897-dc2f-4ec6-9973-90d07423db5b", - "type": "DATE_TIME", - "name": "receivedAt", - "label": "Received At", - "description": "The date the message was received", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "291d8c74-2bb0-4c3e-9ecf-8c395db03116", - "type": "SELECT", - "name": "direction", - "label": "Direction", - "description": "Message Direction", - "icon": "IconDirection", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "'incoming'", - "options": [ - { - "id": "74a83a9f-a1cd-4853-901b-16c519e49241", - "color": "green", - "label": "Incoming", - "value": "incoming", - "position": 0 - }, - { - "id": "81fb5d1f-26bd-44c1-9a17-bf4ec61c3e90", - "color": "blue", - "label": "Outgoing", - "value": "outgoing", - "position": 1 - } - ], - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "ed99d901-e5d9-4746-8114-bd57e6816f2d", - "type": "TEXT", - "name": "headerMessageId", - "label": "Header message Id", - "description": "Message id from the message header", - "icon": "IconHash", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "c896468d-8186-401c-8e75-11e8bdfca03a", - "type": "TEXT", - "name": "text", - "label": "Text", - "description": "Text", - "icon": "IconMessage", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "2950341d-338c-46ed-a866-61a5c397e558", - "type": "RELATION", - "name": "messageChannelMessageAssociations", - "label": "Message Channel Association", - "description": "Messages from the channel.", - "icon": "IconMessage", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "a098dd38-d544-43c2-ad72-eee88fa60b9c", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "ef2f11c1-d293-4774-bd79-006a8f367fd8", - "nameSingular": "message", - "namePlural": "messages" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "2950341d-338c-46ed-a866-61a5c397e558", - "name": "messageChannelMessageAssociations" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "ff218fee-2274-4c2e-91b2-ff56249ce144", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "e100f9e7-aff5-46ea-bff6-3239a01ea828", - "name": "message" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "a098dd38-d544-43c2-ad72-eee88fa60b9c", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "e100f9e7-aff5-46ea-bff6-3239a01ea828", - "toObjectMetadata": { - "__typename": "object", - "id": "ff218fee-2274-4c2e-91b2-ff56249ce144", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "e881701e-03c3-49ed-b0c7-c028f81244ab", - "type": "RELATION", - "name": "messageThread", - "label": "Message Thread Id", - "description": "Message Thread Id", - "icon": "IconHash", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "9ad26c7f-9db7-495b-b6d5-c49ea634d167", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "ef2f11c1-d293-4774-bd79-006a8f367fd8", - "nameSingular": "message", - "namePlural": "messages" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "e881701e-03c3-49ed-b0c7-c028f81244ab", - "name": "messageThread" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "8a811392-01fa-4725-bf18-6f94e60d9d8e", - "nameSingular": "messageThread", - "namePlural": "messageThreads" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "6737187a-370b-4331-82f9-e4b6c2461f0b", - "name": "messages" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "9ad26c7f-9db7-495b-b6d5-c49ea634d167", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "6737187a-370b-4331-82f9-e4b6c2461f0b", - "fromObjectMetadata": { - "__typename": "object", - "id": "8a811392-01fa-4725-bf18-6f94e60d9d8e", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "messageThread", - "namePlural": "messageThreads", - "isSystem": true, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "6f859303-fa24-4263-a49c-ef20e810c05f", - "type": "RELATION", - "name": "messageParticipants", - "label": "Message Participants", - "description": "Message Participants", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "5659a093-e3dc-4be7-9b49-9a6ab498671e", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "ef2f11c1-d293-4774-bd79-006a8f367fd8", - "nameSingular": "message", - "namePlural": "messages" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "6f859303-fa24-4263-a49c-ef20e810c05f", - "name": "messageParticipants" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "810c0e7f-5e65-4d68-8596-1e585862bee9", - "nameSingular": "messageParticipant", - "namePlural": "messageParticipants" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "776e54b2-db3d-4b75-84e6-3dc7e8a209ef", - "name": "message" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "5659a093-e3dc-4be7-9b49-9a6ab498671e", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "776e54b2-db3d-4b75-84e6-3dc7e8a209ef", - "toObjectMetadata": { - "__typename": "object", - "id": "810c0e7f-5e65-4d68-8596-1e585862bee9", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "messageParticipant", - "namePlural": "messageParticipants", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "3c8989d3-01cf-41a0-b298-3274b5516292", - "type": "UUID", - "name": "messageThreadId", - "label": "Message Thread Id id (foreign key)", - "description": "Message Thread Id id foreign key", - "icon": "IconHash", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "6c121683-c0e5-4788-a806-bf22408f0b7d", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "ea19287b-4e9b-4f7f-bbce-ef77aeedac7f", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Update date", - "description": "Update date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "9809268c-baf6-4d55-b05b-6a550905b7d2", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "uuid", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "657da315-4a91-402d-9203-621b592d8090", - "type": "TEXT", - "name": "subject", - "label": "Subject", - "description": "Subject", - "icon": "IconMessage", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - } - ] - } - } - }, - { - "__typename": "objectEdge", - "node": { - "__typename": "object", - "id": "e5c3675a-24bf-487c-828d-0b544dacff29", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "calendarEvent", - "namePlural": "calendarEvents", - "labelSingular": "Calendar event", - "labelPlural": "Calendar events", - "description": "Calendar events", - "icon": "IconCalendar", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "labelIdentifierFieldMetadataId": null, - "imageIdentifierFieldMetadataId": null, - "fields": { - "__typename": "ObjectFieldsConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjE3" - }, - "edges": [ - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "5c768823-df78-40a6-8793-16d25df63179", - "type": "RELATION", - "name": "calendarChannelEventAssociations", - "label": "Calendar Channel Event Associations", - "description": "Calendar Channel Event Associations", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "f91e1ab8-a08b-4bc6-916e-13d2e0228e14", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "e5c3675a-24bf-487c-828d-0b544dacff29", - "nameSingular": "calendarEvent", - "namePlural": "calendarEvents" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "5c768823-df78-40a6-8793-16d25df63179", - "name": "calendarChannelEventAssociations" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "09959589-4056-4bf3-86cc-ba3e2ad28e86", - "nameSingular": "calendarChannelEventAssociation", - "namePlural": "calendarChannelEventAssociations" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "2661566e-a215-4c93-8b62-7b558a5ebbf5", - "name": "calendarEvent" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "f91e1ab8-a08b-4bc6-916e-13d2e0228e14", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "2661566e-a215-4c93-8b62-7b558a5ebbf5", - "toObjectMetadata": { - "__typename": "object", - "id": "09959589-4056-4bf3-86cc-ba3e2ad28e86", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "calendarChannelEventAssociation", - "namePlural": "calendarChannelEventAssociations", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "e1791638-3b3c-411f-83f6-190bf51d3efa", - "type": "TEXT", - "name": "iCalUID", - "label": "iCal UID", - "description": "iCal UID", - "icon": "IconKey", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "0db24c06-22e4-4cb7-a5c2-07f6569162c8", - "type": "TEXT", - "name": "title", - "label": "Title", - "description": "Title", - "icon": "IconH1", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "a98ba601-e1fe-402a-8e36-51073465056e", - "type": "TEXT", - "name": "description", - "label": "Description", - "description": "Description", - "icon": "IconFileDescription", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "ad638363-3387-4f51-97ee-e0598367a124", - "type": "DATE_TIME", - "name": "startsAt", - "label": "Start Date", - "description": "Start Date", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "39a394f6-799f-4e7f-9995-7bc9ef771506", - "type": "DATE_TIME", - "name": "externalCreatedAt", - "label": "Creation DateTime", - "description": "Creation DateTime", - "icon": "IconCalendarPlus", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "121f84ea-ba41-427d-8ec6-7d61668d5a3f", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "fe6f579c-ca67-4f34-8f2a-b1678c0d4e62", - "type": "BOOLEAN", - "name": "isFullDay", - "label": "Is Full Day", - "description": "Is Full Day", - "icon": "Icon24Hours", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "95dbe93e-c028-4788-a503-af5f43433a4d", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "uuid", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "16fd4611-28df-4486-bb80-cd8d097f77b3", - "type": "TEXT", - "name": "recurringEventExternalId", - "label": "Recurring Event ID", - "description": "Recurring Event ID", - "icon": "IconHistory", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "4aaa900a-4c08-4c55-894b-049494f76703", - "type": "TEXT", - "name": "location", - "label": "Location", - "description": "Location", - "icon": "IconMapPin", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "cbae4816-654a-4d44-80ea-2e8fbc68cf28", - "type": "LINK", - "name": "conferenceLink", - "label": "Meet Link", - "description": "Meet Link", - "icon": "IconLink", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": { - "url": "''", - "label": "''" - }, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "b2c90089-1ba3-4d7c-aa00-f9e7989e7b1c", - "type": "DATE_TIME", - "name": "endsAt", - "label": "End Date", - "description": "End Date", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "e787b0b8-d449-4db9-991b-7eb48857d1e8", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Update date", - "description": "Update date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "e544155a-4088-44ad-9077-94dab2e4439c", - "type": "BOOLEAN", - "name": "isCanceled", - "label": "Is canceled", - "description": "Is canceled", - "icon": "IconCalendarCancel", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "55861e8d-d5eb-4449-9f5e-45f2b8c54c83", - "type": "TEXT", - "name": "conferenceSolution", - "label": "Conference Solution", - "description": "Conference Solution", - "icon": "IconScreenShare", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "ec570b60-fc06-4890-87cf-6d7560e00144", - "type": "RELATION", - "name": "calendarEventParticipants", - "label": "Event Participants", - "description": "Event Participants", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "cb00e32f-5536-4b7e-b4e2-8dad8d7b03fe", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "e5c3675a-24bf-487c-828d-0b544dacff29", - "nameSingular": "calendarEvent", - "namePlural": "calendarEvents" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "ec570b60-fc06-4890-87cf-6d7560e00144", - "name": "calendarEventParticipants" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "c8fcc468-5891-4938-abf8-ad4d99078d7c", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "7d899bb1-3299-4f60-a08a-b79b44526161", - "name": "calendarEvent" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "cb00e32f-5536-4b7e-b4e2-8dad8d7b03fe", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "7d899bb1-3299-4f60-a08a-b79b44526161", - "toObjectMetadata": { - "__typename": "object", - "id": "c8fcc468-5891-4938-abf8-ad4d99078d7c", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "606f81d2-7ee1-4c42-9f7b-eede30e1c343", - "type": "DATE_TIME", - "name": "externalUpdatedAt", - "label": "Update DateTime", - "description": "Update DateTime", - "icon": "IconCalendarCog", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - } - ] - } - } - }, - { - "__typename": "objectEdge", - "node": { - "__typename": "object", - "id": "c8fcc468-5891-4938-abf8-ad4d99078d7c", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants", - "labelSingular": "Calendar event participant", - "labelPlural": "Calendar event participants", - "description": "Calendar event participants", - "icon": "IconCalendar", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "labelIdentifierFieldMetadataId": null, - "imageIdentifierFieldMetadataId": null, - "fields": { - "__typename": "ObjectFieldsConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjEy" - }, - "edges": [ - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "39982c0b-ce01-4c25-8e79-0717cf9c7ae0", - "type": "UUID", - "name": "personId", - "label": "Person id (foreign key)", - "description": "Person id foreign key", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "b8317d6b-5aba-4475-bba9-c62bc5426986", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Update date", - "description": "Update date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "96c5cb56-4598-4109-a33e-a666b022d600", - "type": "RELATION", - "name": "workspaceMember", - "label": "Workspace Member", - "description": "Workspace Member", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "4d2b18e2-8704-42ee-994d-cf8e83e1c217", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "c8fcc468-5891-4938-abf8-ad4d99078d7c", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "96c5cb56-4598-4109-a33e-a666b022d600", - "name": "workspaceMember" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "23293e02-6b84-4f0a-beba-e4325714fc9f", - "name": "calendarEventParticipants" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "4d2b18e2-8704-42ee-994d-cf8e83e1c217", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "23293e02-6b84-4f0a-beba-e4325714fc9f", - "fromObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers", - "isSystem": true, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "6e6927c9-99bc-4a81-ad52-e42a6b2df882", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "uuid", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "9ff8ffc5-4747-4729-a72c-f2f9860b8aa2", - "type": "RELATION", - "name": "person", - "label": "Person", - "description": "Person", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "c8a635ef-198d-44a3-98cc-f803f5a1700f", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "c8fcc468-5891-4938-abf8-ad4d99078d7c", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "9ff8ffc5-4747-4729-a72c-f2f9860b8aa2", - "name": "person" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "f90f0471-1042-4f38-a285-d870fb5a5a26", - "nameSingular": "person", - "namePlural": "people" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "5c9c1774-1f7d-4b7e-ba08-5ddd3dae09f1", - "name": "calendarEventParticipants" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "c8a635ef-198d-44a3-98cc-f803f5a1700f", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "5c9c1774-1f7d-4b7e-ba08-5ddd3dae09f1", - "fromObjectMetadata": { - "__typename": "object", - "id": "f90f0471-1042-4f38-a285-d870fb5a5a26", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "person", - "namePlural": "people", - "isSystem": false, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "3570fbbb-6f30-4fea-b2dc-d59705205292", - "type": "BOOLEAN", - "name": "isOrganizer", - "label": "Is Organizer", - "description": "Is Organizer", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": false, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "cbccda72-9d0c-4671-87fe-b359fe297c07", - "type": "UUID", - "name": "workspaceMemberId", - "label": "Workspace Member id (foreign key)", - "description": "Workspace Member id foreign key", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "5d95c937-e52a-423e-b96a-267d75af016b", - "type": "TEXT", - "name": "displayName", - "label": "Display Name", - "description": "Display Name", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "9194d530-4a04-4a20-b0a9-5601eefa2720", - "type": "TEXT", - "name": "handle", - "label": "Handle", - "description": "Handle", - "icon": "IconMail", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "80bd7163-1c7e-47fe-935d-3f76ac88011d", - "type": "UUID", - "name": "calendarEventId", - "label": "Event ID id (foreign key)", - "description": "Event ID id foreign key", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "9f6f6e26-d374-4ee5-93e0-c516af7549f9", - "type": "SELECT", - "name": "responseStatus", - "label": "Response Status", - "description": "Response Status", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "'NEEDS_ACTION'", - "options": [ - { - "id": "268caccb-5fe4-4725-af32-5cad01cca203", - "color": "orange", - "label": "Needs Action", - "value": "NEEDS_ACTION", - "position": 0 - }, - { - "id": "a51fbd8d-fe17-4b5e-adbc-ea4373174efa", - "color": "red", - "label": "Declined", - "value": "DECLINED", - "position": 1 - }, - { - "id": "e4c00b38-b08c-4231-ab81-1b0461bd8354", - "color": "yellow", - "label": "Tentative", - "value": "TENTATIVE", - "position": 2 - }, - { - "id": "5cc2551a-877b-4498-b83f-9d04ef3477a1", - "color": "green", - "label": "Accepted", - "value": "ACCEPTED", - "position": 3 - } - ], - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "c2c52d5b-ad26-4cf6-b69b-471c48f2225c", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "7d899bb1-3299-4f60-a08a-b79b44526161", - "type": "RELATION", - "name": "calendarEvent", - "label": "Event ID", - "description": "Event ID", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "cb00e32f-5536-4b7e-b4e2-8dad8d7b03fe", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "c8fcc468-5891-4938-abf8-ad4d99078d7c", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "7d899bb1-3299-4f60-a08a-b79b44526161", - "name": "calendarEvent" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "e5c3675a-24bf-487c-828d-0b544dacff29", - "nameSingular": "calendarEvent", - "namePlural": "calendarEvents" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "ec570b60-fc06-4890-87cf-6d7560e00144", - "name": "calendarEventParticipants" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "cb00e32f-5536-4b7e-b4e2-8dad8d7b03fe", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "ec570b60-fc06-4890-87cf-6d7560e00144", - "fromObjectMetadata": { - "__typename": "object", - "id": "e5c3675a-24bf-487c-828d-0b544dacff29", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "calendarEvent", - "namePlural": "calendarEvents", - "isSystem": true, - "isRemote": false - } - } - } - } - ] - } - } - }, - { - "__typename": "objectEdge", - "node": { - "__typename": "object", - "id": "bbed2598-c2be-4b73-9e5b-eb40a9323c02", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "behavioralEvent", - "namePlural": "behavioralEvents", - "labelSingular": "Behavioral Event", - "labelPlural": "Behavioral Events", - "description": "An event related to user behavior", - "icon": "IconIconTimelineEvent", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "labelIdentifierFieldMetadataId": null, - "imageIdentifierFieldMetadataId": null, - "fields": { - "__typename": "ObjectFieldsConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjc=" - }, - "edges": [ - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "f390d049-b453-4b64-98f9-45ee44d64085", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Update date", - "description": "Update date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "f6a59ead-47f2-4486-869e-6346fa6f17a7", - "type": "RAW_JSON", - "name": "properties", - "label": "Event details", - "description": "Json value for event details", - "icon": "IconListDetails", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "cf25403b-cef6-45f5-a1a6-e10ea62bc857", - "type": "RAW_JSON", - "name": "context", - "label": "Event context", - "description": "Json object to provide context (user, device, workspace, etc.)", - "icon": "IconListDetails", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "fed1ea0a-df2b-48f1-acbe-8cec4a6bca4a", - "type": "UUID", - "name": "recordId", - "label": "Object id", - "description": "Event name/type", - "icon": "IconAbc", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "a5e596fe-eef0-4c72-b360-b544537b3701", - "type": "TEXT", - "name": "name", - "label": "Event name", - "description": "Event name", - "icon": "IconAbc", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "400cb214-99f4-47c9-9b50-35ba2ca1cb3a", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "uuid", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "d39e160d-8475-4af7-84d4-918802337279", - "type": "TEXT", - "name": "objectName", - "label": "Object name", - "description": "If the event is related to a particular object", - "icon": "IconAbc", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "d8f3114b-0d29-4ae1-9908-f66f3d140c70", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - } - ] - } - } - }, - { - "__typename": "objectEdge", - "node": { - "__typename": "object", - "id": "b3db5174-865b-4da3-9c7f-fd2a816b3d90", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "activityTarget", - "namePlural": "activityTargets", - "labelSingular": "Activity Target", - "labelPlural": "Activity Targets", - "description": "An activity target", - "icon": "IconCheckbox", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "labelIdentifierFieldMetadataId": null, - "imageIdentifierFieldMetadataId": null, - "fields": { - "__typename": "ObjectFieldsConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjEw" - }, - "edges": [ - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "44a6181f-f572-4fc1-ba33-09c4499514a1", - "type": "RELATION", - "name": "person", - "label": "Person", - "description": "ActivityTarget person", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "b60d73fb-4bff-4c74-9376-e638bfd4a715", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "b3db5174-865b-4da3-9c7f-fd2a816b3d90", - "nameSingular": "activityTarget", - "namePlural": "activityTargets" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "44a6181f-f572-4fc1-ba33-09c4499514a1", - "name": "person" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "f90f0471-1042-4f38-a285-d870fb5a5a26", - "nameSingular": "person", - "namePlural": "people" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "48459697-8b98-474d-a114-f4cc4b0a91b1", - "name": "activityTargets" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "b60d73fb-4bff-4c74-9376-e638bfd4a715", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "48459697-8b98-474d-a114-f4cc4b0a91b1", - "fromObjectMetadata": { - "__typename": "object", - "id": "f90f0471-1042-4f38-a285-d870fb5a5a26", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "person", - "namePlural": "people", - "isSystem": false, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "8d059d8f-27ed-4aac-8655-aa3d9ea0f9ad", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "3fd9a59f-3aaa-445a-b1b6-484834f4c243", - "type": "RELATION", - "name": "opportunity", - "label": "Opportunity", - "description": "ActivityTarget opportunity", - "icon": "IconTargetArrow", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "a38b4570-f4ad-42ba-91ca-3b0700594ab6", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "b3db5174-865b-4da3-9c7f-fd2a816b3d90", - "nameSingular": "activityTarget", - "namePlural": "activityTargets" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "3fd9a59f-3aaa-445a-b1b6-484834f4c243", - "name": "opportunity" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "afdbcc7a-95bc-4e30-917d-ba583448b405", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "cd5b7961-afe1-41e3-9c20-a17c5beb45d7", - "name": "activityTargets" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "a38b4570-f4ad-42ba-91ca-3b0700594ab6", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "cd5b7961-afe1-41e3-9c20-a17c5beb45d7", - "fromObjectMetadata": { - "__typename": "object", - "id": "afdbcc7a-95bc-4e30-917d-ba583448b405", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "opportunity", - "namePlural": "opportunities", - "isSystem": false, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "d200e261-66cd-4566-8d6f-20cb987087cd", - "type": "UUID", - "name": "personId", - "label": "Person id (foreign key)", - "description": "ActivityTarget person id foreign key", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "5912ae34-73a5-46da-b5f9-7c21e0dd9676", - "type": "UUID", - "name": "opportunityId", - "label": "Opportunity id (foreign key)", - "description": "ActivityTarget opportunity id foreign key", - "icon": "IconTargetArrow", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "ae7632c8-8b1d-403e-b1c5-c166ce746d39", - "type": "UUID", - "name": "activityId", - "label": "Activity id (foreign key)", - "description": "ActivityTarget activity id foreign key", - "icon": "IconNotes", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "2a2012d8-9255-4c18-9577-2981ea7fe11a", - "type": "RELATION", - "name": "activity", - "label": "Activity", - "description": "ActivityTarget activity", - "icon": "IconNotes", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "d08d2845-f4ab-4369-a188-8abdb71e150d", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "b3db5174-865b-4da3-9c7f-fd2a816b3d90", - "nameSingular": "activityTarget", - "namePlural": "activityTargets" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "2a2012d8-9255-4c18-9577-2981ea7fe11a", - "name": "activity" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "723221aa-d945-4667-9563-3d06186d7f14", - "nameSingular": "activity", - "namePlural": "activities" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "72ffadfa-ecda-4c78-8a68-f82d442b553d", - "name": "activityTargets" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "d08d2845-f4ab-4369-a188-8abdb71e150d", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "72ffadfa-ecda-4c78-8a68-f82d442b553d", - "fromObjectMetadata": { - "__typename": "object", - "id": "723221aa-d945-4667-9563-3d06186d7f14", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "activity", - "namePlural": "activities", - "isSystem": true, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "1e7a5c6f-b913-4349-a672-295018c2437c", - "type": "RELATION", - "name": "company", - "label": "Company", - "description": "ActivityTarget company", - "icon": "IconBuildingSkyscraper", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "63a61588-de8c-47ec-b695-da342836625f", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "b3db5174-865b-4da3-9c7f-fd2a816b3d90", - "nameSingular": "activityTarget", - "namePlural": "activityTargets" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "1e7a5c6f-b913-4349-a672-295018c2437c", - "name": "company" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "f9fd99a8-108f-4066-9675-cde753cf5de9", - "nameSingular": "company", - "namePlural": "companies" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "c5938b67-e0e5-471b-94eb-32bfc7f8b4c6", - "name": "activityTargets" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "63a61588-de8c-47ec-b695-da342836625f", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "c5938b67-e0e5-471b-94eb-32bfc7f8b4c6", - "fromObjectMetadata": { - "__typename": "object", - "id": "f9fd99a8-108f-4066-9675-cde753cf5de9", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "company", - "namePlural": "companies", - "isSystem": false, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "3bd3da79-374b-444c-8591-9ce9296d496d", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "uuid", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "a56fc074-50fa-4a72-ba1d-9514a552f75b", - "type": "UUID", - "name": "companyId", - "label": "Company id (foreign key)", - "description": "ActivityTarget company id foreign key", - "icon": "IconBuildingSkyscraper", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "79569d3b-f7d6-480a-b62f-0e87124e7bce", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Update date", - "description": "Update date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - } - ] - } - } - }, - { - "__typename": "objectEdge", - "node": { - "__typename": "object", - "id": "afdbcc7a-95bc-4e30-917d-ba583448b405", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "opportunity", - "namePlural": "opportunities", - "labelSingular": "Opportunity", - "labelPlural": "Opportunities", - "description": "An opportunity", - "icon": "IconTargetArrow", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "labelIdentifierFieldMetadataId": null, - "imageIdentifierFieldMetadataId": null, - "fields": { - "__typename": "ObjectFieldsConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjE2" - }, - "edges": [ - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "cbd58f16-c99d-4d6b-80b3-aa27b3e72b9d", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "uuid", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "8ee597ac-9683-4eb9-b1dd-41e46f67f8bc", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Opportunity record position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "170c324a-821f-4c5d-a25f-a7443b2f751d", - "type": "RELATION", - "name": "favorites", - "label": "Favorites", - "description": "Favorites linked to the opportunity", - "icon": "IconHeart", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "f9177e4d-571d-450a-babb-c109af5b18d6", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "afdbcc7a-95bc-4e30-917d-ba583448b405", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "170c324a-821f-4c5d-a25f-a7443b2f751d", - "name": "favorites" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "038a733b-641f-4f09-8509-c210e729e6c5", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "8fa8a81e-f9b8-4eb6-a9b4-729b1f1c75a9", - "name": "opportunity" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "f9177e4d-571d-450a-babb-c109af5b18d6", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "8fa8a81e-f9b8-4eb6-a9b4-729b1f1c75a9", - "toObjectMetadata": { - "__typename": "object", - "id": "038a733b-641f-4f09-8509-c210e729e6c5", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "favorite", - "namePlural": "favorites", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "fd2615ef-8c24-47e6-862c-ed2b0d9eddf4", - "type": "RELATION", - "name": "company", - "label": "Company", - "description": "Opportunity company", - "icon": "IconBuildingSkyscraper", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "ab95d4bd-fa78-43b0-ba0b-7414a4bc85f0", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "afdbcc7a-95bc-4e30-917d-ba583448b405", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "fd2615ef-8c24-47e6-862c-ed2b0d9eddf4", - "name": "company" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "f9fd99a8-108f-4066-9675-cde753cf5de9", - "nameSingular": "company", - "namePlural": "companies" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "e214ccd0-756d-49aa-ba7a-1b7b47ceaa65", - "name": "opportunities" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "ab95d4bd-fa78-43b0-ba0b-7414a4bc85f0", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "e214ccd0-756d-49aa-ba7a-1b7b47ceaa65", - "fromObjectMetadata": { - "__typename": "object", - "id": "f9fd99a8-108f-4066-9675-cde753cf5de9", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "company", - "namePlural": "companies", - "isSystem": false, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "ae3d5dd4-343d-4b4d-a426-56d1675ce0c3", - "type": "SELECT", - "name": "stage", - "label": "Stage", - "description": "Opportunity stage", - "icon": "IconProgressCheck", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "'NEW'", - "options": [ - { - "id": "419b0355-6c4c-48a4-99c8-7ce7d51aab04", - "color": "red", - "label": "New", - "value": "NEW", - "position": 0 - }, - { - "id": "46f62b9a-6905-491d-a5aa-be64761793b9", - "color": "purple", - "label": "Screening", - "value": "SCREENING", - "position": 1 - }, - { - "id": "9acd3622-57c1-4636-8818-7fbbed9126fb", - "color": "sky", - "label": "Meeting", - "value": "MEETING", - "position": 2 - }, - { - "id": "3b130324-43ee-4fea-a599-60fb7a45563f", - "color": "turquoise", - "label": "Proposal", - "value": "PROPOSAL", - "position": 3 - }, - { - "id": "753a4a31-374c-4040-91d4-f6fba1e7929c", - "color": "yellow", - "label": "Customer", - "value": "CUSTOMER", - "position": 4 - } - ], - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "c6008099-5271-43d6-9ab5-55a1d7be7d1b", - "type": "RELATION", - "name": "pointOfContact", - "label": "Point of Contact", - "description": "Opportunity point of contact", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "cb2d1429-2bed-4ad5-9c4d-5637efbdb339", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "afdbcc7a-95bc-4e30-917d-ba583448b405", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "c6008099-5271-43d6-9ab5-55a1d7be7d1b", - "name": "pointOfContact" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "f90f0471-1042-4f38-a285-d870fb5a5a26", - "nameSingular": "person", - "namePlural": "people" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "489177bb-2349-4319-9fda-efb466487ccb", - "name": "pointOfContactForOpportunities" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "cb2d1429-2bed-4ad5-9c4d-5637efbdb339", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "489177bb-2349-4319-9fda-efb466487ccb", - "fromObjectMetadata": { - "__typename": "object", - "id": "f90f0471-1042-4f38-a285-d870fb5a5a26", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "person", - "namePlural": "people", - "isSystem": false, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "23c40fc1-3f1f-40b2-a5cd-5ecec3294469", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "2dd0b2c4-ce5d-4783-a180-b48f8972369a", - "type": "RELATION", - "name": "attachments", - "label": "Attachments", - "description": "Attachments linked to the opportunity", - "icon": "IconFileImport", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "3219f278-8658-410d-ae56-a795d52aee58", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "afdbcc7a-95bc-4e30-917d-ba583448b405", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "2dd0b2c4-ce5d-4783-a180-b48f8972369a", - "name": "attachments" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "0c99085d-8a5a-4854-ad0d-ec29f3570f3a", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "61379090-02cf-4f96-8dee-6f5761323e9f", - "name": "opportunity" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "3219f278-8658-410d-ae56-a795d52aee58", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "61379090-02cf-4f96-8dee-6f5761323e9f", - "toObjectMetadata": { - "__typename": "object", - "id": "0c99085d-8a5a-4854-ad0d-ec29f3570f3a", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "attachment", - "namePlural": "attachments", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "c7180ca6-9d2a-480f-994a-e96a0935ea3a", - "type": "CURRENCY", - "name": "amount", - "label": "Amount", - "description": "Opportunity amount", - "icon": "IconCurrencyDollar", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": { - "amountMicros": null, - "currencyCode": "''" - }, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "92853a60-273a-4e96-aca1-1f618abc123e", - "type": "DATE_TIME", - "name": "closeDate", - "label": "Close date", - "description": "Opportunity close date", - "icon": "IconCalendarEvent", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "80c1a65d-c475-4ce5-8ff4-533e2d75b2dc", - "type": "TEXT", - "name": "name", - "label": "Name", - "description": "The opportunity name", - "icon": "IconTargetArrow", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "e81bc2e2-9259-4b4d-a1a0-9e53c3f1b2e4", - "type": "UUID", - "name": "pointOfContactId", - "label": "Point of Contact id (foreign key)", - "description": "Opportunity point of contact id foreign key", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "0940cf42-487e-4c91-8cf7-5742aeace973", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Update date", - "description": "Update date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "5ca7bb66-e757-4764-99da-3c8e974197a5", - "type": "UUID", - "name": "companyId", - "label": "Company id (foreign key)", - "description": "Opportunity company id foreign key", - "icon": "IconBuildingSkyscraper", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "cd5b7961-afe1-41e3-9c20-a17c5beb45d7", - "type": "RELATION", - "name": "activityTargets", - "label": "Activities", - "description": "Activities tied to the opportunity", - "icon": "IconCheckbox", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "a38b4570-f4ad-42ba-91ca-3b0700594ab6", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "afdbcc7a-95bc-4e30-917d-ba583448b405", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "cd5b7961-afe1-41e3-9c20-a17c5beb45d7", - "name": "activityTargets" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "b3db5174-865b-4da3-9c7f-fd2a816b3d90", - "nameSingular": "activityTarget", - "namePlural": "activityTargets" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "3fd9a59f-3aaa-445a-b1b6-484834f4c243", - "name": "opportunity" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "a38b4570-f4ad-42ba-91ca-3b0700594ab6", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "3fd9a59f-3aaa-445a-b1b6-484834f4c243", - "toObjectMetadata": { - "__typename": "object", - "id": "b3db5174-865b-4da3-9c7f-fd2a816b3d90", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "activityTarget", - "namePlural": "activityTargets", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "ca06db11-c292-4226-9555-d0d49f249fc4", - "type": "RELATION", - "name": "timelineActivities", - "label": "Timeline Activities", - "description": "Timeline Activities linked to the opportunity.", - "icon": "IconTimelineEvent", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "ec6a5670-6853-4d3c-8b8e-6580bd5584dc", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "afdbcc7a-95bc-4e30-917d-ba583448b405", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "ca06db11-c292-4226-9555-d0d49f249fc4", - "name": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "ae47ee7c-ea45-4273-94ee-336d1433ae33", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "29ff7f77-4e79-494e-aa14-dea5c136e6f7", - "name": "opportunity" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "ec6a5670-6853-4d3c-8b8e-6580bd5584dc", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "29ff7f77-4e79-494e-aa14-dea5c136e6f7", - "toObjectMetadata": { - "__typename": "object", - "id": "ae47ee7c-ea45-4273-94ee-336d1433ae33", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - } - ] - } - } - }, - { - "__typename": "objectEdge", - "node": { - "__typename": "object", - "id": "ae47ee7c-ea45-4273-94ee-336d1433ae33", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities", - "labelSingular": "Timeline Activity", - "labelPlural": "Timeline Activities", - "description": "Aggregated / filtered event to be displayed on the timeline", - "icon": "IconIconTimelineEvent", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "labelIdentifierFieldMetadataId": null, - "imageIdentifierFieldMetadataId": null, - "fields": { - "__typename": "ObjectFieldsConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjE2" - }, - "edges": [ - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "866a3a06-bd61-4b64-9755-8d57b4427c26", - "type": "RAW_JSON", - "name": "properties", - "label": "Event details", - "description": "Json value for event details", - "icon": "IconListDetails", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "e5a4018c-c8dc-4a6d-b5ae-e029be23e7d6", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "0c27da2b-afde-48bc-90f4-c58c1f6bd1d1", - "type": "RELATION", - "name": "company", - "label": "Company", - "description": "Event company", - "icon": "IconBuildingSkyscraper", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "44825151-f568-4e5b-833a-70093068fb37", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "ae47ee7c-ea45-4273-94ee-336d1433ae33", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "0c27da2b-afde-48bc-90f4-c58c1f6bd1d1", - "name": "company" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "f9fd99a8-108f-4066-9675-cde753cf5de9", - "nameSingular": "company", - "namePlural": "companies" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "8558d1d1-7c48-4222-a41f-acff24ea695b", - "name": "timelineActivities" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "44825151-f568-4e5b-833a-70093068fb37", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "8558d1d1-7c48-4222-a41f-acff24ea695b", - "fromObjectMetadata": { - "__typename": "object", - "id": "f9fd99a8-108f-4066-9675-cde753cf5de9", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "company", - "namePlural": "companies", - "isSystem": false, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "d5c27551-c047-4409-8cfb-346056cb9b92", - "type": "RELATION", - "name": "person", - "label": "Person", - "description": "Event person", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "05f685a8-eda1-4c8d-a367-4d165f1b5ee0", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "ae47ee7c-ea45-4273-94ee-336d1433ae33", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "d5c27551-c047-4409-8cfb-346056cb9b92", - "name": "person" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "f90f0471-1042-4f38-a285-d870fb5a5a26", - "nameSingular": "person", - "namePlural": "people" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "adcf8f46-55b8-4060-af85-cbdb82308aca", - "name": "timelineActivities" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "05f685a8-eda1-4c8d-a367-4d165f1b5ee0", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "adcf8f46-55b8-4060-af85-cbdb82308aca", - "fromObjectMetadata": { - "__typename": "object", - "id": "f90f0471-1042-4f38-a285-d870fb5a5a26", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "person", - "namePlural": "people", - "isSystem": false, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "29ff7f77-4e79-494e-aa14-dea5c136e6f7", - "type": "RELATION", - "name": "opportunity", - "label": "Opportunity", - "description": "Event opportunity", - "icon": "IconTargetArrow", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "ec6a5670-6853-4d3c-8b8e-6580bd5584dc", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "ae47ee7c-ea45-4273-94ee-336d1433ae33", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "29ff7f77-4e79-494e-aa14-dea5c136e6f7", - "name": "opportunity" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "afdbcc7a-95bc-4e30-917d-ba583448b405", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "ca06db11-c292-4226-9555-d0d49f249fc4", - "name": "timelineActivities" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "ec6a5670-6853-4d3c-8b8e-6580bd5584dc", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "ca06db11-c292-4226-9555-d0d49f249fc4", - "fromObjectMetadata": { - "__typename": "object", - "id": "afdbcc7a-95bc-4e30-917d-ba583448b405", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "opportunity", - "namePlural": "opportunities", - "isSystem": false, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "5fea70fb-b40c-4199-899a-7e38d9ef6043", - "type": "TEXT", - "name": "name", - "label": "Event name", - "description": "Event name", - "icon": "IconAbc", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "dc81b15a-5655-491c-99d0-9f07e008bedd", - "type": "UUID", - "name": "companyId", - "label": "Company id (foreign key)", - "description": "Event company id foreign key", - "icon": "IconBuildingSkyscraper", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "4885f105-c593-4de1-9f90-5e5428b06bfa", - "type": "UUID", - "name": "personId", - "label": "Person id (foreign key)", - "description": "Event person id foreign key", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "5e0ced21-d910-47b9-a8a8-bc789a60939c", - "type": "DATE_TIME", - "name": "happensAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "40216419-eccc-4f63-a344-eda6f753845d", - "type": "RELATION", - "name": "workspaceMember", - "label": "Workspace Member", - "description": "Event workspace member", - "icon": "IconCircleUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "6964f5a7-8edd-41a1-98c7-9d445ee722e3", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "ae47ee7c-ea45-4273-94ee-336d1433ae33", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "40216419-eccc-4f63-a344-eda6f753845d", - "name": "workspaceMember" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "de6b0b95-5481-4cc7-8dc6-cd08808b2929", - "name": "timelineActivities" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "6964f5a7-8edd-41a1-98c7-9d445ee722e3", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "de6b0b95-5481-4cc7-8dc6-cd08808b2929", - "fromObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers", - "isSystem": true, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "c18dcfda-a9fb-4e49-a215-440069a77be3", - "type": "UUID", - "name": "opportunityId", - "label": "Opportunity id (foreign key)", - "description": "Event opportunity id foreign key", - "icon": "IconTargetArrow", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "5f899b8b-a0e0-4f42-92aa-210f51d6418e", - "type": "UUID", - "name": "workspaceMemberId", - "label": "Workspace Member id (foreign key)", - "description": "Event workspace member id foreign key", - "icon": "IconCircleUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "4731ec62-a93e-4f3f-a55b-d52f90c3bcac", - "type": "UUID", - "name": "linkedObjectMetadataId", - "label": "Linked Object Metadata Id", - "description": "inked Object Metadata Id", - "icon": "IconAbc", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "7aa39de4-acfe-4090-9f13-a3854254e3bc", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Update date", - "description": "Update date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "221bd36e-e315-40e9-a1ac-91f45c157c5d", - "type": "TEXT", - "name": "linkedRecordCachedName", - "label": "Linked Record cached name", - "description": "Cached record name", - "icon": "IconAbc", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "c7fad8c0-d41e-4536-b7aa-c9fa2ee68109", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "uuid", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "a55d0cad-ed84-430a-a92d-4075a3d8c6f0", - "type": "UUID", - "name": "linkedRecordId", - "label": "Linked Record id", - "description": "Linked Record id", - "icon": "IconAbc", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - } - ] - } - } - }, - { - "__typename": "objectEdge", - "node": { - "__typename": "object", - "id": "ad8a423b-20c4-4545-abd3-1694294406e5", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "messageChannel", - "namePlural": "messageChannels", - "labelSingular": "Message Channel", - "labelPlural": "Message Channels", - "description": "Message Channels", - "icon": "IconMessage", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "labelIdentifierFieldMetadataId": null, - "imageIdentifierFieldMetadataId": null, - "fields": { - "__typename": "ObjectFieldsConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjE2" - }, - "edges": [ - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "30a01ab0-0daf-4a9d-8d10-5af042f3b2ee", - "type": "SELECT", - "name": "visibility", - "label": "Visibility", - "description": "Visibility", - "icon": "IconEyeglass", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "'SHARE_EVERYTHING'", - "options": [ - { - "id": "6a51d527-6552-4e1f-a091-7e8ad05b99dd", - "color": "green", - "label": "Metadata", - "value": "METADATA", - "position": 0 - }, - { - "id": "b445b24d-4145-4252-a042-a9fe49d99080", - "color": "blue", - "label": "Subject", - "value": "SUBJECT", - "position": 1 - }, - { - "id": "df5aae98-08a0-4432-ad8e-bde036b331fc", - "color": "orange", - "label": "Share Everything", - "value": "SHARE_EVERYTHING", - "position": 2 - } - ], - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "36751cb9-6301-4aa2-a8ec-47079c10f8dc", - "type": "DATE_TIME", - "name": "syncedAt", - "label": "Last sync date", - "description": "Last sync date", - "icon": "IconHistory", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "95760150-a2f4-4ea7-8d59-0969a7ad642b", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Update date", - "description": "Update date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "da3417b8-ede3-4546-b056-108e4c5f6ea8", - "type": "BOOLEAN", - "name": "isContactAutoCreationEnabled", - "label": "Is Contact Auto Creation Enabled", - "description": "Is Contact Auto Creation Enabled", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": true, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "5270dd71-2233-4861-bf0f-d570f9a50b34", - "type": "NUMBER", - "name": "throttleFailureCount", - "label": "Throttle Failure Count", - "description": "Throttle Failure Count", - "icon": "IconX", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": 0, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "d70533e8-e473-4233-a31e-72fe51029e5c", - "type": "TEXT", - "name": "handle", - "label": "Handle", - "description": "Handle", - "icon": "IconAt", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "227aa60b-7af8-4a5b-bb18-2b0227512204", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "28e14926-cf7e-46cc-acf9-132aabf834a4", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "uuid", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "5b6f6a51-42af-4b7b-8040-1c36c4270916", - "type": "SELECT", - "name": "syncStatus", - "label": "Sync status", - "description": "Sync status", - "icon": "IconStatusChange", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": [ - { - "id": "e9ebede5-09c7-4215-8c62-4c794fae73c7", - "color": "blue", - "label": "Pending", - "value": "PENDING", - "position": 0 - }, - { - "id": "15118700-3587-430f-a8b2-885967fc1755", - "color": "green", - "label": "Succeeded", - "value": "SUCCEEDED", - "position": 2 - }, - { - "id": "2ba37905-ddb7-4537-82d3-cb1492874312", - "color": "red", - "label": "Failed", - "value": "FAILED", - "position": 3 - }, - { - "id": "f4b38dde-87ff-49bd-93ba-1b79a8a7e16f", - "color": "yellow", - "label": "Ongoing", - "value": "ONGOING", - "position": 1 - }, - { - "id": "9d79ec38-068e-4d3d-8484-ebdcb794882b", - "color": "blue", - "label": "Not Synced", - "value": "NOT_SYNCED", - "position": 4 - }, - { - "id": "f90732e5-cc5d-4556-ba56-5a663e5ae5b6", - "color": "green", - "label": "Completed", - "value": "COMPLETED", - "position": 5 - }, - { - "id": "627e8a55-da70-4563-948f-d77d16d6d803", - "color": "red", - "label": "Failed Insufficient Permissions", - "value": "FAILED_INSUFFICIENT_PERMISSIONS", - "position": 6 - }, - { - "id": "69e37923-84b7-4206-aa59-1470a355b9a3", - "color": "red", - "label": "Failed Unknown", - "value": "FAILED_UNKNOWN", - "position": 7 - } - ], - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "198509cb-277f-4da0-acde-482cd52cd814", - "type": "RELATION", - "name": "messageChannelMessageAssociations", - "label": "Message Channel Association", - "description": "Messages from the channel.", - "icon": "IconMessage", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "965a3bf0-b43a-4391-a26f-27a1bd30476f", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "ad8a423b-20c4-4545-abd3-1694294406e5", - "nameSingular": "messageChannel", - "namePlural": "messageChannels" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "198509cb-277f-4da0-acde-482cd52cd814", - "name": "messageChannelMessageAssociations" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "ff218fee-2274-4c2e-91b2-ff56249ce144", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "57b02715-a5e9-42fc-92c2-23d8a4aac792", - "name": "messageChannel" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "965a3bf0-b43a-4391-a26f-27a1bd30476f", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "57b02715-a5e9-42fc-92c2-23d8a4aac792", - "toObjectMetadata": { - "__typename": "object", - "id": "ff218fee-2274-4c2e-91b2-ff56249ce144", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "ad603e6a-fab4-476e-a7cf-2bac9332df8d", - "type": "SELECT", - "name": "type", - "label": "Type", - "description": "Channel Type", - "icon": "IconMessage", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "'email'", - "options": [ - { - "id": "555d2b05-5855-483e-a0b9-98095fb332e3", - "color": "green", - "label": "Email", - "value": "email", - "position": 0 - }, - { - "id": "7178823a-9951-4424-9359-023c8da6a1b9", - "color": "blue", - "label": "SMS", - "value": "sms", - "position": 1 - } - ], - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "f70b4868-063a-4571-9a1f-3c3211a35a97", - "type": "SELECT", - "name": "syncStage", - "label": "Sync stage", - "description": "Sync stage", - "icon": "IconStatusChange", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "'FULL_MESSAGE_LIST_FETCH_PENDING'", - "options": [ - { - "id": "7c6f5073-49f6-477e-8cdf-704c65ae7fe5", - "color": "blue", - "label": "Full messages list fetch pending", - "value": "FULL_MESSAGE_LIST_FETCH_PENDING", - "position": 0 - }, - { - "id": "e84e3426-1897-4214-a6fa-19531edd6d29", - "color": "blue", - "label": "Partial messages list fetch pending", - "value": "PARTIAL_MESSAGE_LIST_FETCH_PENDING", - "position": 1 - }, - { - "id": "e94047e5-e441-431c-8abd-5599cc2f8f12", - "color": "orange", - "label": "Messages list fetch ongoing", - "value": "MESSAGE_LIST_FETCH_ONGOING", - "position": 2 - }, - { - "id": "d2a12dec-08d8-4f1b-bb50-8cc097ace56a", - "color": "blue", - "label": "Messages import pending", - "value": "MESSAGES_IMPORT_PENDING", - "position": 3 - }, - { - "id": "dcb438e2-f4af-4686-9eed-7b190afb359d", - "color": "orange", - "label": "Messages import ongoing", - "value": "MESSAGES_IMPORT_ONGOING", - "position": 4 - }, - { - "id": "5b8cb1f1-fe9c-49cf-b8a5-38911e6fec36", - "color": "red", - "label": "Failed", - "value": "FAILED", - "position": 5 - } - ], - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "3839e19e-028b-4ead-b641-b723e9f14e66", - "type": "UUID", - "name": "connectedAccountId", - "label": "Connected Account id (foreign key)", - "description": "Connected Account id foreign key", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "5ff41676-6c9e-4bc9-882f-b43f7ebf05bd", - "type": "TEXT", - "name": "syncCursor", - "label": "Last sync cursor", - "description": "Last sync cursor", - "icon": "IconHistory", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "977f9927-1acd-42c1-913f-02de9667b840", - "type": "RELATION", - "name": "connectedAccount", - "label": "Connected Account", - "description": "Connected Account", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "d180a991-84c4-4af7-8ef4-e42ea964aa1a", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "ad8a423b-20c4-4545-abd3-1694294406e5", - "nameSingular": "messageChannel", - "namePlural": "messageChannels" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "977f9927-1acd-42c1-913f-02de9667b840", - "name": "connectedAccount" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "9e54a328-9247-4d39-8999-35007b4bd34d", - "nameSingular": "connectedAccount", - "namePlural": "connectedAccounts" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "5d6ae55d-2eb5-4797-856f-fcddfa3513dd", - "name": "messageChannels" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "d180a991-84c4-4af7-8ef4-e42ea964aa1a", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "5d6ae55d-2eb5-4797-856f-fcddfa3513dd", - "fromObjectMetadata": { - "__typename": "object", - "id": "9e54a328-9247-4d39-8999-35007b4bd34d", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "connectedAccount", - "namePlural": "connectedAccounts", - "isSystem": true, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "2bb5dfac-4764-418f-bed2-8d867c681ab9", - "type": "DATE_TIME", - "name": "syncStageStartedAt", - "label": "Sync stage started at", - "description": "Sync stage started at", - "icon": "IconHistory", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "9c043b2a-40e3-4226-90f4-2081bcc8b75b", - "type": "BOOLEAN", - "name": "isSyncEnabled", - "label": "Is Sync Enabled", - "description": "Is Sync Enabled", - "icon": "IconRefresh", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": true, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - } - ] - } - } - }, - { - "__typename": "objectEdge", - "node": { - "__typename": "object", - "id": "a5521923-2a4f-4dff-8330-69ba0b26ea73", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "viewSort", - "namePlural": "viewSorts", - "labelSingular": "View Sort", - "labelPlural": "View Sorts", - "description": "(System) View Sorts", - "icon": "IconArrowsSort", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "labelIdentifierFieldMetadataId": null, - "imageIdentifierFieldMetadataId": null, - "fields": { - "__typename": "ObjectFieldsConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjY=" - }, - "edges": [ - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "422466fa-13f7-4860-866b-2dafd86207c6", - "type": "TEXT", - "name": "direction", - "label": "Direction", - "description": "View Sort direction", - "icon": null, - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "'asc'", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "0e2672f5-64bb-4921-8cd9-057a466328d9", - "type": "UUID", - "name": "fieldMetadataId", - "label": "Field Metadata Id", - "description": "View Sort target field", - "icon": "IconTag", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "8b42cd7a-53df-433b-a674-9e98c34a7f3d", - "type": "UUID", - "name": "viewId", - "label": "View id (foreign key)", - "description": "View Sort related view id foreign key", - "icon": "IconLayoutCollage", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "4517a1b7-331a-416d-a4d1-313a0d730873", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "73a1574b-31f1-4d3f-a240-6d7b550f57c1", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Update date", - "description": "Update date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "00c7b190-ee08-4c83-9046-e9cd68dd1f2a", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "uuid", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "9daddfd5-c437-45cd-8070-311c049d36fb", - "type": "RELATION", - "name": "view", - "label": "View", - "description": "View Sort related view", - "icon": "IconLayoutCollage", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "d94fad0b-db58-4f7b-b546-5f86d645ebca", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "a5521923-2a4f-4dff-8330-69ba0b26ea73", - "nameSingular": "viewSort", - "namePlural": "viewSorts" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "9daddfd5-c437-45cd-8070-311c049d36fb", - "name": "view" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "f2785a7a-b2b7-4ce7-9042-ec63b49931eb", - "nameSingular": "view", - "namePlural": "views" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "4b4e38fe-4cf5-4504-8a62-f34f593dda92", - "name": "viewSorts" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "d94fad0b-db58-4f7b-b546-5f86d645ebca", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "4b4e38fe-4cf5-4504-8a62-f34f593dda92", - "fromObjectMetadata": { - "__typename": "object", - "id": "f2785a7a-b2b7-4ce7-9042-ec63b49931eb", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "view", - "namePlural": "views", - "isSystem": true, - "isRemote": false - } - } - } - } - ] - } - } - }, - { - "__typename": "objectEdge", - "node": { - "__typename": "object", - "id": "a47a16bf-eab2-4fd3-bf50-f1a9fc225a42", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "blocklist", - "namePlural": "blocklists", - "labelSingular": "Blocklist", - "labelPlural": "Blocklists", - "description": "Blocklist", - "icon": "IconForbid2", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "labelIdentifierFieldMetadataId": null, - "imageIdentifierFieldMetadataId": null, - "fields": { - "__typename": "ObjectFieldsConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjU=" - }, - "edges": [ - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "8b033c4a-725b-497d-88ed-ab2fe93ef82e", - "type": "UUID", - "name": "workspaceMemberId", - "label": "WorkspaceMember id (foreign key)", - "description": "WorkspaceMember id foreign key", - "icon": "IconCircleUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "8b58e7b4-d114-4b27-b7eb-6411f85a7a7a", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Update date", - "description": "Update date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "dd4629df-7066-49a7-89dc-ffd2ccc5c614", - "type": "TEXT", - "name": "handle", - "label": "Handle", - "description": "Handle", - "icon": "IconAt", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "50ea7eae-17f1-44eb-a0df-1c841413211f", - "type": "RELATION", - "name": "workspaceMember", - "label": "WorkspaceMember", - "description": "WorkspaceMember", - "icon": "IconCircleUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "34d39eb8-8f2d-4541-ac9c-74627e65def3", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "a47a16bf-eab2-4fd3-bf50-f1a9fc225a42", - "nameSingular": "blocklist", - "namePlural": "blocklists" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "50ea7eae-17f1-44eb-a0df-1c841413211f", - "name": "workspaceMember" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "cf0b6bfc-d42f-4a69-ab0e-bdb7a6de85c9", - "name": "blocklist" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "34d39eb8-8f2d-4541-ac9c-74627e65def3", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "cf0b6bfc-d42f-4a69-ab0e-bdb7a6de85c9", - "fromObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers", - "isSystem": true, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "c7b10446-f611-4d4a-826a-bbba648f17f3", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "uuid", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "f88e28bf-86ae-45cf-96c9-11303232bbe2", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - } - ] - } - } - }, - { - "__typename": "objectEdge", - "node": { - "__typename": "object", - "id": "9e54a328-9247-4d39-8999-35007b4bd34d", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "connectedAccount", - "namePlural": "connectedAccounts", - "labelSingular": "Connected Account", - "labelPlural": "Connected Accounts", - "description": "A connected account", - "icon": "IconAt", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "labelIdentifierFieldMetadataId": null, - "imageIdentifierFieldMetadataId": null, - "fields": { - "__typename": "ObjectFieldsConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjEy" - }, - "edges": [ - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "6c3e4ebf-271a-4091-91e6-5bc0666a4f5a", - "type": "TEXT", - "name": "handle", - "label": "handle", - "description": "The account handle (email, username, phone number, etc.)", - "icon": "IconMail", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "e732ec5c-814d-4d9a-81fb-f8085da76a6d", - "type": "TEXT", - "name": "refreshToken", - "label": "Refresh Token", - "description": "Messaging provider refresh token", - "icon": "IconKey", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "5f8ab6fa-af5b-4546-858a-cdb0c2ac4f4d", - "type": "UUID", - "name": "accountOwnerId", - "label": "Account Owner id (foreign key)", - "description": "Account Owner id foreign key", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "5d6ae55d-2eb5-4797-856f-fcddfa3513dd", - "type": "RELATION", - "name": "messageChannels", - "label": "Message Channels", - "description": "Message Channels", - "icon": "IconMessage", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "d180a991-84c4-4af7-8ef4-e42ea964aa1a", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "9e54a328-9247-4d39-8999-35007b4bd34d", - "nameSingular": "connectedAccount", - "namePlural": "connectedAccounts" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "5d6ae55d-2eb5-4797-856f-fcddfa3513dd", - "name": "messageChannels" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "ad8a423b-20c4-4545-abd3-1694294406e5", - "nameSingular": "messageChannel", - "namePlural": "messageChannels" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "977f9927-1acd-42c1-913f-02de9667b840", - "name": "connectedAccount" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "d180a991-84c4-4af7-8ef4-e42ea964aa1a", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "977f9927-1acd-42c1-913f-02de9667b840", - "toObjectMetadata": { - "__typename": "object", - "id": "ad8a423b-20c4-4545-abd3-1694294406e5", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "messageChannel", - "namePlural": "messageChannels", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "de19b238-63cd-4e48-9d27-65615100c8d0", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Update date", - "description": "Update date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "ddf473c4-4b5e-4feb-b69b-4a4d005248ff", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "uuid", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "4e050045-407f-42d1-b6db-e74c476c11ac", - "type": "TEXT", - "name": "provider", - "label": "provider", - "description": "The account provider", - "icon": "IconSettings", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "3b558f9d-5e8b-48b1-a260-cb5464ad4c8d", - "type": "RELATION", - "name": "calendarChannels", - "label": "Calendar Channels", - "description": "Calendar Channels", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "42b809af-849c-4cdb-ae1f-aaa0922d3f4e", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "9e54a328-9247-4d39-8999-35007b4bd34d", - "nameSingular": "connectedAccount", - "namePlural": "connectedAccounts" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "3b558f9d-5e8b-48b1-a260-cb5464ad4c8d", - "name": "calendarChannels" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "4f34d651-9013-43ad-9d52-de8f3713e6a5", - "nameSingular": "calendarChannel", - "namePlural": "calendarChannels" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "143e8157-1136-49ff-a956-be99d4c76155", - "name": "connectedAccount" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "42b809af-849c-4cdb-ae1f-aaa0922d3f4e", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "143e8157-1136-49ff-a956-be99d4c76155", - "toObjectMetadata": { - "__typename": "object", - "id": "4f34d651-9013-43ad-9d52-de8f3713e6a5", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "calendarChannel", - "namePlural": "calendarChannels", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "6179780d-21bc-4d1b-bbc4-97d14591a921", - "type": "TEXT", - "name": "accessToken", - "label": "Access Token", - "description": "Messaging provider access token", - "icon": "IconKey", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "395cc961-c5e0-4715-8439-c170c076fa8b", - "type": "RELATION", - "name": "accountOwner", - "label": "Account Owner", - "description": "Account Owner", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "7362ff24-6c6a-4b1c-aca7-21b9458798aa", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "9e54a328-9247-4d39-8999-35007b4bd34d", - "nameSingular": "connectedAccount", - "namePlural": "connectedAccounts" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "395cc961-c5e0-4715-8439-c170c076fa8b", - "name": "accountOwner" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "b2afa83b-d17c-42af-bbfe-f5c59db0a02c", - "name": "connectedAccounts" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "7362ff24-6c6a-4b1c-aca7-21b9458798aa", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "b2afa83b-d17c-42af-bbfe-f5c59db0a02c", - "fromObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers", - "isSystem": true, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "a6540be4-5874-4e0b-bd76-87e681c890bf", - "type": "TEXT", - "name": "lastSyncHistoryId", - "label": "Last sync history ID", - "description": "Last sync history ID", - "icon": "IconHistory", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "a2765fcb-cd1e-4bba-b8ec-9f1c67b5fc9d", - "type": "DATE_TIME", - "name": "authFailedAt", - "label": "Auth failed at", - "description": "Auth failed at", - "icon": "IconX", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "04892a7b-7de3-4b3e-bdc0-97b193afbb0b", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - } - ] - } - } - }, - { - "__typename": "objectEdge", - "node": { - "__typename": "object", - "id": "8c617a9b-9e5e-4b8a-951e-4b4066786a26", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "viewFilter", - "namePlural": "viewFilters", - "labelSingular": "View Filter", - "labelPlural": "View Filters", - "description": "(System) View Filters", - "icon": "IconFilterBolt", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "labelIdentifierFieldMetadataId": null, - "imageIdentifierFieldMetadataId": null, - "fields": { - "__typename": "ObjectFieldsConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjg=" - }, - "edges": [ - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "61923569-3ec5-420d-9ac4-2a589c1e263f", - "type": "TEXT", - "name": "displayValue", - "label": "Display Value", - "description": "View Filter Display Value", - "icon": null, - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "a95ffce7-e354-4e09-a767-586463bb9ab5", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "a5036b2a-f0c6-4144-afdf-abef7ce8a06d", - "type": "UUID", - "name": "fieldMetadataId", - "label": "Field Metadata Id", - "description": "View Filter target field", - "icon": null, - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "aaee6a8c-b7d4-4de0-9bdc-de5c1fe9b539", - "type": "RELATION", - "name": "view", - "label": "View", - "description": "View Filter related view", - "icon": "IconLayoutCollage", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "09c6bd7d-7601-4dd2-b143-9f08b25a5566", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "8c617a9b-9e5e-4b8a-951e-4b4066786a26", - "nameSingular": "viewFilter", - "namePlural": "viewFilters" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "aaee6a8c-b7d4-4de0-9bdc-de5c1fe9b539", - "name": "view" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "f2785a7a-b2b7-4ce7-9042-ec63b49931eb", - "nameSingular": "view", - "namePlural": "views" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "2d03e711-7791-4c1d-bb40-378232397120", - "name": "viewFilters" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "09c6bd7d-7601-4dd2-b143-9f08b25a5566", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "2d03e711-7791-4c1d-bb40-378232397120", - "fromObjectMetadata": { - "__typename": "object", - "id": "f2785a7a-b2b7-4ce7-9042-ec63b49931eb", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "view", - "namePlural": "views", - "isSystem": true, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "44bfe600-518a-4edc-8dc4-1508e70f387d", - "type": "TEXT", - "name": "value", - "label": "Value", - "description": "View Filter value", - "icon": null, - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "17b2d8a8-bf31-4eda-a6a3-3cbccc147c6f", - "type": "UUID", - "name": "viewId", - "label": "View id (foreign key)", - "description": "View Filter related view id foreign key", - "icon": "IconLayoutCollage", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "d302165c-80a0-4b58-87a6-ad5fd1e2ae38", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Update date", - "description": "Update date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "4834cfe2-3182-4c23-955f-878471ace554", - "type": "TEXT", - "name": "operand", - "label": "Operand", - "description": "View Filter operand", - "icon": null, - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "'Contains'", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "c8fd2bce-febf-4810-b671-ff4d771446b2", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "uuid", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - } - ] - } - } - }, - { - "__typename": "objectEdge", - "node": { - "__typename": "object", - "id": "8a811392-01fa-4725-bf18-6f94e60d9d8e", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "messageThread", - "namePlural": "messageThreads", - "labelSingular": "Message Thread", - "labelPlural": "Message Threads", - "description": "Message Thread", - "icon": "IconMessage", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "labelIdentifierFieldMetadataId": null, - "imageIdentifierFieldMetadataId": null, - "fields": { - "__typename": "ObjectFieldsConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjQ=" - }, - "edges": [ - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "6737187a-370b-4331-82f9-e4b6c2461f0b", - "type": "RELATION", - "name": "messages", - "label": "Messages", - "description": "Messages from the thread.", - "icon": "IconMessage", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "9ad26c7f-9db7-495b-b6d5-c49ea634d167", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "8a811392-01fa-4725-bf18-6f94e60d9d8e", - "nameSingular": "messageThread", - "namePlural": "messageThreads" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "6737187a-370b-4331-82f9-e4b6c2461f0b", - "name": "messages" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "ef2f11c1-d293-4774-bd79-006a8f367fd8", - "nameSingular": "message", - "namePlural": "messages" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "e881701e-03c3-49ed-b0c7-c028f81244ab", - "name": "messageThread" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "9ad26c7f-9db7-495b-b6d5-c49ea634d167", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "e881701e-03c3-49ed-b0c7-c028f81244ab", - "toObjectMetadata": { - "__typename": "object", - "id": "ef2f11c1-d293-4774-bd79-006a8f367fd8", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "message", - "namePlural": "messages", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "8218e87e-bd58-4124-b5b9-a36f17972efe", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Update date", - "description": "Update date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "0eb467f4-cd95-4cc2-a7c5-dc2f01c9acd1", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "c89757a5-8251-4b4f-a5ec-8aba89a50a49", - "type": "RELATION", - "name": "messageChannelMessageAssociations", - "label": "Message Channel Association", - "description": "Messages from the channel", - "icon": "IconMessage", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "8518d75e-58c3-46c2-a111-a43f3987bb5a", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "8a811392-01fa-4725-bf18-6f94e60d9d8e", - "nameSingular": "messageThread", - "namePlural": "messageThreads" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "c89757a5-8251-4b4f-a5ec-8aba89a50a49", - "name": "messageChannelMessageAssociations" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "ff218fee-2274-4c2e-91b2-ff56249ce144", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "57d32dec-d975-4e0d-bcd8-4fb4eaba978d", - "name": "messageThread" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "8518d75e-58c3-46c2-a111-a43f3987bb5a", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "57d32dec-d975-4e0d-bcd8-4fb4eaba978d", - "toObjectMetadata": { - "__typename": "object", - "id": "ff218fee-2274-4c2e-91b2-ff56249ce144", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "82d81026-6816-4554-aa53-0b47f3f3e759", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "uuid", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - } - ] - } - } - }, - { - "__typename": "objectEdge", - "node": { - "__typename": "object", - "id": "810c0e7f-5e65-4d68-8596-1e585862bee9", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "messageParticipant", - "namePlural": "messageParticipants", - "labelSingular": "Message Participant", - "labelPlural": "Message Participants", - "description": "Message Participants", - "icon": "IconUserCircle", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "labelIdentifierFieldMetadataId": null, - "imageIdentifierFieldMetadataId": null, - "fields": { - "__typename": "ObjectFieldsConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjEx" - }, - "edges": [ - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "c6186a67-5032-4f7f-9435-7c10a8efeeab", - "type": "UUID", - "name": "personId", - "label": "Person id (foreign key)", - "description": "Person id foreign key", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "3c4946f0-49fe-47ae-888f-e1aa94605057", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Update date", - "description": "Update date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "3cee348f-955d-48c4-9618-292bdccc589c", - "type": "UUID", - "name": "workspaceMemberId", - "label": "Workspace Member id (foreign key)", - "description": "Workspace member id foreign key", - "icon": "IconCircleUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "fa6b2391-61fc-4008-86c0-dacff59c5036", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "94934fdc-2e4d-43b0-8446-105bb7b9c9bd", - "type": "TEXT", - "name": "displayName", - "label": "Display Name", - "description": "Display Name", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "0f870437-4809-4d36-ad60-51fd08fce03c", - "type": "TEXT", - "name": "handle", - "label": "Handle", - "description": "Handle", - "icon": "IconAt", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "776e54b2-db3d-4b75-84e6-3dc7e8a209ef", - "type": "RELATION", - "name": "message", - "label": "Message", - "description": "Message", - "icon": "IconMessage", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "5659a093-e3dc-4be7-9b49-9a6ab498671e", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "810c0e7f-5e65-4d68-8596-1e585862bee9", - "nameSingular": "messageParticipant", - "namePlural": "messageParticipants" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "776e54b2-db3d-4b75-84e6-3dc7e8a209ef", - "name": "message" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "ef2f11c1-d293-4774-bd79-006a8f367fd8", - "nameSingular": "message", - "namePlural": "messages" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "6f859303-fa24-4263-a49c-ef20e810c05f", - "name": "messageParticipants" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "5659a093-e3dc-4be7-9b49-9a6ab498671e", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "6f859303-fa24-4263-a49c-ef20e810c05f", - "fromObjectMetadata": { - "__typename": "object", - "id": "ef2f11c1-d293-4774-bd79-006a8f367fd8", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "message", - "namePlural": "messages", - "isSystem": true, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "5c4982ac-46ed-4912-96c4-1977138c6df6", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "uuid", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "4f81e76c-54f3-4a8c-89f7-9ed806154a66", - "type": "RELATION", - "name": "workspaceMember", - "label": "Workspace Member", - "description": "Workspace member", - "icon": "IconCircleUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "40a3eefd-e2c0-4e59-934d-e6e6b7eb695c", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "810c0e7f-5e65-4d68-8596-1e585862bee9", - "nameSingular": "messageParticipant", - "namePlural": "messageParticipants" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "4f81e76c-54f3-4a8c-89f7-9ed806154a66", - "name": "workspaceMember" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "9082d9b0-08af-45d6-9047-534f804e3c02", - "name": "messageParticipants" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "40a3eefd-e2c0-4e59-934d-e6e6b7eb695c", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "9082d9b0-08af-45d6-9047-534f804e3c02", - "fromObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers", - "isSystem": true, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "612a8e89-da49-4212-8b5a-c5f56019f19f", - "type": "UUID", - "name": "messageId", - "label": "Message id (foreign key)", - "description": "Message id foreign key", - "icon": "IconMessage", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "392dc86a-75b5-433e-9a1e-ef11e022e975", - "type": "RELATION", - "name": "person", - "label": "Person", - "description": "Person", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "e2296019-f6ef-4bab-aa5e-2cd60b4c886c", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "810c0e7f-5e65-4d68-8596-1e585862bee9", - "nameSingular": "messageParticipant", - "namePlural": "messageParticipants" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "392dc86a-75b5-433e-9a1e-ef11e022e975", - "name": "person" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "f90f0471-1042-4f38-a285-d870fb5a5a26", - "nameSingular": "person", - "namePlural": "people" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "7b1e5fbc-1418-4e35-9df2-5f5e3b64a2dd", - "name": "messageParticipants" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "e2296019-f6ef-4bab-aa5e-2cd60b4c886c", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "7b1e5fbc-1418-4e35-9df2-5f5e3b64a2dd", - "fromObjectMetadata": { - "__typename": "object", - "id": "f90f0471-1042-4f38-a285-d870fb5a5a26", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "person", - "namePlural": "people", - "isSystem": false, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "d47f550b-9dd7-4137-b111-3302194a1b6e", - "type": "SELECT", - "name": "role", - "label": "Role", - "description": "Role", - "icon": "IconAt", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "'from'", - "options": [ - { - "id": "06f956ef-25b2-4c99-ab22-b1fbfcdc78b8", - "color": "green", - "label": "From", - "value": "from", - "position": 0 - }, - { - "id": "ecdb5f1f-d442-4eef-abed-5b97194aac5d", - "color": "blue", - "label": "To", - "value": "to", - "position": 1 - }, - { - "id": "1092e3b5-29f7-47f0-b153-02e59d25b3c2", - "color": "orange", - "label": "Cc", - "value": "cc", - "position": 2 - }, - { - "id": "1acf90c3-265d-4725-879f-2df2ccb872d9", - "color": "red", - "label": "Bcc", - "value": "bcc", - "position": 3 - } - ], - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - } - ] - } - } - }, - { - "__typename": "objectEdge", - "node": { - "__typename": "object", - "id": "7fb647a5-af0b-4f95-8428-fa72571a8bee", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "viewField", - "namePlural": "viewFields", - "labelSingular": "View Field", - "labelPlural": "View Fields", - "description": "(System) View Fields", - "icon": "IconTag", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "labelIdentifierFieldMetadataId": null, - "imageIdentifierFieldMetadataId": null, - "fields": { - "__typename": "ObjectFieldsConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjg=" - }, - "edges": [ - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "5409b174-5453-456a-8a28-65ef7b73b95c", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "2d987caf-9ddb-4dac-bdb8-90168f070c5b", - "type": "BOOLEAN", - "name": "isVisible", - "label": "Visible", - "description": "View Field visibility", - "icon": "IconEye", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": true, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "ee71934a-3ed3-4b2f-ac48-fe2755fe983c", - "type": "UUID", - "name": "viewId", - "label": "View id (foreign key)", - "description": "View Field related view id foreign key", - "icon": "IconLayoutCollage", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "484c8852-8049-4082-993b-29e49e713bf9", - "type": "UUID", - "name": "fieldMetadataId", - "label": "Field Metadata Id", - "description": "View Field target field", - "icon": "IconTag", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "0e55d284-458e-49ad-b349-357045d4dff5", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Update date", - "description": "Update date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "c6bb84d2-8c37-432d-9732-f9a7fa97a48b", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "uuid", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "60e26856-075b-4ac3-b246-503fb55220d8", - "type": "NUMBER", - "name": "size", - "label": "Size", - "description": "View Field size", - "icon": "IconEye", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": 0, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "be8d505d-079c-462c-aec3-1d89f38a29fe", - "type": "NUMBER", - "name": "position", - "label": "Position", - "description": "View Field position", - "icon": "IconList", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": 0, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "4f355b63-a015-488e-8d67-ea8c2c28e58a", - "type": "RELATION", - "name": "view", - "label": "View", - "description": "View Field related view", - "icon": "IconLayoutCollage", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "0e501570-837b-4473-af63-07400ce99b52", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "7fb647a5-af0b-4f95-8428-fa72571a8bee", - "nameSingular": "viewField", - "namePlural": "viewFields" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "4f355b63-a015-488e-8d67-ea8c2c28e58a", - "name": "view" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "f2785a7a-b2b7-4ce7-9042-ec63b49931eb", - "nameSingular": "view", - "namePlural": "views" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "b97bc9bb-3e68-40d2-9b33-c2937915fc9f", - "name": "viewFields" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "0e501570-837b-4473-af63-07400ce99b52", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "b97bc9bb-3e68-40d2-9b33-c2937915fc9f", - "fromObjectMetadata": { - "__typename": "object", - "id": "f2785a7a-b2b7-4ce7-9042-ec63b49931eb", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "view", - "namePlural": "views", - "isSystem": true, - "isRemote": false - } - } - } - } - ] - } - } - }, - { - "__typename": "objectEdge", - "node": { - "__typename": "object", - "id": "723221aa-d945-4667-9563-3d06186d7f14", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "activity", - "namePlural": "activities", - "labelSingular": "Activity", - "labelPlural": "Activities", - "description": "An activity", - "icon": "IconCheckbox", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "labelIdentifierFieldMetadataId": null, - "imageIdentifierFieldMetadataId": null, - "fields": { - "__typename": "ObjectFieldsConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjE1" - }, - "edges": [ - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "5768c343-4127-4f36-b750-9558f0ac2f14", - "type": "DATE_TIME", - "name": "dueAt", - "label": "Due Date", - "description": "Activity due date", - "icon": "IconCalendarEvent", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "a546e207-8380-41ff-9e65-d9e2cf258412", - "type": "DATE_TIME", - "name": "reminderAt", - "label": "Reminder Date", - "description": "Activity reminder date", - "icon": "IconCalendarEvent", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "72b3344e-04b1-4e0a-ac66-7b47eb2498b7", - "type": "RELATION", - "name": "assignee", - "label": "Assignee", - "description": "Activity assignee", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "daad07d2-8c0b-4f7a-a10f-273e5c3586e8", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "723221aa-d945-4667-9563-3d06186d7f14", - "nameSingular": "activity", - "namePlural": "activities" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "72b3344e-04b1-4e0a-ac66-7b47eb2498b7", - "name": "assignee" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "86e2868f-e6af-4629-b00a-84972c3c3e8f", - "name": "assignedActivities" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "daad07d2-8c0b-4f7a-a10f-273e5c3586e8", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "86e2868f-e6af-4629-b00a-84972c3c3e8f", - "fromObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers", - "isSystem": true, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "c4e8d3c9-763f-4b13-9a84-c7f0224c3cd2", - "type": "DATE_TIME", - "name": "completedAt", - "label": "Completion Date", - "description": "Activity completion date", - "icon": "IconCheck", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "e12b7288-d018-4091-9e97-4200a3ad77fc", - "type": "UUID", - "name": "authorId", - "label": "Author id (foreign key)", - "description": "Activity author id foreign key", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "f413df0e-524e-486d-8d94-d0577027237e", - "type": "TEXT", - "name": "title", - "label": "Title", - "description": "Activity title", - "icon": "IconNotes", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "72ffadfa-ecda-4c78-8a68-f82d442b553d", - "type": "RELATION", - "name": "activityTargets", - "label": "Targets", - "description": "Activity targets", - "icon": "IconCheckbox", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "d08d2845-f4ab-4369-a188-8abdb71e150d", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "723221aa-d945-4667-9563-3d06186d7f14", - "nameSingular": "activity", - "namePlural": "activities" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "72ffadfa-ecda-4c78-8a68-f82d442b553d", - "name": "activityTargets" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "b3db5174-865b-4da3-9c7f-fd2a816b3d90", - "nameSingular": "activityTarget", - "namePlural": "activityTargets" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "2a2012d8-9255-4c18-9577-2981ea7fe11a", - "name": "activity" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "d08d2845-f4ab-4369-a188-8abdb71e150d", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "2a2012d8-9255-4c18-9577-2981ea7fe11a", - "toObjectMetadata": { - "__typename": "object", - "id": "b3db5174-865b-4da3-9c7f-fd2a816b3d90", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "activityTarget", - "namePlural": "activityTargets", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "10b42cf0-a57c-4e35-97ec-336952040be2", - "type": "RELATION", - "name": "comments", - "label": "Comments", - "description": "Activity comments", - "icon": "IconComment", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "ee654bd4-29bf-4f12-94a2-069ea032af8b", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "723221aa-d945-4667-9563-3d06186d7f14", - "nameSingular": "activity", - "namePlural": "activities" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "10b42cf0-a57c-4e35-97ec-336952040be2", - "name": "comments" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "0e780173-f829-4110-bfcf-7520d6664564", - "nameSingular": "comment", - "namePlural": "comments" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "18fc498e-f1ba-4a45-a49d-5acac3eb606c", - "name": "activity" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "ee654bd4-29bf-4f12-94a2-069ea032af8b", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "18fc498e-f1ba-4a45-a49d-5acac3eb606c", - "toObjectMetadata": { - "__typename": "object", - "id": "0e780173-f829-4110-bfcf-7520d6664564", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "comment", - "namePlural": "comments", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "4ce01a80-f7f0-45cb-a6e9-eb1db83a413a", - "type": "UUID", - "name": "assigneeId", - "label": "Assignee id (foreign key)", - "description": "Activity assignee id foreign key", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "50f226f7-57a6-447b-a9a8-47a5db4e33b6", - "type": "TEXT", - "name": "type", - "label": "Type", - "description": "Activity type", - "icon": "IconCheckbox", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "'NOTE'", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "69d59f37-101e-4fff-a270-44a2ed8319e5", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "uuid", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "d14e70fb-081d-4b09-9002-e42ea0acc4f6", - "type": "RELATION", - "name": "attachments", - "label": "Attachments", - "description": "Activity attachments", - "icon": "IconFileImport", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "766a94ea-8935-45c2-8828-60649c73d3e5", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "723221aa-d945-4667-9563-3d06186d7f14", - "nameSingular": "activity", - "namePlural": "activities" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "d14e70fb-081d-4b09-9002-e42ea0acc4f6", - "name": "attachments" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "0c99085d-8a5a-4854-ad0d-ec29f3570f3a", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "278876b8-4245-4b3a-a50e-ddd4dd2be0a0", - "name": "activity" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "766a94ea-8935-45c2-8828-60649c73d3e5", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "278876b8-4245-4b3a-a50e-ddd4dd2be0a0", - "toObjectMetadata": { - "__typename": "object", - "id": "0c99085d-8a5a-4854-ad0d-ec29f3570f3a", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "attachment", - "namePlural": "attachments", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "2623f7b8-87a2-4213-9f2e-211c5e69f6a5", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Update date", - "description": "Update date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "09296fb4-914c-495e-b7d3-1d6830d0c8e7", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "76d0579a-b32b-41c0-ba8f-b3e2a891af11", - "type": "RELATION", - "name": "author", - "label": "Author", - "description": "Activity author", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "fc0b5b46-da68-45d0-850b-fae825805507", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "723221aa-d945-4667-9563-3d06186d7f14", - "nameSingular": "activity", - "namePlural": "activities" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "76d0579a-b32b-41c0-ba8f-b3e2a891af11", - "name": "author" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "527a55ab-6aa7-4c6f-9476-052c568f42d5", - "name": "authoredActivities" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "fc0b5b46-da68-45d0-850b-fae825805507", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "527a55ab-6aa7-4c6f-9476-052c568f42d5", - "fromObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers", - "isSystem": true, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "f7d5db6e-0916-49cc-a4d4-b0489b8fbdbc", - "type": "RICH_TEXT", - "name": "body", - "label": "Body", - "description": "Activity body", - "icon": "IconList", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - } - ] - } - } - }, - { - "__typename": "objectEdge", - "node": { - "__typename": "object", - "id": "71c95623-ea5b-4a6f-ac62-20cc2a04f8b7", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "auditLog", - "namePlural": "auditLogs", - "labelSingular": "Audit Log", - "labelPlural": "Audit Logs", - "description": "An audit log of actions performed in the system", - "icon": "IconIconTimelineEvent", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "labelIdentifierFieldMetadataId": null, - "imageIdentifierFieldMetadataId": null, - "fields": { - "__typename": "ObjectFieldsConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjEw" - }, - "edges": [ - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "18cc1590-50c9-4c76-92da-307f1cbd538e", - "type": "RELATION", - "name": "workspaceMember", - "label": "Workspace Member", - "description": "Event workspace member", - "icon": "IconCircleUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "f2ecb7d8-b7f3-42d6-b435-f4b48adf0a6d", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "71c95623-ea5b-4a6f-ac62-20cc2a04f8b7", - "nameSingular": "auditLog", - "namePlural": "auditLogs" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "18cc1590-50c9-4c76-92da-307f1cbd538e", - "name": "workspaceMember" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "4c445e0e-6157-47b1-b5f3-fff8483f6cfb", - "name": "auditLogs" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "f2ecb7d8-b7f3-42d6-b435-f4b48adf0a6d", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "4c445e0e-6157-47b1-b5f3-fff8483f6cfb", - "fromObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers", - "isSystem": true, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "c6aff1c6-a93a-48d4-b672-0408ced43c64", - "type": "TEXT", - "name": "objectName", - "label": "Object name", - "description": "If the event is related to a particular object", - "icon": "IconAbc", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "c42df07a-210e-4c6d-b3c0-bf10141b4650", - "type": "TEXT", - "name": "name", - "label": "Event name", - "description": "Event name/type", - "icon": "IconAbc", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "95cf88a8-cf9b-4c77-b4f6-b57a8be8142a", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "uuid", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "262f5029-c4ac-47e5-9552-20f92440c9d9", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Update date", - "description": "Update date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "ccb2add4-fa25-4314-a55b-4c83dd5b2d40", - "type": "UUID", - "name": "recordId", - "label": "Object id", - "description": "Event name/type", - "icon": "IconAbc", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "10dc7e8f-39d4-4165-b835-0c159d0383cc", - "type": "TEXT", - "name": "objectMetadataId", - "label": "Object name", - "description": "If the event is related to a particular object", - "icon": "IconAbc", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "baf57f5d-55b2-4497-8e9e-e2c56682201e", - "type": "RAW_JSON", - "name": "context", - "label": "Event context", - "description": "Json object to provide context (user, device, workspace, etc.)", - "icon": "IconListDetails", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "e8e38fc0-5ece-4651-a614-3fb5449b1c07", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "c9c07299-04f4-467a-a71f-db95bf2ce1f0", - "type": "RAW_JSON", - "name": "properties", - "label": "Event details", - "description": "Json value for event details", - "icon": "IconListDetails", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "7f4f46e6-6479-4b1e-88dd-b085b23510b6", - "type": "UUID", - "name": "workspaceMemberId", - "label": "Workspace Member id (foreign key)", - "description": "Event workspace member id foreign key", - "icon": "IconCircleUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - } - ] - } - } - }, - { - "__typename": "objectEdge", - "node": { - "__typename": "object", - "id": "4f34d651-9013-43ad-9d52-de8f3713e6a5", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "calendarChannel", - "namePlural": "calendarChannels", - "labelSingular": "Calendar Channel", - "labelPlural": "Calendar Channels", - "description": "Calendar Channels", - "icon": "IconCalendar", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "labelIdentifierFieldMetadataId": null, - "imageIdentifierFieldMetadataId": null, - "fields": { - "__typename": "ObjectFieldsConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjEx" - }, - "edges": [ - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "322d18bf-d629-4867-8d42-a7fe0f0e84bd", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Update date", - "description": "Update date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "143e8157-1136-49ff-a956-be99d4c76155", - "type": "RELATION", - "name": "connectedAccount", - "label": "Connected Account", - "description": "Connected Account", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "42b809af-849c-4cdb-ae1f-aaa0922d3f4e", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "4f34d651-9013-43ad-9d52-de8f3713e6a5", - "nameSingular": "calendarChannel", - "namePlural": "calendarChannels" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "143e8157-1136-49ff-a956-be99d4c76155", - "name": "connectedAccount" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "9e54a328-9247-4d39-8999-35007b4bd34d", - "nameSingular": "connectedAccount", - "namePlural": "connectedAccounts" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "3b558f9d-5e8b-48b1-a260-cb5464ad4c8d", - "name": "calendarChannels" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "42b809af-849c-4cdb-ae1f-aaa0922d3f4e", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "3b558f9d-5e8b-48b1-a260-cb5464ad4c8d", - "fromObjectMetadata": { - "__typename": "object", - "id": "9e54a328-9247-4d39-8999-35007b4bd34d", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "connectedAccount", - "namePlural": "connectedAccounts", - "isSystem": true, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "eafe3727-d061-4cae-a7dc-ab8bf5743ddc", - "type": "NUMBER", - "name": "throttleFailureCount", - "label": "Throttle Failure Count", - "description": "Throttle Failure Count", - "icon": "IconX", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": 0, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "75975274-8627-48cb-af2f-9b63936bd8cd", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "uuid", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "87f918a0-a5e8-4b9b-ac0a-131e780e2f29", - "type": "BOOLEAN", - "name": "isSyncEnabled", - "label": "Is Sync Enabled", - "description": "Is Sync Enabled", - "icon": "IconRefresh", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": true, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "8da769d8-e793-4439-b468-43361047fe3a", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "ed229cd6-ff79-462e-be57-8af68792f737", - "type": "TEXT", - "name": "syncCursor", - "label": "Sync Cursor", - "description": "Sync Cursor. Used for syncing events from the calendar provider", - "icon": "IconReload", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "9f26f6a7-7610-4263-b520-99dfbdf14180", - "type": "SELECT", - "name": "visibility", - "label": "Visibility", - "description": "Visibility", - "icon": "IconEyeglass", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "'SHARE_EVERYTHING'", - "options": [ - { - "id": "04a22518-0b58-4ac5-9287-1145f7abd831", - "color": "green", - "label": "Metadata", - "value": "METADATA", - "position": 0 - }, - { - "id": "6ee22ede-8710-44f8-9566-66e38987281e", - "color": "orange", - "label": "Share Everything", - "value": "SHARE_EVERYTHING", - "position": 1 - } - ], - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "0bac812e-5fe7-4b59-a96e-7a1322e48935", - "type": "BOOLEAN", - "name": "isContactAutoCreationEnabled", - "label": "Is Contact Auto Creation Enabled", - "description": "Is Contact Auto Creation Enabled", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": true, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "b6d4d880-1a87-4ee1-8c7f-8fa1f061641d", - "type": "RELATION", - "name": "calendarChannelEventAssociations", - "label": "Calendar Channel Event Associations", - "description": "Calendar Channel Event Associations", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "3034a445-6ce9-4218-b157-c657437ed426", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "4f34d651-9013-43ad-9d52-de8f3713e6a5", - "nameSingular": "calendarChannel", - "namePlural": "calendarChannels" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "b6d4d880-1a87-4ee1-8c7f-8fa1f061641d", - "name": "calendarChannelEventAssociations" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "09959589-4056-4bf3-86cc-ba3e2ad28e86", - "nameSingular": "calendarChannelEventAssociation", - "namePlural": "calendarChannelEventAssociations" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "32d7cbd6-4715-4e79-94cf-d7ae1f961dba", - "name": "calendarChannel" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "3034a445-6ce9-4218-b157-c657437ed426", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "32d7cbd6-4715-4e79-94cf-d7ae1f961dba", - "toObjectMetadata": { - "__typename": "object", - "id": "09959589-4056-4bf3-86cc-ba3e2ad28e86", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "calendarChannelEventAssociation", - "namePlural": "calendarChannelEventAssociations", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "68c314e0-8722-474a-aa44-59be3e4a5094", - "type": "TEXT", - "name": "handle", - "label": "Handle", - "description": "Handle", - "icon": "IconAt", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "e3036a6c-e3fa-4932-9f14-94f0315b3420", - "type": "UUID", - "name": "connectedAccountId", - "label": "Connected Account id (foreign key)", - "description": "Connected Account id foreign key", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - } - ] - } - } - }, - { - "__typename": "objectEdge", - "node": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers", - "labelSingular": "Workspace Member", - "labelPlural": "Workspace Members", - "description": "A workspace member", - "icon": "IconUserCircle", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "labelIdentifierFieldMetadataId": null, - "imageIdentifierFieldMetadataId": null, - "fields": { - "__typename": "ObjectFieldsConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjIw" - }, - "edges": [ - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "86e2868f-e6af-4629-b00a-84972c3c3e8f", - "type": "RELATION", - "name": "assignedActivities", - "label": "Assigned activities", - "description": "Activities assigned to the workspace member", - "icon": "IconCheckbox", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "daad07d2-8c0b-4f7a-a10f-273e5c3586e8", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "86e2868f-e6af-4629-b00a-84972c3c3e8f", - "name": "assignedActivities" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "723221aa-d945-4667-9563-3d06186d7f14", - "nameSingular": "activity", - "namePlural": "activities" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "72b3344e-04b1-4e0a-ac66-7b47eb2498b7", - "name": "assignee" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "daad07d2-8c0b-4f7a-a10f-273e5c3586e8", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "72b3344e-04b1-4e0a-ac66-7b47eb2498b7", - "toObjectMetadata": { - "__typename": "object", - "id": "723221aa-d945-4667-9563-3d06186d7f14", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "activity", - "namePlural": "activities", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "8ede3375-da0e-4bb5-9444-a042523ccc33", - "type": "FULL_NAME", - "name": "name", - "label": "Name", - "description": "Workspace member name", - "icon": "IconCircleUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": { - "lastName": "''", - "firstName": "''" - }, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "cf0b6bfc-d42f-4a69-ab0e-bdb7a6de85c9", - "type": "RELATION", - "name": "blocklist", - "label": "Blocklist", - "description": "Blocklisted handles", - "icon": "IconForbid2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "34d39eb8-8f2d-4541-ac9c-74627e65def3", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "cf0b6bfc-d42f-4a69-ab0e-bdb7a6de85c9", - "name": "blocklist" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "a47a16bf-eab2-4fd3-bf50-f1a9fc225a42", - "nameSingular": "blocklist", - "namePlural": "blocklists" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "50ea7eae-17f1-44eb-a0df-1c841413211f", - "name": "workspaceMember" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "34d39eb8-8f2d-4541-ac9c-74627e65def3", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "50ea7eae-17f1-44eb-a0df-1c841413211f", - "toObjectMetadata": { - "__typename": "object", - "id": "a47a16bf-eab2-4fd3-bf50-f1a9fc225a42", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "blocklist", - "namePlural": "blocklists", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "937a5c60-3dc6-4c57-88f7-5b7c888db1fa", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "fdaa3e1e-4b14-4526-b9c5-a8fbbf1789ff", - "type": "TEXT", - "name": "userEmail", - "label": "User Email", - "description": "Related user email address", - "icon": "IconMail", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "527a55ab-6aa7-4c6f-9476-052c568f42d5", - "type": "RELATION", - "name": "authoredActivities", - "label": "Authored activities", - "description": "Activities created by the workspace member", - "icon": "IconCheckbox", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "fc0b5b46-da68-45d0-850b-fae825805507", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "527a55ab-6aa7-4c6f-9476-052c568f42d5", - "name": "authoredActivities" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "723221aa-d945-4667-9563-3d06186d7f14", - "nameSingular": "activity", - "namePlural": "activities" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "76d0579a-b32b-41c0-ba8f-b3e2a891af11", - "name": "author" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "fc0b5b46-da68-45d0-850b-fae825805507", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "76d0579a-b32b-41c0-ba8f-b3e2a891af11", - "toObjectMetadata": { - "__typename": "object", - "id": "723221aa-d945-4667-9563-3d06186d7f14", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "activity", - "namePlural": "activities", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "03d793d5-59dd-4fef-ab31-c5f21c42252e", - "type": "UUID", - "name": "userId", - "label": "User Id", - "description": "Associated User Id", - "icon": "IconCircleUsers", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "67d62616-508b-4c54-a5a1-212c7edcb602", - "type": "TEXT", - "name": "avatarUrl", - "label": "Avatar Url", - "description": "Workspace member avatar", - "icon": "IconFileUpload", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "aee083d6-f7b1-4c26-ab53-3183b8b1d4d8", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Update date", - "description": "Update date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "b2afa83b-d17c-42af-bbfe-f5c59db0a02c", - "type": "RELATION", - "name": "connectedAccounts", - "label": "Connected accounts", - "description": "Connected accounts", - "icon": "IconAt", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "7362ff24-6c6a-4b1c-aca7-21b9458798aa", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "b2afa83b-d17c-42af-bbfe-f5c59db0a02c", - "name": "connectedAccounts" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "9e54a328-9247-4d39-8999-35007b4bd34d", - "nameSingular": "connectedAccount", - "namePlural": "connectedAccounts" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "395cc961-c5e0-4715-8439-c170c076fa8b", - "name": "accountOwner" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "7362ff24-6c6a-4b1c-aca7-21b9458798aa", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "395cc961-c5e0-4715-8439-c170c076fa8b", - "toObjectMetadata": { - "__typename": "object", - "id": "9e54a328-9247-4d39-8999-35007b4bd34d", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "connectedAccount", - "namePlural": "connectedAccounts", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "e530abeb-c6d7-43dc-a4f2-3f04b7000738", - "type": "RELATION", - "name": "authoredAttachments", - "label": "Authored attachments", - "description": "Attachments created by the workspace member", - "icon": "IconFileImport", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "d74d14b6-130b-49ac-83fe-5c564ed96e18", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "e530abeb-c6d7-43dc-a4f2-3f04b7000738", - "name": "authoredAttachments" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "0c99085d-8a5a-4854-ad0d-ec29f3570f3a", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "0a8628a5-0a2a-4dc8-b7f7-c852a5cd50d8", - "name": "author" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "d74d14b6-130b-49ac-83fe-5c564ed96e18", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "0a8628a5-0a2a-4dc8-b7f7-c852a5cd50d8", - "toObjectMetadata": { - "__typename": "object", - "id": "0c99085d-8a5a-4854-ad0d-ec29f3570f3a", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "attachment", - "namePlural": "attachments", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "4c445e0e-6157-47b1-b5f3-fff8483f6cfb", - "type": "RELATION", - "name": "auditLogs", - "label": "Audit Logs", - "description": "Audit Logs linked to the workspace member", - "icon": "IconTimelineEvent", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "f2ecb7d8-b7f3-42d6-b435-f4b48adf0a6d", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "4c445e0e-6157-47b1-b5f3-fff8483f6cfb", - "name": "auditLogs" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "71c95623-ea5b-4a6f-ac62-20cc2a04f8b7", - "nameSingular": "auditLog", - "namePlural": "auditLogs" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "18cc1590-50c9-4c76-92da-307f1cbd538e", - "name": "workspaceMember" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "f2ecb7d8-b7f3-42d6-b435-f4b48adf0a6d", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "18cc1590-50c9-4c76-92da-307f1cbd538e", - "toObjectMetadata": { - "__typename": "object", - "id": "71c95623-ea5b-4a6f-ac62-20cc2a04f8b7", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "auditLog", - "namePlural": "auditLogs", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "46ad37c6-7934-41af-b1b1-51b06d7d230c", - "type": "RELATION", - "name": "favorites", - "label": "Favorites", - "description": "Favorites linked to the workspace member", - "icon": "IconHeart", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "5f13fa68-4367-4a2f-b50c-d40bde96953a", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "46ad37c6-7934-41af-b1b1-51b06d7d230c", - "name": "favorites" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "038a733b-641f-4f09-8509-c210e729e6c5", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "b1ba6c14-de0b-491b-96e7-e693f359c6f6", - "name": "workspaceMember" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "5f13fa68-4367-4a2f-b50c-d40bde96953a", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "b1ba6c14-de0b-491b-96e7-e693f359c6f6", - "toObjectMetadata": { - "__typename": "object", - "id": "038a733b-641f-4f09-8509-c210e729e6c5", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "favorite", - "namePlural": "favorites", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "0604d7f7-f2d1-4d0e-84d5-13df68ea688b", - "type": "TEXT", - "name": "colorScheme", - "label": "Color Scheme", - "description": "Preferred color scheme", - "icon": "IconColorSwatch", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "'Light'", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "79edf404-895d-4db5-9c93-140c547d5af9", - "type": "RELATION", - "name": "accountOwnerForCompanies", - "label": "Account Owner For Companies", - "description": "Account owner for companies", - "icon": "IconBriefcase", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "4d810e79-eae5-4212-984b-8e95632fd07d", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "79edf404-895d-4db5-9c93-140c547d5af9", - "name": "accountOwnerForCompanies" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "f9fd99a8-108f-4066-9675-cde753cf5de9", - "nameSingular": "company", - "namePlural": "companies" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "8fcf63f1-91cd-42c7-bc6d-99f21ab3e9af", - "name": "accountOwner" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "4d810e79-eae5-4212-984b-8e95632fd07d", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "8fcf63f1-91cd-42c7-bc6d-99f21ab3e9af", - "toObjectMetadata": { - "__typename": "object", - "id": "f9fd99a8-108f-4066-9675-cde753cf5de9", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "company", - "namePlural": "companies", - "isSystem": false, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "de6b0b95-5481-4cc7-8dc6-cd08808b2929", - "type": "RELATION", - "name": "timelineActivities", - "label": "Events", - "description": "Events linked to the workspace member", - "icon": "IconTimelineEvent", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "6964f5a7-8edd-41a1-98c7-9d445ee722e3", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "de6b0b95-5481-4cc7-8dc6-cd08808b2929", - "name": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "ae47ee7c-ea45-4273-94ee-336d1433ae33", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "40216419-eccc-4f63-a344-eda6f753845d", - "name": "workspaceMember" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "6964f5a7-8edd-41a1-98c7-9d445ee722e3", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "40216419-eccc-4f63-a344-eda6f753845d", - "toObjectMetadata": { - "__typename": "object", - "id": "ae47ee7c-ea45-4273-94ee-336d1433ae33", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "23293e02-6b84-4f0a-beba-e4325714fc9f", - "type": "RELATION", - "name": "calendarEventParticipants", - "label": "Calendar Event Participants", - "description": "Calendar Event Participants", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "4d2b18e2-8704-42ee-994d-cf8e83e1c217", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "23293e02-6b84-4f0a-beba-e4325714fc9f", - "name": "calendarEventParticipants" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "c8fcc468-5891-4938-abf8-ad4d99078d7c", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "96c5cb56-4598-4109-a33e-a666b022d600", - "name": "workspaceMember" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "4d2b18e2-8704-42ee-994d-cf8e83e1c217", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "96c5cb56-4598-4109-a33e-a666b022d600", - "toObjectMetadata": { - "__typename": "object", - "id": "c8fcc468-5891-4938-abf8-ad4d99078d7c", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "9082d9b0-08af-45d6-9047-534f804e3c02", - "type": "RELATION", - "name": "messageParticipants", - "label": "Message Participants", - "description": "Message Participants", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "40a3eefd-e2c0-4e59-934d-e6e6b7eb695c", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "9082d9b0-08af-45d6-9047-534f804e3c02", - "name": "messageParticipants" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "810c0e7f-5e65-4d68-8596-1e585862bee9", - "nameSingular": "messageParticipant", - "namePlural": "messageParticipants" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "4f81e76c-54f3-4a8c-89f7-9ed806154a66", - "name": "workspaceMember" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "40a3eefd-e2c0-4e59-934d-e6e6b7eb695c", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "4f81e76c-54f3-4a8c-89f7-9ed806154a66", - "toObjectMetadata": { - "__typename": "object", - "id": "810c0e7f-5e65-4d68-8596-1e585862bee9", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "messageParticipant", - "namePlural": "messageParticipants", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "6afa53e9-d4c1-44a9-98e6-88d310e62314", - "type": "TEXT", - "name": "locale", - "label": "Language", - "description": "Preferred language", - "icon": "IconLanguage", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "'en'", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "5a85d3a7-a00c-4efb-8ccc-652f25b3fdb9", - "type": "RELATION", - "name": "authoredComments", - "label": "Authored comments", - "description": "Authored comments", - "icon": "IconComment", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "8e8bb81e-b667-4372-bf27-5d23b2b440f6", - "direction": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "5a85d3a7-a00c-4efb-8ccc-652f25b3fdb9", - "name": "authoredComments" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "0e780173-f829-4110-bfcf-7520d6664564", - "nameSingular": "comment", - "namePlural": "comments" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "d17330db-5583-4e34-9223-0f96a116db4e", - "name": "author" - } - }, - "fromRelationMetadata": { - "__typename": "relation", - "id": "8e8bb81e-b667-4372-bf27-5d23b2b440f6", - "relationType": "ONE_TO_MANY", - "toFieldMetadataId": "d17330db-5583-4e34-9223-0f96a116db4e", - "toObjectMetadata": { - "__typename": "object", - "id": "0e780173-f829-4110-bfcf-7520d6664564", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "comment", - "namePlural": "comments", - "isSystem": true, - "isRemote": false - } - }, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "9d794ac2-9bba-4308-bfce-745d1417c07b", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "uuid", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - } - ] - } - } - }, - { - "__typename": "objectEdge", - "node": { - "__typename": "object", - "id": "1ceaec2d-09a2-403d-81b7-740283492c79", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "apiKey", - "namePlural": "apiKeys", - "labelSingular": "Api Key", - "labelPlural": "Api Keys", - "description": "An api key", - "icon": "IconRobot", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "labelIdentifierFieldMetadataId": null, - "imageIdentifierFieldMetadataId": null, - "fields": { - "__typename": "ObjectFieldsConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjU=" - }, - "edges": [ - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "8c7336db-899f-4c0e-88e7-ad7887f13bd0", - "type": "DATE_TIME", - "name": "expiresAt", - "label": "Expiration date", - "description": "ApiKey expiration date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "7a6fbfe8-4ae4-4f47-ac9d-3f53788f63bd", - "type": "DATE_TIME", - "name": "revokedAt", - "label": "Revocation date", - "description": "ApiKey revocation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "5d0565d1-ed8b-4e7d-9762-eccff24f795f", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "d6c9b463-f744-4fbc-9f59-ca4c81cfb078", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Update date", - "description": "Update date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "8928d662-fcc4-4232-a6fa-88d0fb73c36a", - "type": "TEXT", - "name": "name", - "label": "Name", - "description": "ApiKey name", - "icon": "IconLink", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "781d16db-c85d-4733-9671-92f0a9b4602e", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "uuid", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - } - ] - } - } - }, - { - "__typename": "objectEdge", - "node": { - "__typename": "object", - "id": "0e780173-f829-4110-bfcf-7520d6664564", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "comment", - "namePlural": "comments", - "labelSingular": "Comment", - "labelPlural": "Comments", - "description": "A comment", - "icon": "IconMessageCircle", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "labelIdentifierFieldMetadataId": null, - "imageIdentifierFieldMetadataId": null, - "fields": { - "__typename": "ObjectFieldsConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjc=" - }, - "edges": [ - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "18fc498e-f1ba-4a45-a49d-5acac3eb606c", - "type": "RELATION", - "name": "activity", - "label": "Activity", - "description": "Comment activity", - "icon": "IconNotes", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "ee654bd4-29bf-4f12-94a2-069ea032af8b", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "0e780173-f829-4110-bfcf-7520d6664564", - "nameSingular": "comment", - "namePlural": "comments" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "18fc498e-f1ba-4a45-a49d-5acac3eb606c", - "name": "activity" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "723221aa-d945-4667-9563-3d06186d7f14", - "nameSingular": "activity", - "namePlural": "activities" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "10b42cf0-a57c-4e35-97ec-336952040be2", - "name": "comments" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "ee654bd4-29bf-4f12-94a2-069ea032af8b", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "10b42cf0-a57c-4e35-97ec-336952040be2", - "fromObjectMetadata": { - "__typename": "object", - "id": "723221aa-d945-4667-9563-3d06186d7f14", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "activity", - "namePlural": "activities", - "isSystem": true, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "2d417ee5-adb5-4318-b8ec-7a6d56e09b6f", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Update date", - "description": "Update date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "cd9efab6-a13f-4d5b-96fc-193cd3c8bce1", - "type": "RICH_TEXT", - "name": "body", - "label": "Body", - "description": "Comment body", - "icon": "IconLink", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "ec578fe6-3f62-4f78-8e01-794bf6791940", - "type": "UUID", - "name": "authorId", - "label": "Author id (foreign key)", - "description": "Comment author id foreign key", - "icon": "IconCircleUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "bdcd5420-bb94-4487-b666-abdfcec405ab", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "uuid", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "d17330db-5583-4e34-9223-0f96a116db4e", - "type": "RELATION", - "name": "author", - "label": "Author", - "description": "Comment author", - "icon": "IconCircleUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "8e8bb81e-b667-4372-bf27-5d23b2b440f6", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "0e780173-f829-4110-bfcf-7520d6664564", - "nameSingular": "comment", - "namePlural": "comments" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "d17330db-5583-4e34-9223-0f96a116db4e", - "name": "author" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "5a85d3a7-a00c-4efb-8ccc-652f25b3fdb9", - "name": "authoredComments" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "8e8bb81e-b667-4372-bf27-5d23b2b440f6", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "5a85d3a7-a00c-4efb-8ccc-652f25b3fdb9", - "fromObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers", - "isSystem": true, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "11cbc09d-6e41-4a74-acfe-5eb60333aa6d", - "type": "UUID", - "name": "activityId", - "label": "Activity id (foreign key)", - "description": "Comment activity id foreign key", - "icon": "IconNotes", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "fe93ba79-5409-4a30-9d26-983ac9b5acf3", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - } - ] - } - } - }, - { - "__typename": "objectEdge", - "node": { - "__typename": "object", - "id": "0c99085d-8a5a-4854-ad0d-ec29f3570f3a", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "attachment", - "namePlural": "attachments", - "labelSingular": "Attachment", - "labelPlural": "Attachments", - "description": "An attachment", - "icon": "IconFileImport", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "labelIdentifierFieldMetadataId": null, - "imageIdentifierFieldMetadataId": null, - "fields": { - "__typename": "ObjectFieldsConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjE1" - }, - "edges": [ - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "963e4803-1fce-416d-a450-69c704658d9b", - "type": "UUID", - "name": "activityId", - "label": "Activity id (foreign key)", - "description": "Attachment activity id foreign key", - "icon": "IconNotes", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "61379090-02cf-4f96-8dee-6f5761323e9f", - "type": "RELATION", - "name": "opportunity", - "label": "Opportunity", - "description": "Attachment opportunity", - "icon": "IconBuildingSkyscraper", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "3219f278-8658-410d-ae56-a795d52aee58", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "0c99085d-8a5a-4854-ad0d-ec29f3570f3a", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "61379090-02cf-4f96-8dee-6f5761323e9f", - "name": "opportunity" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "afdbcc7a-95bc-4e30-917d-ba583448b405", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "2dd0b2c4-ce5d-4783-a180-b48f8972369a", - "name": "attachments" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "3219f278-8658-410d-ae56-a795d52aee58", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "2dd0b2c4-ce5d-4783-a180-b48f8972369a", - "fromObjectMetadata": { - "__typename": "object", - "id": "afdbcc7a-95bc-4e30-917d-ba583448b405", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "opportunity", - "namePlural": "opportunities", - "isSystem": false, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "e8ad2a46-3cd9-4256-b6b3-01db9e332608", - "type": "UUID", - "name": "personId", - "label": "Person id (foreign key)", - "description": "Attachment person id foreign key", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "2b87a17f-0f9e-44a3-85c0-d6ccaa3d419b", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "uuid", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "7fe03d5a-5ad4-4f83-ba5b-5f426ddfed1f", - "type": "UUID", - "name": "companyId", - "label": "Company id (foreign key)", - "description": "Attachment company id foreign key", - "icon": "IconBuildingSkyscraper", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "3dc50db7-afc5-43ab-9636-5a6ee4b034f3", - "type": "TEXT", - "name": "name", - "label": "Name", - "description": "Attachment name", - "icon": "IconFileUpload", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "8538ff1e-9223-4498-8c3c-7c25235887c7", - "type": "UUID", - "name": "opportunityId", - "label": "Opportunity id (foreign key)", - "description": "Attachment opportunity id foreign key", - "icon": "IconBuildingSkyscraper", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "278876b8-4245-4b3a-a50e-ddd4dd2be0a0", - "type": "RELATION", - "name": "activity", - "label": "Activity", - "description": "Attachment activity", - "icon": "IconNotes", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "766a94ea-8935-45c2-8828-60649c73d3e5", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "0c99085d-8a5a-4854-ad0d-ec29f3570f3a", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "278876b8-4245-4b3a-a50e-ddd4dd2be0a0", - "name": "activity" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "723221aa-d945-4667-9563-3d06186d7f14", - "nameSingular": "activity", - "namePlural": "activities" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "d14e70fb-081d-4b09-9002-e42ea0acc4f6", - "name": "attachments" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "766a94ea-8935-45c2-8828-60649c73d3e5", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "d14e70fb-081d-4b09-9002-e42ea0acc4f6", - "fromObjectMetadata": { - "__typename": "object", - "id": "723221aa-d945-4667-9563-3d06186d7f14", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "activity", - "namePlural": "activities", - "isSystem": true, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "c6d94dbe-a989-444e-938d-86c95d7e54f0", - "type": "UUID", - "name": "authorId", - "label": "Author id (foreign key)", - "description": "Attachment author id foreign key", - "icon": "IconCircleUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "987bc5b8-3ceb-472c-bf2e-36a084cbffe1", - "type": "TEXT", - "name": "type", - "label": "Type", - "description": "Attachment type", - "icon": "IconList", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "93a19f29-8d35-4c2e-85bb-f39097a99e91", - "type": "TEXT", - "name": "fullPath", - "label": "Full path", - "description": "Attachment full path", - "icon": "IconLink", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "8ee14cfb-aec5-490a-a37a-0793cce9c74c", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "091f3ec1-c30a-41af-bd7f-d104cb2f3875", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Update date", - "description": "Update date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "8e9ba278-5293-4e30-9faf-369eb3459790", - "type": "RELATION", - "name": "company", - "label": "Company", - "description": "Attachment company", - "icon": "IconBuildingSkyscraper", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "36daf4c7-9fdf-48f3-9baf-a60d290b729c", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "0c99085d-8a5a-4854-ad0d-ec29f3570f3a", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "8e9ba278-5293-4e30-9faf-369eb3459790", - "name": "company" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "f9fd99a8-108f-4066-9675-cde753cf5de9", - "nameSingular": "company", - "namePlural": "companies" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "fb558bde-aad6-4d0b-a4c6-54750c530e5e", - "name": "attachments" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "36daf4c7-9fdf-48f3-9baf-a60d290b729c", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "fb558bde-aad6-4d0b-a4c6-54750c530e5e", - "fromObjectMetadata": { - "__typename": "object", - "id": "f9fd99a8-108f-4066-9675-cde753cf5de9", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "company", - "namePlural": "companies", - "isSystem": false, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "179aa192-8b24-49ba-a9a2-e81b19f6ac6e", - "type": "RELATION", - "name": "person", - "label": "Person", - "description": "Attachment person", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "4b99c7e5-a47e-4919-93fb-056f7813ce39", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "0c99085d-8a5a-4854-ad0d-ec29f3570f3a", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "179aa192-8b24-49ba-a9a2-e81b19f6ac6e", - "name": "person" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "f90f0471-1042-4f38-a285-d870fb5a5a26", - "nameSingular": "person", - "namePlural": "people" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "50024036-0722-4727-bdff-ea073fcdc831", - "name": "attachments" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "4b99c7e5-a47e-4919-93fb-056f7813ce39", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "50024036-0722-4727-bdff-ea073fcdc831", - "fromObjectMetadata": { - "__typename": "object", - "id": "f90f0471-1042-4f38-a285-d870fb5a5a26", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "person", - "namePlural": "people", - "isSystem": false, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "0a8628a5-0a2a-4dc8-b7f7-c852a5cd50d8", - "type": "RELATION", - "name": "author", - "label": "Author", - "description": "Attachment author", - "icon": "IconCircleUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "d74d14b6-130b-49ac-83fe-5c564ed96e18", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "0c99085d-8a5a-4854-ad0d-ec29f3570f3a", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "0a8628a5-0a2a-4dc8-b7f7-c852a5cd50d8", - "name": "author" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "e530abeb-c6d7-43dc-a4f2-3f04b7000738", - "name": "authoredAttachments" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "d74d14b6-130b-49ac-83fe-5c564ed96e18", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "e530abeb-c6d7-43dc-a4f2-3f04b7000738", - "fromObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers", - "isSystem": true, - "isRemote": false - } - } - } - } - ] - } - } - }, - { - "__typename": "objectEdge", - "node": { - "__typename": "object", - "id": "09959589-4056-4bf3-86cc-ba3e2ad28e86", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "calendarChannelEventAssociation", - "namePlural": "calendarChannelEventAssociations", - "labelSingular": "Calendar Channel Event Association", - "labelPlural": "Calendar Channel Event Associations", - "description": "Calendar Channel Event Associations", - "icon": "IconCalendar", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "labelIdentifierFieldMetadataId": null, - "imageIdentifierFieldMetadataId": null, - "fields": { - "__typename": "ObjectFieldsConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjc=" - }, - "edges": [ - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "32d7cbd6-4715-4e79-94cf-d7ae1f961dba", - "type": "RELATION", - "name": "calendarChannel", - "label": "Channel ID", - "description": "Channel ID", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "3034a445-6ce9-4218-b157-c657437ed426", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "09959589-4056-4bf3-86cc-ba3e2ad28e86", - "nameSingular": "calendarChannelEventAssociation", - "namePlural": "calendarChannelEventAssociations" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "32d7cbd6-4715-4e79-94cf-d7ae1f961dba", - "name": "calendarChannel" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "4f34d651-9013-43ad-9d52-de8f3713e6a5", - "nameSingular": "calendarChannel", - "namePlural": "calendarChannels" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "b6d4d880-1a87-4ee1-8c7f-8fa1f061641d", - "name": "calendarChannelEventAssociations" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "3034a445-6ce9-4218-b157-c657437ed426", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "b6d4d880-1a87-4ee1-8c7f-8fa1f061641d", - "fromObjectMetadata": { - "__typename": "object", - "id": "4f34d651-9013-43ad-9d52-de8f3713e6a5", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "calendarChannel", - "namePlural": "calendarChannels", - "isSystem": true, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "c95687b5-72b4-48d5-890f-3d0715617bbf", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "uuid", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "234ef8b5-0b4f-46ae-8eb3-0f2375999b86", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Update date", - "description": "Update date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "84a52c9f-fc5c-44d1-8007-5f485c91ea4c", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "2661566e-a215-4c93-8b62-7b558a5ebbf5", - "type": "RELATION", - "name": "calendarEvent", - "label": "Event ID", - "description": "Event ID", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "f91e1ab8-a08b-4bc6-916e-13d2e0228e14", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "09959589-4056-4bf3-86cc-ba3e2ad28e86", - "nameSingular": "calendarChannelEventAssociation", - "namePlural": "calendarChannelEventAssociations" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "2661566e-a215-4c93-8b62-7b558a5ebbf5", - "name": "calendarEvent" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "e5c3675a-24bf-487c-828d-0b544dacff29", - "nameSingular": "calendarEvent", - "namePlural": "calendarEvents" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "5c768823-df78-40a6-8793-16d25df63179", - "name": "calendarChannelEventAssociations" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "f91e1ab8-a08b-4bc6-916e-13d2e0228e14", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "5c768823-df78-40a6-8793-16d25df63179", - "fromObjectMetadata": { - "__typename": "object", - "id": "e5c3675a-24bf-487c-828d-0b544dacff29", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "calendarEvent", - "namePlural": "calendarEvents", - "isSystem": true, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "f5061b2c-2110-4b87-80bb-ac07ca831222", - "type": "UUID", - "name": "calendarEventId", - "label": "Event ID id (foreign key)", - "description": "Event ID id foreign key", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "731d31d6-53cd-4d6b-a9d3-6de1475ba017", - "type": "UUID", - "name": "calendarChannelId", - "label": "Channel ID id (foreign key)", - "description": "Channel ID id foreign key", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "7f04fdec-6294-4038-aada-933791426649", - "type": "TEXT", - "name": "eventExternalId", - "label": "Event external ID", - "description": "Event external ID", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - } - ] - } - } - }, - { - "__typename": "objectEdge", - "node": { - "__typename": "object", - "id": "038a733b-641f-4f09-8509-c210e729e6c5", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "favorite", - "namePlural": "favorites", - "labelSingular": "Favorite", - "labelPlural": "Favorites", - "description": "A favorite", - "icon": "IconHeart", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "labelIdentifierFieldMetadataId": null, - "imageIdentifierFieldMetadataId": null, - "fields": { - "__typename": "ObjectFieldsConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjEx" - }, - "edges": [ - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "16f8a279-b23d-4e7a-9388-2a1f48afd21b", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "uuid", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "83e3f065-3419-424d-b46e-76e0d422bacc", - "type": "RELATION", - "name": "person", - "label": "Person", - "description": "Favorite person", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "313373c0-98af-4e63-9ecd-e689302ea794", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "038a733b-641f-4f09-8509-c210e729e6c5", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "83e3f065-3419-424d-b46e-76e0d422bacc", - "name": "person" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "f90f0471-1042-4f38-a285-d870fb5a5a26", - "nameSingular": "person", - "namePlural": "people" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "812aea3f-b533-43a1-b8bd-b87aaa84c76e", - "name": "favorites" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "313373c0-98af-4e63-9ecd-e689302ea794", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "812aea3f-b533-43a1-b8bd-b87aaa84c76e", - "fromObjectMetadata": { - "__typename": "object", - "id": "f90f0471-1042-4f38-a285-d870fb5a5a26", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "person", - "namePlural": "people", - "isSystem": false, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "f951e3c3-1bd2-41b2-9612-73a0ba3dbabb", - "type": "UUID", - "name": "opportunityId", - "label": "Opportunity id (foreign key)", - "description": "Favorite opportunity id foreign key", - "icon": "IconTargetArrow", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "f56c8d42-3894-4ccf-8588-ad97d2a7df0a", - "type": "RELATION", - "name": "company", - "label": "Company", - "description": "Favorite company", - "icon": "IconBuildingSkyscraper", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "b45f0926-607e-418f-9e26-613594f97868", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "038a733b-641f-4f09-8509-c210e729e6c5", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "f56c8d42-3894-4ccf-8588-ad97d2a7df0a", - "name": "company" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "f9fd99a8-108f-4066-9675-cde753cf5de9", - "nameSingular": "company", - "namePlural": "companies" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "efaa1ccd-4c1f-4d81-9d30-f93030d32190", - "name": "favorites" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "b45f0926-607e-418f-9e26-613594f97868", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "efaa1ccd-4c1f-4d81-9d30-f93030d32190", - "fromObjectMetadata": { - "__typename": "object", - "id": "f9fd99a8-108f-4066-9675-cde753cf5de9", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "company", - "namePlural": "companies", - "isSystem": false, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "dead3c40-1c51-49e7-8763-c59c0d0c6699", - "type": "UUID", - "name": "personId", - "label": "Person id (foreign key)", - "description": "Favorite person id foreign key", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "43310ae4-74bc-4b29-a6b8-02a48688bf1a", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "b1ba6c14-de0b-491b-96e7-e693f359c6f6", - "type": "RELATION", - "name": "workspaceMember", - "label": "Workspace Member", - "description": "Favorite workspace member", - "icon": "IconCircleUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "5f13fa68-4367-4a2f-b50c-d40bde96953a", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "038a733b-641f-4f09-8509-c210e729e6c5", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "b1ba6c14-de0b-491b-96e7-e693f359c6f6", - "name": "workspaceMember" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "46ad37c6-7934-41af-b1b1-51b06d7d230c", - "name": "favorites" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "5f13fa68-4367-4a2f-b50c-d40bde96953a", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "46ad37c6-7934-41af-b1b1-51b06d7d230c", - "fromObjectMetadata": { - "__typename": "object", - "id": "340eeb86-e27d-4a56-b2b3-b47c2ad604d9", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers", - "isSystem": true, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "0429b209-c380-4b54-b769-e60772631ecc", - "type": "NUMBER", - "name": "position", - "label": "Position", - "description": "Favorite position", - "icon": "IconList", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": 0, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "8fa8a81e-f9b8-4eb6-a9b4-729b1f1c75a9", - "type": "RELATION", - "name": "opportunity", - "label": "Opportunity", - "description": "Favorite opportunity", - "icon": "IconTargetArrow", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "fromRelationMetadata": null, - "relationDefinition": { - "__typename": "RelationDefinition", - "relationId": "f9177e4d-571d-450a-babb-c109af5b18d6", - "direction": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "object", - "id": "038a733b-641f-4f09-8509-c210e729e6c5", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "field", - "id": "8fa8a81e-f9b8-4eb6-a9b4-729b1f1c75a9", - "name": "opportunity" - }, - "targetObjectMetadata": { - "__typename": "object", - "id": "afdbcc7a-95bc-4e30-917d-ba583448b405", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "targetFieldMetadata": { - "__typename": "field", - "id": "170c324a-821f-4c5d-a25f-a7443b2f751d", - "name": "favorites" - } - }, - "toRelationMetadata": { - "__typename": "relation", - "id": "f9177e4d-571d-450a-babb-c109af5b18d6", - "relationType": "ONE_TO_MANY", - "fromFieldMetadataId": "170c324a-821f-4c5d-a25f-a7443b2f751d", - "fromObjectMetadata": { - "__typename": "object", - "id": "afdbcc7a-95bc-4e30-917d-ba583448b405", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "opportunity", - "namePlural": "opportunities", - "isSystem": false, - "isRemote": false - } - } - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "6d85f788-2aa9-4f20-b382-2e46e9fe0dae", - "type": "UUID", - "name": "companyId", - "label": "Company id (foreign key)", - "description": "Favorite company id foreign key", - "icon": "IconBuildingSkyscraper", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "fb6ac052-14c2-4138-9d68-e4decf0bec4f", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Update date", - "description": "Update date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "1f2fdf33-a1f3-4df7-8d9d-fb6e15517888", - "type": "UUID", - "name": "workspaceMemberId", - "label": "Workspace Member id (foreign key)", - "description": "Favorite workspace member id foreign key", - "icon": "IconCircleUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": null, - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - } - ] - } - } - }, - { - "__typename": "objectEdge", - "node": { - "__typename": "object", - "id": "0216ee5f-8ac5-4e61-86e0-8c533db93a69", - "dataSourceId": "516da07d-6504-41f8-907c-db5c0a19785c", - "nameSingular": "webhook", - "namePlural": "webhooks", - "labelSingular": "Webhook", - "labelPlural": "Webhooks", - "description": "A webhook", - "icon": "IconRobot", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "labelIdentifierFieldMetadataId": null, - "imageIdentifierFieldMetadataId": null, - "fields": { - "__typename": "ObjectFieldsConnection", - "pageInfo": { - "__typename": "PageInfo", - "hasNextPage": false, - "hasPreviousPage": false, - "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjQ=" - }, - "edges": [ - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "736afdae-80f6-4fc6-87a0-22efc070a9b6", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "uuid", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "dcb735ad-251b-4a50-80a7-a288e1eedef6", - "type": "TEXT", - "name": "operation", - "label": "Operation", - "description": "Webhook operation", - "icon": "IconCheckbox", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "816b9b66-a5d4-4988-ac56-839293cf1da6", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Update date", - "description": "Update date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "34f57a7f-448b-4b35-ab66-312a4c1ce002", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "now", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - }, - { - "__typename": "fieldEdge", - "node": { - "__typename": "field", - "id": "31b3f963-f42c-4edf-a7ea-3d6e78d811d5", - "type": "TEXT", - "name": "targetUrl", - "label": "Target Url", - "description": "Webhook target url", - "icon": "IconLink", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isNullable": false, - "createdAt": "2024-06-07T09:05:12.599Z", - "updatedAt": "2024-06-07T09:05:12.599Z", - "defaultValue": "''", - "options": null, - "relationDefinition": null, - "fromRelationMetadata": null, - "toRelationMetadata": null - } - } - ] - } - } - } - ] + "__typename": "ObjectConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjMx" + }, + "edges": [ + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "e095e196-08d4-493c-8a02-01c4a3decb5c", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities", + "labelSingular": "Timeline Activity", + "labelPlural": "Timeline Activities", + "description": "Aggregated / filtered event to be displayed on the timeline", + "icon": "IconIconTimelineEvent", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "b2b89347-48a2-4f0c-a176-ad10ae33b7b1", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjIw" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "0e545220-a625-4571-a8e7-f97b7aee90c1", + "type": "UUID", + "name": "noteId", + "label": "Note id (foreign key)", + "description": "Event note id foreign key", + "icon": "IconTargetArrow", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "987fd4f6-4c5f-48a4-82f3-fd769de80dc4", + "type": "RELATION", + "name": "opportunity", + "label": "Opportunity", + "description": "Event opportunity", + "icon": "IconTargetArrow", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "d8ae1b79-b532-412c-92cf-767a32e3cda2", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "e095e196-08d4-493c-8a02-01c4a3decb5c", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "987fd4f6-4c5f-48a4-82f3-fd769de80dc4", + "name": "opportunity" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "2dbf5d59-f03c-4578-8ff3-750f4bcdf8d0", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "4e24ba90-8fcd-4df5-9fe8-48679c75d374", + "name": "timelineActivities" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "d8ae1b79-b532-412c-92cf-767a32e3cda2", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "4e24ba90-8fcd-4df5-9fe8-48679c75d374", + "fromObjectMetadata": { + "__typename": "object", + "id": "2dbf5d59-f03c-4578-8ff3-750f4bcdf8d0", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "opportunity", + "namePlural": "opportunities", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "ce28e696-4969-4e06-9056-6a176d9d7c90", + "type": "UUID", + "name": "linkedObjectMetadataId", + "label": "Linked Object Metadata Id", + "description": "inked Object Metadata Id", + "icon": "IconAbc", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "e48eeafe-43d8-4abc-95c8-6e7a6a56a7c9", + "type": "RELATION", + "name": "task", + "label": "Task", + "description": "Event task", + "icon": "IconTargetArrow", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "87c0082f-5411-4202-97cd-fc1d9112fa7a", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "e095e196-08d4-493c-8a02-01c4a3decb5c", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "e48eeafe-43d8-4abc-95c8-6e7a6a56a7c9", + "name": "task" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "4601f72c-580d-4e64-8004-4864f5e60da7", + "nameSingular": "task", + "namePlural": "tasks" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "975e6a19-d90c-45dc-9bb0-ffc57f4e1950", + "name": "timelineActivities" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "87c0082f-5411-4202-97cd-fc1d9112fa7a", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "975e6a19-d90c-45dc-9bb0-ffc57f4e1950", + "fromObjectMetadata": { + "__typename": "object", + "id": "4601f72c-580d-4e64-8004-4864f5e60da7", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "task", + "namePlural": "tasks", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "b2b89347-48a2-4f0c-a176-ad10ae33b7b1", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "0224c08b-2c2e-474f-8360-dafad378cf62", + "type": "RELATION", + "name": "company", + "label": "Company", + "description": "Event company", + "icon": "IconBuildingSkyscraper", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "1e93ed03-91a5-4ad4-bca7-c6a637551289", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "e095e196-08d4-493c-8a02-01c4a3decb5c", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "0224c08b-2c2e-474f-8360-dafad378cf62", + "name": "company" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "701aecf9-eb1c-4d84-9d94-b954b231b64b", + "nameSingular": "company", + "namePlural": "companies" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "f39f1db9-3d7f-46d3-aa0c-4cae44352407", + "name": "timelineActivities" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "1e93ed03-91a5-4ad4-bca7-c6a637551289", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "f39f1db9-3d7f-46d3-aa0c-4cae44352407", + "fromObjectMetadata": { + "__typename": "object", + "id": "701aecf9-eb1c-4d84-9d94-b954b231b64b", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "company", + "namePlural": "companies", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "0669197c-bc4e-4a44-9cd9-db449bfa380e", + "type": "RELATION", + "name": "person", + "label": "Person", + "description": "Event person", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "680351ba-8759-405d-8fda-90799bf75741", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "e095e196-08d4-493c-8a02-01c4a3decb5c", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "0669197c-bc4e-4a44-9cd9-db449bfa380e", + "name": "person" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "nameSingular": "person", + "namePlural": "people" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "3700e772-3bf6-4150-b5ce-f7f00ded863a", + "name": "timelineActivities" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "680351ba-8759-405d-8fda-90799bf75741", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "3700e772-3bf6-4150-b5ce-f7f00ded863a", + "fromObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "person", + "namePlural": "people", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "a3a51b55-8387-412f-8661-cbaf58bde346", + "type": "UUID", + "name": "personId", + "label": "Person id (foreign key)", + "description": "Event person id foreign key", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "f064e57f-26ea-4aa5-9f95-eda25af30f0f", + "type": "DATE_TIME", + "name": "happensAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "bc0e2a25-4e13-4751-a79a-2d264582ef9a", + "type": "RELATION", + "name": "note", + "label": "Note", + "description": "Event note", + "icon": "IconTargetArrow", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "7ec36219-a377-4aea-98be-7954590f8a32", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "e095e196-08d4-493c-8a02-01c4a3decb5c", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "bc0e2a25-4e13-4751-a79a-2d264582ef9a", + "name": "note" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "4cd6194a-093e-4c5d-9ff2-218970b01e3c", + "nameSingular": "note", + "namePlural": "notes" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "b66379fc-ac94-4823-b759-aa940fde9c73", + "name": "timelineActivities" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "7ec36219-a377-4aea-98be-7954590f8a32", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "b66379fc-ac94-4823-b759-aa940fde9c73", + "fromObjectMetadata": { + "__typename": "object", + "id": "4cd6194a-093e-4c5d-9ff2-218970b01e3c", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "note", + "namePlural": "notes", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "ae929592-4f74-419e-8b26-6d216859078f", + "type": "RAW_JSON", + "name": "properties", + "label": "Event details", + "description": "Json value for event details", + "icon": "IconListDetails", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "64a86ebc-93d3-47f2-a013-0e6c8ef2af18", + "type": "TEXT", + "name": "name", + "label": "Event name", + "description": "Event name", + "icon": "IconAbc", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "7df779f8-89a1-4c41-9868-0d98f53b29aa", + "type": "UUID", + "name": "companyId", + "label": "Company id (foreign key)", + "description": "Event company id foreign key", + "icon": "IconBuildingSkyscraper", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "cf56c3f4-dd93-465c-8ab3-edbd6cc5f246", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "27cf8bcc-101c-42e1-999f-32365e0abc80", + "type": "UUID", + "name": "opportunityId", + "label": "Opportunity id (foreign key)", + "description": "Event opportunity id foreign key", + "icon": "IconTargetArrow", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "9ddef7df-ec3c-42b6-b279-ffb60dbf5a8a", + "type": "UUID", + "name": "linkedRecordId", + "label": "Linked Record id", + "description": "Linked Record id", + "icon": "IconAbc", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "f465561a-ea75-46e7-8110-dd4ed4f25f72", + "type": "TEXT", + "name": "linkedRecordCachedName", + "label": "Linked Record cached name", + "description": "Cached record name", + "icon": "IconAbc", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "b7d464b1-d234-4295-9845-bed07dbc41e4", + "type": "UUID", + "name": "taskId", + "label": "Task id (foreign key)", + "description": "Event task id foreign key", + "icon": "IconTargetArrow", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "63ec5746-623a-41d5-8ed8-aca9577102eb", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "9fc19fe9-2563-41ac-8c92-2062ff3a0c0c", + "type": "RELATION", + "name": "workspaceMember", + "label": "Workspace Member", + "description": "Event workspace member", + "icon": "IconCircleUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "5b2015dd-3fac-4118-adf5-3cceede873eb", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "e095e196-08d4-493c-8a02-01c4a3decb5c", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "9fc19fe9-2563-41ac-8c92-2062ff3a0c0c", + "name": "workspaceMember" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "ace8a324-075e-49a3-92fa-34e07590ec72", + "name": "timelineActivities" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "5b2015dd-3fac-4118-adf5-3cceede873eb", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "ace8a324-075e-49a3-92fa-34e07590ec72", + "fromObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "d59ec465-34c7-471d-9c20-7be1f081d4cd", + "type": "UUID", + "name": "workspaceMemberId", + "label": "Workspace Member id (foreign key)", + "description": "Event workspace member id foreign key", + "icon": "IconCircleUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "dfdcf91e-f4b4-4460-8c89-919ef501fd79", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "message", + "namePlural": "messages", + "labelSingular": "Message", + "labelPlural": "Messages", + "description": "Message", + "icon": "IconMessage", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "34c76e0d-23e5-476a-bd56-2f9b02eae3ea", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjEx" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "74b4d296-dfde-40b4-b6aa-012a17ef6451", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "138ee2a7-7f7e-4901-b5d2-7ccc13a0bc38", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "906714b3-0268-49bb-85b4-705587e6f4c1", + "type": "SELECT", + "name": "direction", + "label": "Direction", + "description": "Message Direction", + "icon": "IconDirection", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "'incoming'", + "options": [ + { + "id": "09fd3f5f-5903-4a3a-8f8b-335825349389", + "color": "green", + "label": "Incoming", + "value": "incoming", + "position": 0 + }, + { + "id": "0df4272e-dfef-450e-84b7-d1477e66ee7f", + "color": "blue", + "label": "Outgoing", + "value": "outgoing", + "position": 1 + } + ], + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "114f853e-2684-4e62-92c9-0213ace3c498", + "type": "RELATION", + "name": "messageThread", + "label": "Message Thread Id", + "description": "Message Thread Id", + "icon": "IconHash", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "c958fe88-7d66-4c1b-87c7-55ab724f42c5", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "dfdcf91e-f4b4-4460-8c89-919ef501fd79", + "nameSingular": "message", + "namePlural": "messages" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "114f853e-2684-4e62-92c9-0213ace3c498", + "name": "messageThread" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "1f73c3c3-a356-4a70-8a91-948e70120fdf", + "nameSingular": "messageThread", + "namePlural": "messageThreads" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "9016096d-93c4-495f-93d5-b966e5bedc74", + "name": "messages" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "c958fe88-7d66-4c1b-87c7-55ab724f42c5", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "9016096d-93c4-495f-93d5-b966e5bedc74", + "fromObjectMetadata": { + "__typename": "object", + "id": "1f73c3c3-a356-4a70-8a91-948e70120fdf", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "messageThread", + "namePlural": "messageThreads", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "0837697b-286c-43e2-9364-532d5e06cd76", + "type": "DATE_TIME", + "name": "receivedAt", + "label": "Received At", + "description": "The date the message was received", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "f6a6d3f8-fef7-4d91-b187-7ea8d6291372", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "15658254-6562-4fad-9ef3-393f913e95c2", + "type": "RELATION", + "name": "messageParticipants", + "label": "Message Participants", + "description": "Message Participants", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "2180d888-98dc-428e-a157-c30ce7bf8ce4", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "dfdcf91e-f4b4-4460-8c89-919ef501fd79", + "nameSingular": "message", + "namePlural": "messages" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "15658254-6562-4fad-9ef3-393f913e95c2", + "name": "messageParticipants" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "0c0a3db9-f3ba-485a-8dff-488c477f3fa6", + "nameSingular": "messageParticipant", + "namePlural": "messageParticipants" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "660b4257-010e-4039-897a-e274f2559ed5", + "name": "message" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "2180d888-98dc-428e-a157-c30ce7bf8ce4", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "660b4257-010e-4039-897a-e274f2559ed5", + "toObjectMetadata": { + "__typename": "object", + "id": "0c0a3db9-f3ba-485a-8dff-488c477f3fa6", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "messageParticipant", + "namePlural": "messageParticipants", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "c4f2dcde-1110-419e-8590-dd1a26a0dfec", + "type": "UUID", + "name": "messageThreadId", + "label": "Message Thread Id id (foreign key)", + "description": "Message Thread Id id foreign key", + "icon": "IconHash", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "eb2e56c5-db83-4844-9179-3890e31edf15", + "type": "TEXT", + "name": "headerMessageId", + "label": "Header message Id", + "description": "Message id from the message header", + "icon": "IconHash", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "2ac789bf-ce05-4f0e-9f04-f848f93c2f21", + "type": "RELATION", + "name": "messageChannelMessageAssociations", + "label": "Message Channel Association", + "description": "Messages from the channel.", + "icon": "IconMessage", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "642b4d8c-f2f8-4590-abce-4b112d8689ba", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "dfdcf91e-f4b4-4460-8c89-919ef501fd79", + "nameSingular": "message", + "namePlural": "messages" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "2ac789bf-ce05-4f0e-9f04-f848f93c2f21", + "name": "messageChannelMessageAssociations" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "0985d46f-722d-468f-9fa6-efa219405aa7", + "nameSingular": "messageChannelMessageAssociation", + "namePlural": "messageChannelMessageAssociations" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "785c0609-42b8-4b0e-b7c2-4d54b6ed651f", + "name": "message" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "642b4d8c-f2f8-4590-abce-4b112d8689ba", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "785c0609-42b8-4b0e-b7c2-4d54b6ed651f", + "toObjectMetadata": { + "__typename": "object", + "id": "0985d46f-722d-468f-9fa6-efa219405aa7", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "messageChannelMessageAssociation", + "namePlural": "messageChannelMessageAssociations", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "0b97d62c-af50-48e2-af87-eaedc63c17ee", + "type": "TEXT", + "name": "text", + "label": "Text", + "description": "Text", + "icon": "IconMessage", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "34c76e0d-23e5-476a-bd56-2f9b02eae3ea", + "type": "TEXT", + "name": "subject", + "label": "Subject", + "description": "Subject", + "icon": "IconMessage", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "dcb774a3-71e8-44cc-bf53-7f195e0bfdb6", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "noteTarget", + "namePlural": "noteTargets", + "labelSingular": "Note Target", + "labelPlural": "Note Targets", + "description": "A note target", + "icon": "IconCheckbox", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "e97affc0-248a-4f3b-b1c5-f46f3d1edd21", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjEw" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "5b2ec790-e8b8-4bd0-bf1b-db4ebc2b473a", + "type": "RELATION", + "name": "opportunity", + "label": "Opportunity", + "description": "NoteTarget opportunity", + "icon": "IconTargetArrow", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "c0946e53-4cdd-46b4-b30a-9fce040b9a7a", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "dcb774a3-71e8-44cc-bf53-7f195e0bfdb6", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "5b2ec790-e8b8-4bd0-bf1b-db4ebc2b473a", + "name": "opportunity" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "2dbf5d59-f03c-4578-8ff3-750f4bcdf8d0", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "e6fe20c1-091e-418f-9ff0-8ea7cfb864f8", + "name": "noteTargets" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "c0946e53-4cdd-46b4-b30a-9fce040b9a7a", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "e6fe20c1-091e-418f-9ff0-8ea7cfb864f8", + "fromObjectMetadata": { + "__typename": "object", + "id": "2dbf5d59-f03c-4578-8ff3-750f4bcdf8d0", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "opportunity", + "namePlural": "opportunities", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "be09126d-4c9e-42d1-b686-cd43c4aa32df", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "87334d50-0c5d-4327-a8c5-3db6bc28c1ea", + "type": "RELATION", + "name": "note", + "label": "Note", + "description": "NoteTarget note", + "icon": "IconNotes", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "663e9842-8b92-451a-bf73-12a886ff8b05", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "dcb774a3-71e8-44cc-bf53-7f195e0bfdb6", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "87334d50-0c5d-4327-a8c5-3db6bc28c1ea", + "name": "note" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "4cd6194a-093e-4c5d-9ff2-218970b01e3c", + "nameSingular": "note", + "namePlural": "notes" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "04794a4e-35c3-46a9-8bf3-8ba1c0324f0b", + "name": "noteTargets" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "663e9842-8b92-451a-bf73-12a886ff8b05", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "04794a4e-35c3-46a9-8bf3-8ba1c0324f0b", + "fromObjectMetadata": { + "__typename": "object", + "id": "4cd6194a-093e-4c5d-9ff2-218970b01e3c", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "note", + "namePlural": "notes", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "9025db40-92fb-4fd5-9df3-c5bbf2878e61", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "12ccd632-bfd4-47e7-80dc-4c3f913372f6", + "type": "UUID", + "name": "noteId", + "label": "Note id (foreign key)", + "description": "NoteTarget note id foreign key", + "icon": "IconNotes", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "f90c9e4d-c3d4-43d2-9697-9307e373669d", + "type": "UUID", + "name": "personId", + "label": "Person id (foreign key)", + "description": "NoteTarget person id foreign key", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "8ac4df39-f1a0-4221-a605-bd4c229fbc12", + "type": "RELATION", + "name": "person", + "label": "Person", + "description": "NoteTarget person", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "700c5e52-3e7b-4471-9826-82270c03c37e", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "dcb774a3-71e8-44cc-bf53-7f195e0bfdb6", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "8ac4df39-f1a0-4221-a605-bd4c229fbc12", + "name": "person" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "nameSingular": "person", + "namePlural": "people" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "82d1a637-3df9-4d59-a412-1cbc1d92baf2", + "name": "noteTargets" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "700c5e52-3e7b-4471-9826-82270c03c37e", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "82d1a637-3df9-4d59-a412-1cbc1d92baf2", + "fromObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "person", + "namePlural": "people", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "e97affc0-248a-4f3b-b1c5-f46f3d1edd21", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "b92459f6-3ab6-4b8f-855e-a759b45118df", + "type": "UUID", + "name": "opportunityId", + "label": "Opportunity id (foreign key)", + "description": "NoteTarget opportunity id foreign key", + "icon": "IconTargetArrow", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "662f602c-a292-489e-b784-476168f1efcb", + "type": "UUID", + "name": "companyId", + "label": "Company id (foreign key)", + "description": "NoteTarget company id foreign key", + "icon": "IconBuildingSkyscraper", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "5a0243d0-051b-4f30-b0d2-da66b3b8eefe", + "type": "RELATION", + "name": "company", + "label": "Company", + "description": "NoteTarget company", + "icon": "IconBuildingSkyscraper", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "1670824b-e097-4afc-8401-feab7f9af0d4", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "dcb774a3-71e8-44cc-bf53-7f195e0bfdb6", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "5a0243d0-051b-4f30-b0d2-da66b3b8eefe", + "name": "company" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "701aecf9-eb1c-4d84-9d94-b954b231b64b", + "nameSingular": "company", + "namePlural": "companies" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "74bf3aba-450e-48f9-987a-60662929e768", + "name": "noteTargets" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "1670824b-e097-4afc-8401-feab7f9af0d4", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "74bf3aba-450e-48f9-987a-60662929e768", + "fromObjectMetadata": { + "__typename": "object", + "id": "701aecf9-eb1c-4d84-9d94-b954b231b64b", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "company", + "namePlural": "companies", + "isSystem": false, + "isRemote": false + } + } + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "d2834e90-eecc-4528-bab3-ad005effd6f2", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "calendarEvent", + "namePlural": "calendarEvents", + "labelSingular": "Calendar event", + "labelPlural": "Calendar events", + "description": "Calendar events", + "icon": "IconCalendar", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "a13f7bf6-02ab-4f9b-bd3a-c84a56e7ed49", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjE3" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "83cb4332-1363-4228-ab85-7a3d2c4922d1", + "type": "DATE_TIME", + "name": "externalUpdatedAt", + "label": "Update DateTime", + "description": "Update DateTime", + "icon": "IconCalendarCog", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "dde2d1d3-5a7d-4cf3-a982-4f7aff2dfb37", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "c8013b48-cc15-4f19-8141-325a12e771e3", + "type": "BOOLEAN", + "name": "isFullDay", + "label": "Is Full Day", + "description": "Is Full Day", + "icon": "Icon24Hours", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": false, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "771aa870-f4e7-4fa6-b2e4-52c41cf3d5fc", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "fe7dcb62-099f-4ad1-af7e-a74713f6159d", + "type": "RELATION", + "name": "calendarChannelEventAssociations", + "label": "Calendar Channel Event Associations", + "description": "Calendar Channel Event Associations", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "0f9d244b-e9c6-44af-88f4-9ce798d50bf8", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "d2834e90-eecc-4528-bab3-ad005effd6f2", + "nameSingular": "calendarEvent", + "namePlural": "calendarEvents" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "fe7dcb62-099f-4ad1-af7e-a74713f6159d", + "name": "calendarChannelEventAssociations" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "4fed9657-e68b-4856-8e6d-a1c860d16242", + "nameSingular": "calendarChannelEventAssociation", + "namePlural": "calendarChannelEventAssociations" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "18cea1c1-f521-4c41-b694-729756931795", + "name": "calendarEvent" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "0f9d244b-e9c6-44af-88f4-9ce798d50bf8", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "18cea1c1-f521-4c41-b694-729756931795", + "toObjectMetadata": { + "__typename": "object", + "id": "4fed9657-e68b-4856-8e6d-a1c860d16242", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "calendarChannelEventAssociation", + "namePlural": "calendarChannelEventAssociations", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "74820be8-b911-440a-b7bd-622b3c0fb2f0", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "d8ca199f-72ce-4a48-9e29-133a05520b0f", + "type": "TEXT", + "name": "location", + "label": "Location", + "description": "Location", + "icon": "IconMapPin", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "a4688389-8263-4209-b72c-a6004d7f0804", + "type": "LINKS", + "name": "conferenceLink", + "label": "Meet Link", + "description": "Meet Link", + "icon": "IconLink", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": { + "primaryLinkUrl": "''", + "secondaryLinks": null, + "primaryLinkLabel": "''" + }, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "6d195419-c615-4b2f-be73-74481a270851", + "type": "DATE_TIME", + "name": "endsAt", + "label": "End Date", + "description": "End Date", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "a13f7bf6-02ab-4f9b-bd3a-c84a56e7ed49", + "type": "TEXT", + "name": "title", + "label": "Title", + "description": "Title", + "icon": "IconH1", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "eb3a27fb-9cb8-4017-b896-e52eaf801dc2", + "type": "RELATION", + "name": "calendarEventParticipants", + "label": "Event Participants", + "description": "Event Participants", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "e02ea7b1-1d5a-481b-ab71-3c94ab3f9bf0", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "d2834e90-eecc-4528-bab3-ad005effd6f2", + "nameSingular": "calendarEvent", + "namePlural": "calendarEvents" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "eb3a27fb-9cb8-4017-b896-e52eaf801dc2", + "name": "calendarEventParticipants" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "53743ffb-932c-43ec-b624-f5119ec46808", + "nameSingular": "calendarEventParticipant", + "namePlural": "calendarEventParticipants" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "b04775e2-53a3-4f62-a2ab-858f2a456fa7", + "name": "calendarEvent" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "e02ea7b1-1d5a-481b-ab71-3c94ab3f9bf0", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "b04775e2-53a3-4f62-a2ab-858f2a456fa7", + "toObjectMetadata": { + "__typename": "object", + "id": "53743ffb-932c-43ec-b624-f5119ec46808", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "calendarEventParticipant", + "namePlural": "calendarEventParticipants", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "39d10ace-420f-4053-9d68-1111d3b8f39c", + "type": "TEXT", + "name": "description", + "label": "Description", + "description": "Description", + "icon": "IconFileDescription", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "39534ddd-1942-48ff-a2dc-c0365920bf73", + "type": "DATE_TIME", + "name": "startsAt", + "label": "Start Date", + "description": "Start Date", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "f3ed1238-8ccf-45e9-8feb-996c3052e57f", + "type": "BOOLEAN", + "name": "isCanceled", + "label": "Is canceled", + "description": "Is canceled", + "icon": "IconCalendarCancel", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": false, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "f6723e97-b9a7-48d7-960c-291e105190fd", + "type": "DATE_TIME", + "name": "externalCreatedAt", + "label": "Creation DateTime", + "description": "Creation DateTime", + "icon": "IconCalendarPlus", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "2f6c8e0f-dd7b-4f0b-8e5d-1205720b280b", + "type": "TEXT", + "name": "iCalUID", + "label": "iCal UID", + "description": "iCal UID", + "icon": "IconKey", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "f7fddaf8-600c-4ff2-8538-19cc56582764", + "type": "TEXT", + "name": "conferenceSolution", + "label": "Conference Solution", + "description": "Conference Solution", + "icon": "IconScreenShare", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "b6595570-eb50-47db-a823-832bf384ae25", + "type": "TEXT", + "name": "recurringEventExternalId", + "label": "Recurring Event ID", + "description": "Recurring Event ID", + "icon": "IconHistory", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "ccb2a7ce-f998-4363-b951-cdf7409b64dc", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "auditLog", + "namePlural": "auditLogs", + "labelSingular": "Audit Log", + "labelPlural": "Audit Logs", + "description": "An audit log of actions performed in the system", + "icon": "IconIconTimelineEvent", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "850587c2-97aa-42b0-a1f0-e87a1ad98f8c", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjEw" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "2ea84bb0-d37a-4b30-a562-5b1124f9090d", + "type": "UUID", + "name": "recordId", + "label": "Record id", + "description": "Record id", + "icon": "IconAbc", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "8cc90681-a560-4af8-8a68-695c21b981b1", + "type": "TEXT", + "name": "objectName", + "label": "Object name", + "description": "Object name", + "icon": "IconAbc", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "7eda7a7a-c335-429e-b9ac-8009b94c43c1", + "type": "RAW_JSON", + "name": "properties", + "label": "Event details", + "description": "Json value for event details", + "icon": "IconListDetails", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "1f77c676-5b7e-4105-ad66-f1c3ae12ebbc", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "0fedd2c5-1c9c-4e0a-8687-a8ce4dd88378", + "type": "RELATION", + "name": "workspaceMember", + "label": "Workspace Member", + "description": "Event workspace member", + "icon": "IconCircleUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "d74023b4-87a8-44d0-84d8-9b2a85018e4b", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "ccb2a7ce-f998-4363-b951-cdf7409b64dc", + "nameSingular": "auditLog", + "namePlural": "auditLogs" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "0fedd2c5-1c9c-4e0a-8687-a8ce4dd88378", + "name": "workspaceMember" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "82057d3c-fd1d-4479-a8e3-f18dd9207f3e", + "name": "auditLogs" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "d74023b4-87a8-44d0-84d8-9b2a85018e4b", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "82057d3c-fd1d-4479-a8e3-f18dd9207f3e", + "fromObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "bda06197-eea9-4fdd-a9b5-101fb473ba00", + "type": "RAW_JSON", + "name": "context", + "label": "Event context", + "description": "Json object to provide context (user, device, workspace, etc.)", + "icon": "IconListDetails", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "850587c2-97aa-42b0-a1f0-e87a1ad98f8c", + "type": "TEXT", + "name": "name", + "label": "Event name", + "description": "Event name/type", + "icon": "IconAbc", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "7ff2c10b-db27-44e5-bcaa-8ca3a68e7dae", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "cb33c71d-a957-4c29-b9ea-b6eed8ae8eeb", + "type": "UUID", + "name": "workspaceMemberId", + "label": "Workspace Member id (foreign key)", + "description": "Event workspace member id foreign key", + "icon": "IconCircleUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "737e4617-4310-4b6d-af50-bb4fb79a10b7", + "type": "TEXT", + "name": "objectMetadataId", + "label": "Object metadata id", + "description": "Object metadata id", + "icon": "IconAbc", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "f9aadda1-e30c-4eea-908a-3cea6e5f41cc", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "c81903be-3be2-49af-82b3-d170cd35ac0f", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "viewField", + "namePlural": "viewFields", + "labelSingular": "View Field", + "labelPlural": "View Fields", + "description": "(System) View Fields", + "icon": "IconTag", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "98225cd7-c93e-4f1f-ab9a-36a8b56fbdc9", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjg=" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "ccf2d3bc-3859-4075-ab3f-4022294f2e30", + "type": "BOOLEAN", + "name": "isVisible", + "label": "Visible", + "description": "View Field visibility", + "icon": "IconEye", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": true, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "98225cd7-c93e-4f1f-ab9a-36a8b56fbdc9", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "3c5e5a35-731d-4c06-934a-d52bb02bc715", + "type": "NUMBER", + "name": "size", + "label": "Size", + "description": "View Field size", + "icon": "IconEye", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": 0, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "337d9389-06a9-4cb1-9f2a-76dbb37a7576", + "type": "RELATION", + "name": "view", + "label": "View", + "description": "View Field related view", + "icon": "IconLayoutCollage", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "ae731975-39ee-4387-a80c-de94dff0b760", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "c81903be-3be2-49af-82b3-d170cd35ac0f", + "nameSingular": "viewField", + "namePlural": "viewFields" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "337d9389-06a9-4cb1-9f2a-76dbb37a7576", + "name": "view" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "2c6e4a32-28cd-4a72-8ca6-915fd819ed32", + "nameSingular": "view", + "namePlural": "views" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "c086b30a-0267-4857-9fe0-29a2bbaa8dc8", + "name": "viewFields" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "ae731975-39ee-4387-a80c-de94dff0b760", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "c086b30a-0267-4857-9fe0-29a2bbaa8dc8", + "fromObjectMetadata": { + "__typename": "object", + "id": "2c6e4a32-28cd-4a72-8ca6-915fd819ed32", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "view", + "namePlural": "views", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "aafd0a60-9abc-464c-a601-0f4b93643df0", + "type": "NUMBER", + "name": "position", + "label": "Position", + "description": "View Field position", + "icon": "IconList", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": 0, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "48b3cbca-7061-4431-b671-f517178a6fa6", + "type": "UUID", + "name": "viewId", + "label": "View id (foreign key)", + "description": "View Field related view id foreign key", + "icon": "IconLayoutCollage", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "fd19a167-b702-4fe4-b59d-b0bf5b288ccf", + "type": "UUID", + "name": "fieldMetadataId", + "label": "Field Metadata Id", + "description": "View Field target field", + "icon": "IconTag", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "31ca8ba9-4d75-4b61-ba76-a879e0f230b6", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "ba35303a-1451-47fe-8900-80262b90d4c6", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "c6d8d5a8-08ab-4828-8b19-82a9a835685a", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "comment", + "namePlural": "comments", + "labelSingular": "Comment", + "labelPlural": "Comments", + "description": "A comment", + "icon": "IconMessageCircle", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "468e8108-653e-4c9e-ba50-bff7937d89ad", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjc=" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "7c664574-0bcb-4833-aee1-5a95bad64fbb", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "5e0574cf-4695-48f4-aa29-5b755b33102a", + "type": "TEXT", + "name": "body", + "label": "Body", + "description": "Comment body", + "icon": "IconLink", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "a7bc8581-749a-49cf-bf04-3b7bdc0b3f4e", + "type": "UUID", + "name": "authorId", + "label": "Author id (foreign key)", + "description": "Comment author id foreign key", + "icon": "IconCircleUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "2dd9dd34-4b7a-4082-b983-3e5faf37e60c", + "type": "UUID", + "name": "activityId", + "label": "Activity id (foreign key)", + "description": "Comment activity id foreign key", + "icon": "IconNotes", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "ace0311d-6b58-4c34-9e78-3c18ff147408", + "type": "RELATION", + "name": "activity", + "label": "Activity", + "description": "Comment activity", + "icon": "IconNotes", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "eaf90876-fac7-448a-906c-7c2b6afcd346", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "c6d8d5a8-08ab-4828-8b19-82a9a835685a", + "nameSingular": "comment", + "namePlural": "comments" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "ace0311d-6b58-4c34-9e78-3c18ff147408", + "name": "activity" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "96bf92fd-6b8f-40b4-afd6-f90fedc40a1a", + "nameSingular": "activity", + "namePlural": "activities" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "c2a21675-a29d-442a-9f02-84cd93df15ce", + "name": "comments" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "eaf90876-fac7-448a-906c-7c2b6afcd346", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "c2a21675-a29d-442a-9f02-84cd93df15ce", + "fromObjectMetadata": { + "__typename": "object", + "id": "96bf92fd-6b8f-40b4-afd6-f90fedc40a1a", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "activity", + "namePlural": "activities", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "468e8108-653e-4c9e-ba50-bff7937d89ad", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "fd9fcac5-c853-4fe7-ab1e-18081e4d4517", + "type": "RELATION", + "name": "author", + "label": "Author", + "description": "Comment author", + "icon": "IconCircleUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "017b3808-bc03-4817-8a67-b20770a6a126", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "c6d8d5a8-08ab-4828-8b19-82a9a835685a", + "nameSingular": "comment", + "namePlural": "comments" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "fd9fcac5-c853-4fe7-ab1e-18081e4d4517", + "name": "author" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "c86049ea-6cac-4b7f-a58e-b68b917e4a2b", + "name": "authoredComments" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "017b3808-bc03-4817-8a67-b20770a6a126", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "c86049ea-6cac-4b7f-a58e-b68b917e4a2b", + "fromObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "52a840a8-0d1c-4fdb-bea8-b008c9d3986d", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers", + "labelSingular": "Workspace Member", + "labelPlural": "Workspace Members", + "description": "A workspace member", + "icon": "IconUserCircle", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "b329059f-4b80-4d92-9a2a-4f6373cd8003", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjI0" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "6062715e-08e8-4ff5-962d-eed4f992fc61", + "type": "RELATION", + "name": "calendarEventParticipants", + "label": "Calendar Event Participants", + "description": "Calendar Event Participants", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "d5ffcbba-0ab9-4f4d-a5e6-15f1e668b04c", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "6062715e-08e8-4ff5-962d-eed4f992fc61", + "name": "calendarEventParticipants" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "53743ffb-932c-43ec-b624-f5119ec46808", + "nameSingular": "calendarEventParticipant", + "namePlural": "calendarEventParticipants" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "fbc9d8eb-c04f-4c86-81ff-d4ca9957d0d4", + "name": "workspaceMember" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "d5ffcbba-0ab9-4f4d-a5e6-15f1e668b04c", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "fbc9d8eb-c04f-4c86-81ff-d4ca9957d0d4", + "toObjectMetadata": { + "__typename": "object", + "id": "53743ffb-932c-43ec-b624-f5119ec46808", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "calendarEventParticipant", + "namePlural": "calendarEventParticipants", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "8d0cc1c9-ab4a-406c-b35b-1a1b40fd025c", + "type": "TEXT", + "name": "locale", + "label": "Language", + "description": "Preferred language", + "icon": "IconLanguage", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "'en'", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "ace8a324-075e-49a3-92fa-34e07590ec72", + "type": "RELATION", + "name": "timelineActivities", + "label": "Events", + "description": "Events linked to the workspace member", + "icon": "IconTimelineEvent", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "5b2015dd-3fac-4118-adf5-3cceede873eb", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "ace8a324-075e-49a3-92fa-34e07590ec72", + "name": "timelineActivities" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "e095e196-08d4-493c-8a02-01c4a3decb5c", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "9fc19fe9-2563-41ac-8c92-2062ff3a0c0c", + "name": "workspaceMember" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "5b2015dd-3fac-4118-adf5-3cceede873eb", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "9fc19fe9-2563-41ac-8c92-2062ff3a0c0c", + "toObjectMetadata": { + "__typename": "object", + "id": "e095e196-08d4-493c-8a02-01c4a3decb5c", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "57d6eb4f-c86b-4a50-98ce-fa04c849b1a2", + "type": "RELATION", + "name": "accountOwnerForCompanies", + "label": "Account Owner For Companies", + "description": "Account owner for companies", + "icon": "IconBriefcase", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "97b97e1e-aed0-4d59-997c-13ad9007e037", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "57d6eb4f-c86b-4a50-98ce-fa04c849b1a2", + "name": "accountOwnerForCompanies" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "701aecf9-eb1c-4d84-9d94-b954b231b64b", + "nameSingular": "company", + "namePlural": "companies" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "a56f365a-22c8-475d-816b-709f3a19c5fd", + "name": "accountOwner" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "97b97e1e-aed0-4d59-997c-13ad9007e037", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "a56f365a-22c8-475d-816b-709f3a19c5fd", + "toObjectMetadata": { + "__typename": "object", + "id": "701aecf9-eb1c-4d84-9d94-b954b231b64b", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "company", + "namePlural": "companies", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "4e4050e5-e6fb-4466-b02b-6d12714373b7", + "type": "TEXT", + "name": "avatarUrl", + "label": "Avatar Url", + "description": "Workspace member avatar", + "icon": "IconFileUpload", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "2e1b13a4-9ced-4b9d-b9f6-ca274410a933", + "type": "UUID", + "name": "userId", + "label": "User Id", + "description": "Associated User Id", + "icon": "IconCircleUsers", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "b329059f-4b80-4d92-9a2a-4f6373cd8003", + "type": "FULL_NAME", + "name": "name", + "label": "Name", + "description": "Workspace member name", + "icon": "IconCircleUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": { + "lastName": "''", + "firstName": "''" + }, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "867aef01-e708-4f56-96b2-11237093a8e6", + "type": "TEXT", + "name": "userEmail", + "label": "User Email", + "description": "Related user email address", + "icon": "IconMail", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "f9d4a27e-1728-44d8-b990-e648d838a35a", + "type": "RELATION", + "name": "authoredActivities", + "label": "Authored activities", + "description": "Activities created by the workspace member", + "icon": "IconCheckbox", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "fccbbaf8-c653-4e09-8d3e-5652b37d8209", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "f9d4a27e-1728-44d8-b990-e648d838a35a", + "name": "authoredActivities" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "96bf92fd-6b8f-40b4-afd6-f90fedc40a1a", + "nameSingular": "activity", + "namePlural": "activities" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "b31f4c53-a5ee-4939-9804-6964144540ca", + "name": "author" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "fccbbaf8-c653-4e09-8d3e-5652b37d8209", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "b31f4c53-a5ee-4939-9804-6964144540ca", + "toObjectMetadata": { + "__typename": "object", + "id": "96bf92fd-6b8f-40b4-afd6-f90fedc40a1a", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "activity", + "namePlural": "activities", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "c6b1b4a1-bad8-4872-b408-aa0ceb668215", + "type": "RELATION", + "name": "blocklist", + "label": "Blocklist", + "description": "Blocklisted handles", + "icon": "IconForbid2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "19b7520c-bc6e-490c-bfab-a3b020315cc4", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "c6b1b4a1-bad8-4872-b408-aa0ceb668215", + "name": "blocklist" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "60637cd3-24f6-4d9a-9432-a590accbefb9", + "nameSingular": "blocklist", + "namePlural": "blocklists" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "96acdd2a-b7d1-452b-9e58-5c4265691444", + "name": "workspaceMember" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "19b7520c-bc6e-490c-bfab-a3b020315cc4", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "96acdd2a-b7d1-452b-9e58-5c4265691444", + "toObjectMetadata": { + "__typename": "object", + "id": "60637cd3-24f6-4d9a-9432-a590accbefb9", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "blocklist", + "namePlural": "blocklists", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "328d9621-d8aa-4e2d-91c1-e03c621d79a1", + "type": "SELECT", + "name": "timeFormat", + "label": "Time format", + "description": "User's preferred time format", + "icon": "IconClock2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "'SYSTEM'", + "options": [ + { + "id": "2ea77a47-9b23-4159-bda8-97bf23a52f61", + "color": "sky", + "label": "System", + "value": "SYSTEM", + "position": 0 + }, + { + "id": "3dc8e58f-c987-4078-b980-d5e2127968e8", + "color": "red", + "label": "24HRS", + "value": "HOUR_24", + "position": 1 + }, + { + "id": "7d24f928-a955-4419-9081-51117eb181e6", + "color": "purple", + "label": "12HRS", + "value": "HOUR_12", + "position": 2 + } + ], + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "c00ccd93-ebc7-4744-8cb3-797a752b4627", + "type": "RELATION", + "name": "messageParticipants", + "label": "Message Participants", + "description": "Message Participants", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "7d3faf56-e4bb-45ec-9b75-612ca6e9ae5a", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "c00ccd93-ebc7-4744-8cb3-797a752b4627", + "name": "messageParticipants" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "0c0a3db9-f3ba-485a-8dff-488c477f3fa6", + "nameSingular": "messageParticipant", + "namePlural": "messageParticipants" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "bc788a8f-8eb2-47bf-a02c-42f7de197ca8", + "name": "workspaceMember" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "7d3faf56-e4bb-45ec-9b75-612ca6e9ae5a", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "bc788a8f-8eb2-47bf-a02c-42f7de197ca8", + "toObjectMetadata": { + "__typename": "object", + "id": "0c0a3db9-f3ba-485a-8dff-488c477f3fa6", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "messageParticipant", + "namePlural": "messageParticipants", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "2fa32c75-6169-449b-bfc2-e1576d5ce5fe", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "e2234264-8612-4d1d-bfa8-929cc63bf6fd", + "type": "SELECT", + "name": "dateFormat", + "label": "Date format", + "description": "User's preferred date format", + "icon": "IconCalendarEvent", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "'SYSTEM'", + "options": [ + { + "id": "c0053f9a-eaa7-44d2-9c0e-73d95715d007", + "color": "turquoise", + "label": "System", + "value": "SYSTEM", + "position": 0 + }, + { + "id": "aacbf232-6f01-48dd-9328-6da7ebea0986", + "color": "red", + "label": "Month First", + "value": "MONTH_FIRST", + "position": 1 + }, + { + "id": "a2b08c2c-7bf4-4730-a4f9-30d122dc5a4b", + "color": "purple", + "label": "Day First", + "value": "DAY_FIRST", + "position": 2 + }, + { + "id": "29de9f62-1eb7-4808-a63e-53d3dc764c9e", + "color": "sky", + "label": "Year First", + "value": "YEAR_FIRST", + "position": 3 + } + ], + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "e4c25d9f-10cf-4c33-8c39-7aaac0a98f11", + "type": "RELATION", + "name": "assignedTasks", + "label": "Assigned tasks", + "description": "Tasks assigned to the workspace member", + "icon": "IconCheckbox", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "8cb075f2-e51c-4684-80f6-cf6af471e82a", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "e4c25d9f-10cf-4c33-8c39-7aaac0a98f11", + "name": "assignedTasks" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "4601f72c-580d-4e64-8004-4864f5e60da7", + "nameSingular": "task", + "namePlural": "tasks" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "5bcc7e50-73ce-4146-b000-5a336f0e9c40", + "name": "assignee" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "8cb075f2-e51c-4684-80f6-cf6af471e82a", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "5bcc7e50-73ce-4146-b000-5a336f0e9c40", + "toObjectMetadata": { + "__typename": "object", + "id": "4601f72c-580d-4e64-8004-4864f5e60da7", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "task", + "namePlural": "tasks", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "2d52a31f-3ad8-4d57-90eb-61142bf58382", + "type": "RELATION", + "name": "assignedActivities", + "label": "Assigned activities", + "description": "Activities assigned to the workspace member", + "icon": "IconCheckbox", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "d5315a70-980f-4c45-9a4f-74779a00fdd3", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "2d52a31f-3ad8-4d57-90eb-61142bf58382", + "name": "assignedActivities" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "96bf92fd-6b8f-40b4-afd6-f90fedc40a1a", + "nameSingular": "activity", + "namePlural": "activities" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "4ec37c9c-be4c-4f52-a441-03a1dfd951db", + "name": "assignee" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "d5315a70-980f-4c45-9a4f-74779a00fdd3", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "4ec37c9c-be4c-4f52-a441-03a1dfd951db", + "toObjectMetadata": { + "__typename": "object", + "id": "96bf92fd-6b8f-40b4-afd6-f90fedc40a1a", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "activity", + "namePlural": "activities", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "e2cdfd71-1c3e-4793-a95d-91df4a3bbe8d", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "104209de-5259-4d74-b14a-f37badf49be9", + "type": "RELATION", + "name": "connectedAccounts", + "label": "Connected accounts", + "description": "Connected accounts", + "icon": "IconAt", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "1ecacc04-e834-421d-bf1b-c765e55a4318", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "104209de-5259-4d74-b14a-f37badf49be9", + "name": "connectedAccounts" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "66cd3a29-e2d8-4efa-8852-d17d7b538efa", + "nameSingular": "connectedAccount", + "namePlural": "connectedAccounts" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "95bd59b8-8083-4c76-b770-ec40a744138c", + "name": "accountOwner" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "1ecacc04-e834-421d-bf1b-c765e55a4318", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "95bd59b8-8083-4c76-b770-ec40a744138c", + "toObjectMetadata": { + "__typename": "object", + "id": "66cd3a29-e2d8-4efa-8852-d17d7b538efa", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "connectedAccount", + "namePlural": "connectedAccounts", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "29055851-94dc-4fa9-84d8-295a3d161724", + "type": "RELATION", + "name": "favorites", + "label": "Favorites", + "description": "Favorites linked to the workspace member", + "icon": "IconHeart", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "a72edc8d-e5e3-4eae-9fd6-4cb0792b18aa", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "29055851-94dc-4fa9-84d8-295a3d161724", + "name": "favorites" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "4566e731-1922-4610-8e85-0beab7fc57be", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "0aaf9f83-9b43-4f15-a187-9c11761b367a", + "name": "workspaceMember" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "a72edc8d-e5e3-4eae-9fd6-4cb0792b18aa", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "0aaf9f83-9b43-4f15-a187-9c11761b367a", + "toObjectMetadata": { + "__typename": "object", + "id": "4566e731-1922-4610-8e85-0beab7fc57be", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "favorite", + "namePlural": "favorites", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "c86049ea-6cac-4b7f-a58e-b68b917e4a2b", + "type": "RELATION", + "name": "authoredComments", + "label": "Authored comments", + "description": "Authored comments", + "icon": "IconComment", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "017b3808-bc03-4817-8a67-b20770a6a126", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "c86049ea-6cac-4b7f-a58e-b68b917e4a2b", + "name": "authoredComments" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "c6d8d5a8-08ab-4828-8b19-82a9a835685a", + "nameSingular": "comment", + "namePlural": "comments" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "fd9fcac5-c853-4fe7-ab1e-18081e4d4517", + "name": "author" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "017b3808-bc03-4817-8a67-b20770a6a126", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "fd9fcac5-c853-4fe7-ab1e-18081e4d4517", + "toObjectMetadata": { + "__typename": "object", + "id": "c6d8d5a8-08ab-4828-8b19-82a9a835685a", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "comment", + "namePlural": "comments", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "fa2a9e43-03f2-4919-b67d-4b62f5c16758", + "type": "TEXT", + "name": "colorScheme", + "label": "Color Scheme", + "description": "Preferred color scheme", + "icon": "IconColorSwatch", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "'Light'", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "82057d3c-fd1d-4479-a8e3-f18dd9207f3e", + "type": "RELATION", + "name": "auditLogs", + "label": "Audit Logs", + "description": "Audit Logs linked to the workspace member", + "icon": "IconTimelineEvent", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "d74023b4-87a8-44d0-84d8-9b2a85018e4b", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "82057d3c-fd1d-4479-a8e3-f18dd9207f3e", + "name": "auditLogs" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "ccb2a7ce-f998-4363-b951-cdf7409b64dc", + "nameSingular": "auditLog", + "namePlural": "auditLogs" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "0fedd2c5-1c9c-4e0a-8687-a8ce4dd88378", + "name": "workspaceMember" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "d74023b4-87a8-44d0-84d8-9b2a85018e4b", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "0fedd2c5-1c9c-4e0a-8687-a8ce4dd88378", + "toObjectMetadata": { + "__typename": "object", + "id": "ccb2a7ce-f998-4363-b951-cdf7409b64dc", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "auditLog", + "namePlural": "auditLogs", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "c784bb11-cd83-4392-a14b-4b9028ac4280", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "6e622089-670a-4831-964c-f27af03f39c0", + "type": "RELATION", + "name": "authoredAttachments", + "label": "Authored attachments", + "description": "Attachments created by the workspace member", + "icon": "IconFileImport", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "5b9f08b0-8960-40c4-b6bb-9d3552a24f8d", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "6e622089-670a-4831-964c-f27af03f39c0", + "name": "authoredAttachments" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "963747ea-45e2-4deb-b36d-73b014e17c42", + "nameSingular": "attachment", + "namePlural": "attachments" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "85046974-8ab2-456d-a732-64da14715643", + "name": "author" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "5b9f08b0-8960-40c4-b6bb-9d3552a24f8d", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "85046974-8ab2-456d-a732-64da14715643", + "toObjectMetadata": { + "__typename": "object", + "id": "963747ea-45e2-4deb-b36d-73b014e17c42", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "attachment", + "namePlural": "attachments", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "43ae7fcb-4e9c-4f67-a9cd-8fe5b2c3991b", + "type": "TEXT", + "name": "timeZone", + "label": "Time zone", + "description": "User time zone", + "icon": "IconTimezone", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "'system'", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "person", + "namePlural": "people", + "labelSingular": "Person", + "labelPlural": "People", + "description": "A person", + "icon": "IconUser", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "e1eb21dc-7a5e-41e5-99be-8889a3d5ca15", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjIz" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "130dedfb-f30c-4a70-b2ca-a70e2aa8c291", + "type": "TEXT", + "name": "jobTitle", + "label": "Job Title", + "description": "Contact’s job title", + "icon": "IconBriefcase", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "75210cae-eb24-4932-8f00-ccbce38a3d66", + "type": "ACTOR", + "name": "createdBy", + "label": "Created by", + "description": "The creator of the record", + "icon": "IconCreativeCommonsSa", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": { + "name": "''", + "source": "'MANUAL'" + }, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "608e9b7c-8d7a-409c-88c8-455b72b1bbca", + "type": "TEXT", + "name": "avatarUrl", + "label": "Avatar", + "description": "Contact’s avatar", + "icon": "IconFileUpload", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "2748b607-0fbb-42c8-b79f-695921bcb8ed", + "type": "LINKS", + "name": "xLink", + "label": "X", + "description": "Contact’s X/Twitter account", + "icon": "IconBrandX", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": { + "primaryLinkUrl": "''", + "secondaryLinks": null, + "primaryLinkLabel": "''" + }, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "ee5347ee-390c-42de-bde5-ebaffd2ad0e5", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "5fbb29e4-4ee6-4122-b1c3-1a632e2501ef", + "type": "LINKS", + "name": "linkedinLink", + "label": "Linkedin", + "description": "Contact’s Linkedin account", + "icon": "IconBrandLinkedin", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": { + "primaryLinkUrl": "''", + "secondaryLinks": null, + "primaryLinkLabel": "''" + }, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "a420a3c3-f245-4ab4-9094-bb4cfb7edc9b", + "type": "TEXT", + "name": "city", + "label": "City", + "description": "Contact’s city", + "icon": "IconMap", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "19f77ace-4b00-4fac-ba7d-8c7a3dde409b", + "type": "RELATION", + "name": "messageParticipants", + "label": "Message Participants", + "description": "Message Participants", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "5bb99199-6a3c-4947-b16b-6a90c6097eac", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "nameSingular": "person", + "namePlural": "people" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "19f77ace-4b00-4fac-ba7d-8c7a3dde409b", + "name": "messageParticipants" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "0c0a3db9-f3ba-485a-8dff-488c477f3fa6", + "nameSingular": "messageParticipant", + "namePlural": "messageParticipants" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "362195e4-4dfb-49e1-b25b-fe3ffe7b7f14", + "name": "person" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "5bb99199-6a3c-4947-b16b-6a90c6097eac", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "362195e4-4dfb-49e1-b25b-fe3ffe7b7f14", + "toObjectMetadata": { + "__typename": "object", + "id": "0c0a3db9-f3ba-485a-8dff-488c477f3fa6", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "messageParticipant", + "namePlural": "messageParticipants", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "e1eb21dc-7a5e-41e5-99be-8889a3d5ca15", + "type": "FULL_NAME", + "name": "name", + "label": "Name", + "description": "Contact’s name", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": { + "lastName": "''", + "firstName": "''" + }, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "3700e772-3bf6-4150-b5ce-f7f00ded863a", + "type": "RELATION", + "name": "timelineActivities", + "label": "Events", + "description": "Events linked to the person", + "icon": "IconTimelineEvent", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "680351ba-8759-405d-8fda-90799bf75741", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "nameSingular": "person", + "namePlural": "people" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "3700e772-3bf6-4150-b5ce-f7f00ded863a", + "name": "timelineActivities" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "e095e196-08d4-493c-8a02-01c4a3decb5c", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "0669197c-bc4e-4a44-9cd9-db449bfa380e", + "name": "person" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "680351ba-8759-405d-8fda-90799bf75741", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "0669197c-bc4e-4a44-9cd9-db449bfa380e", + "toObjectMetadata": { + "__typename": "object", + "id": "e095e196-08d4-493c-8a02-01c4a3decb5c", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "d9594064-5e84-4981-a0f8-0d047322f1e9", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "05863c2c-bcf7-4d88-b0cd-f00335b6854d", + "type": "RELATION", + "name": "pointOfContactForOpportunities", + "label": "POC for Opportunities", + "description": "Point of Contact for Opportunities", + "icon": "IconTargetArrow", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "58a081ed-e5e7-44f8-bae6-99be66b6ac2f", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "nameSingular": "person", + "namePlural": "people" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "05863c2c-bcf7-4d88-b0cd-f00335b6854d", + "name": "pointOfContactForOpportunities" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "2dbf5d59-f03c-4578-8ff3-750f4bcdf8d0", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "18ea34ae-f9bc-4240-b65f-46f0d688135f", + "name": "pointOfContact" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "58a081ed-e5e7-44f8-bae6-99be66b6ac2f", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "18ea34ae-f9bc-4240-b65f-46f0d688135f", + "toObjectMetadata": { + "__typename": "object", + "id": "2dbf5d59-f03c-4578-8ff3-750f4bcdf8d0", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "opportunity", + "namePlural": "opportunities", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "cb89d529-55f2-4757-8248-6939aa038363", + "type": "EMAIL", + "name": "email", + "label": "Email", + "description": "Contact’s Email", + "icon": "IconMail", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "ee426b52-f4d3-4b96-a7fc-04d968b66331", + "type": "RELATION", + "name": "favorites", + "label": "Favorites", + "description": "Favorites linked to the contact", + "icon": "IconHeart", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "74f62324-bc36-4210-bb88-e0e6e0136c9f", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "nameSingular": "person", + "namePlural": "people" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "ee426b52-f4d3-4b96-a7fc-04d968b66331", + "name": "favorites" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "4566e731-1922-4610-8e85-0beab7fc57be", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "4a9e3e27-70b0-4ed7-9edf-9126c1675b22", + "name": "person" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "74f62324-bc36-4210-bb88-e0e6e0136c9f", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "4a9e3e27-70b0-4ed7-9edf-9126c1675b22", + "toObjectMetadata": { + "__typename": "object", + "id": "4566e731-1922-4610-8e85-0beab7fc57be", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "favorite", + "namePlural": "favorites", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "c87e6f64-f722-4487-9930-1c6fb67572c1", + "type": "RELATION", + "name": "activityTargets", + "label": "Activities", + "description": "Activities tied to the contact", + "icon": "IconCheckbox", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "450a3266-7706-4593-a458-5897c5f60fc5", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "nameSingular": "person", + "namePlural": "people" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "c87e6f64-f722-4487-9930-1c6fb67572c1", + "name": "activityTargets" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "948a52f8-eba6-4bb2-a3a7-b1aa61c0daf7", + "nameSingular": "activityTarget", + "namePlural": "activityTargets" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "f0748d0d-e6b4-44ea-b957-0c0d81af4627", + "name": "person" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "450a3266-7706-4593-a458-5897c5f60fc5", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "f0748d0d-e6b4-44ea-b957-0c0d81af4627", + "toObjectMetadata": { + "__typename": "object", + "id": "948a52f8-eba6-4bb2-a3a7-b1aa61c0daf7", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "activityTarget", + "namePlural": "activityTargets", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "fe7c56ff-5531-4abc-a10a-048b01034596", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "538e49cd-f04a-4889-9994-35cacc0754b7", + "type": "RELATION", + "name": "company", + "label": "Company", + "description": "Contact’s company", + "icon": "IconBuildingSkyscraper", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "2f030298-14c7-48a4-b351-2ec185bb1814", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "nameSingular": "person", + "namePlural": "people" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "538e49cd-f04a-4889-9994-35cacc0754b7", + "name": "company" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "701aecf9-eb1c-4d84-9d94-b954b231b64b", + "nameSingular": "company", + "namePlural": "companies" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "0943b1b4-3aae-4ebe-8e8e-b1a8640d78d9", + "name": "people" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "2f030298-14c7-48a4-b351-2ec185bb1814", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "0943b1b4-3aae-4ebe-8e8e-b1a8640d78d9", + "fromObjectMetadata": { + "__typename": "object", + "id": "701aecf9-eb1c-4d84-9d94-b954b231b64b", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "company", + "namePlural": "companies", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "aa9f1d0c-ef2c-4bec-849f-aaf3b83a6c3c", + "type": "UUID", + "name": "companyId", + "label": "Company id (foreign key)", + "description": "Contact’s company id foreign key", + "icon": "IconBuildingSkyscraper", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "fd48c551-1309-473d-bb7e-921c577b731b", + "type": "RELATION", + "name": "calendarEventParticipants", + "label": "Calendar Event Participants", + "description": "Calendar Event Participants", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "178c5cfe-cc05-49ec-bedb-eff402da4e8f", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "nameSingular": "person", + "namePlural": "people" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "fd48c551-1309-473d-bb7e-921c577b731b", + "name": "calendarEventParticipants" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "53743ffb-932c-43ec-b624-f5119ec46808", + "nameSingular": "calendarEventParticipant", + "namePlural": "calendarEventParticipants" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "a2ecf99f-9725-4b20-90df-28ad410f173b", + "name": "person" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "178c5cfe-cc05-49ec-bedb-eff402da4e8f", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "a2ecf99f-9725-4b20-90df-28ad410f173b", + "toObjectMetadata": { + "__typename": "object", + "id": "53743ffb-932c-43ec-b624-f5119ec46808", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "calendarEventParticipant", + "namePlural": "calendarEventParticipants", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "d7df3544-94ed-439f-94de-86ad7828669a", + "type": "TEXT", + "name": "phone", + "label": "Phone", + "description": "Contact’s phone number", + "icon": "IconPhone", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "82d1a637-3df9-4d59-a412-1cbc1d92baf2", + "type": "RELATION", + "name": "noteTargets", + "label": "Notes", + "description": "Notes tied to the contact", + "icon": "IconNotes", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "700c5e52-3e7b-4471-9826-82270c03c37e", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "nameSingular": "person", + "namePlural": "people" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "82d1a637-3df9-4d59-a412-1cbc1d92baf2", + "name": "noteTargets" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "dcb774a3-71e8-44cc-bf53-7f195e0bfdb6", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "8ac4df39-f1a0-4221-a605-bd4c229fbc12", + "name": "person" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "700c5e52-3e7b-4471-9826-82270c03c37e", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "8ac4df39-f1a0-4221-a605-bd4c229fbc12", + "toObjectMetadata": { + "__typename": "object", + "id": "dcb774a3-71e8-44cc-bf53-7f195e0bfdb6", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "noteTarget", + "namePlural": "noteTargets", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "5030bb60-7366-4e7d-8ba4-35c6a6255547", + "type": "RELATION", + "name": "attachments", + "label": "Attachments", + "description": "Attachments linked to the contact.", + "icon": "IconFileImport", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "0c8f43c1-d325-4a58-99a7-926b1db4e8fc", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "nameSingular": "person", + "namePlural": "people" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "5030bb60-7366-4e7d-8ba4-35c6a6255547", + "name": "attachments" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "963747ea-45e2-4deb-b36d-73b014e17c42", + "nameSingular": "attachment", + "namePlural": "attachments" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "b192eb71-bcfb-46ab-ae88-83a73700ee34", + "name": "person" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "0c8f43c1-d325-4a58-99a7-926b1db4e8fc", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "b192eb71-bcfb-46ab-ae88-83a73700ee34", + "toObjectMetadata": { + "__typename": "object", + "id": "963747ea-45e2-4deb-b36d-73b014e17c42", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "attachment", + "namePlural": "attachments", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "a53d5e8d-85d9-45de-9f45-d8b4f5b11c3a", + "type": "RELATION", + "name": "taskTargets", + "label": "Tasks", + "description": "Tasks tied to the contact", + "icon": "IconCheckbox", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "e95da71a-7162-4282-8ff7-ea65fea36fe8", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "nameSingular": "person", + "namePlural": "people" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "a53d5e8d-85d9-45de-9f45-d8b4f5b11c3a", + "name": "taskTargets" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "5e92b318-bc10-4fe3-b997-de41b7e45c36", + "nameSingular": "taskTarget", + "namePlural": "taskTargets" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "db61f1e6-17d5-4f1d-8c18-8cb5f1108831", + "name": "person" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "e95da71a-7162-4282-8ff7-ea65fea36fe8", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "db61f1e6-17d5-4f1d-8c18-8cb5f1108831", + "toObjectMetadata": { + "__typename": "object", + "id": "5e92b318-bc10-4fe3-b997-de41b7e45c36", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "taskTarget", + "namePlural": "taskTargets", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "148421f0-84b0-4af0-bc54-17a116242b14", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Person record Position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "aeb6b83d-3545-4d48-8281-0d46258a3447", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "apiKey", + "namePlural": "apiKeys", + "labelSingular": "Api Key", + "labelPlural": "Api Keys", + "description": "An api key", + "icon": "IconRobot", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "d9c16cc2-6a42-4ea8-a6be-08f6d9571c14", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjU=" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "d9c16cc2-6a42-4ea8-a6be-08f6d9571c14", + "type": "TEXT", + "name": "name", + "label": "Name", + "description": "ApiKey name", + "icon": "IconLink", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "ac04da17-5ffc-4027-9124-4af02c307d23", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "3b213998-ade1-4836-a42f-1dc9b476f8f3", + "type": "DATE_TIME", + "name": "expiresAt", + "label": "Expiration date", + "description": "ApiKey expiration date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "a3a6cbc2-f8dd-4ed0-8648-065253f9183e", + "type": "DATE_TIME", + "name": "revokedAt", + "label": "Revocation date", + "description": "ApiKey revocation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "15091a7f-64c4-4011-91b0-a63ed1f298ec", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "3003e27d-9fc7-417b-a388-062144884d76", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "96bf92fd-6b8f-40b4-afd6-f90fedc40a1a", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "activity", + "namePlural": "activities", + "labelSingular": "Activity", + "labelPlural": "Activities", + "description": "An activity", + "icon": "IconCheckbox", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "c0608084-ab8e-4527-8a27-81f12f43550a", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjE1" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "c0608084-ab8e-4527-8a27-81f12f43550a", + "type": "TEXT", + "name": "title", + "label": "Title", + "description": "Activity title", + "icon": "IconNotes", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "b478ec3c-46d5-46b1-9a55-0938c0a7213d", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "5d7fa454-c89c-4fdd-ac48-6b119977c8bd", + "type": "RELATION", + "name": "attachments", + "label": "Attachments", + "description": "Activity attachments", + "icon": "IconFileImport", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "69539f96-cede-4f76-bd64-84b1182c3427", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "96bf92fd-6b8f-40b4-afd6-f90fedc40a1a", + "nameSingular": "activity", + "namePlural": "activities" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "5d7fa454-c89c-4fdd-ac48-6b119977c8bd", + "name": "attachments" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "963747ea-45e2-4deb-b36d-73b014e17c42", + "nameSingular": "attachment", + "namePlural": "attachments" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "a6299818-986d-4358-9a7b-04e6f5e0fd8b", + "name": "activity" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "69539f96-cede-4f76-bd64-84b1182c3427", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "a6299818-986d-4358-9a7b-04e6f5e0fd8b", + "toObjectMetadata": { + "__typename": "object", + "id": "963747ea-45e2-4deb-b36d-73b014e17c42", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "attachment", + "namePlural": "attachments", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "15c8c04b-1d3c-4d40-b405-bfce8d1c46ad", + "type": "UUID", + "name": "authorId", + "label": "Author id (foreign key)", + "description": "Activity author id foreign key", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "fdf929a7-5529-4be3-a7df-aa08d2a23b2c", + "type": "RELATION", + "name": "activityTargets", + "label": "Targets", + "description": "Activity targets", + "icon": "IconCheckbox", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "938c0b4f-e398-4db6-8893-ad6b609556a9", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "96bf92fd-6b8f-40b4-afd6-f90fedc40a1a", + "nameSingular": "activity", + "namePlural": "activities" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "fdf929a7-5529-4be3-a7df-aa08d2a23b2c", + "name": "activityTargets" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "948a52f8-eba6-4bb2-a3a7-b1aa61c0daf7", + "nameSingular": "activityTarget", + "namePlural": "activityTargets" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "8bcf99e6-2368-4caa-9c5e-e70c46bc6ab7", + "name": "activity" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "938c0b4f-e398-4db6-8893-ad6b609556a9", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "8bcf99e6-2368-4caa-9c5e-e70c46bc6ab7", + "toObjectMetadata": { + "__typename": "object", + "id": "948a52f8-eba6-4bb2-a3a7-b1aa61c0daf7", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "activityTarget", + "namePlural": "activityTargets", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "0cbf9212-7130-4a59-9752-c29b00b0e6fd", + "type": "TEXT", + "name": "type", + "label": "Type", + "description": "Activity type", + "icon": "IconCheckbox", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "'Note'", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "c2a21675-a29d-442a-9f02-84cd93df15ce", + "type": "RELATION", + "name": "comments", + "label": "Comments", + "description": "Activity comments", + "icon": "IconComment", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "eaf90876-fac7-448a-906c-7c2b6afcd346", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "96bf92fd-6b8f-40b4-afd6-f90fedc40a1a", + "nameSingular": "activity", + "namePlural": "activities" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "c2a21675-a29d-442a-9f02-84cd93df15ce", + "name": "comments" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "c6d8d5a8-08ab-4828-8b19-82a9a835685a", + "nameSingular": "comment", + "namePlural": "comments" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "ace0311d-6b58-4c34-9e78-3c18ff147408", + "name": "activity" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "eaf90876-fac7-448a-906c-7c2b6afcd346", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "ace0311d-6b58-4c34-9e78-3c18ff147408", + "toObjectMetadata": { + "__typename": "object", + "id": "c6d8d5a8-08ab-4828-8b19-82a9a835685a", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "comment", + "namePlural": "comments", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "b31f4c53-a5ee-4939-9804-6964144540ca", + "type": "RELATION", + "name": "author", + "label": "Author", + "description": "Activity author", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "fccbbaf8-c653-4e09-8d3e-5652b37d8209", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "96bf92fd-6b8f-40b4-afd6-f90fedc40a1a", + "nameSingular": "activity", + "namePlural": "activities" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "b31f4c53-a5ee-4939-9804-6964144540ca", + "name": "author" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "f9d4a27e-1728-44d8-b990-e648d838a35a", + "name": "authoredActivities" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "fccbbaf8-c653-4e09-8d3e-5652b37d8209", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "f9d4a27e-1728-44d8-b990-e648d838a35a", + "fromObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "4ec37c9c-be4c-4f52-a441-03a1dfd951db", + "type": "RELATION", + "name": "assignee", + "label": "Assignee", + "description": "Activity assignee", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "d5315a70-980f-4c45-9a4f-74779a00fdd3", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "96bf92fd-6b8f-40b4-afd6-f90fedc40a1a", + "nameSingular": "activity", + "namePlural": "activities" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "4ec37c9c-be4c-4f52-a441-03a1dfd951db", + "name": "assignee" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "2d52a31f-3ad8-4d57-90eb-61142bf58382", + "name": "assignedActivities" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "d5315a70-980f-4c45-9a4f-74779a00fdd3", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "2d52a31f-3ad8-4d57-90eb-61142bf58382", + "fromObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "e3010b50-0dce-4ca7-8fc6-580601f03a6a", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "bd9cb34e-4225-469b-8703-2948ff2a7503", + "type": "TEXT", + "name": "body", + "label": "Body", + "description": "Activity body", + "icon": "IconList", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "ba97c4a5-7141-4a70-8963-f36e24c8ab09", + "type": "DATE_TIME", + "name": "completedAt", + "label": "Completion Date", + "description": "Activity completion date", + "icon": "IconCheck", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "eddc4e8e-0664-4e28-a46d-87d39efe8b82", + "type": "DATE_TIME", + "name": "reminderAt", + "label": "Reminder Date", + "description": "Activity reminder date", + "icon": "IconCalendarEvent", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "845efc95-6c7c-4292-a4df-b9d1d159f6b9", + "type": "UUID", + "name": "assigneeId", + "label": "Assignee id (foreign key)", + "description": "Activity assignee id foreign key", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "e50e247e-3db5-468a-802d-04d02b7b0331", + "type": "DATE_TIME", + "name": "dueAt", + "label": "Due Date", + "description": "Activity due date", + "icon": "IconCalendarEvent", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "2a0b35ca-c76e-494f-a03a-c9e9844d2696", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "963747ea-45e2-4deb-b36d-73b014e17c42", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "attachment", + "namePlural": "attachments", + "labelSingular": "Attachment", + "labelPlural": "Attachments", + "description": "An attachment", + "icon": "IconFileImport", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "9d4f5164-457e-4e78-bacd-8633e234153b", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjE5" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "f4c14cf5-f007-4e2b-a7b5-f5a77c7c5492", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "0913c9cc-c3d4-4fd4-9fc7-b758daa08ba4", + "type": "RELATION", + "name": "task", + "label": "Task", + "description": "Attachment task", + "icon": "IconNotes", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "cc228da1-14c7-4c49-a84d-231ba6166f38", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "963747ea-45e2-4deb-b36d-73b014e17c42", + "nameSingular": "attachment", + "namePlural": "attachments" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "0913c9cc-c3d4-4fd4-9fc7-b758daa08ba4", + "name": "task" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "4601f72c-580d-4e64-8004-4864f5e60da7", + "nameSingular": "task", + "namePlural": "tasks" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "7c3b7305-e7be-4dbf-9e94-ee354e011f63", + "name": "attachments" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "cc228da1-14c7-4c49-a84d-231ba6166f38", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "7c3b7305-e7be-4dbf-9e94-ee354e011f63", + "fromObjectMetadata": { + "__typename": "object", + "id": "4601f72c-580d-4e64-8004-4864f5e60da7", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "task", + "namePlural": "tasks", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "36f7236a-bfd2-404c-adb6-66b294ca5435", + "type": "RELATION", + "name": "company", + "label": "Company", + "description": "Attachment company", + "icon": "IconBuildingSkyscraper", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "2be99c6b-02c8-4ca0-b155-dcf7539097b5", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "963747ea-45e2-4deb-b36d-73b014e17c42", + "nameSingular": "attachment", + "namePlural": "attachments" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "36f7236a-bfd2-404c-adb6-66b294ca5435", + "name": "company" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "701aecf9-eb1c-4d84-9d94-b954b231b64b", + "nameSingular": "company", + "namePlural": "companies" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "16706d44-4042-4998-b5c7-15437e052196", + "name": "attachments" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "2be99c6b-02c8-4ca0-b155-dcf7539097b5", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "16706d44-4042-4998-b5c7-15437e052196", + "fromObjectMetadata": { + "__typename": "object", + "id": "701aecf9-eb1c-4d84-9d94-b954b231b64b", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "company", + "namePlural": "companies", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "b192eb71-bcfb-46ab-ae88-83a73700ee34", + "type": "RELATION", + "name": "person", + "label": "Person", + "description": "Attachment person", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "0c8f43c1-d325-4a58-99a7-926b1db4e8fc", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "963747ea-45e2-4deb-b36d-73b014e17c42", + "nameSingular": "attachment", + "namePlural": "attachments" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "b192eb71-bcfb-46ab-ae88-83a73700ee34", + "name": "person" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "nameSingular": "person", + "namePlural": "people" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "5030bb60-7366-4e7d-8ba4-35c6a6255547", + "name": "attachments" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "0c8f43c1-d325-4a58-99a7-926b1db4e8fc", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "5030bb60-7366-4e7d-8ba4-35c6a6255547", + "fromObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "person", + "namePlural": "people", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "a6299818-986d-4358-9a7b-04e6f5e0fd8b", + "type": "RELATION", + "name": "activity", + "label": "Activity", + "description": "Attachment activity", + "icon": "IconNotes", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "69539f96-cede-4f76-bd64-84b1182c3427", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "963747ea-45e2-4deb-b36d-73b014e17c42", + "nameSingular": "attachment", + "namePlural": "attachments" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "a6299818-986d-4358-9a7b-04e6f5e0fd8b", + "name": "activity" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "96bf92fd-6b8f-40b4-afd6-f90fedc40a1a", + "nameSingular": "activity", + "namePlural": "activities" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "5d7fa454-c89c-4fdd-ac48-6b119977c8bd", + "name": "attachments" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "69539f96-cede-4f76-bd64-84b1182c3427", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "5d7fa454-c89c-4fdd-ac48-6b119977c8bd", + "fromObjectMetadata": { + "__typename": "object", + "id": "96bf92fd-6b8f-40b4-afd6-f90fedc40a1a", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "activity", + "namePlural": "activities", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "1d2daa92-3e60-4d45-b3f5-2cdaea3171c8", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "9d9f7585-6229-49ec-8657-a0f16608aa18", + "type": "UUID", + "name": "personId", + "label": "Person id (foreign key)", + "description": "Attachment person id foreign key", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "bbde9d64-838e-4eea-b947-81fa6f44c76a", + "type": "UUID", + "name": "authorId", + "label": "Author id (foreign key)", + "description": "Attachment author id foreign key", + "icon": "IconCircleUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "f8a0a4ad-a6f5-4eb3-985d-a3134e5449ad", + "type": "RELATION", + "name": "note", + "label": "Note", + "description": "Attachment note", + "icon": "IconNotes", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "bb4120f5-5135-4881-97a8-d50e6df2f97e", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "963747ea-45e2-4deb-b36d-73b014e17c42", + "nameSingular": "attachment", + "namePlural": "attachments" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "f8a0a4ad-a6f5-4eb3-985d-a3134e5449ad", + "name": "note" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "4cd6194a-093e-4c5d-9ff2-218970b01e3c", + "nameSingular": "note", + "namePlural": "notes" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "2a2fa9e4-242f-449e-a191-d1937ee4cedc", + "name": "attachments" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "bb4120f5-5135-4881-97a8-d50e6df2f97e", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "2a2fa9e4-242f-449e-a191-d1937ee4cedc", + "fromObjectMetadata": { + "__typename": "object", + "id": "4cd6194a-093e-4c5d-9ff2-218970b01e3c", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "note", + "namePlural": "notes", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "9d4f5164-457e-4e78-bacd-8633e234153b", + "type": "TEXT", + "name": "name", + "label": "Name", + "description": "Attachment name", + "icon": "IconFileUpload", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "9a3bd188-009f-4790-8f11-7978d420ebad", + "type": "UUID", + "name": "noteId", + "label": "Note id (foreign key)", + "description": "Attachment note id foreign key", + "icon": "IconNotes", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "dd866825-21ca-4f0b-86e5-9bff38a9daa0", + "type": "TEXT", + "name": "type", + "label": "Type", + "description": "Attachment type", + "icon": "IconList", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "855ffc2d-08c3-42e1-bd5a-c8a11fced7dc", + "type": "TEXT", + "name": "fullPath", + "label": "Full path", + "description": "Attachment full path", + "icon": "IconLink", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "b16667c6-6f37-4010-871d-219f840a5b50", + "type": "UUID", + "name": "companyId", + "label": "Company id (foreign key)", + "description": "Attachment company id foreign key", + "icon": "IconBuildingSkyscraper", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "f9a294b9-9def-4e4d-8f2b-8db82b65606c", + "type": "UUID", + "name": "opportunityId", + "label": "Opportunity id (foreign key)", + "description": "Attachment opportunity id foreign key", + "icon": "IconBuildingSkyscraper", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "b240e780-8bf4-4193-b4c4-1eaf8cac31f6", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "6d99366d-b55c-4574-a533-709c8a902eef", + "type": "UUID", + "name": "activityId", + "label": "Activity id (foreign key)", + "description": "Attachment activity id foreign key", + "icon": "IconNotes", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "85046974-8ab2-456d-a732-64da14715643", + "type": "RELATION", + "name": "author", + "label": "Author", + "description": "Attachment author", + "icon": "IconCircleUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "5b9f08b0-8960-40c4-b6bb-9d3552a24f8d", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "963747ea-45e2-4deb-b36d-73b014e17c42", + "nameSingular": "attachment", + "namePlural": "attachments" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "85046974-8ab2-456d-a732-64da14715643", + "name": "author" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "6e622089-670a-4831-964c-f27af03f39c0", + "name": "authoredAttachments" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "5b9f08b0-8960-40c4-b6bb-9d3552a24f8d", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "6e622089-670a-4831-964c-f27af03f39c0", + "fromObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "b4868b15-ff98-4f36-9f59-1dbf63052bb7", + "type": "RELATION", + "name": "opportunity", + "label": "Opportunity", + "description": "Attachment opportunity", + "icon": "IconBuildingSkyscraper", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "c20ecc99-e48a-4311-b850-8fbf1a7b68ea", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "963747ea-45e2-4deb-b36d-73b014e17c42", + "nameSingular": "attachment", + "namePlural": "attachments" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "b4868b15-ff98-4f36-9f59-1dbf63052bb7", + "name": "opportunity" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "2dbf5d59-f03c-4578-8ff3-750f4bcdf8d0", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "095b38a6-1881-40b8-9849-cb80d19aa295", + "name": "attachments" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "c20ecc99-e48a-4311-b850-8fbf1a7b68ea", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "095b38a6-1881-40b8-9849-cb80d19aa295", + "fromObjectMetadata": { + "__typename": "object", + "id": "2dbf5d59-f03c-4578-8ff3-750f4bcdf8d0", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "opportunity", + "namePlural": "opportunities", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "04d74996-9228-47ee-9297-333439d4937e", + "type": "UUID", + "name": "taskId", + "label": "Task id (foreign key)", + "description": "Attachment task id foreign key", + "icon": "IconNotes", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "948a52f8-eba6-4bb2-a3a7-b1aa61c0daf7", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "activityTarget", + "namePlural": "activityTargets", + "labelSingular": "Activity Target", + "labelPlural": "Activity Targets", + "description": "An activity target", + "icon": "IconCheckbox", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "58b83d14-5f42-49c8-9048-485fe0259e7b", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjEw" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "06fa978e-2d47-42ad-8652-00ad8e4f8c03", + "type": "UUID", + "name": "companyId", + "label": "Company id (foreign key)", + "description": "ActivityTarget company id foreign key", + "icon": "IconBuildingSkyscraper", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "8bcf99e6-2368-4caa-9c5e-e70c46bc6ab7", + "type": "RELATION", + "name": "activity", + "label": "Activity", + "description": "ActivityTarget activity", + "icon": "IconNotes", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "938c0b4f-e398-4db6-8893-ad6b609556a9", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "948a52f8-eba6-4bb2-a3a7-b1aa61c0daf7", + "nameSingular": "activityTarget", + "namePlural": "activityTargets" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "8bcf99e6-2368-4caa-9c5e-e70c46bc6ab7", + "name": "activity" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "96bf92fd-6b8f-40b4-afd6-f90fedc40a1a", + "nameSingular": "activity", + "namePlural": "activities" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "fdf929a7-5529-4be3-a7df-aa08d2a23b2c", + "name": "activityTargets" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "938c0b4f-e398-4db6-8893-ad6b609556a9", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "fdf929a7-5529-4be3-a7df-aa08d2a23b2c", + "fromObjectMetadata": { + "__typename": "object", + "id": "96bf92fd-6b8f-40b4-afd6-f90fedc40a1a", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "activity", + "namePlural": "activities", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "ddc84553-0678-4697-a8c2-06ddbc136cab", + "type": "RELATION", + "name": "opportunity", + "label": "Opportunity", + "description": "ActivityTarget opportunity", + "icon": "IconTargetArrow", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "2105fe76-e9fa-4610-992a-261d0f24722d", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "948a52f8-eba6-4bb2-a3a7-b1aa61c0daf7", + "nameSingular": "activityTarget", + "namePlural": "activityTargets" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "ddc84553-0678-4697-a8c2-06ddbc136cab", + "name": "opportunity" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "2dbf5d59-f03c-4578-8ff3-750f4bcdf8d0", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "1bab9225-7390-43d7-a2c5-1d14f918efc0", + "name": "activityTargets" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "2105fe76-e9fa-4610-992a-261d0f24722d", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "1bab9225-7390-43d7-a2c5-1d14f918efc0", + "fromObjectMetadata": { + "__typename": "object", + "id": "2dbf5d59-f03c-4578-8ff3-750f4bcdf8d0", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "opportunity", + "namePlural": "opportunities", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "242672b2-7f38-4864-8101-b8e2fb4605b0", + "type": "UUID", + "name": "personId", + "label": "Person id (foreign key)", + "description": "ActivityTarget person id foreign key", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "9a9a2055-3de4-46ef-a721-edf60be80cee", + "type": "UUID", + "name": "opportunityId", + "label": "Opportunity id (foreign key)", + "description": "ActivityTarget opportunity id foreign key", + "icon": "IconTargetArrow", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "f0748d0d-e6b4-44ea-b957-0c0d81af4627", + "type": "RELATION", + "name": "person", + "label": "Person", + "description": "ActivityTarget person", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "450a3266-7706-4593-a458-5897c5f60fc5", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "948a52f8-eba6-4bb2-a3a7-b1aa61c0daf7", + "nameSingular": "activityTarget", + "namePlural": "activityTargets" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "f0748d0d-e6b4-44ea-b957-0c0d81af4627", + "name": "person" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "nameSingular": "person", + "namePlural": "people" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "c87e6f64-f722-4487-9930-1c6fb67572c1", + "name": "activityTargets" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "450a3266-7706-4593-a458-5897c5f60fc5", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "c87e6f64-f722-4487-9930-1c6fb67572c1", + "fromObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "person", + "namePlural": "people", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "6cf6997c-82cd-41ae-9178-4e02467afe80", + "type": "UUID", + "name": "activityId", + "label": "Activity id (foreign key)", + "description": "ActivityTarget activity id foreign key", + "icon": "IconNotes", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "caeac93e-8092-4661-9b61-ba0c8b20d4e7", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "331d70b2-5cec-438f-b535-1ac0e59900bc", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "6213d5af-e8cd-4e5d-9a60-bab631884ae5", + "type": "RELATION", + "name": "company", + "label": "Company", + "description": "ActivityTarget company", + "icon": "IconBuildingSkyscraper", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "a0f5427c-2c97-4457-b87f-a4d145e06952", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "948a52f8-eba6-4bb2-a3a7-b1aa61c0daf7", + "nameSingular": "activityTarget", + "namePlural": "activityTargets" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "6213d5af-e8cd-4e5d-9a60-bab631884ae5", + "name": "company" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "701aecf9-eb1c-4d84-9d94-b954b231b64b", + "nameSingular": "company", + "namePlural": "companies" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "33454d9c-57f7-4639-9120-b024f365d52f", + "name": "activityTargets" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "a0f5427c-2c97-4457-b87f-a4d145e06952", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "33454d9c-57f7-4639-9120-b024f365d52f", + "fromObjectMetadata": { + "__typename": "object", + "id": "701aecf9-eb1c-4d84-9d94-b954b231b64b", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "company", + "namePlural": "companies", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "58b83d14-5f42-49c8-9048-485fe0259e7b", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "816a7154-5111-47fa-9d8d-87ca2dafc521", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "viewFilter", + "namePlural": "viewFilters", + "labelSingular": "View Filter", + "labelPlural": "View Filters", + "description": "(System) View Filters", + "icon": "IconFilterBolt", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "dc8df23b-c648-4781-a329-cc921f104396", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjg=" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "0fbd44d4-1342-45b9-a688-de8f8b3cfe97", + "type": "TEXT", + "name": "value", + "label": "Value", + "description": "View Filter value", + "icon": null, + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "2ad7121a-e95e-4b14-9d36-387feebaf516", + "type": "UUID", + "name": "viewId", + "label": "View id (foreign key)", + "description": "View Filter related view id foreign key", + "icon": "IconLayoutCollage", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "07eed82c-b376-4cd6-a04a-042fde8d3058", + "type": "TEXT", + "name": "displayValue", + "label": "Display Value", + "description": "View Filter Display Value", + "icon": null, + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "89eaa2a3-6302-46d8-b06d-6640c336c489", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "0f9c4eb8-501d-4861-827a-5ef45a01eba9", + "type": "RELATION", + "name": "view", + "label": "View", + "description": "View Filter related view", + "icon": "IconLayoutCollage", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "7c42db51-2fcc-44b6-9a80-787b1967e69e", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "816a7154-5111-47fa-9d8d-87ca2dafc521", + "nameSingular": "viewFilter", + "namePlural": "viewFilters" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "0f9c4eb8-501d-4861-827a-5ef45a01eba9", + "name": "view" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "2c6e4a32-28cd-4a72-8ca6-915fd819ed32", + "nameSingular": "view", + "namePlural": "views" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "4f92f2f0-9204-4f23-afdc-894829664668", + "name": "viewFilters" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "7c42db51-2fcc-44b6-9a80-787b1967e69e", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "4f92f2f0-9204-4f23-afdc-894829664668", + "fromObjectMetadata": { + "__typename": "object", + "id": "2c6e4a32-28cd-4a72-8ca6-915fd819ed32", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "view", + "namePlural": "views", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "dc8df23b-c648-4781-a329-cc921f104396", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "4f9a929d-5701-4140-b509-8376c8853c2b", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "dfaccfbb-668f-42aa-9e9f-0dfefa4a7e94", + "type": "TEXT", + "name": "operand", + "label": "Operand", + "description": "View Filter operand", + "icon": null, + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "'Contains'", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "169eeb4d-f3e8-46f4-b0a3-7404bc1994cb", + "type": "UUID", + "name": "fieldMetadataId", + "label": "Field Metadata Id", + "description": "View Filter target field", + "icon": null, + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "718779fd-d87d-4b99-8f6c-3042a6bb03a3", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "viewSort", + "namePlural": "viewSorts", + "labelSingular": "View Sort", + "labelPlural": "View Sorts", + "description": "(System) View Sorts", + "icon": "IconArrowsSort", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "ef4449f6-3cb3-4538-9b93-4bed0060873e", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjY=" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "da9e216d-b9ac-44de-a22f-ae579d76cd44", + "type": "TEXT", + "name": "direction", + "label": "Direction", + "description": "View Sort direction", + "icon": null, + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "'asc'", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "7a4f3e54-7c7d-4fc6-8f12-a4c7f0d0d731", + "type": "UUID", + "name": "viewId", + "label": "View id (foreign key)", + "description": "View Sort related view id foreign key", + "icon": "IconLayoutCollage", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "ef4449f6-3cb3-4538-9b93-4bed0060873e", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "a021c847-07b3-4d3c-af30-b3330ce58e1b", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "11985659-99a1-4f03-9a95-c5d610acc8e9", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "2c09d04d-007c-4652-9c90-c2cfa4696145", + "type": "RELATION", + "name": "view", + "label": "View", + "description": "View Sort related view", + "icon": "IconLayoutCollage", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "fcf27acc-a651-4ac2-9f99-aba306756209", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "718779fd-d87d-4b99-8f6c-3042a6bb03a3", + "nameSingular": "viewSort", + "namePlural": "viewSorts" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "2c09d04d-007c-4652-9c90-c2cfa4696145", + "name": "view" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "2c6e4a32-28cd-4a72-8ca6-915fd819ed32", + "nameSingular": "view", + "namePlural": "views" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "5969cfdb-bf30-4a34-9b52-11b38945bbd0", + "name": "viewSorts" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "fcf27acc-a651-4ac2-9f99-aba306756209", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "5969cfdb-bf30-4a34-9b52-11b38945bbd0", + "fromObjectMetadata": { + "__typename": "object", + "id": "2c6e4a32-28cd-4a72-8ca6-915fd819ed32", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "view", + "namePlural": "views", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "46007b88-46a1-4746-a25f-82151f01525e", + "type": "UUID", + "name": "fieldMetadataId", + "label": "Field Metadata Id", + "description": "View Sort target field", + "icon": "IconTag", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "701aecf9-eb1c-4d84-9d94-b954b231b64b", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "company", + "namePlural": "companies", + "labelSingular": "Company", + "labelPlural": "Companies", + "description": "A company", + "icon": "IconBuildingSkyscraper", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "9e123592-cd2b-471c-8143-3cc0b46089ef", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjIy" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "a56f365a-22c8-475d-816b-709f3a19c5fd", + "type": "RELATION", + "name": "accountOwner", + "label": "Account Owner", + "description": "Your team member responsible for managing the company account", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "97b97e1e-aed0-4d59-997c-13ad9007e037", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "701aecf9-eb1c-4d84-9d94-b954b231b64b", + "nameSingular": "company", + "namePlural": "companies" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "a56f365a-22c8-475d-816b-709f3a19c5fd", + "name": "accountOwner" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "57d6eb4f-c86b-4a50-98ce-fa04c849b1a2", + "name": "accountOwnerForCompanies" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "97b97e1e-aed0-4d59-997c-13ad9007e037", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "57d6eb4f-c86b-4a50-98ce-fa04c849b1a2", + "fromObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "6c4a0327-d84f-416a-8491-269a74254437", + "type": "BOOLEAN", + "name": "idealCustomerProfile", + "label": "ICP", + "description": "Ideal Customer Profile: Indicates whether the company is the most suitable and valuable customer for you", + "icon": "IconTarget", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": false, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "af19a3ba-b725-4b9d-a0b7-8bf6b04fadbf", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "b295267e-e066-4eb1-98ab-50a9d3004394", + "type": "RELATION", + "name": "taskTargets", + "label": "Tasks", + "description": "Tasks tied to the company", + "icon": "IconCheckbox", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "ac6788b1-952c-4376-bafd-66ea5a031398", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "701aecf9-eb1c-4d84-9d94-b954b231b64b", + "nameSingular": "company", + "namePlural": "companies" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "b295267e-e066-4eb1-98ab-50a9d3004394", + "name": "taskTargets" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "5e92b318-bc10-4fe3-b997-de41b7e45c36", + "nameSingular": "taskTarget", + "namePlural": "taskTargets" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "d89d8a7f-6a14-4fc8-96ca-2966632a1ca4", + "name": "company" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "ac6788b1-952c-4376-bafd-66ea5a031398", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "d89d8a7f-6a14-4fc8-96ca-2966632a1ca4", + "toObjectMetadata": { + "__typename": "object", + "id": "5e92b318-bc10-4fe3-b997-de41b7e45c36", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "taskTarget", + "namePlural": "taskTargets", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "33454d9c-57f7-4639-9120-b024f365d52f", + "type": "RELATION", + "name": "activityTargets", + "label": "Activities", + "description": "Activities tied to the company", + "icon": "IconCheckbox", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "a0f5427c-2c97-4457-b87f-a4d145e06952", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "701aecf9-eb1c-4d84-9d94-b954b231b64b", + "nameSingular": "company", + "namePlural": "companies" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "33454d9c-57f7-4639-9120-b024f365d52f", + "name": "activityTargets" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "948a52f8-eba6-4bb2-a3a7-b1aa61c0daf7", + "nameSingular": "activityTarget", + "namePlural": "activityTargets" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "6213d5af-e8cd-4e5d-9a60-bab631884ae5", + "name": "company" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "a0f5427c-2c97-4457-b87f-a4d145e06952", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "6213d5af-e8cd-4e5d-9a60-bab631884ae5", + "toObjectMetadata": { + "__typename": "object", + "id": "948a52f8-eba6-4bb2-a3a7-b1aa61c0daf7", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "activityTarget", + "namePlural": "activityTargets", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "531f05f1-2c54-4f41-a569-eaac4d58a4ae", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Company record position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "b2304609-4b9c-40f9-b1d6-21c0974e636e", + "type": "LINKS", + "name": "xLink", + "label": "X", + "description": "The company Twitter/X account", + "icon": "IconBrandX", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": { + "primaryLinkUrl": "''", + "secondaryLinks": null, + "primaryLinkLabel": "''" + }, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "02a1dce3-e661-48d8-868b-83c6e6e79a35", + "type": "LINKS", + "name": "domainName", + "label": "Domain Name", + "description": "The company website URL. We use this url to fetch the company icon", + "icon": "IconLink", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": { + "primaryLinkUrl": "''", + "secondaryLinks": null, + "primaryLinkLabel": "''" + }, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "81214e8d-e79d-420b-bb2d-8e1f0965b4a6", + "type": "UUID", + "name": "accountOwnerId", + "label": "Account Owner id (foreign key)", + "description": "Your team member responsible for managing the company account id foreign key", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "92fa0702-e680-4042-aa65-ddf9721030b4", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "a0df43b7-d926-44a2-ba12-252866607207", + "type": "RELATION", + "name": "favorites", + "label": "Favorites", + "description": "Favorites linked to the company", + "icon": "IconHeart", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "632aaba8-f213-4353-95a5-c090168c3ad7", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "701aecf9-eb1c-4d84-9d94-b954b231b64b", + "nameSingular": "company", + "namePlural": "companies" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "a0df43b7-d926-44a2-ba12-252866607207", + "name": "favorites" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "4566e731-1922-4610-8e85-0beab7fc57be", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "4fa60a42-bd0d-462c-b05d-d85f96b00458", + "name": "company" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "632aaba8-f213-4353-95a5-c090168c3ad7", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "4fa60a42-bd0d-462c-b05d-d85f96b00458", + "toObjectMetadata": { + "__typename": "object", + "id": "4566e731-1922-4610-8e85-0beab7fc57be", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "favorite", + "namePlural": "favorites", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "f39f1db9-3d7f-46d3-aa0c-4cae44352407", + "type": "RELATION", + "name": "timelineActivities", + "label": "Timeline Activities", + "description": "Timeline Activities linked to the company", + "icon": "IconIconTimelineEvent", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "1e93ed03-91a5-4ad4-bca7-c6a637551289", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "701aecf9-eb1c-4d84-9d94-b954b231b64b", + "nameSingular": "company", + "namePlural": "companies" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "f39f1db9-3d7f-46d3-aa0c-4cae44352407", + "name": "timelineActivities" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "e095e196-08d4-493c-8a02-01c4a3decb5c", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "0224c08b-2c2e-474f-8360-dafad378cf62", + "name": "company" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "1e93ed03-91a5-4ad4-bca7-c6a637551289", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "0224c08b-2c2e-474f-8360-dafad378cf62", + "toObjectMetadata": { + "__typename": "object", + "id": "e095e196-08d4-493c-8a02-01c4a3decb5c", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "1a843af7-219d-460b-9869-b2d89479e42a", + "type": "CURRENCY", + "name": "annualRecurringRevenue", + "label": "ARR", + "description": "Annual Recurring Revenue: The actual or estimated annual revenue of the company", + "icon": "IconMoneybag", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": { + "amountMicros": null, + "currencyCode": "''" + }, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "16706d44-4042-4998-b5c7-15437e052196", + "type": "RELATION", + "name": "attachments", + "label": "Attachments", + "description": "Attachments linked to the company", + "icon": "IconFileImport", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "2be99c6b-02c8-4ca0-b155-dcf7539097b5", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "701aecf9-eb1c-4d84-9d94-b954b231b64b", + "nameSingular": "company", + "namePlural": "companies" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "16706d44-4042-4998-b5c7-15437e052196", + "name": "attachments" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "963747ea-45e2-4deb-b36d-73b014e17c42", + "nameSingular": "attachment", + "namePlural": "attachments" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "36f7236a-bfd2-404c-adb6-66b294ca5435", + "name": "company" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "2be99c6b-02c8-4ca0-b155-dcf7539097b5", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "36f7236a-bfd2-404c-adb6-66b294ca5435", + "toObjectMetadata": { + "__typename": "object", + "id": "963747ea-45e2-4deb-b36d-73b014e17c42", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "attachment", + "namePlural": "attachments", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "9e123592-cd2b-471c-8143-3cc0b46089ef", + "type": "TEXT", + "name": "name", + "label": "Name", + "description": "The company name", + "icon": "IconBuildingSkyscraper", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "76878ce1-1d00-4e86-8694-58b66bbb5df0", + "type": "LINKS", + "name": "linkedinLink", + "label": "Linkedin", + "description": "The company Linkedin account", + "icon": "IconBrandLinkedin", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": { + "primaryLinkUrl": "''", + "secondaryLinks": null, + "primaryLinkLabel": "''" + }, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "bcaf1d51-a492-48db-ab86-35b8ea496364", + "type": "ADDRESS", + "name": "address", + "label": "Address", + "description": "Address of the company", + "icon": "IconMap", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": { + "addressLat": null, + "addressLng": null, + "addressCity": "''", + "addressState": "''", + "addressCountry": "''", + "addressStreet1": "''", + "addressStreet2": "''", + "addressPostcode": "''" + }, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "74bf3aba-450e-48f9-987a-60662929e768", + "type": "RELATION", + "name": "noteTargets", + "label": "Notes", + "description": "Notes tied to the company", + "icon": "IconNotes", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "1670824b-e097-4afc-8401-feab7f9af0d4", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "701aecf9-eb1c-4d84-9d94-b954b231b64b", + "nameSingular": "company", + "namePlural": "companies" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "74bf3aba-450e-48f9-987a-60662929e768", + "name": "noteTargets" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "dcb774a3-71e8-44cc-bf53-7f195e0bfdb6", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "5a0243d0-051b-4f30-b0d2-da66b3b8eefe", + "name": "company" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "1670824b-e097-4afc-8401-feab7f9af0d4", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "5a0243d0-051b-4f30-b0d2-da66b3b8eefe", + "toObjectMetadata": { + "__typename": "object", + "id": "dcb774a3-71e8-44cc-bf53-7f195e0bfdb6", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "noteTarget", + "namePlural": "noteTargets", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "12a6505b-8d0b-4f02-ba94-742d7cc0ac8d", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "7ecd1240-7300-4e9e-a9d2-02b489e160b9", + "type": "ACTOR", + "name": "createdBy", + "label": "Created by", + "description": "The creator of the record", + "icon": "IconCreativeCommonsSa", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": { + "name": "''", + "source": "'MANUAL'" + }, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "0943b1b4-3aae-4ebe-8e8e-b1a8640d78d9", + "type": "RELATION", + "name": "people", + "label": "People", + "description": "People linked to the company.", + "icon": "IconUsers", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "2f030298-14c7-48a4-b351-2ec185bb1814", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "701aecf9-eb1c-4d84-9d94-b954b231b64b", + "nameSingular": "company", + "namePlural": "companies" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "0943b1b4-3aae-4ebe-8e8e-b1a8640d78d9", + "name": "people" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "nameSingular": "person", + "namePlural": "people" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "538e49cd-f04a-4889-9994-35cacc0754b7", + "name": "company" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "2f030298-14c7-48a4-b351-2ec185bb1814", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "538e49cd-f04a-4889-9994-35cacc0754b7", + "toObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "person", + "namePlural": "people", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "0f4348ce-6621-4af6-b557-f03308a03101", + "type": "NUMBER", + "name": "employees", + "label": "Employees", + "description": "Number of employees in the company", + "icon": "IconUsers", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "34aec238-a534-46e7-be64-d0680a12c8ec", + "type": "RELATION", + "name": "opportunities", + "label": "Opportunities", + "description": "Opportunities linked to the company.", + "icon": "IconTargetArrow", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "1ebadb76-46e6-4c57-b24f-441acecbd2d9", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "701aecf9-eb1c-4d84-9d94-b954b231b64b", + "nameSingular": "company", + "namePlural": "companies" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "34aec238-a534-46e7-be64-d0680a12c8ec", + "name": "opportunities" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "2dbf5d59-f03c-4578-8ff3-750f4bcdf8d0", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "727ec83b-93b7-4e6b-be22-6f00637ec3f5", + "name": "company" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "1ebadb76-46e6-4c57-b24f-441acecbd2d9", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "727ec83b-93b7-4e6b-be22-6f00637ec3f5", + "toObjectMetadata": { + "__typename": "object", + "id": "2dbf5d59-f03c-4578-8ff3-750f4bcdf8d0", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "opportunity", + "namePlural": "opportunities", + "isSystem": false, + "isRemote": false + } + } + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "66cd3a29-e2d8-4efa-8852-d17d7b538efa", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "connectedAccount", + "namePlural": "connectedAccounts", + "labelSingular": "Connected Account", + "labelPlural": "Connected Accounts", + "description": "A connected account", + "icon": "IconAt", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "d46591de-57c3-46ae-aca1-3d5cf2e39984", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjEz" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "d7c1698d-a73b-45f4-9bb1-b6b0a4f38fdb", + "type": "DATE_TIME", + "name": "authFailedAt", + "label": "Auth failed at", + "description": "Auth failed at", + "icon": "IconX", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "3bf6ad9c-0441-4b8f-8dd0-12d93f83b67a", + "type": "RELATION", + "name": "messageChannels", + "label": "Message Channels", + "description": "Message Channels", + "icon": "IconMessage", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "21bbef75-8acf-48bf-80aa-1d26d50aea22", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "66cd3a29-e2d8-4efa-8852-d17d7b538efa", + "nameSingular": "connectedAccount", + "namePlural": "connectedAccounts" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "3bf6ad9c-0441-4b8f-8dd0-12d93f83b67a", + "name": "messageChannels" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "311ea123-5b30-4637-ae39-3e639e780c83", + "nameSingular": "messageChannel", + "namePlural": "messageChannels" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "d288fd3a-8fb0-493d-bec3-31a2c4a7d366", + "name": "connectedAccount" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "21bbef75-8acf-48bf-80aa-1d26d50aea22", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "d288fd3a-8fb0-493d-bec3-31a2c4a7d366", + "toObjectMetadata": { + "__typename": "object", + "id": "311ea123-5b30-4637-ae39-3e639e780c83", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "messageChannel", + "namePlural": "messageChannels", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "98853a40-3d9b-42d4-942d-bc08c4d3a520", + "type": "TEXT", + "name": "provider", + "label": "provider", + "description": "The account provider", + "icon": "IconSettings", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "d46591de-57c3-46ae-aca1-3d5cf2e39984", + "type": "TEXT", + "name": "handle", + "label": "handle", + "description": "The account handle (email, username, phone number, etc.)", + "icon": "IconMail", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "ac09a2a9-d4ec-4293-b595-e5d684fd776c", + "type": "TEXT", + "name": "lastSyncHistoryId", + "label": "Last sync history ID", + "description": "Last sync history ID", + "icon": "IconHistory", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "bda628b5-29a7-41fc-8f50-4bc75902adc4", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "c27f1d98-24b4-4776-a49e-ca104eea9aaf", + "type": "TEXT", + "name": "accessToken", + "label": "Access Token", + "description": "Messaging provider access token", + "icon": "IconKey", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "e2ba34b6-e188-4b2b-bbf9-0625f33154e1", + "type": "TEXT", + "name": "refreshToken", + "label": "Refresh Token", + "description": "Messaging provider refresh token", + "icon": "IconKey", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "bb10e69d-f049-4d97-84f4-09bce29cd401", + "type": "RELATION", + "name": "calendarChannels", + "label": "Calendar Channels", + "description": "Calendar Channels", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "b6b75323-8790-4b3e-8798-e0af646bb9aa", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "66cd3a29-e2d8-4efa-8852-d17d7b538efa", + "nameSingular": "connectedAccount", + "namePlural": "connectedAccounts" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "bb10e69d-f049-4d97-84f4-09bce29cd401", + "name": "calendarChannels" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "0e285964-d858-48bc-98ab-b8c6b1bd5d0b", + "nameSingular": "calendarChannel", + "namePlural": "calendarChannels" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "ceaf8f8e-297a-418b-a652-01f3eeb5c562", + "name": "connectedAccount" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "b6b75323-8790-4b3e-8798-e0af646bb9aa", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "ceaf8f8e-297a-418b-a652-01f3eeb5c562", + "toObjectMetadata": { + "__typename": "object", + "id": "0e285964-d858-48bc-98ab-b8c6b1bd5d0b", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "calendarChannel", + "namePlural": "calendarChannels", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "48006d4c-0d9c-4099-9ab8-812d0e522faf", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "ebc20c3a-157e-46a0-84c7-b0a4a93ead20", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "15512b35-a65c-4f87-8c98-0b0a1b6f92fe", + "type": "UUID", + "name": "accountOwnerId", + "label": "Account Owner id (foreign key)", + "description": "Account Owner id foreign key", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "95bd59b8-8083-4c76-b770-ec40a744138c", + "type": "RELATION", + "name": "accountOwner", + "label": "Account Owner", + "description": "Account Owner", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "1ecacc04-e834-421d-bf1b-c765e55a4318", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "66cd3a29-e2d8-4efa-8852-d17d7b538efa", + "nameSingular": "connectedAccount", + "namePlural": "connectedAccounts" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "95bd59b8-8083-4c76-b770-ec40a744138c", + "name": "accountOwner" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "104209de-5259-4d74-b14a-f37badf49be9", + "name": "connectedAccounts" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "1ecacc04-e834-421d-bf1b-c765e55a4318", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "104209de-5259-4d74-b14a-f37badf49be9", + "fromObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "27048fa7-94eb-4ca0-8479-096a6b990e0f", + "type": "TEXT", + "name": "handleAliases", + "label": "Handle Aliases", + "description": "Handle Aliases", + "icon": "IconMail", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "60637cd3-24f6-4d9a-9432-a590accbefb9", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "blocklist", + "namePlural": "blocklists", + "labelSingular": "Blocklist", + "labelPlural": "Blocklists", + "description": "Blocklist", + "icon": "IconForbid2", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "67c4f9b6-f1b6-48d0-a502-71aef617fed2", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjU=" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "6d5237ae-e410-4701-ae0c-8d73bf83c49f", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "67c4f9b6-f1b6-48d0-a502-71aef617fed2", + "type": "TEXT", + "name": "handle", + "label": "Handle", + "description": "Handle", + "icon": "IconAt", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "96acdd2a-b7d1-452b-9e58-5c4265691444", + "type": "RELATION", + "name": "workspaceMember", + "label": "WorkspaceMember", + "description": "WorkspaceMember", + "icon": "IconCircleUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "19b7520c-bc6e-490c-bfab-a3b020315cc4", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "60637cd3-24f6-4d9a-9432-a590accbefb9", + "nameSingular": "blocklist", + "namePlural": "blocklists" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "96acdd2a-b7d1-452b-9e58-5c4265691444", + "name": "workspaceMember" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "c6b1b4a1-bad8-4872-b408-aa0ceb668215", + "name": "blocklist" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "19b7520c-bc6e-490c-bfab-a3b020315cc4", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "c6b1b4a1-bad8-4872-b408-aa0ceb668215", + "fromObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "9b5ffcde-f21d-43c9-9d8c-ff718fe8c4cb", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "616690bd-fdca-483b-9b1d-e85642f770b4", + "type": "UUID", + "name": "workspaceMemberId", + "label": "WorkspaceMember id (foreign key)", + "description": "WorkspaceMember id foreign key", + "icon": "IconCircleUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "697ba30c-5088-4af7-b7c4-39249c3df401", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "5e92b318-bc10-4fe3-b997-de41b7e45c36", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "taskTarget", + "namePlural": "taskTargets", + "labelSingular": "Task Target", + "labelPlural": "Task Targets", + "description": "An task target", + "icon": "IconCheckbox", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "f9109154-65ca-42d5-b21c-1251790f60f8", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjEw" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "807cfd9f-4081-4027-b646-cf66d81aa8c6", + "type": "RELATION", + "name": "opportunity", + "label": "Opportunity", + "description": "TaskTarget opportunity", + "icon": "IconTargetArrow", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "457627a4-8e4f-4720-80b4-b8c47a49a1d7", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "5e92b318-bc10-4fe3-b997-de41b7e45c36", + "nameSingular": "taskTarget", + "namePlural": "taskTargets" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "807cfd9f-4081-4027-b646-cf66d81aa8c6", + "name": "opportunity" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "2dbf5d59-f03c-4578-8ff3-750f4bcdf8d0", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "100f9c10-11c4-4fee-963a-f98a0e42d05d", + "name": "taskTargets" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "457627a4-8e4f-4720-80b4-b8c47a49a1d7", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "100f9c10-11c4-4fee-963a-f98a0e42d05d", + "fromObjectMetadata": { + "__typename": "object", + "id": "2dbf5d59-f03c-4578-8ff3-750f4bcdf8d0", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "opportunity", + "namePlural": "opportunities", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "db61f1e6-17d5-4f1d-8c18-8cb5f1108831", + "type": "RELATION", + "name": "person", + "label": "Person", + "description": "TaskTarget person", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "e95da71a-7162-4282-8ff7-ea65fea36fe8", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "5e92b318-bc10-4fe3-b997-de41b7e45c36", + "nameSingular": "taskTarget", + "namePlural": "taskTargets" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "db61f1e6-17d5-4f1d-8c18-8cb5f1108831", + "name": "person" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "nameSingular": "person", + "namePlural": "people" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "a53d5e8d-85d9-45de-9f45-d8b4f5b11c3a", + "name": "taskTargets" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "e95da71a-7162-4282-8ff7-ea65fea36fe8", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "a53d5e8d-85d9-45de-9f45-d8b4f5b11c3a", + "fromObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "person", + "namePlural": "people", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "f9109154-65ca-42d5-b21c-1251790f60f8", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "e5958bbf-0743-46a4-9222-cefbaa0bd45f", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "c84f3d16-2914-4861-8097-d4c58aa7e60e", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "03f631d8-6e86-49c0-9197-dab8df407176", + "type": "UUID", + "name": "personId", + "label": "Person id (foreign key)", + "description": "TaskTarget person id foreign key", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "0f37463a-4a08-44b6-87b6-8175ffa6bff0", + "type": "RELATION", + "name": "task", + "label": "Task", + "description": "TaskTarget task", + "icon": "IconCheckbox", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "1cc7a6b5-66d2-40dc-aa08-4b1a252e3ae3", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "5e92b318-bc10-4fe3-b997-de41b7e45c36", + "nameSingular": "taskTarget", + "namePlural": "taskTargets" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "0f37463a-4a08-44b6-87b6-8175ffa6bff0", + "name": "task" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "4601f72c-580d-4e64-8004-4864f5e60da7", + "nameSingular": "task", + "namePlural": "tasks" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "157bef1e-50c2-4c2a-bc48-a5bc790c0f08", + "name": "taskTargets" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "1cc7a6b5-66d2-40dc-aa08-4b1a252e3ae3", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "157bef1e-50c2-4c2a-bc48-a5bc790c0f08", + "fromObjectMetadata": { + "__typename": "object", + "id": "4601f72c-580d-4e64-8004-4864f5e60da7", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "task", + "namePlural": "tasks", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "d89d8a7f-6a14-4fc8-96ca-2966632a1ca4", + "type": "RELATION", + "name": "company", + "label": "Company", + "description": "TaskTarget company", + "icon": "IconBuildingSkyscraper", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "ac6788b1-952c-4376-bafd-66ea5a031398", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "5e92b318-bc10-4fe3-b997-de41b7e45c36", + "nameSingular": "taskTarget", + "namePlural": "taskTargets" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "d89d8a7f-6a14-4fc8-96ca-2966632a1ca4", + "name": "company" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "701aecf9-eb1c-4d84-9d94-b954b231b64b", + "nameSingular": "company", + "namePlural": "companies" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "b295267e-e066-4eb1-98ab-50a9d3004394", + "name": "taskTargets" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "ac6788b1-952c-4376-bafd-66ea5a031398", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "b295267e-e066-4eb1-98ab-50a9d3004394", + "fromObjectMetadata": { + "__typename": "object", + "id": "701aecf9-eb1c-4d84-9d94-b954b231b64b", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "company", + "namePlural": "companies", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "e5c3fbc8-1d4a-4474-a06b-001868038a82", + "type": "UUID", + "name": "taskId", + "label": "Task id (foreign key)", + "description": "TaskTarget task id foreign key", + "icon": "IconCheckbox", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "e387828b-ddb0-4991-86bb-9f37149cf20c", + "type": "UUID", + "name": "opportunityId", + "label": "Opportunity id (foreign key)", + "description": "TaskTarget opportunity id foreign key", + "icon": "IconTargetArrow", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "1f6a22b6-d296-43ed-bdeb-1303d334aa8c", + "type": "UUID", + "name": "companyId", + "label": "Company id (foreign key)", + "description": "TaskTarget company id foreign key", + "icon": "IconBuildingSkyscraper", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "53743ffb-932c-43ec-b624-f5119ec46808", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "calendarEventParticipant", + "namePlural": "calendarEventParticipants", + "labelSingular": "Calendar event participant", + "labelPlural": "Calendar event participants", + "description": "Calendar event participants", + "icon": "IconCalendar", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "a05d5847-6d10-4c04-9c9c-e1b6c239ed0f", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjEy" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "f50861f2-6921-4c3a-8218-930fa98dcb36", + "type": "UUID", + "name": "calendarEventId", + "label": "Event ID id (foreign key)", + "description": "Event ID id foreign key", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "13af93a8-ad97-477a-992d-be998d44f2f3", + "type": "UUID", + "name": "workspaceMemberId", + "label": "Workspace Member id (foreign key)", + "description": "Workspace Member id foreign key", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "3f1d464a-8f3a-42a3-98e3-f314f906d437", + "type": "SELECT", + "name": "responseStatus", + "label": "Response Status", + "description": "Response Status", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "'NEEDS_ACTION'", + "options": [ + { + "id": "83748f1c-0fe1-4b92-929f-1adef17c1041", + "color": "orange", + "label": "Needs Action", + "value": "NEEDS_ACTION", + "position": 0 + }, + { + "id": "3b770f03-26a4-4b08-9eee-d2e7cf6fe3c9", + "color": "red", + "label": "Declined", + "value": "DECLINED", + "position": 1 + }, + { + "id": "86b4d0ed-a858-42df-bd9b-31ef0448ef68", + "color": "yellow", + "label": "Tentative", + "value": "TENTATIVE", + "position": 2 + }, + { + "id": "842f49df-916c-4119-86fe-f6332bf6aef2", + "color": "green", + "label": "Accepted", + "value": "ACCEPTED", + "position": 3 + } + ], + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "ffaf23b6-1c4c-4073-9c66-2e213764dc86", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "78c18d2c-6316-45f4-983a-17505a4991f2", + "type": "BOOLEAN", + "name": "isOrganizer", + "label": "Is Organizer", + "description": "Is Organizer", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": false, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "a2ecf99f-9725-4b20-90df-28ad410f173b", + "type": "RELATION", + "name": "person", + "label": "Person", + "description": "Person", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "178c5cfe-cc05-49ec-bedb-eff402da4e8f", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "53743ffb-932c-43ec-b624-f5119ec46808", + "nameSingular": "calendarEventParticipant", + "namePlural": "calendarEventParticipants" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "a2ecf99f-9725-4b20-90df-28ad410f173b", + "name": "person" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "nameSingular": "person", + "namePlural": "people" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "fd48c551-1309-473d-bb7e-921c577b731b", + "name": "calendarEventParticipants" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "178c5cfe-cc05-49ec-bedb-eff402da4e8f", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "fd48c551-1309-473d-bb7e-921c577b731b", + "fromObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "person", + "namePlural": "people", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "4071dc84-8e86-4174-92c8-d201cbe00587", + "type": "TEXT", + "name": "displayName", + "label": "Display Name", + "description": "Display Name", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "07dcc4ef-0f27-4fd3-bfaf-0f931dfaba97", + "type": "UUID", + "name": "personId", + "label": "Person id (foreign key)", + "description": "Person id foreign key", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "b04775e2-53a3-4f62-a2ab-858f2a456fa7", + "type": "RELATION", + "name": "calendarEvent", + "label": "Event ID", + "description": "Event ID", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "e02ea7b1-1d5a-481b-ab71-3c94ab3f9bf0", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "53743ffb-932c-43ec-b624-f5119ec46808", + "nameSingular": "calendarEventParticipant", + "namePlural": "calendarEventParticipants" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "b04775e2-53a3-4f62-a2ab-858f2a456fa7", + "name": "calendarEvent" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "d2834e90-eecc-4528-bab3-ad005effd6f2", + "nameSingular": "calendarEvent", + "namePlural": "calendarEvents" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "eb3a27fb-9cb8-4017-b896-e52eaf801dc2", + "name": "calendarEventParticipants" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "e02ea7b1-1d5a-481b-ab71-3c94ab3f9bf0", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "eb3a27fb-9cb8-4017-b896-e52eaf801dc2", + "fromObjectMetadata": { + "__typename": "object", + "id": "d2834e90-eecc-4528-bab3-ad005effd6f2", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "calendarEvent", + "namePlural": "calendarEvents", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "fbc9d8eb-c04f-4c86-81ff-d4ca9957d0d4", + "type": "RELATION", + "name": "workspaceMember", + "label": "Workspace Member", + "description": "Workspace Member", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "d5ffcbba-0ab9-4f4d-a5e6-15f1e668b04c", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "53743ffb-932c-43ec-b624-f5119ec46808", + "nameSingular": "calendarEventParticipant", + "namePlural": "calendarEventParticipants" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "fbc9d8eb-c04f-4c86-81ff-d4ca9957d0d4", + "name": "workspaceMember" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "6062715e-08e8-4ff5-962d-eed4f992fc61", + "name": "calendarEventParticipants" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "d5ffcbba-0ab9-4f4d-a5e6-15f1e668b04c", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "6062715e-08e8-4ff5-962d-eed4f992fc61", + "fromObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "cdb9b9ba-ac5c-4806-a017-8ca8b250fc50", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "0178d7b0-59e1-48d2-bc62-4138e6d28b60", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "a05d5847-6d10-4c04-9c9c-e1b6c239ed0f", + "type": "TEXT", + "name": "handle", + "label": "Handle", + "description": "Handle", + "icon": "IconMail", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "4fed9657-e68b-4856-8e6d-a1c860d16242", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "calendarChannelEventAssociation", + "namePlural": "calendarChannelEventAssociations", + "labelSingular": "Calendar Channel Event Association", + "labelPlural": "Calendar Channel Event Associations", + "description": "Calendar Channel Event Associations", + "icon": "IconCalendar", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "277a098a-129a-4c86-b467-6738edc923e6", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjc=" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "3ff32421-dddd-49d6-bce2-51517a50e621", + "type": "TEXT", + "name": "eventExternalId", + "label": "Event external ID", + "description": "Event external ID", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "cae3d473-1e5b-4963-a88d-8fd2ef8090dc", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "18cea1c1-f521-4c41-b694-729756931795", + "type": "RELATION", + "name": "calendarEvent", + "label": "Event ID", + "description": "Event ID", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "0f9d244b-e9c6-44af-88f4-9ce798d50bf8", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "4fed9657-e68b-4856-8e6d-a1c860d16242", + "nameSingular": "calendarChannelEventAssociation", + "namePlural": "calendarChannelEventAssociations" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "18cea1c1-f521-4c41-b694-729756931795", + "name": "calendarEvent" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "d2834e90-eecc-4528-bab3-ad005effd6f2", + "nameSingular": "calendarEvent", + "namePlural": "calendarEvents" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "fe7dcb62-099f-4ad1-af7e-a74713f6159d", + "name": "calendarChannelEventAssociations" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "0f9d244b-e9c6-44af-88f4-9ce798d50bf8", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "fe7dcb62-099f-4ad1-af7e-a74713f6159d", + "fromObjectMetadata": { + "__typename": "object", + "id": "d2834e90-eecc-4528-bab3-ad005effd6f2", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "calendarEvent", + "namePlural": "calendarEvents", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "4ddb8993-4601-4743-b042-8dab9784a405", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "277a098a-129a-4c86-b467-6738edc923e6", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "567e7a03-352b-4ba6-9fd8-c173a72d8465", + "type": "UUID", + "name": "calendarChannelId", + "label": "Channel ID id (foreign key)", + "description": "Channel ID id foreign key", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "d3039865-07b4-4114-bd78-18aa0be2a93b", + "type": "RELATION", + "name": "calendarChannel", + "label": "Channel ID", + "description": "Channel ID", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "bf0f695a-08cd-4767-9a83-4fd09f617793", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "4fed9657-e68b-4856-8e6d-a1c860d16242", + "nameSingular": "calendarChannelEventAssociation", + "namePlural": "calendarChannelEventAssociations" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "d3039865-07b4-4114-bd78-18aa0be2a93b", + "name": "calendarChannel" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "0e285964-d858-48bc-98ab-b8c6b1bd5d0b", + "nameSingular": "calendarChannel", + "namePlural": "calendarChannels" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "9867ad34-df58-4ad0-a459-cc283990b5e5", + "name": "calendarChannelEventAssociations" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "bf0f695a-08cd-4767-9a83-4fd09f617793", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "9867ad34-df58-4ad0-a459-cc283990b5e5", + "fromObjectMetadata": { + "__typename": "object", + "id": "0e285964-d858-48bc-98ab-b8c6b1bd5d0b", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "calendarChannel", + "namePlural": "calendarChannels", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "461f9bbb-92b0-4070-a7d2-7f029bae5cff", + "type": "UUID", + "name": "calendarEventId", + "label": "Event ID id (foreign key)", + "description": "Event ID id foreign key", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "4cd6194a-093e-4c5d-9ff2-218970b01e3c", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "note", + "namePlural": "notes", + "labelSingular": "Note", + "labelPlural": "Notes", + "description": "A note", + "icon": "IconNotes", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "e031b434-6370-484a-a88e-c9c526abde5d", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjk=" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "2b3caa88-203b-460c-be49-88db3b45e18d", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Note record position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "b66379fc-ac94-4823-b759-aa940fde9c73", + "type": "RELATION", + "name": "timelineActivities", + "label": "Timeline Activities", + "description": "Timeline Activities linked to the note.", + "icon": "IconTimelineEvent", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "7ec36219-a377-4aea-98be-7954590f8a32", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "4cd6194a-093e-4c5d-9ff2-218970b01e3c", + "nameSingular": "note", + "namePlural": "notes" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "b66379fc-ac94-4823-b759-aa940fde9c73", + "name": "timelineActivities" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "e095e196-08d4-493c-8a02-01c4a3decb5c", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "bc0e2a25-4e13-4751-a79a-2d264582ef9a", + "name": "note" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "7ec36219-a377-4aea-98be-7954590f8a32", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "bc0e2a25-4e13-4751-a79a-2d264582ef9a", + "toObjectMetadata": { + "__typename": "object", + "id": "e095e196-08d4-493c-8a02-01c4a3decb5c", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "04794a4e-35c3-46a9-8bf3-8ba1c0324f0b", + "type": "RELATION", + "name": "noteTargets", + "label": "Targets", + "description": "Note targets", + "icon": "IconCheckbox", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "663e9842-8b92-451a-bf73-12a886ff8b05", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "4cd6194a-093e-4c5d-9ff2-218970b01e3c", + "nameSingular": "note", + "namePlural": "notes" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "04794a4e-35c3-46a9-8bf3-8ba1c0324f0b", + "name": "noteTargets" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "dcb774a3-71e8-44cc-bf53-7f195e0bfdb6", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "87334d50-0c5d-4327-a8c5-3db6bc28c1ea", + "name": "note" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "663e9842-8b92-451a-bf73-12a886ff8b05", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "87334d50-0c5d-4327-a8c5-3db6bc28c1ea", + "toObjectMetadata": { + "__typename": "object", + "id": "dcb774a3-71e8-44cc-bf53-7f195e0bfdb6", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "noteTarget", + "namePlural": "noteTargets", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "2a2fa9e4-242f-449e-a191-d1937ee4cedc", + "type": "RELATION", + "name": "attachments", + "label": "Attachments", + "description": "Note attachments", + "icon": "IconFileImport", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "bb4120f5-5135-4881-97a8-d50e6df2f97e", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "4cd6194a-093e-4c5d-9ff2-218970b01e3c", + "nameSingular": "note", + "namePlural": "notes" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "2a2fa9e4-242f-449e-a191-d1937ee4cedc", + "name": "attachments" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "963747ea-45e2-4deb-b36d-73b014e17c42", + "nameSingular": "attachment", + "namePlural": "attachments" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "f8a0a4ad-a6f5-4eb3-985d-a3134e5449ad", + "name": "note" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "bb4120f5-5135-4881-97a8-d50e6df2f97e", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "f8a0a4ad-a6f5-4eb3-985d-a3134e5449ad", + "toObjectMetadata": { + "__typename": "object", + "id": "963747ea-45e2-4deb-b36d-73b014e17c42", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "attachment", + "namePlural": "attachments", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "e031b434-6370-484a-a88e-c9c526abde5d", + "type": "TEXT", + "name": "title", + "label": "Title", + "description": "Note title", + "icon": "IconNotes", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "0c70e522-0571-4fca-8e4e-11c856819aeb", + "type": "RICH_TEXT", + "name": "body", + "label": "Body", + "description": "Note body", + "icon": "IconFilePencil", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "71958224-6de5-4998-82fc-8e85a3b247d6", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "0121cd64-663f-4856-b9fc-97973a7e5ee5", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "6de21035-5574-471c-80d9-4fb72375ff30", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "0d8481f5-5c58-4604-9283-7a5780eab671", + "type": "ACTOR", + "name": "createdBy", + "label": "Created by", + "description": "The creator of the record", + "icon": "IconCreativeCommonsSa", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": { + "name": "''", + "source": "'MANUAL'" + }, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "4601f72c-580d-4e64-8004-4864f5e60da7", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "task", + "namePlural": "tasks", + "labelSingular": "Task", + "labelPlural": "Tasks", + "description": "A task", + "icon": "IconCheckbox", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "d55d2259-62d5-4738-ab6c-07a7293ccb1d", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjEz" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "54f90efb-a0f4-4adb-9752-58593520ba14", + "type": "ACTOR", + "name": "createdBy", + "label": "Created by", + "description": "The creator of the record", + "icon": "IconCreativeCommonsSa", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": { + "name": "''", + "source": "'MANUAL'" + }, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "671afe20-9fe1-41f7-9ea1-37a41b3f14ea", + "type": "SELECT", + "name": "status", + "label": "Status", + "description": "Task status", + "icon": "IconCheck", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "'TODO'", + "options": [ + { + "id": "dedd046f-fc42-4f12-b791-0eb51ca8fa87", + "color": "sky", + "label": "To do", + "value": "TODO", + "position": 0 + }, + { + "id": "849a02b8-c8d4-4249-9b18-4f44a226b8a1", + "color": "purple", + "label": "In progress", + "value": "IN_PROGESS", + "position": 1 + }, + { + "id": "ff6527b5-06af-4e84-808f-bd8148525341", + "color": "green", + "label": "Done", + "value": "DONE", + "position": 1 + } + ], + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "975e6a19-d90c-45dc-9bb0-ffc57f4e1950", + "type": "RELATION", + "name": "timelineActivities", + "label": "Timeline Activities", + "description": "Timeline Activities linked to the task.", + "icon": "IconTimelineEvent", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "87c0082f-5411-4202-97cd-fc1d9112fa7a", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "4601f72c-580d-4e64-8004-4864f5e60da7", + "nameSingular": "task", + "namePlural": "tasks" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "975e6a19-d90c-45dc-9bb0-ffc57f4e1950", + "name": "timelineActivities" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "e095e196-08d4-493c-8a02-01c4a3decb5c", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "e48eeafe-43d8-4abc-95c8-6e7a6a56a7c9", + "name": "task" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "87c0082f-5411-4202-97cd-fc1d9112fa7a", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "e48eeafe-43d8-4abc-95c8-6e7a6a56a7c9", + "toObjectMetadata": { + "__typename": "object", + "id": "e095e196-08d4-493c-8a02-01c4a3decb5c", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "91359011-baa5-43a5-9fc2-d46c55c01a50", + "type": "UUID", + "name": "assigneeId", + "label": "Assignee id (foreign key)", + "description": "Task assignee id foreign key", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "200825f9-f61c-486d-bafc-c89df63bf661", + "type": "DATE_TIME", + "name": "dueAt", + "label": "Due Date", + "description": "Task due date", + "icon": "IconCalendarEvent", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "811501e4-0b89-41bb-8571-95bcc3875491", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "61f19623-4e85-4710-867c-a5cc500fb3bc", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "d34f8907-4850-452f-ae0f-2f4e678b74cc", + "type": "RICH_TEXT", + "name": "body", + "label": "Body", + "description": "Task body", + "icon": "IconFilePencil", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "7c3b7305-e7be-4dbf-9e94-ee354e011f63", + "type": "RELATION", + "name": "attachments", + "label": "Attachments", + "description": "Task attachments", + "icon": "IconFileImport", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "cc228da1-14c7-4c49-a84d-231ba6166f38", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "4601f72c-580d-4e64-8004-4864f5e60da7", + "nameSingular": "task", + "namePlural": "tasks" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "7c3b7305-e7be-4dbf-9e94-ee354e011f63", + "name": "attachments" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "963747ea-45e2-4deb-b36d-73b014e17c42", + "nameSingular": "attachment", + "namePlural": "attachments" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "0913c9cc-c3d4-4fd4-9fc7-b758daa08ba4", + "name": "task" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "cc228da1-14c7-4c49-a84d-231ba6166f38", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "0913c9cc-c3d4-4fd4-9fc7-b758daa08ba4", + "toObjectMetadata": { + "__typename": "object", + "id": "963747ea-45e2-4deb-b36d-73b014e17c42", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "attachment", + "namePlural": "attachments", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "ca0bf40d-2ddf-494f-bf1b-754f7c3f9c33", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "4628c7ec-ba15-4567-b386-10d32e338eb7", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Task record position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "157bef1e-50c2-4c2a-bc48-a5bc790c0f08", + "type": "RELATION", + "name": "taskTargets", + "label": "Targets", + "description": "Task targets", + "icon": "IconCheckbox", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "1cc7a6b5-66d2-40dc-aa08-4b1a252e3ae3", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "4601f72c-580d-4e64-8004-4864f5e60da7", + "nameSingular": "task", + "namePlural": "tasks" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "157bef1e-50c2-4c2a-bc48-a5bc790c0f08", + "name": "taskTargets" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "5e92b318-bc10-4fe3-b997-de41b7e45c36", + "nameSingular": "taskTarget", + "namePlural": "taskTargets" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "0f37463a-4a08-44b6-87b6-8175ffa6bff0", + "name": "task" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "1cc7a6b5-66d2-40dc-aa08-4b1a252e3ae3", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "0f37463a-4a08-44b6-87b6-8175ffa6bff0", + "toObjectMetadata": { + "__typename": "object", + "id": "5e92b318-bc10-4fe3-b997-de41b7e45c36", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "taskTarget", + "namePlural": "taskTargets", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "5bcc7e50-73ce-4146-b000-5a336f0e9c40", + "type": "RELATION", + "name": "assignee", + "label": "Assignee", + "description": "Task assignee", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "8cb075f2-e51c-4684-80f6-cf6af471e82a", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "4601f72c-580d-4e64-8004-4864f5e60da7", + "nameSingular": "task", + "namePlural": "tasks" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "5bcc7e50-73ce-4146-b000-5a336f0e9c40", + "name": "assignee" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "e4c25d9f-10cf-4c33-8c39-7aaac0a98f11", + "name": "assignedTasks" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "8cb075f2-e51c-4684-80f6-cf6af471e82a", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "e4c25d9f-10cf-4c33-8c39-7aaac0a98f11", + "fromObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "d55d2259-62d5-4738-ab6c-07a7293ccb1d", + "type": "TEXT", + "name": "title", + "label": "Title", + "description": "Task title", + "icon": "IconNotes", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "4566e731-1922-4610-8e85-0beab7fc57be", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "favorite", + "namePlural": "favorites", + "labelSingular": "Favorite", + "labelPlural": "Favorites", + "description": "A favorite", + "icon": "IconHeart", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "283bbd7b-1828-47c0-ac12-59b840904057", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjEx" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "8028b960-41fe-45a5-bd88-ed41e3ec9f55", + "type": "UUID", + "name": "workspaceMemberId", + "label": "Workspace Member id (foreign key)", + "description": "Favorite workspace member id foreign key", + "icon": "IconCircleUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "4a9e3e27-70b0-4ed7-9edf-9126c1675b22", + "type": "RELATION", + "name": "person", + "label": "Person", + "description": "Favorite person", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "74f62324-bc36-4210-bb88-e0e6e0136c9f", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "4566e731-1922-4610-8e85-0beab7fc57be", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "4a9e3e27-70b0-4ed7-9edf-9126c1675b22", + "name": "person" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "nameSingular": "person", + "namePlural": "people" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "ee426b52-f4d3-4b96-a7fc-04d968b66331", + "name": "favorites" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "74f62324-bc36-4210-bb88-e0e6e0136c9f", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "ee426b52-f4d3-4b96-a7fc-04d968b66331", + "fromObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "person", + "namePlural": "people", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "2a725662-fe1a-44e8-af06-2ae21c9ae0c2", + "type": "RELATION", + "name": "opportunity", + "label": "Opportunity", + "description": "Favorite opportunity", + "icon": "IconTargetArrow", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "2f07395e-a114-465c-a3a2-9c6b990d3dca", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "4566e731-1922-4610-8e85-0beab7fc57be", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "2a725662-fe1a-44e8-af06-2ae21c9ae0c2", + "name": "opportunity" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "2dbf5d59-f03c-4578-8ff3-750f4bcdf8d0", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "2e93a9a9-774b-43fd-8338-d54c29b8704c", + "name": "favorites" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "2f07395e-a114-465c-a3a2-9c6b990d3dca", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "2e93a9a9-774b-43fd-8338-d54c29b8704c", + "fromObjectMetadata": { + "__typename": "object", + "id": "2dbf5d59-f03c-4578-8ff3-750f4bcdf8d0", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "opportunity", + "namePlural": "opportunities", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "bdc61888-3791-42db-8276-1e91d7f81054", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "283bbd7b-1828-47c0-ac12-59b840904057", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "0aaf9f83-9b43-4f15-a187-9c11761b367a", + "type": "RELATION", + "name": "workspaceMember", + "label": "Workspace Member", + "description": "Favorite workspace member", + "icon": "IconCircleUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "a72edc8d-e5e3-4eae-9fd6-4cb0792b18aa", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "4566e731-1922-4610-8e85-0beab7fc57be", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "0aaf9f83-9b43-4f15-a187-9c11761b367a", + "name": "workspaceMember" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "29055851-94dc-4fa9-84d8-295a3d161724", + "name": "favorites" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "a72edc8d-e5e3-4eae-9fd6-4cb0792b18aa", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "29055851-94dc-4fa9-84d8-295a3d161724", + "fromObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "4fa60a42-bd0d-462c-b05d-d85f96b00458", + "type": "RELATION", + "name": "company", + "label": "Company", + "description": "Favorite company", + "icon": "IconBuildingSkyscraper", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "632aaba8-f213-4353-95a5-c090168c3ad7", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "4566e731-1922-4610-8e85-0beab7fc57be", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "4fa60a42-bd0d-462c-b05d-d85f96b00458", + "name": "company" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "701aecf9-eb1c-4d84-9d94-b954b231b64b", + "nameSingular": "company", + "namePlural": "companies" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "a0df43b7-d926-44a2-ba12-252866607207", + "name": "favorites" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "632aaba8-f213-4353-95a5-c090168c3ad7", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "a0df43b7-d926-44a2-ba12-252866607207", + "fromObjectMetadata": { + "__typename": "object", + "id": "701aecf9-eb1c-4d84-9d94-b954b231b64b", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "company", + "namePlural": "companies", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "539da33b-6863-41b5-9640-555cd190abf6", + "type": "NUMBER", + "name": "position", + "label": "Position", + "description": "Favorite position", + "icon": "IconList", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": 0, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "0d36e64d-b3aa-43a2-a8d5-26639e695a3c", + "type": "UUID", + "name": "personId", + "label": "Person id (foreign key)", + "description": "Favorite person id foreign key", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "f3f3b22c-cd38-4f87-bbf1-333b2661382f", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "9cdaf83f-8f2b-4745-9f5e-ed7e295261ab", + "type": "UUID", + "name": "opportunityId", + "label": "Opportunity id (foreign key)", + "description": "Favorite opportunity id foreign key", + "icon": "IconTargetArrow", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "2a2e1910-5dd3-4f52-b164-b05117b51e43", + "type": "UUID", + "name": "companyId", + "label": "Company id (foreign key)", + "description": "Favorite company id foreign key", + "icon": "IconBuildingSkyscraper", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "3babbb57-d5c5-40e3-8c90-4623c39861f4", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "webhook", + "namePlural": "webhooks", + "labelSingular": "Webhook", + "labelPlural": "Webhooks", + "description": "A webhook", + "icon": "IconRobot", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "46a319ab-9265-4f31-914a-b361849a7c93", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjU=" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "4f333e42-291b-49c0-8e34-a5011899ad64", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "46a319ab-9265-4f31-914a-b361849a7c93", + "type": "TEXT", + "name": "targetUrl", + "label": "Target Url", + "description": "Webhook target url", + "icon": "IconLink", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "d5763abd-3ab0-460a-8ce5-f7c69286bdce", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "bf449824-9fba-40d3-85b5-b05101952339", + "type": "TEXT", + "name": "description", + "label": "Description", + "description": null, + "icon": "IconInfo", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "03d0aab2-d561-4177-9894-9368c5e7fcaf", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "dfa8f17b-8277-47b8-9be0-ccf18d40fa7e", + "type": "TEXT", + "name": "operation", + "label": "Operation", + "description": "Webhook operation", + "icon": "IconCheckbox", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "311ea123-5b30-4637-ae39-3e639e780c83", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "messageChannel", + "namePlural": "messageChannels", + "labelSingular": "Message Channel", + "labelPlural": "Message Channels", + "description": "Message Channels", + "icon": "IconMessage", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "fd617e16-7acc-445c-8e47-bae3df663831", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjE5" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "562e521e-c5d5-4ff8-a9c9-1970032b7d31", + "type": "DATE_TIME", + "name": "syncStageStartedAt", + "label": "Sync stage started at", + "description": "Sync stage started at", + "icon": "IconHistory", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "fd617e16-7acc-445c-8e47-bae3df663831", + "type": "TEXT", + "name": "handle", + "label": "Handle", + "description": "Handle", + "icon": "IconAt", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "25a76025-cde8-4ced-91c9-83c053d14384", + "type": "SELECT", + "name": "visibility", + "label": "Visibility", + "description": "Visibility", + "icon": "IconEyeglass", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "'SHARE_EVERYTHING'", + "options": [ + { + "id": "29cb9455-90fd-4eff-9dcf-f335b86ad0e2", + "color": "green", + "label": "Metadata", + "value": "METADATA", + "position": 0 + }, + { + "id": "696eef0c-758e-4db3-a897-e8724f3bbb91", + "color": "blue", + "label": "Subject", + "value": "SUBJECT", + "position": 1 + }, + { + "id": "8a2a24ed-dfb4-4dca-b92f-398b9239ec81", + "color": "orange", + "label": "Share Everything", + "value": "SHARE_EVERYTHING", + "position": 2 + } + ], + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "3650c95e-adc9-4e10-af9b-f271e3011175", + "type": "TEXT", + "name": "syncCursor", + "label": "Last sync cursor", + "description": "Last sync cursor", + "icon": "IconHistory", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "4028ab71-03ae-4743-81fa-53e0fc802839", + "type": "SELECT", + "name": "contactAutoCreationPolicy", + "label": "Contact auto creation policy", + "description": "Automatically create People records when receiving or sending emails", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "'SENT'", + "options": [ + { + "id": "db68b799-8701-4d82-8496-0dc007f0f352", + "color": "green", + "label": "Sent and Received", + "value": "SENT_AND_RECEIVED", + "position": 0 + }, + { + "id": "4e01422b-7a3e-4dc5-a3f7-8ffe8a0ce561", + "color": "blue", + "label": "Sent", + "value": "SENT", + "position": 1 + }, + { + "id": "41656b1a-4c84-44b1-8b23-44740840b68e", + "color": "red", + "label": "None", + "value": "NONE", + "position": 2 + } + ], + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "0f338b41-0db1-45ae-bd58-7db0f1623d73", + "type": "SELECT", + "name": "syncStage", + "label": "Sync stage", + "description": "Sync stage", + "icon": "IconStatusChange", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "'FULL_MESSAGE_LIST_FETCH_PENDING'", + "options": [ + { + "id": "5d0c8e59-584c-47d4-818b-6b28d6aa6c63", + "color": "blue", + "label": "Full messages list fetch pending", + "value": "FULL_MESSAGE_LIST_FETCH_PENDING", + "position": 0 + }, + { + "id": "460f32ef-f8fd-4744-bb0d-e78991e3ad43", + "color": "blue", + "label": "Partial messages list fetch pending", + "value": "PARTIAL_MESSAGE_LIST_FETCH_PENDING", + "position": 1 + }, + { + "id": "daecc0da-ec0b-45ab-ad2d-2240945a3401", + "color": "orange", + "label": "Messages list fetch ongoing", + "value": "MESSAGE_LIST_FETCH_ONGOING", + "position": 2 + }, + { + "id": "4d2db113-0d55-4b08-aa62-d046cba0355e", + "color": "blue", + "label": "Messages import pending", + "value": "MESSAGES_IMPORT_PENDING", + "position": 3 + }, + { + "id": "36352f84-d97b-4762-b1a1-f10c2174831e", + "color": "orange", + "label": "Messages import ongoing", + "value": "MESSAGES_IMPORT_ONGOING", + "position": 4 + }, + { + "id": "8f3c45c2-8539-48bb-83a0-4af18f9f7852", + "color": "red", + "label": "Failed", + "value": "FAILED", + "position": 5 + } + ], + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "3b94c079-895b-4334-ae18-08d6892a5b7c", + "type": "BOOLEAN", + "name": "isContactAutoCreationEnabled", + "label": "Is Contact Auto Creation Enabled", + "description": "Is Contact Auto Creation Enabled", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": true, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "cc44284e-0f2a-4d29-89b0-12416ed5db94", + "type": "NUMBER", + "name": "throttleFailureCount", + "label": "Throttle Failure Count", + "description": "Throttle Failure Count", + "icon": "IconX", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": 0, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "415b8ccc-aa22-4fdc-933c-bbaf477ff84b", + "type": "SELECT", + "name": "syncStatus", + "label": "Sync status", + "description": "Sync status", + "icon": "IconStatusChange", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": [ + { + "id": "38d30f8d-c137-46a6-b4a8-6e3cf681fe1f", + "color": "yellow", + "label": "Ongoing", + "value": "ONGOING", + "position": 1 + }, + { + "id": "e10615dc-208c-4e59-85bb-a109111c3888", + "color": "blue", + "label": "Not Synced", + "value": "NOT_SYNCED", + "position": 2 + }, + { + "id": "f600af02-8be4-4dcd-9880-ed8e00576f20", + "color": "green", + "label": "Active", + "value": "ACTIVE", + "position": 3 + }, + { + "id": "18ff3cfe-7680-4065-8400-6b2a31553de4", + "color": "red", + "label": "Failed Insufficient Permissions", + "value": "FAILED_INSUFFICIENT_PERMISSIONS", + "position": 4 + }, + { + "id": "f0bdbb33-e57d-4f14-8696-077c0edcc3d6", + "color": "red", + "label": "Failed Unknown", + "value": "FAILED_UNKNOWN", + "position": 5 + } + ], + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "90feafa8-c1c8-4c02-97cc-4b2779f64991", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "bdd7ff46-118c-44e7-9b2e-cd522a248a8a", + "type": "RELATION", + "name": "messageChannelMessageAssociations", + "label": "Message Channel Association", + "description": "Messages from the channel.", + "icon": "IconMessage", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "40e51c6c-0268-47ca-bab9-4a899391e74b", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "311ea123-5b30-4637-ae39-3e639e780c83", + "nameSingular": "messageChannel", + "namePlural": "messageChannels" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "bdd7ff46-118c-44e7-9b2e-cd522a248a8a", + "name": "messageChannelMessageAssociations" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "0985d46f-722d-468f-9fa6-efa219405aa7", + "nameSingular": "messageChannelMessageAssociation", + "namePlural": "messageChannelMessageAssociations" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "34479a8f-e7a4-4069-9f05-08d09113c8dc", + "name": "messageChannel" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "40e51c6c-0268-47ca-bab9-4a899391e74b", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "34479a8f-e7a4-4069-9f05-08d09113c8dc", + "toObjectMetadata": { + "__typename": "object", + "id": "0985d46f-722d-468f-9fa6-efa219405aa7", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "messageChannelMessageAssociation", + "namePlural": "messageChannelMessageAssociations", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "1beb00c7-4641-439c-bd91-2d497de10f63", + "type": "BOOLEAN", + "name": "excludeGroupEmails", + "label": "Exclude group emails", + "description": "Exclude group emails", + "icon": "IconUsersGroup", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": true, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "f4e6c74c-01ba-4afc-83d2-0e5149a35233", + "type": "DATE_TIME", + "name": "syncedAt", + "label": "Last sync date", + "description": "Last sync date", + "icon": "IconHistory", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "36d2fee2-936b-4b7d-82fc-eecb49f8d142", + "type": "SELECT", + "name": "type", + "label": "Type", + "description": "Channel Type", + "icon": "IconMessage", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "'email'", + "options": [ + { + "id": "734f44a0-597e-403a-aaab-00ba91d6e832", + "color": "green", + "label": "Email", + "value": "email", + "position": 0 + }, + { + "id": "2827a65a-b2c7-4515-80d8-7d9c12ad5f8a", + "color": "blue", + "label": "SMS", + "value": "sms", + "position": 1 + } + ], + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "cefb6cd7-554d-4e70-8f45-fbb8dbd0fe92", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "d288fd3a-8fb0-493d-bec3-31a2c4a7d366", + "type": "RELATION", + "name": "connectedAccount", + "label": "Connected Account", + "description": "Connected Account", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "21bbef75-8acf-48bf-80aa-1d26d50aea22", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "311ea123-5b30-4637-ae39-3e639e780c83", + "nameSingular": "messageChannel", + "namePlural": "messageChannels" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "d288fd3a-8fb0-493d-bec3-31a2c4a7d366", + "name": "connectedAccount" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "66cd3a29-e2d8-4efa-8852-d17d7b538efa", + "nameSingular": "connectedAccount", + "namePlural": "connectedAccounts" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "3bf6ad9c-0441-4b8f-8dd0-12d93f83b67a", + "name": "messageChannels" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "21bbef75-8acf-48bf-80aa-1d26d50aea22", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "3bf6ad9c-0441-4b8f-8dd0-12d93f83b67a", + "fromObjectMetadata": { + "__typename": "object", + "id": "66cd3a29-e2d8-4efa-8852-d17d7b538efa", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "connectedAccount", + "namePlural": "connectedAccounts", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "e2f86b34-c7ea-41aa-b0cb-dfa171a9380a", + "type": "UUID", + "name": "connectedAccountId", + "label": "Connected Account id (foreign key)", + "description": "Connected Account id foreign key", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "a36aa9b7-abbb-4143-949d-42c9f711679f", + "type": "BOOLEAN", + "name": "isSyncEnabled", + "label": "Is Sync Enabled", + "description": "Is Sync Enabled", + "icon": "IconRefresh", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": true, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "5fc28ad8-3623-4fb8-a872-efe52af486c1", + "type": "BOOLEAN", + "name": "excludeNonProfessionalEmails", + "label": "Exclude non professional emails", + "description": "Exclude non professional emails", + "icon": "IconBriefcase", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": true, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "0397d2f1-3e81-4521-9abf-1b39c584d8eb", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "2dbf5d59-f03c-4578-8ff3-750f4bcdf8d0", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "opportunity", + "namePlural": "opportunities", + "labelSingular": "Opportunity", + "labelPlural": "Opportunities", + "description": "An opportunity", + "icon": "IconTargetArrow", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "3d6fa6cd-b06a-4465-8033-dc0ed8abda9d", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjE4" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "18ea34ae-f9bc-4240-b65f-46f0d688135f", + "type": "RELATION", + "name": "pointOfContact", + "label": "Point of Contact", + "description": "Opportunity point of contact", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "58a081ed-e5e7-44f8-bae6-99be66b6ac2f", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "2dbf5d59-f03c-4578-8ff3-750f4bcdf8d0", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "18ea34ae-f9bc-4240-b65f-46f0d688135f", + "name": "pointOfContact" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "nameSingular": "person", + "namePlural": "people" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "05863c2c-bcf7-4d88-b0cd-f00335b6854d", + "name": "pointOfContactForOpportunities" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "58a081ed-e5e7-44f8-bae6-99be66b6ac2f", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "05863c2c-bcf7-4d88-b0cd-f00335b6854d", + "fromObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "person", + "namePlural": "people", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "2e93a9a9-774b-43fd-8338-d54c29b8704c", + "type": "RELATION", + "name": "favorites", + "label": "Favorites", + "description": "Favorites linked to the opportunity", + "icon": "IconHeart", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "2f07395e-a114-465c-a3a2-9c6b990d3dca", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "2dbf5d59-f03c-4578-8ff3-750f4bcdf8d0", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "2e93a9a9-774b-43fd-8338-d54c29b8704c", + "name": "favorites" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "4566e731-1922-4610-8e85-0beab7fc57be", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "2a725662-fe1a-44e8-af06-2ae21c9ae0c2", + "name": "opportunity" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "2f07395e-a114-465c-a3a2-9c6b990d3dca", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "2a725662-fe1a-44e8-af06-2ae21c9ae0c2", + "toObjectMetadata": { + "__typename": "object", + "id": "4566e731-1922-4610-8e85-0beab7fc57be", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "favorite", + "namePlural": "favorites", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "4e24ba90-8fcd-4df5-9fe8-48679c75d374", + "type": "RELATION", + "name": "timelineActivities", + "label": "Timeline Activities", + "description": "Timeline Activities linked to the opportunity.", + "icon": "IconTimelineEvent", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "d8ae1b79-b532-412c-92cf-767a32e3cda2", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "2dbf5d59-f03c-4578-8ff3-750f4bcdf8d0", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "4e24ba90-8fcd-4df5-9fe8-48679c75d374", + "name": "timelineActivities" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "e095e196-08d4-493c-8a02-01c4a3decb5c", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "987fd4f6-4c5f-48a4-82f3-fd769de80dc4", + "name": "opportunity" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "d8ae1b79-b532-412c-92cf-767a32e3cda2", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "987fd4f6-4c5f-48a4-82f3-fd769de80dc4", + "toObjectMetadata": { + "__typename": "object", + "id": "e095e196-08d4-493c-8a02-01c4a3decb5c", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "3d6fa6cd-b06a-4465-8033-dc0ed8abda9d", + "type": "TEXT", + "name": "name", + "label": "Name", + "description": "The opportunity name", + "icon": "IconTargetArrow", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "7e6746ac-3625-4b14-86bc-11adc29e347c", + "type": "UUID", + "name": "companyId", + "label": "Company id (foreign key)", + "description": "Opportunity company id foreign key", + "icon": "IconBuildingSkyscraper", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "1bab9225-7390-43d7-a2c5-1d14f918efc0", + "type": "RELATION", + "name": "activityTargets", + "label": "Activities", + "description": "Activities tied to the opportunity", + "icon": "IconCheckbox", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "2105fe76-e9fa-4610-992a-261d0f24722d", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "2dbf5d59-f03c-4578-8ff3-750f4bcdf8d0", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "1bab9225-7390-43d7-a2c5-1d14f918efc0", + "name": "activityTargets" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "948a52f8-eba6-4bb2-a3a7-b1aa61c0daf7", + "nameSingular": "activityTarget", + "namePlural": "activityTargets" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "ddc84553-0678-4697-a8c2-06ddbc136cab", + "name": "opportunity" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "2105fe76-e9fa-4610-992a-261d0f24722d", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "ddc84553-0678-4697-a8c2-06ddbc136cab", + "toObjectMetadata": { + "__typename": "object", + "id": "948a52f8-eba6-4bb2-a3a7-b1aa61c0daf7", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "activityTarget", + "namePlural": "activityTargets", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "809ebb3f-8c63-4009-a8b9-3e184d6f140c", + "type": "CURRENCY", + "name": "amount", + "label": "Amount", + "description": "Opportunity amount", + "icon": "IconCurrencyDollar", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": { + "amountMicros": null, + "currencyCode": "''" + }, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "100f9c10-11c4-4fee-963a-f98a0e42d05d", + "type": "RELATION", + "name": "taskTargets", + "label": "Tasks", + "description": "Tasks tied to the opportunity", + "icon": "IconCheckbox", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "457627a4-8e4f-4720-80b4-b8c47a49a1d7", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "2dbf5d59-f03c-4578-8ff3-750f4bcdf8d0", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "100f9c10-11c4-4fee-963a-f98a0e42d05d", + "name": "taskTargets" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "5e92b318-bc10-4fe3-b997-de41b7e45c36", + "nameSingular": "taskTarget", + "namePlural": "taskTargets" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "807cfd9f-4081-4027-b646-cf66d81aa8c6", + "name": "opportunity" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "457627a4-8e4f-4720-80b4-b8c47a49a1d7", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "807cfd9f-4081-4027-b646-cf66d81aa8c6", + "toObjectMetadata": { + "__typename": "object", + "id": "5e92b318-bc10-4fe3-b997-de41b7e45c36", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "taskTarget", + "namePlural": "taskTargets", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "21626287-1f6d-4604-869f-59b77b98e529", + "type": "DATE_TIME", + "name": "closeDate", + "label": "Close date", + "description": "Opportunity close date", + "icon": "IconCalendarEvent", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "a9d9912d-6f0d-4ddb-85ce-48acbba6ae00", + "type": "SELECT", + "name": "stage", + "label": "Stage", + "description": "Opportunity stage", + "icon": "IconProgressCheck", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "'NEW'", + "options": [ + { + "id": "c8c92b5e-af59-4c21-a68c-c2dbdd513b2c", + "color": "red", + "label": "New", + "value": "NEW", + "position": 0 + }, + { + "id": "b33eff93-1fec-4275-97f0-03beb704a709", + "color": "purple", + "label": "Screening", + "value": "SCREENING", + "position": 1 + }, + { + "id": "d4fff9a7-53ea-4e10-a16e-b721133f9cda", + "color": "sky", + "label": "Meeting", + "value": "MEETING", + "position": 2 + }, + { + "id": "e0b16f06-4e59-4f8c-ac30-a6e3fc37eac8", + "color": "turquoise", + "label": "Proposal", + "value": "PROPOSAL", + "position": 3 + }, + { + "id": "a0ad0f8d-fed5-49c0-8dfd-00be4521db24", + "color": "yellow", + "label": "Customer", + "value": "CUSTOMER", + "position": 4 + } + ], + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "1433c5e0-2dfc-404b-b04e-17126fd75e0a", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "727ec83b-93b7-4e6b-be22-6f00637ec3f5", + "type": "RELATION", + "name": "company", + "label": "Company", + "description": "Opportunity company", + "icon": "IconBuildingSkyscraper", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "1ebadb76-46e6-4c57-b24f-441acecbd2d9", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "2dbf5d59-f03c-4578-8ff3-750f4bcdf8d0", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "727ec83b-93b7-4e6b-be22-6f00637ec3f5", + "name": "company" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "701aecf9-eb1c-4d84-9d94-b954b231b64b", + "nameSingular": "company", + "namePlural": "companies" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "34aec238-a534-46e7-be64-d0680a12c8ec", + "name": "opportunities" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "1ebadb76-46e6-4c57-b24f-441acecbd2d9", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "34aec238-a534-46e7-be64-d0680a12c8ec", + "fromObjectMetadata": { + "__typename": "object", + "id": "701aecf9-eb1c-4d84-9d94-b954b231b64b", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "company", + "namePlural": "companies", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "89f08f6a-f94a-4f1c-823b-8e5513362c0b", + "type": "ACTOR", + "name": "createdBy", + "label": "Created by", + "description": "The creator of the record", + "icon": "IconCreativeCommonsSa", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": { + "name": "''", + "source": "'MANUAL'" + }, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "8ac2f70d-3c5d-40a2-835c-849ae6c1ab81", + "type": "UUID", + "name": "pointOfContactId", + "label": "Point of Contact id (foreign key)", + "description": "Opportunity point of contact id foreign key", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "095b38a6-1881-40b8-9849-cb80d19aa295", + "type": "RELATION", + "name": "attachments", + "label": "Attachments", + "description": "Attachments linked to the opportunity", + "icon": "IconFileImport", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "c20ecc99-e48a-4311-b850-8fbf1a7b68ea", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "2dbf5d59-f03c-4578-8ff3-750f4bcdf8d0", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "095b38a6-1881-40b8-9849-cb80d19aa295", + "name": "attachments" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "963747ea-45e2-4deb-b36d-73b014e17c42", + "nameSingular": "attachment", + "namePlural": "attachments" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "b4868b15-ff98-4f36-9f59-1dbf63052bb7", + "name": "opportunity" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "c20ecc99-e48a-4311-b850-8fbf1a7b68ea", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "b4868b15-ff98-4f36-9f59-1dbf63052bb7", + "toObjectMetadata": { + "__typename": "object", + "id": "963747ea-45e2-4deb-b36d-73b014e17c42", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "attachment", + "namePlural": "attachments", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "f74b36a5-caf7-4318-994b-251eb2be2668", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "e6fe20c1-091e-418f-9ff0-8ea7cfb864f8", + "type": "RELATION", + "name": "noteTargets", + "label": "Notes", + "description": "Notes tied to the opportunity", + "icon": "IconNotes", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "c0946e53-4cdd-46b4-b30a-9fce040b9a7a", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "2dbf5d59-f03c-4578-8ff3-750f4bcdf8d0", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "e6fe20c1-091e-418f-9ff0-8ea7cfb864f8", + "name": "noteTargets" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "dcb774a3-71e8-44cc-bf53-7f195e0bfdb6", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "5b2ec790-e8b8-4bd0-bf1b-db4ebc2b473a", + "name": "opportunity" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "c0946e53-4cdd-46b4-b30a-9fce040b9a7a", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "5b2ec790-e8b8-4bd0-bf1b-db4ebc2b473a", + "toObjectMetadata": { + "__typename": "object", + "id": "dcb774a3-71e8-44cc-bf53-7f195e0bfdb6", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "noteTarget", + "namePlural": "noteTargets", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "206e678d-dc5d-4e69-b3e0-a16f9ec59676", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "7717144e-ac08-4f29-8614-f12ad830ce5a", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Opportunity record position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "2c6e4a32-28cd-4a72-8ca6-915fd819ed32", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "view", + "namePlural": "views", + "labelSingular": "View", + "labelPlural": "Views", + "description": "(System) Views", + "icon": "IconLayoutCollage", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "edfa9baf-6165-4be4-9f0f-0831c167cc43", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjEz" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "92815f89-9c9d-4fc7-b0b0-dd9c0ca24fe7", + "type": "TEXT", + "name": "type", + "label": "Type", + "description": "View type", + "icon": null, + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "'table'", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "15896bc9-fb20-4c1f-bc0d-f3abe768d388", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "7a703490-9619-44e3-a1d7-95b37f128d7c", + "type": "SELECT", + "name": "key", + "label": "Key", + "description": "View key", + "icon": null, + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "'INDEX'", + "options": [ + { + "id": "590b78a5-1851-436a-b696-acc719fa4be8", + "color": "red", + "label": "Index", + "value": "INDEX", + "position": 0 + } + ], + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "78afce65-d674-42b7-90dd-f61238fdbcf1", + "type": "TEXT", + "name": "icon", + "label": "Icon", + "description": "View icon", + "icon": null, + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "c086b30a-0267-4857-9fe0-29a2bbaa8dc8", + "type": "RELATION", + "name": "viewFields", + "label": "View Fields", + "description": "View Fields", + "icon": "IconTag", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "ae731975-39ee-4387-a80c-de94dff0b760", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "2c6e4a32-28cd-4a72-8ca6-915fd819ed32", + "nameSingular": "view", + "namePlural": "views" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "c086b30a-0267-4857-9fe0-29a2bbaa8dc8", + "name": "viewFields" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "c81903be-3be2-49af-82b3-d170cd35ac0f", + "nameSingular": "viewField", + "namePlural": "viewFields" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "337d9389-06a9-4cb1-9f2a-76dbb37a7576", + "name": "view" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "ae731975-39ee-4387-a80c-de94dff0b760", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "337d9389-06a9-4cb1-9f2a-76dbb37a7576", + "toObjectMetadata": { + "__typename": "object", + "id": "c81903be-3be2-49af-82b3-d170cd35ac0f", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "viewField", + "namePlural": "viewFields", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "edfa9baf-6165-4be4-9f0f-0831c167cc43", + "type": "TEXT", + "name": "name", + "label": "Name", + "description": "View name", + "icon": null, + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "5969cfdb-bf30-4a34-9b52-11b38945bbd0", + "type": "RELATION", + "name": "viewSorts", + "label": "View Sorts", + "description": "View Sorts", + "icon": "IconArrowsSort", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "fcf27acc-a651-4ac2-9f99-aba306756209", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "2c6e4a32-28cd-4a72-8ca6-915fd819ed32", + "nameSingular": "view", + "namePlural": "views" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "5969cfdb-bf30-4a34-9b52-11b38945bbd0", + "name": "viewSorts" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "718779fd-d87d-4b99-8f6c-3042a6bb03a3", + "nameSingular": "viewSort", + "namePlural": "viewSorts" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "2c09d04d-007c-4652-9c90-c2cfa4696145", + "name": "view" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "fcf27acc-a651-4ac2-9f99-aba306756209", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "2c09d04d-007c-4652-9c90-c2cfa4696145", + "toObjectMetadata": { + "__typename": "object", + "id": "718779fd-d87d-4b99-8f6c-3042a6bb03a3", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "viewSort", + "namePlural": "viewSorts", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "563534f3-90f6-42f8-9dbc-0f067ca5424c", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "View position", + "icon": null, + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "8fd9225d-5f08-4e21-a0cf-d596d4ec1eaf", + "type": "UUID", + "name": "objectMetadataId", + "label": "Object Metadata Id", + "description": "View target object", + "icon": null, + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "4f92f2f0-9204-4f23-afdc-894829664668", + "type": "RELATION", + "name": "viewFilters", + "label": "View Filters", + "description": "View Filters", + "icon": "IconFilterBolt", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "7c42db51-2fcc-44b6-9a80-787b1967e69e", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "2c6e4a32-28cd-4a72-8ca6-915fd819ed32", + "nameSingular": "view", + "namePlural": "views" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "4f92f2f0-9204-4f23-afdc-894829664668", + "name": "viewFilters" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "816a7154-5111-47fa-9d8d-87ca2dafc521", + "nameSingular": "viewFilter", + "namePlural": "viewFilters" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "0f9c4eb8-501d-4861-827a-5ef45a01eba9", + "name": "view" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "7c42db51-2fcc-44b6-9a80-787b1967e69e", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "0f9c4eb8-501d-4861-827a-5ef45a01eba9", + "toObjectMetadata": { + "__typename": "object", + "id": "816a7154-5111-47fa-9d8d-87ca2dafc521", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "viewFilter", + "namePlural": "viewFilters", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "5c342176-2358-4269-9293-f7666691b1ff", + "type": "TEXT", + "name": "kanbanFieldMetadataId", + "label": "kanbanfieldMetadataId", + "description": "View Kanban column field", + "icon": null, + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "193fbb6a-6c71-4871-92dc-d4b71b856b83", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "87c37d2e-9457-47f3-bdf4-41879bb81b90", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "80e2dcf2-ffff-45db-adbc-174d739f1fb6", + "type": "BOOLEAN", + "name": "isCompact", + "label": "Compact View", + "description": "Describes if the view is in compact mode", + "icon": null, + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": false, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "1f73c3c3-a356-4a70-8a91-948e70120fdf", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "messageThread", + "namePlural": "messageThreads", + "labelSingular": "Message Thread", + "labelPlural": "Message Threads", + "description": "Message Thread", + "icon": "IconMessage", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "408fe748-df73-4975-b473-8260e9da2e4b", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjQ=" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "9016096d-93c4-495f-93d5-b966e5bedc74", + "type": "RELATION", + "name": "messages", + "label": "Messages", + "description": "Messages from the thread.", + "icon": "IconMessage", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "c958fe88-7d66-4c1b-87c7-55ab724f42c5", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "1f73c3c3-a356-4a70-8a91-948e70120fdf", + "nameSingular": "messageThread", + "namePlural": "messageThreads" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "9016096d-93c4-495f-93d5-b966e5bedc74", + "name": "messages" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "dfdcf91e-f4b4-4460-8c89-919ef501fd79", + "nameSingular": "message", + "namePlural": "messages" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "114f853e-2684-4e62-92c9-0213ace3c498", + "name": "messageThread" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "c958fe88-7d66-4c1b-87c7-55ab724f42c5", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "114f853e-2684-4e62-92c9-0213ace3c498", + "toObjectMetadata": { + "__typename": "object", + "id": "dfdcf91e-f4b4-4460-8c89-919ef501fd79", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "message", + "namePlural": "messages", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "6fe89951-20b6-4ef3-81d8-08498b09954b", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "25bbf51f-17fa-4a2c-9636-3f3fdba41e08", + "type": "RELATION", + "name": "messageChannelMessageAssociations", + "label": "Message Channel Association", + "description": "Messages from the channel", + "icon": "IconMessage", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "1d8cbabc-edf5-40c9-8bd5-d1e47a93d246", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "1f73c3c3-a356-4a70-8a91-948e70120fdf", + "nameSingular": "messageThread", + "namePlural": "messageThreads" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "25bbf51f-17fa-4a2c-9636-3f3fdba41e08", + "name": "messageChannelMessageAssociations" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "0985d46f-722d-468f-9fa6-efa219405aa7", + "nameSingular": "messageChannelMessageAssociation", + "namePlural": "messageChannelMessageAssociations" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "fcbef4a3-f1d9-4714-b7ea-f44816821d6e", + "name": "messageThread" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "1d8cbabc-edf5-40c9-8bd5-d1e47a93d246", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "fcbef4a3-f1d9-4714-b7ea-f44816821d6e", + "toObjectMetadata": { + "__typename": "object", + "id": "0985d46f-722d-468f-9fa6-efa219405aa7", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "messageChannelMessageAssociation", + "namePlural": "messageChannelMessageAssociations", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "aef283f1-b060-4de8-a5b9-f1ef4e4c0bb4", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "408fe748-df73-4975-b473-8260e9da2e4b", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "0e285964-d858-48bc-98ab-b8c6b1bd5d0b", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "calendarChannel", + "namePlural": "calendarChannels", + "labelSingular": "Calendar Channel", + "labelPlural": "Calendar Channels", + "description": "Calendar Channels", + "icon": "IconCalendar", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "2cfd31ac-4391-4922-a640-38ac515564fc", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjE1" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "31ed435c-f012-4dfb-8825-35c522129243", + "type": "BOOLEAN", + "name": "isSyncEnabled", + "label": "Is Sync Enabled", + "description": "Is Sync Enabled", + "icon": "IconRefresh", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": true, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "4faab073-db9b-4644-8a16-57eb573c428d", + "type": "SELECT", + "name": "syncStage", + "label": "Sync stage", + "description": "Sync stage", + "icon": "IconStatusChange", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "'FULL_CALENDAR_EVENT_LIST_FETCH_PENDING'", + "options": [ + { + "id": "74fb48bf-87b9-4094-8c46-4f74128e78d8", + "color": "blue", + "label": "Full calendar event list fetch pending", + "value": "FULL_CALENDAR_EVENT_LIST_FETCH_PENDING", + "position": 0 + }, + { + "id": "f0b2944c-b9e4-4889-b405-99e023b69a65", + "color": "blue", + "label": "Partial calendar event list fetch pending", + "value": "PARTIAL_CALENDAR_EVENT_LIST_FETCH_PENDING", + "position": 1 + }, + { + "id": "ec321870-1e95-4a7e-bc9d-ea58d0020d43", + "color": "orange", + "label": "Calendar event list fetch ongoing", + "value": "CALENDAR_EVENT_LIST_FETCH_ONGOING", + "position": 2 + }, + { + "id": "bf48f26c-8ce9-43cf-a89a-53e7fbb1afc6", + "color": "blue", + "label": "Calendar events import pending", + "value": "CALENDAR_EVENTS_IMPORT_PENDING", + "position": 3 + }, + { + "id": "d3d349ad-b3bf-4762-8aad-92796cd86e08", + "color": "orange", + "label": "Calendar events import ongoing", + "value": "CALENDAR_EVENTS_IMPORT_ONGOING", + "position": 4 + }, + { + "id": "7a882ecb-67ae-42c4-bac7-216c6b8522c4", + "color": "red", + "label": "Failed", + "value": "FAILED", + "position": 5 + } + ], + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "b1d2c87b-9e88-44b7-9b2d-138d359c28df", + "type": "SELECT", + "name": "syncStatus", + "label": "Sync status", + "description": "Sync status", + "icon": "IconStatusChange", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": [ + { + "id": "ab4ddbc1-8af6-4f9e-a3e9-f87a18e47951", + "color": "yellow", + "label": "Ongoing", + "value": "ONGOING", + "position": 1 + }, + { + "id": "bee7589a-9d59-4b01-9d9b-ef45dd4c17ca", + "color": "blue", + "label": "Not Synced", + "value": "NOT_SYNCED", + "position": 2 + }, + { + "id": "11fad735-37f3-4297-9da4-0251355ff461", + "color": "green", + "label": "Active", + "value": "ACTIVE", + "position": 3 + }, + { + "id": "e7da6feb-df29-49f4-b5ba-a82534490e5c", + "color": "red", + "label": "Failed Insufficient Permissions", + "value": "FAILED_INSUFFICIENT_PERMISSIONS", + "position": 4 + }, + { + "id": "61ae12e3-22e5-4971-9044-3ed274567b29", + "color": "red", + "label": "Failed Unknown", + "value": "FAILED_UNKNOWN", + "position": 5 + } + ], + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "3e26b011-c7eb-44ff-9599-15b85ef5576d", + "type": "SELECT", + "name": "visibility", + "label": "Visibility", + "description": "Visibility", + "icon": "IconEyeglass", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "'SHARE_EVERYTHING'", + "options": [ + { + "id": "d27d8a0e-d892-4581-b982-500f33b53803", + "color": "green", + "label": "Metadata", + "value": "METADATA", + "position": 0 + }, + { + "id": "fa61ab2d-1e83-4a01-8526-81c8460cc7dc", + "color": "orange", + "label": "Share Everything", + "value": "SHARE_EVERYTHING", + "position": 1 + } + ], + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "ceaf8f8e-297a-418b-a652-01f3eeb5c562", + "type": "RELATION", + "name": "connectedAccount", + "label": "Connected Account", + "description": "Connected Account", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "b6b75323-8790-4b3e-8798-e0af646bb9aa", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "0e285964-d858-48bc-98ab-b8c6b1bd5d0b", + "nameSingular": "calendarChannel", + "namePlural": "calendarChannels" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "ceaf8f8e-297a-418b-a652-01f3eeb5c562", + "name": "connectedAccount" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "66cd3a29-e2d8-4efa-8852-d17d7b538efa", + "nameSingular": "connectedAccount", + "namePlural": "connectedAccounts" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "bb10e69d-f049-4d97-84f4-09bce29cd401", + "name": "calendarChannels" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "b6b75323-8790-4b3e-8798-e0af646bb9aa", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "bb10e69d-f049-4d97-84f4-09bce29cd401", + "fromObjectMetadata": { + "__typename": "object", + "id": "66cd3a29-e2d8-4efa-8852-d17d7b538efa", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "connectedAccount", + "namePlural": "connectedAccounts", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "284f9e52-0885-4860-98ea-2083911aa453", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "3127b8eb-f998-4987-a797-01a8943e677a", + "type": "UUID", + "name": "connectedAccountId", + "label": "Connected Account id (foreign key)", + "description": "Connected Account id foreign key", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "fd92e8cd-5f05-49e7-aa15-ae8c3a8905d6", + "type": "DATE_TIME", + "name": "syncStageStartedAt", + "label": "Sync stage started at", + "description": "Sync stage started at", + "icon": "IconHistory", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "9867ad34-df58-4ad0-a459-cc283990b5e5", + "type": "RELATION", + "name": "calendarChannelEventAssociations", + "label": "Calendar Channel Event Associations", + "description": "Calendar Channel Event Associations", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "bf0f695a-08cd-4767-9a83-4fd09f617793", + "direction": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "object", + "id": "0e285964-d858-48bc-98ab-b8c6b1bd5d0b", + "nameSingular": "calendarChannel", + "namePlural": "calendarChannels" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "9867ad34-df58-4ad0-a459-cc283990b5e5", + "name": "calendarChannelEventAssociations" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "4fed9657-e68b-4856-8e6d-a1c860d16242", + "nameSingular": "calendarChannelEventAssociation", + "namePlural": "calendarChannelEventAssociations" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "d3039865-07b4-4114-bd78-18aa0be2a93b", + "name": "calendarChannel" + } + }, + "toRelationMetadata": null, + "fromRelationMetadata": { + "__typename": "relation", + "id": "bf0f695a-08cd-4767-9a83-4fd09f617793", + "relationType": "ONE_TO_MANY", + "toFieldMetadataId": "d3039865-07b4-4114-bd78-18aa0be2a93b", + "toObjectMetadata": { + "__typename": "object", + "id": "4fed9657-e68b-4856-8e6d-a1c860d16242", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "calendarChannelEventAssociation", + "namePlural": "calendarChannelEventAssociations", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "1da10e0f-ddc1-441e-8d88-c2453ea397f7", + "type": "BOOLEAN", + "name": "isContactAutoCreationEnabled", + "label": "Is Contact Auto Creation Enabled", + "description": "Is Contact Auto Creation Enabled", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": true, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "2cfd31ac-4391-4922-a640-38ac515564fc", + "type": "TEXT", + "name": "handle", + "label": "Handle", + "description": "Handle", + "icon": "IconAt", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "c62bba75-6421-4fd0-966c-6749870b0b5b", + "type": "NUMBER", + "name": "throttleFailureCount", + "label": "Throttle Failure Count", + "description": "Throttle Failure Count", + "icon": "IconX", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": 0, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "ae2fc211-7736-43b8-a7e2-b08476446ea5", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "e4ede7f5-3c11-4e77-9327-fe433429105b", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "ee994c99-3f91-4d2a-9956-449ab18af0e7", + "type": "SELECT", + "name": "contactAutoCreationPolicy", + "label": "Contact auto creation policy", + "description": "Automatically create records for people you participated with in an event.", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "'AS_PARTICIPANT_AND_ORGANIZER'", + "options": [ + { + "id": "add1e0ce-43a9-457a-b7ba-8ddd71acff41", + "color": "green", + "label": "As Participant and Organizer", + "value": "AS_PARTICIPANT_AND_ORGANIZER", + "position": 0 + }, + { + "id": "93ef8799-ed7b-42f8-a4a4-b878c9599108", + "color": "orange", + "label": "As Participant", + "value": "AS_PARTICIPANT", + "position": 1 + }, + { + "id": "a94610a1-429d-449e-ae0b-67eaba058ef8", + "color": "blue", + "label": "As Organizer", + "value": "AS_ORGANIZER", + "position": 2 + }, + { + "id": "ca729343-a09c-486b-a240-5d80e7e076eb", + "color": "red", + "label": "None", + "value": "NONE", + "position": 3 + } + ], + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "c31280e5-0ed4-49e3-8f52-0d301698db1d", + "type": "TEXT", + "name": "syncCursor", + "label": "Sync Cursor", + "description": "Sync Cursor. Used for syncing events from the calendar provider", + "icon": "IconReload", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "0c0a3db9-f3ba-485a-8dff-488c477f3fa6", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "messageParticipant", + "namePlural": "messageParticipants", + "labelSingular": "Message Participant", + "labelPlural": "Message Participants", + "description": "Message Participants", + "icon": "IconUserCircle", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "3a3ffcd3-9a78-4eed-ae5b-6838156857fe", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjEx" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "90e73039-1ac8-4d7c-9d65-301373ade28b", + "type": "TEXT", + "name": "displayName", + "label": "Display Name", + "description": "Display Name", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "5b46d192-34b1-4122-801c-7b6f74b49743", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "5353cebc-8357-49bd-bcf2-292409d637ba", + "type": "UUID", + "name": "workspaceMemberId", + "label": "Workspace Member id (foreign key)", + "description": "Workspace member id foreign key", + "icon": "IconCircleUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "bc788a8f-8eb2-47bf-a02c-42f7de197ca8", + "type": "RELATION", + "name": "workspaceMember", + "label": "Workspace Member", + "description": "Workspace member", + "icon": "IconCircleUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "7d3faf56-e4bb-45ec-9b75-612ca6e9ae5a", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "0c0a3db9-f3ba-485a-8dff-488c477f3fa6", + "nameSingular": "messageParticipant", + "namePlural": "messageParticipants" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "bc788a8f-8eb2-47bf-a02c-42f7de197ca8", + "name": "workspaceMember" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "c00ccd93-ebc7-4744-8cb3-797a752b4627", + "name": "messageParticipants" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "7d3faf56-e4bb-45ec-9b75-612ca6e9ae5a", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "c00ccd93-ebc7-4744-8cb3-797a752b4627", + "fromObjectMetadata": { + "__typename": "object", + "id": "b87720c6-bead-46a9-8c1e-c8596bdb702e", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "f897f356-ea94-4bd4-869a-4c138e57704e", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "3a3ffcd3-9a78-4eed-ae5b-6838156857fe", + "type": "TEXT", + "name": "handle", + "label": "Handle", + "description": "Handle", + "icon": "IconAt", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "728a4a3f-1145-48cb-804e-b790fdf1c0f4", + "type": "UUID", + "name": "personId", + "label": "Person id (foreign key)", + "description": "Person id foreign key", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "52b01517-9ac7-48d9-a292-b969197a33f5", + "type": "UUID", + "name": "messageId", + "label": "Message id (foreign key)", + "description": "Message id foreign key", + "icon": "IconMessage", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "660b4257-010e-4039-897a-e274f2559ed5", + "type": "RELATION", + "name": "message", + "label": "Message", + "description": "Message", + "icon": "IconMessage", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "2180d888-98dc-428e-a157-c30ce7bf8ce4", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "0c0a3db9-f3ba-485a-8dff-488c477f3fa6", + "nameSingular": "messageParticipant", + "namePlural": "messageParticipants" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "660b4257-010e-4039-897a-e274f2559ed5", + "name": "message" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "dfdcf91e-f4b4-4460-8c89-919ef501fd79", + "nameSingular": "message", + "namePlural": "messages" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "15658254-6562-4fad-9ef3-393f913e95c2", + "name": "messageParticipants" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "2180d888-98dc-428e-a157-c30ce7bf8ce4", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "15658254-6562-4fad-9ef3-393f913e95c2", + "fromObjectMetadata": { + "__typename": "object", + "id": "dfdcf91e-f4b4-4460-8c89-919ef501fd79", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "message", + "namePlural": "messages", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "362195e4-4dfb-49e1-b25b-fe3ffe7b7f14", + "type": "RELATION", + "name": "person", + "label": "Person", + "description": "Person", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "5bb99199-6a3c-4947-b16b-6a90c6097eac", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "0c0a3db9-f3ba-485a-8dff-488c477f3fa6", + "nameSingular": "messageParticipant", + "namePlural": "messageParticipants" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "362195e4-4dfb-49e1-b25b-fe3ffe7b7f14", + "name": "person" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "nameSingular": "person", + "namePlural": "people" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "19f77ace-4b00-4fac-ba7d-8c7a3dde409b", + "name": "messageParticipants" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "5bb99199-6a3c-4947-b16b-6a90c6097eac", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "19f77ace-4b00-4fac-ba7d-8c7a3dde409b", + "fromObjectMetadata": { + "__typename": "object", + "id": "aeffaa4e-cae1-4dd8-b76e-5658eb73d0a9", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "person", + "namePlural": "people", + "isSystem": false, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "6dec8f79-0674-48e8-9b01-74585880e8a2", + "type": "SELECT", + "name": "role", + "label": "Role", + "description": "Role", + "icon": "IconAt", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "'from'", + "options": [ + { + "id": "f105c9e6-9a17-4cb0-bede-fd7dc67cdeb7", + "color": "green", + "label": "From", + "value": "from", + "position": 0 + }, + { + "id": "a8fa2086-b0bd-48cf-914d-247be3fef5fd", + "color": "blue", + "label": "To", + "value": "to", + "position": 1 + }, + { + "id": "2b763815-9fc7-4b47-a364-f6cb639ef609", + "color": "orange", + "label": "Cc", + "value": "cc", + "position": 2 + }, + { + "id": "23b26d79-b074-44d1-a910-25ecb3ff808a", + "color": "red", + "label": "Bcc", + "value": "bcc", + "position": 3 + } + ], + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "66a43663-68e0-404d-9e36-63be0bd5e406", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + }, + { + "__typename": "objectEdge", + "node": { + "__typename": "object", + "id": "0985d46f-722d-468f-9fa6-efa219405aa7", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "messageChannelMessageAssociation", + "namePlural": "messageChannelMessageAssociations", + "labelSingular": "Message Channel Message Association", + "labelPlural": "Message Channel Message Associations", + "description": "Message Synced with a Message Channel", + "icon": "IconMessage", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "labelIdentifierFieldMetadataId": "6cb4b092-b140-4f6c-97d6-0f7f7d3ae6f7", + "imageIdentifierFieldMetadataId": null, + "fields": { + "__typename": "ObjectFieldsConnection", + "pageInfo": { + "__typename": "PageInfo", + "hasNextPage": false, + "hasPreviousPage": false, + "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", + "endCursor": "YXJyYXljb25uZWN0aW9uOjEw" + }, + "edges": [ + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "7f9297fa-ca06-4da9-9a6c-83028f25ba88", + "type": "UUID", + "name": "messageId", + "label": "Message Id id (foreign key)", + "description": "Message Id id foreign key", + "icon": "IconHash", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "9810950a-952a-412b-a590-be91bbb7efcd", + "type": "TEXT", + "name": "messageExternalId", + "label": "Message External Id", + "description": "Message id from the messaging provider", + "icon": "IconHash", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "6d269e30-23a1-4963-8c78-4bdf7108875c", + "type": "UUID", + "name": "messageChannelId", + "label": "Message Channel Id id (foreign key)", + "description": "Message Channel Id id foreign key", + "icon": "IconHash", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "f2b8af0c-5143-4715-b0ef-0ecf06874fa7", + "type": "TEXT", + "name": "messageThreadExternalId", + "label": "Thread External Id", + "description": "Thread id from the messaging provider", + "icon": "IconHash", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "''", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "3f3c11b1-b1b5-4831-9a4e-963317c8c9a5", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "785c0609-42b8-4b0e-b7c2-4d54b6ed651f", + "type": "RELATION", + "name": "message", + "label": "Message Id", + "description": "Message Id", + "icon": "IconHash", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "642b4d8c-f2f8-4590-abce-4b112d8689ba", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "0985d46f-722d-468f-9fa6-efa219405aa7", + "nameSingular": "messageChannelMessageAssociation", + "namePlural": "messageChannelMessageAssociations" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "785c0609-42b8-4b0e-b7c2-4d54b6ed651f", + "name": "message" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "dfdcf91e-f4b4-4460-8c89-919ef501fd79", + "nameSingular": "message", + "namePlural": "messages" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "2ac789bf-ce05-4f0e-9f04-f848f93c2f21", + "name": "messageChannelMessageAssociations" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "642b4d8c-f2f8-4590-abce-4b112d8689ba", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "2ac789bf-ce05-4f0e-9f04-f848f93c2f21", + "fromObjectMetadata": { + "__typename": "object", + "id": "dfdcf91e-f4b4-4460-8c89-919ef501fd79", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "message", + "namePlural": "messages", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "34479a8f-e7a4-4069-9f05-08d09113c8dc", + "type": "RELATION", + "name": "messageChannel", + "label": "Message Channel Id", + "description": "Message Channel Id", + "icon": "IconHash", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "40e51c6c-0268-47ca-bab9-4a899391e74b", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "0985d46f-722d-468f-9fa6-efa219405aa7", + "nameSingular": "messageChannelMessageAssociation", + "namePlural": "messageChannelMessageAssociations" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "34479a8f-e7a4-4069-9f05-08d09113c8dc", + "name": "messageChannel" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "311ea123-5b30-4637-ae39-3e639e780c83", + "nameSingular": "messageChannel", + "namePlural": "messageChannels" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "bdd7ff46-118c-44e7-9b2e-cd522a248a8a", + "name": "messageChannelMessageAssociations" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "40e51c6c-0268-47ca-bab9-4a899391e74b", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "bdd7ff46-118c-44e7-9b2e-cd522a248a8a", + "fromObjectMetadata": { + "__typename": "object", + "id": "311ea123-5b30-4637-ae39-3e639e780c83", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "messageChannel", + "namePlural": "messageChannels", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "6cb4b092-b140-4f6c-97d6-0f7f7d3ae6f7", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "uuid", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "7d037a16-39b4-45ef-b06e-a8b99151d223", + "type": "UUID", + "name": "messageThreadId", + "label": "Message Thread Id id (foreign key)", + "description": "Message Thread Id id foreign key", + "icon": "IconHash", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "fcbef4a3-f1d9-4714-b7ea-f44816821d6e", + "type": "RELATION", + "name": "messageThread", + "label": "Message Thread Id", + "description": "Message Thread Id", + "icon": "IconHash", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": true, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": null, + "options": null, + "fromRelationMetadata": null, + "relationDefinition": { + "__typename": "RelationDefinition", + "relationId": "1d8cbabc-edf5-40c9-8bd5-d1e47a93d246", + "direction": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "object", + "id": "0985d46f-722d-468f-9fa6-efa219405aa7", + "nameSingular": "messageChannelMessageAssociation", + "namePlural": "messageChannelMessageAssociations" + }, + "sourceFieldMetadata": { + "__typename": "field", + "id": "fcbef4a3-f1d9-4714-b7ea-f44816821d6e", + "name": "messageThread" + }, + "targetObjectMetadata": { + "__typename": "object", + "id": "1f73c3c3-a356-4a70-8a91-948e70120fdf", + "nameSingular": "messageThread", + "namePlural": "messageThreads" + }, + "targetFieldMetadata": { + "__typename": "field", + "id": "25bbf51f-17fa-4a2c-9636-3f3fdba41e08", + "name": "messageChannelMessageAssociations" + } + }, + "toRelationMetadata": { + "__typename": "relation", + "id": "1d8cbabc-edf5-40c9-8bd5-d1e47a93d246", + "relationType": "ONE_TO_MANY", + "fromFieldMetadataId": "25bbf51f-17fa-4a2c-9636-3f3fdba41e08", + "fromObjectMetadata": { + "__typename": "object", + "id": "1f73c3c3-a356-4a70-8a91-948e70120fdf", + "dataSourceId": "8b919f4b-aef5-40ba-aeeb-3f29b90e765f", + "nameSingular": "messageThread", + "namePlural": "messageThreads", + "isSystem": true, + "isRemote": false + } + } + } + }, + { + "__typename": "fieldEdge", + "node": { + "__typename": "field", + "id": "a00f2265-a78a-4b12-9367-e034da304ac6", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Update date", + "description": "Update date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isNullable": false, + "createdAt": "2024-08-02T16:00:05.938Z", + "updatedAt": "2024-08-02T16:00:05.938Z", + "defaultValue": "now", + "options": null, + "relationDefinition": null, + "fromRelationMetadata": null, + "toRelationMetadata": null + } + } + ] + } + } + } + ] } } as ObjectMetadataItemsQuery; diff --git a/packages/twenty-front/src/testing/mock-data/people.ts b/packages/twenty-front/src/testing/mock-data/people.ts index b6f61888d..c4da215bb 100644 --- a/packages/twenty-front/src/testing/mock-data/people.ts +++ b/packages/twenty-front/src/testing/mock-data/people.ts @@ -13,6 +13,7 @@ export const mockedEmptyPersonData = { phone: null, email: null, city: null, + createdBy: null, displayName: null, avatarUrl: null, createdAt: null, @@ -27,156 +28,204 @@ export const mockedEmptyPersonData = { export const peopleQueryResult: { people: RecordGqlConnection } = { people: { __typename: 'PersonConnection', - totalCount: 15, + totalCount: 16, pageInfo: { __typename: 'PageInfo', hasNextPage: false, + hasPreviousPage: false, startCursor: - 'WzEsICIyMDIwMjAyMC0xYzBlLTQ5NGMtYTFiNi04NWIxYzZmZWZhYTUiXQ==', + 'WzAsICJkYTNjMmM0Yi1kYTAxLTRiODEtOTczNC0yMjYwNjllYjRjZDAiXQ==', endCursor: 'WzE1LCAiMjAyMDIwMjAtMmQ0MC00ZTQ5LThkZjQtOWM2YTA0OTE5MWRmIl0=', }, edges: [ { __typename: 'PersonEdge', - cursor: 'WzEsICIyMDIwMjAyMC0xYzBlLTQ5NGMtYTFiNi04NWIxYzZmZWZhYTUiXQ==', + cursor: 'WzAsICJkYTNjMmM0Yi1kYTAxLTRiODEtOTczNC0yMjYwNjllYjRjZDAiXQ==', node: { __typename: 'Person', - id: '20202020-1c0e-494c-a1b6-85b1c6fefaa5', - email: 'christoph.calisto@linkedin.com', - position: 1, - testJson: { - asd: 2, - array: [1, 2, 3], + createdAt: '2024-08-02T09:52:46.814Z', + city: 'ASd', + phone: '', + id: 'da3c2c4b-da01-4b81-9734-226069eb4cd0', + jobTitle: '', + position: 0, + email: 'asd.com', + name: { + __typename: 'FullName', + firstName: 'Test ', + lastName: 'tTest', }, - testRating: 'RATING_2', - testMultiSelect: ['OPTION_5', 'OPTION_1', 'OPTION_2'], - testBoolean: true, - testSelect: 'OPTION_1', - testDateOnly: '2024-06-04T00:00:00.000Z', - phone: '+33789012345', - createdAt: '2024-06-05T09:00:20.412Z', - city: 'Seattle', - testPhone: '+33143554657', - jobTitle: 'CEO', - testCurrency: { - __typename: 'Currency', - amountMicros: 100000000000, - currencyCode: 'USD', + noteTargets: { + __typename: 'NoteTargetConnection', + edges: [], + }, + taskTargets: { + __typename: 'TaskTargetConnection', + edges: [], + }, + linkedinLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', }, xLink: { __typename: 'Links', + primaryLinkUrl: '', primaryLinkLabel: '', - primaryLinkUrl: 'twitter.com', + secondaryLinks: null, }, - testLinks: { - __typename: 'Links', - primaryLinkUrl: 'https://www.linkedin.com/in/charlesbochet/', - primaryLinkLabel: '', - secondaryLinks: [ - { - url: 'https://msn.com', - label: '', - }, - { - url: 'https://msn.com', - label: '', - }, - { - url: 'https://msn.com', - label: '', - }, - ], + company: { + __typename: 'Company', + employees: null, + idealCustomerProfile: false, + position: 1, + id: '20202020-3ec3-4fe3-8997-b76aa0bfa408', + updatedAt: '2024-08-02T09:48:36.193Z', + accountOwnerId: null, + name: 'Linkedin', + createdAt: '2024-08-02T09:48:36.193Z', + address: { + __typename: 'Address', + addressStreet1: 'Eutaw Street', + addressStreet2: null, + addressCity: 'Dublin', + addressState: null, + addressCountry: 'Ireland', + addressPostcode: null, + addressLat: null, + addressLng: null, + }, + annualRecurringRevenue: { + __typename: 'Currency', + amountMicros: null, + currencyCode: '', + }, + domainName: { + __typename: 'Links', + primaryLinkUrl: 'https://linkedin.com', + primaryLinkLabel: '', + secondaryLinks: null, + }, + linkedinLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', + }, + xLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, }, + }, + }, + { + __typename: 'PersonEdge', + cursor: 'WzEsICIyMDIwMjAyMC0xYzBlLTQ5NGMtYTFiNi04NWIxYzZmZWZhYTUiXQ==', + node: { + __typename: 'Person', + createdAt: '2024-08-01T09:50:00.000Z', + city: 'Seattle', + phone: '+33789012345', + id: '20202020-1c0e-494c-a1b6-85b1c6fefaa5', + jobTitle: '', + position: 1, + email: 'christoph.calisto@linkedin.com', name: { __typename: 'FullName', firstName: 'Christoph', lastName: 'Callisto', }, + noteTargets: { + __typename: 'NoteTargetConnection', + edges: [], + }, + taskTargets: { + __typename: 'TaskTargetConnection', + edges: [], + }, linkedinLink: { __typename: 'Links', + primaryLinkUrl: '', primaryLinkLabel: '', - primaryLinkUrl: 'linkedin.com', + secondaryLinks: null, }, - testAddress: { - __typename: 'Address', - addressStreet1: '1 rue de la paix', - addressStreet2: '', - addressCity: 'Paris', - addressState: 'Paris', - addressCountry: 'France', - addressPostcode: '75008', - addressLat: null, - addressLng: null, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', }, - testLink: { + xLink: { __typename: 'Links', + primaryLinkUrl: '', primaryLinkLabel: '', - primaryLinkUrl: 'singlelink.com', - }, - bestCompany: { - __typename: 'Company', - id: '20202020-1455-4c57-afaf-dd5dc086361d', - employees: null, - previousEmployeesId: null, - accountOwnerId: null, - updatedAt: '2024-06-05T09:00:20.412Z', - idealCustomerProfile: false, - createdAt: '2024-06-05T09:00:20.412Z', - name: 'Algolia', - domainName: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'algolia.com', - }, - address: '', - position: 13, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - }, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - xLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - }, + secondaryLinks: null, }, company: { __typename: 'Company', - id: '20202020-3ec3-4fe3-8997-b76aa0bfa408', employees: null, - previousEmployeesId: '20202020-2d40-4e49-8df4-9c6a049191de', - accountOwnerId: null, - updatedAt: '2024-06-05T09:39:33.886Z', idealCustomerProfile: false, - createdAt: '2024-06-05T09:00:20.412Z', - name: 'Linkedin', - domainName: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'linkedin.com', - }, - address: '', position: 1, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', + id: '20202020-3ec3-4fe3-8997-b76aa0bfa408', + updatedAt: '2024-08-02T09:48:36.193Z', + accountOwnerId: null, + name: 'Linkedin', + createdAt: '2024-08-02T09:48:36.193Z', + address: { + __typename: 'Address', + addressStreet1: 'Eutaw Street', + addressStreet2: null, + addressCity: 'Dublin', + addressState: null, + addressCountry: 'Ireland', + addressPostcode: null, + addressLat: null, + addressLng: null, }, annualRecurringRevenue: { __typename: 'Currency', amountMicros: null, currencyCode: '', }, + domainName: { + __typename: 'Links', + primaryLinkUrl: 'https://linkedin.com', + primaryLinkLabel: '', + secondaryLinks: null, + }, + linkedinLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', + }, xLink: { __typename: 'Links', - primaryLinkLabel: '', primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, }, }, }, @@ -186,99 +235,93 @@ export const peopleQueryResult: { people: RecordGqlConnection } = { cursor: 'WzIsICIyMDIwMjAyMC1hYzczLTQ3OTctODI0ZS04N2ExZjVhZWE5ZTAiXQ==', node: { __typename: 'Person', - id: '20202020-ac73-4797-824e-87a1f5aea9e0', - email: 'sylvie.palmer@linkedin.com', - bestCompany: null, - position: 2, - testJson: null, - testRating: 'RATING_5', - testMultiSelect: ['OPTION_2', 'OPTION_3', 'OPTION_4'], - testBoolean: false, - testSelect: null, - testDateOnly: '2024-06-06T00:00:00.000Z', - phone: '+33780123456', - createdAt: '2024-06-05T09:00:20.412Z', + createdAt: '2024-08-02T09:48:36.193Z', city: 'Los Angeles', - testPhone: '', - jobTitle: 'CEO', - testCurrency: { - __typename: 'Currency', - amountMicros: 20323000000, - currencyCode: 'USD', - }, - xLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'twitter.com', - }, - testLinks: { - __typename: 'Links', - primaryLinkUrl: 'https://algolia.com', - primaryLinkLabel: '', - secondaryLinks: [ - { - primaryLinkUrl: 'https://paris.com', - primaryLinkLabel: '', - }, - ], - }, + phone: '+33780123456', + id: '20202020-ac73-4797-824e-87a1f5aea9e0', + jobTitle: '', + position: 2, + email: 'sylvie.palmer@linkedin.com', name: { __typename: 'FullName', firstName: 'Sylvie', lastName: 'Palmer', }, + noteTargets: { + __typename: 'NoteTargetConnection', + edges: [], + }, + taskTargets: { + __typename: 'TaskTargetConnection', + edges: [], + }, linkedinLink: { __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'linkedin.com', - }, - testAddress: { - __typename: 'Address', - addressStreet1: '', - addressStreet2: '', - addressCity: '', - addressState: '', - addressCountry: '', - addressPostcode: '', - addressLat: null, - addressLng: null, - }, - testLink: { - __typename: 'Links', - primaryLinkLabel: '', primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', + }, + xLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, }, company: { __typename: 'Company', - id: '20202020-3ec3-4fe3-8997-b76aa0bfa408', employees: null, - previousEmployeesId: '20202020-2d40-4e49-8df4-9c6a049191de', - accountOwnerId: null, - updatedAt: '2024-06-05T09:39:33.886Z', idealCustomerProfile: false, - createdAt: '2024-06-05T09:00:20.412Z', - name: 'Linkedin', - domainName: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'linkedin.com', - }, - address: '', position: 1, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', + id: '20202020-3ec3-4fe3-8997-b76aa0bfa408', + updatedAt: '2024-08-02T09:48:36.193Z', + accountOwnerId: null, + name: 'Linkedin', + createdAt: '2024-08-02T09:48:36.193Z', + address: { + __typename: 'Address', + addressStreet1: 'Eutaw Street', + addressStreet2: null, + addressCity: 'Dublin', + addressState: null, + addressCountry: 'Ireland', + addressPostcode: null, + addressLat: null, + addressLng: null, }, annualRecurringRevenue: { __typename: 'Currency', amountMicros: null, currencyCode: '', }, + domainName: { + __typename: 'Links', + primaryLinkUrl: 'https://linkedin.com', + primaryLinkLabel: '', + secondaryLinks: null, + }, + linkedinLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', + }, xLink: { __typename: 'Links', - primaryLinkLabel: '', primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, }, }, }, @@ -288,94 +331,93 @@ export const peopleQueryResult: { people: RecordGqlConnection } = { cursor: 'WzMsICIyMDIwMjAyMC1mNTE3LTQyZmQtODBhZS0xNDE3M2IzYjcwYWUiXQ==', node: { __typename: 'Person', - id: '20202020-f517-42fd-80ae-14173b3b70ae', - email: 'christopher.gonzalez@qonto.com', - bestCompany: null, - position: 3, - testJson: null, - testRating: 'RATING_3', - testMultiSelect: ['OPTION_2', 'OPTION_4', 'OPTION_5'], - testBoolean: true, - testSelect: null, - testDateOnly: '2024-06-04T00:00:00.000Z', - phone: '+33789012345', - createdAt: '2024-06-05T09:00:20.412Z', + createdAt: '2024-08-02T09:48:36.193Z', city: 'Seattle', - testPhone: '', - jobTitle: 'CTO', - testCurrency: { - __typename: 'Currency', - amountMicros: 343434000000, - currencyCode: 'USD', - }, - xLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'twitter.com', - }, - testLinks: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: null, - }, + phone: '+33789012345', + id: '20202020-f517-42fd-80ae-14173b3b70ae', + jobTitle: '', + position: 3, + email: 'christopher.gonzalez@qonto.com', name: { __typename: 'FullName', firstName: 'Christopher', lastName: 'Gonzalez', }, + noteTargets: { + __typename: 'NoteTargetConnection', + edges: [], + }, + taskTargets: { + __typename: 'TaskTargetConnection', + edges: [], + }, linkedinLink: { __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'linkedin.com', - }, - testAddress: { - __typename: 'Address', - addressStreet1: '', - addressStreet2: '', - addressCity: '', - addressState: '', - addressCountry: '', - addressPostcode: '', - addressLat: null, - addressLng: null, - }, - testLink: { - __typename: 'Links', - primaryLinkLabel: '', primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', + }, + xLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, }, company: { __typename: 'Company', - id: '20202020-0713-40a5-8216-82802401d33e', employees: null, - previousEmployeesId: null, - accountOwnerId: null, - updatedAt: '2024-06-05T09:00:20.412Z', idealCustomerProfile: false, - createdAt: '2024-06-05T09:00:20.412Z', - name: 'Qonto', - domainName: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'qonto.com', - }, - address: '', position: 3, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', + id: '20202020-0713-40a5-8216-82802401d33e', + updatedAt: '2024-08-02T09:48:36.193Z', + accountOwnerId: null, + name: 'Qonto', + createdAt: '2024-08-02T09:48:36.193Z', + address: { + __typename: 'Address', + addressStreet1: '18 rue de navarrin', + addressStreet2: null, + addressCity: 'Paris', + addressState: null, + addressCountry: 'France', + addressPostcode: '75009', + addressLat: null, + addressLng: null, }, annualRecurringRevenue: { __typename: 'Currency', amountMicros: null, currencyCode: '', }, + domainName: { + __typename: 'Links', + primaryLinkUrl: 'https://qonto.com', + primaryLinkLabel: '', + secondaryLinks: null, + }, + linkedinLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', + }, xLink: { __typename: 'Links', - primaryLinkLabel: '', primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, }, }, }, @@ -385,94 +427,93 @@ export const peopleQueryResult: { people: RecordGqlConnection } = { cursor: 'WzQsICIyMDIwMjAyMC1lZWUxLTQ2OTAtYWQyYy04NjE5ZTViNTZhMmUiXQ==', node: { __typename: 'Person', - id: '20202020-eee1-4690-ad2c-8619e5b56a2e', - email: 'ashley.parker@qonto.com', - bestCompany: null, - position: 4, - testJson: null, - testRating: 'RATING_4', - testMultiSelect: ['OPTION_5', 'OPTION_2', 'OPTION_3'], - testBoolean: true, - testSelect: 'OPTION_4', - testDateOnly: '2024-06-19T00:00:00.000Z', - phone: '+33780123456', - createdAt: '2024-06-05T09:00:20.412Z', + createdAt: '2024-08-02T09:48:36.193Z', city: 'Los Angeles', - testPhone: '', - jobTitle: 'CEO', - testCurrency: { - __typename: 'Currency', - amountMicros: 219232302323000000, - currencyCode: 'USD', - }, - xLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'twitter.com', - }, - testLinks: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: null, - }, + phone: '+33780123456', + id: '20202020-eee1-4690-ad2c-8619e5b56a2e', + jobTitle: '', + position: 4, + email: 'ashley.parker@qonto.com', name: { __typename: 'FullName', firstName: 'Ashley', lastName: 'Parker', }, + noteTargets: { + __typename: 'NoteTargetConnection', + edges: [], + }, + taskTargets: { + __typename: 'TaskTargetConnection', + edges: [], + }, linkedinLink: { __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'linkedin.com', - }, - testAddress: { - __typename: 'Address', - addressStreet1: '', - addressStreet2: '', - addressCity: '', - addressState: '', - addressCountry: '', - addressPostcode: '', - addressLat: null, - addressLng: null, - }, - testLink: { - __typename: 'Links', - primaryLinkLabel: '', primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', + }, + xLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, }, company: { __typename: 'Company', - id: '20202020-0713-40a5-8216-82802401d33e', employees: null, - previousEmployeesId: null, - accountOwnerId: null, - updatedAt: '2024-06-05T09:00:20.412Z', idealCustomerProfile: false, - createdAt: '2024-06-05T09:00:20.412Z', - name: 'Qonto', - domainName: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'qonto.com', - }, - address: '', position: 3, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', + id: '20202020-0713-40a5-8216-82802401d33e', + updatedAt: '2024-08-02T09:48:36.193Z', + accountOwnerId: null, + name: 'Qonto', + createdAt: '2024-08-02T09:48:36.193Z', + address: { + __typename: 'Address', + addressStreet1: '18 rue de navarrin', + addressStreet2: null, + addressCity: 'Paris', + addressState: null, + addressCountry: 'France', + addressPostcode: '75009', + addressLat: null, + addressLng: null, }, annualRecurringRevenue: { __typename: 'Currency', amountMicros: null, currencyCode: '', }, + domainName: { + __typename: 'Links', + primaryLinkUrl: 'https://qonto.com', + primaryLinkLabel: '', + secondaryLinks: null, + }, + linkedinLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', + }, xLink: { __typename: 'Links', - primaryLinkLabel: '', primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, }, }, }, @@ -482,94 +523,93 @@ export const peopleQueryResult: { people: RecordGqlConnection } = { cursor: 'WzUsICIyMDIwMjAyMC02Nzg0LTQ0NDktYWZkZi1kYzYyY2I4NzAyZjIiXQ==', node: { __typename: 'Person', - id: '20202020-6784-4449-afdf-dc62cb8702f2', - email: 'nicholas.wright@microsoft.com', - bestCompany: null, - position: 5, - testJson: null, - testRating: null, - testMultiSelect: null, - testBoolean: false, - testSelect: null, - testDateOnly: null, - phone: '+33781234567', - createdAt: '2024-06-05T09:00:20.412Z', + createdAt: '2024-08-02T09:48:36.193Z', city: 'Seattle', - testPhone: '', - jobTitle: 'CTO', - testCurrency: { - __typename: 'Currency', - amountMicros: null, - currencyCode: 'USD', - }, - xLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'twitter.com', - }, - testLinks: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: null, - }, + phone: '+33781234567', + id: '20202020-6784-4449-afdf-dc62cb8702f2', + jobTitle: '', + position: 5, + email: 'nicholas.wright@microsoft.com', name: { __typename: 'FullName', firstName: 'Nicholas', lastName: 'Wright', }, + noteTargets: { + __typename: 'NoteTargetConnection', + edges: [], + }, + taskTargets: { + __typename: 'TaskTargetConnection', + edges: [], + }, linkedinLink: { __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'linkedin.com', - }, - testAddress: { - __typename: 'Address', - addressStreet1: '', - addressStreet2: '', - addressCity: '', - addressState: '', - addressCountry: '', - addressPostcode: '', - addressLat: null, - addressLng: null, - }, - testLink: { - __typename: 'Links', - primaryLinkLabel: '', primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', + }, + xLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, }, company: { __typename: 'Company', - id: '20202020-ed89-413a-b31a-962986e67bb4', employees: null, - previousEmployeesId: null, - accountOwnerId: null, - updatedAt: '2024-06-05T09:00:20.412Z', idealCustomerProfile: false, - createdAt: '2024-06-05T09:00:20.412Z', - name: 'Microsoft', - domainName: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'microsoft.com', - }, - address: '', position: 4, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', + id: '20202020-ed89-413a-b31a-962986e67bb4', + updatedAt: '2024-08-02T09:48:36.193Z', + accountOwnerId: null, + name: 'Microsoft', + createdAt: '2024-08-02T09:48:36.193Z', + address: { + __typename: 'Address', + addressStreet1: null, + addressStreet2: null, + addressCity: null, + addressState: null, + addressCountry: null, + addressPostcode: null, + addressLat: null, + addressLng: null, }, annualRecurringRevenue: { __typename: 'Currency', amountMicros: null, currencyCode: '', }, + domainName: { + __typename: 'Links', + primaryLinkUrl: 'https://microsoft.com', + primaryLinkLabel: '', + secondaryLinks: null, + }, + linkedinLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', + }, xLink: { __typename: 'Links', - primaryLinkLabel: '', primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, }, }, }, @@ -579,94 +619,93 @@ export const peopleQueryResult: { people: RecordGqlConnection } = { cursor: 'WzYsICIyMDIwMjAyMC00OTBmLTQ0NjYtODM5MS03MzNjZmQ2NmEwYzgiXQ==', node: { __typename: 'Person', - id: '20202020-490f-4466-8391-733cfd66a0c8', - email: 'isabella.scott@microsoft.com', - bestCompany: null, - position: 6, - testJson: null, - testRating: null, - testMultiSelect: ['OPTION_1', 'OPTION_3', 'OPTION_5'], - testBoolean: false, - testSelect: 'OPTION_4', - testDateOnly: null, - phone: '+33782345678', - createdAt: '2024-06-05T09:00:20.412Z', + createdAt: '2024-08-02T09:48:36.193Z', city: 'New York', - testPhone: '', - jobTitle: 'CFO', - testCurrency: { - __typename: 'Currency', - amountMicros: null, - currencyCode: 'USD', - }, - xLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'twitter.com', - }, - testLinks: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: null, - }, + phone: '+33782345678', + id: '20202020-490f-4466-8391-733cfd66a0c8', + jobTitle: '', + position: 6, + email: 'isabella.scott@microsoft.com', name: { __typename: 'FullName', firstName: 'Isabella', lastName: 'Scott', }, + noteTargets: { + __typename: 'NoteTargetConnection', + edges: [], + }, + taskTargets: { + __typename: 'TaskTargetConnection', + edges: [], + }, linkedinLink: { __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'linkedin.com', - }, - testAddress: { - __typename: 'Address', - addressStreet1: '', - addressStreet2: '', - addressCity: '', - addressState: '', - addressCountry: '', - addressPostcode: '', - addressLat: null, - addressLng: null, - }, - testLink: { - __typename: 'Links', - primaryLinkLabel: '', primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', + }, + xLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, }, company: { __typename: 'Company', - id: '20202020-ed89-413a-b31a-962986e67bb4', employees: null, - previousEmployeesId: null, - accountOwnerId: null, - updatedAt: '2024-06-05T09:00:20.412Z', idealCustomerProfile: false, - createdAt: '2024-06-05T09:00:20.412Z', - name: 'Microsoft', - domainName: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'microsoft.com', - }, - address: '', position: 4, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', + id: '20202020-ed89-413a-b31a-962986e67bb4', + updatedAt: '2024-08-02T09:48:36.193Z', + accountOwnerId: null, + name: 'Microsoft', + createdAt: '2024-08-02T09:48:36.193Z', + address: { + __typename: 'Address', + addressStreet1: null, + addressStreet2: null, + addressCity: null, + addressState: null, + addressCountry: null, + addressPostcode: null, + addressLat: null, + addressLng: null, }, annualRecurringRevenue: { __typename: 'Currency', amountMicros: null, currencyCode: '', }, + domainName: { + __typename: 'Links', + primaryLinkUrl: 'https://microsoft.com', + primaryLinkLabel: '', + secondaryLinks: null, + }, + linkedinLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', + }, xLink: { __typename: 'Links', - primaryLinkLabel: '', primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, }, }, }, @@ -676,94 +715,93 @@ export const peopleQueryResult: { people: RecordGqlConnection } = { cursor: 'WzcsICIyMDIwMjAyMC04MGYxLTRkZmYtYjU3MC1hNzQ5NDI1MjhkZTMiXQ==', node: { __typename: 'Person', - id: '20202020-80f1-4dff-b570-a74942528de3', - email: 'matthew.green@microsoft.com', - bestCompany: null, - position: 7, - testJson: null, - testRating: null, - testMultiSelect: ['OPTION_6', 'OPTION_7'], - testBoolean: false, - testSelect: null, - testDateOnly: null, - phone: '+33783456789', - createdAt: '2024-06-05T09:00:20.412Z', + createdAt: '2024-08-02T09:48:36.193Z', city: 'Seattle', - testPhone: '', - jobTitle: 'CEO', - testCurrency: { - __typename: 'Currency', - amountMicros: null, - currencyCode: 'USD', - }, - xLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'twitter.com', - }, - testLinks: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: null, - }, + phone: '+33783456789', + id: '20202020-80f1-4dff-b570-a74942528de3', + jobTitle: '', + position: 7, + email: 'matthew.green@microsoft.com', name: { __typename: 'FullName', firstName: 'Matthew', lastName: 'Green', }, + noteTargets: { + __typename: 'NoteTargetConnection', + edges: [], + }, + taskTargets: { + __typename: 'TaskTargetConnection', + edges: [], + }, linkedinLink: { __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'linkedin.com', - }, - testAddress: { - __typename: 'Address', - addressStreet1: '', - addressStreet2: '', - addressCity: '', - addressState: '', - addressCountry: '', - addressPostcode: '', - addressLat: null, - addressLng: null, - }, - testLink: { - __typename: 'Links', - primaryLinkLabel: '', primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', + }, + xLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, }, company: { __typename: 'Company', - id: '20202020-ed89-413a-b31a-962986e67bb4', employees: null, - previousEmployeesId: null, - accountOwnerId: null, - updatedAt: '2024-06-05T09:00:20.412Z', idealCustomerProfile: false, - createdAt: '2024-06-05T09:00:20.412Z', - name: 'Microsoft', - domainName: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'microsoft.com', - }, - address: '', position: 4, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', + id: '20202020-ed89-413a-b31a-962986e67bb4', + updatedAt: '2024-08-02T09:48:36.193Z', + accountOwnerId: null, + name: 'Microsoft', + createdAt: '2024-08-02T09:48:36.193Z', + address: { + __typename: 'Address', + addressStreet1: null, + addressStreet2: null, + addressCity: null, + addressState: null, + addressCountry: null, + addressPostcode: null, + addressLat: null, + addressLng: null, }, annualRecurringRevenue: { __typename: 'Currency', amountMicros: null, currencyCode: '', }, + domainName: { + __typename: 'Links', + primaryLinkUrl: 'https://microsoft.com', + primaryLinkLabel: '', + secondaryLinks: null, + }, + linkedinLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', + }, xLink: { __typename: 'Links', - primaryLinkLabel: '', primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, }, }, }, @@ -773,94 +811,93 @@ export const peopleQueryResult: { people: RecordGqlConnection } = { cursor: 'WzgsICIyMDIwMjAyMC0zMzhiLTQ2ZGYtODgxMS1mYTA4YzdkMTlkMzUiXQ==', node: { __typename: 'Person', - id: '20202020-338b-46df-8811-fa08c7d19d35', - email: 'elizabeth.baker@airbnb.com', - bestCompany: null, - position: 8, - testJson: null, - testRating: null, - testMultiSelect: null, - testBoolean: true, - testSelect: 'OPTION_5', - testDateOnly: '2024-06-11T00:00:00.000Z', - phone: '+33784567890', - createdAt: '2024-06-05T09:00:20.412Z', + createdAt: '2024-08-02T09:48:36.193Z', city: 'New York', - testPhone: '', - jobTitle: 'CTO', - testCurrency: { - __typename: 'Currency', - amountMicros: null, - currencyCode: 'USD', - }, - xLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'twitter.com', - }, - testLinks: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: null, - }, + phone: '+33784567890', + id: '20202020-338b-46df-8811-fa08c7d19d35', + jobTitle: '', + position: 8, + email: 'elizabeth.baker@airbnb.com', name: { __typename: 'FullName', firstName: 'Elizabeth', lastName: 'Baker', }, + noteTargets: { + __typename: 'NoteTargetConnection', + edges: [], + }, + taskTargets: { + __typename: 'TaskTargetConnection', + edges: [], + }, linkedinLink: { __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'linkedin.com', - }, - testAddress: { - __typename: 'Address', - addressStreet1: '', - addressStreet2: '', - addressCity: '', - addressState: '', - addressCountry: '', - addressPostcode: '', - addressLat: null, - addressLng: null, - }, - testLink: { - __typename: 'Links', - primaryLinkLabel: '', primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', + }, + xLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, }, company: { __typename: 'Company', - id: '20202020-171e-4bcc-9cf7-43448d6fb278', employees: null, - previousEmployeesId: null, - accountOwnerId: null, - updatedAt: '2024-06-05T09:00:20.412Z', idealCustomerProfile: false, - createdAt: '2024-06-05T09:00:20.412Z', - name: 'Airbnb', - domainName: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'airbnb.com', - }, - address: '', position: 5, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', + id: '20202020-171e-4bcc-9cf7-43448d6fb278', + updatedAt: '2024-08-02T09:48:36.193Z', + accountOwnerId: null, + name: 'Airbnb', + createdAt: '2024-08-02T09:48:36.193Z', + address: { + __typename: 'Address', + addressStreet1: '888 Brannan St', + addressStreet2: null, + addressCity: 'San Francisco', + addressState: 'CA', + addressCountry: 'United States', + addressPostcode: '94103', + addressLat: null, + addressLng: null, }, annualRecurringRevenue: { __typename: 'Currency', amountMicros: null, currencyCode: '', }, + domainName: { + __typename: 'Links', + primaryLinkUrl: 'https://airbnb.com', + primaryLinkLabel: '', + secondaryLinks: null, + }, + linkedinLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', + }, xLink: { __typename: 'Links', - primaryLinkLabel: '', primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, }, }, }, @@ -870,94 +907,93 @@ export const peopleQueryResult: { people: RecordGqlConnection } = { cursor: 'WzksICIyMDIwMjAyMC02NGFkLTRiMGUtYmJmZC1lOWZkNzk1YjcwMTYiXQ==', node: { __typename: 'Person', - id: '20202020-64ad-4b0e-bbfd-e9fd795b7016', - email: 'christopher.nelson@airbnb.com', - bestCompany: null, - position: 9, - testJson: null, - testRating: null, - testMultiSelect: null, - testBoolean: true, - testSelect: null, - testDateOnly: null, - phone: '+33785678901', - createdAt: '2024-06-05T09:00:20.412Z', + createdAt: '2024-08-02T09:48:36.193Z', city: 'San Francisco', - testPhone: '', - jobTitle: 'CFO', - testCurrency: { - __typename: 'Currency', - amountMicros: null, - currencyCode: 'USD', - }, - xLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - }, - testLinks: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: null, - }, + phone: '+33785678901', + id: '20202020-64ad-4b0e-bbfd-e9fd795b7016', + jobTitle: '', + position: 9, + email: 'christopher.nelson@airbnb.com', name: { __typename: 'FullName', firstName: 'Christopher', lastName: 'Nelson', }, + noteTargets: { + __typename: 'NoteTargetConnection', + edges: [], + }, + taskTargets: { + __typename: 'TaskTargetConnection', + edges: [], + }, linkedinLink: { __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'linkedin.com', - }, - testAddress: { - __typename: 'Address', - addressStreet1: '', - addressStreet2: '', - addressCity: '', - addressState: '', - addressCountry: '', - addressPostcode: '', - addressLat: null, - addressLng: null, - }, - testLink: { - __typename: 'Links', - primaryLinkLabel: '', primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', + }, + xLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, }, company: { __typename: 'Company', - id: '20202020-171e-4bcc-9cf7-43448d6fb278', employees: null, - previousEmployeesId: null, - accountOwnerId: null, - updatedAt: '2024-06-05T09:00:20.412Z', idealCustomerProfile: false, - createdAt: '2024-06-05T09:00:20.412Z', - name: 'Airbnb', - domainName: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'airbnb.com', - }, - address: '', position: 5, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', + id: '20202020-171e-4bcc-9cf7-43448d6fb278', + updatedAt: '2024-08-02T09:48:36.193Z', + accountOwnerId: null, + name: 'Airbnb', + createdAt: '2024-08-02T09:48:36.193Z', + address: { + __typename: 'Address', + addressStreet1: '888 Brannan St', + addressStreet2: null, + addressCity: 'San Francisco', + addressState: 'CA', + addressCountry: 'United States', + addressPostcode: '94103', + addressLat: null, + addressLng: null, }, annualRecurringRevenue: { __typename: 'Currency', amountMicros: null, currencyCode: '', }, + domainName: { + __typename: 'Links', + primaryLinkUrl: 'https://airbnb.com', + primaryLinkLabel: '', + secondaryLinks: null, + }, + linkedinLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', + }, xLink: { __typename: 'Links', - primaryLinkLabel: '', primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, }, }, }, @@ -967,94 +1003,93 @@ export const peopleQueryResult: { people: RecordGqlConnection } = { cursor: 'WzEwLCAiMjAyMDIwMjAtNWQ1NC00MWI3LWJhMzYtZjBkMjBlMTQxN2FlIl0=', node: { __typename: 'Person', - id: '20202020-5d54-41b7-ba36-f0d20e1417ae', - email: 'avery.carter@airbnb.com', - bestCompany: null, - position: 10, - testJson: null, - testRating: null, - testMultiSelect: null, - testBoolean: false, - testSelect: 'OPTION_2', - testDateOnly: null, - phone: '+33786789012', - createdAt: '2024-06-05T09:00:20.412Z', + createdAt: '2024-08-02T09:48:36.193Z', city: 'New York', - testPhone: '', - jobTitle: 'CTO', - testCurrency: { - __typename: 'Currency', - amountMicros: null, - currencyCode: 'USD', - }, - xLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - }, - testLinks: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: null, - }, + phone: '+33786789012', + id: '20202020-5d54-41b7-ba36-f0d20e1417ae', + jobTitle: '', + position: 10, + email: 'avery.carter@airbnb.com', name: { __typename: 'FullName', firstName: 'Avery', lastName: 'Carter', }, + noteTargets: { + __typename: 'NoteTargetConnection', + edges: [], + }, + taskTargets: { + __typename: 'TaskTargetConnection', + edges: [], + }, linkedinLink: { __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'linkedin.com', - }, - testAddress: { - __typename: 'Address', - addressStreet1: '', - addressStreet2: '', - addressCity: '', - addressState: '', - addressCountry: '', - addressPostcode: '', - addressLat: null, - addressLng: null, - }, - testLink: { - __typename: 'Links', - primaryLinkLabel: '', primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', + }, + xLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, }, company: { __typename: 'Company', - id: '20202020-171e-4bcc-9cf7-43448d6fb278', employees: null, - previousEmployeesId: null, - accountOwnerId: null, - updatedAt: '2024-06-05T09:00:20.412Z', idealCustomerProfile: false, - createdAt: '2024-06-05T09:00:20.412Z', - name: 'Airbnb', - domainName: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'airbnb.com', - }, - address: '', position: 5, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', + id: '20202020-171e-4bcc-9cf7-43448d6fb278', + updatedAt: '2024-08-02T09:48:36.193Z', + accountOwnerId: null, + name: 'Airbnb', + createdAt: '2024-08-02T09:48:36.193Z', + address: { + __typename: 'Address', + addressStreet1: '888 Brannan St', + addressStreet2: null, + addressCity: 'San Francisco', + addressState: 'CA', + addressCountry: 'United States', + addressPostcode: '94103', + addressLat: null, + addressLng: null, }, annualRecurringRevenue: { __typename: 'Currency', amountMicros: null, currencyCode: '', }, + domainName: { + __typename: 'Links', + primaryLinkUrl: 'https://airbnb.com', + primaryLinkLabel: '', + secondaryLinks: null, + }, + linkedinLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', + }, xLink: { __typename: 'Links', - primaryLinkLabel: '', primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, }, }, }, @@ -1064,94 +1099,93 @@ export const peopleQueryResult: { people: RecordGqlConnection } = { cursor: 'WzExLCAiMjAyMDIwMjAtNjIzZC00MWZlLTkyZTctZGQ0NWI3YzU2OGUxIl0=', node: { __typename: 'Person', - id: '20202020-623d-41fe-92e7-dd45b7c568e1', - email: 'ethan.mitchell@google.com', - bestCompany: null, - position: 11, - testJson: null, - testRating: null, - testMultiSelect: null, - testBoolean: true, - testSelect: null, - testDateOnly: null, - phone: '+33787890123', - createdAt: '2024-06-05T09:00:20.412Z', + createdAt: '2024-08-02T09:48:36.193Z', city: 'Los Angeles', - testPhone: '', - jobTitle: 'CMO', - testCurrency: { - __typename: 'Currency', - amountMicros: null, - currencyCode: 'USD', - }, - xLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'twitter.com', - }, - testLinks: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: null, - }, + phone: '+33787890123', + id: '20202020-623d-41fe-92e7-dd45b7c568e1', + jobTitle: '', + position: 11, + email: 'ethan.mitchell@google.com', name: { __typename: 'FullName', firstName: 'Ethan', lastName: 'Mitchell', }, + noteTargets: { + __typename: 'NoteTargetConnection', + edges: [], + }, + taskTargets: { + __typename: 'TaskTargetConnection', + edges: [], + }, linkedinLink: { __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'linkedin.com', - }, - testAddress: { - __typename: 'Address', - addressStreet1: '', - addressStreet2: '', - addressCity: '', - addressState: '', - addressCountry: '', - addressPostcode: '', - addressLat: null, - addressLng: null, - }, - testLink: { - __typename: 'Links', - primaryLinkLabel: '', primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', + }, + xLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, }, company: { __typename: 'Company', - id: '20202020-c21e-4ec2-873b-de4264d89025', employees: null, - previousEmployeesId: null, - accountOwnerId: null, - updatedAt: '2024-06-05T09:00:20.412Z', idealCustomerProfile: false, - createdAt: '2024-06-05T09:00:20.412Z', - name: 'Google', - domainName: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'google.com', - }, - address: '', position: 6, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', + id: '20202020-c21e-4ec2-873b-de4264d89025', + updatedAt: '2024-08-02T09:48:36.193Z', + accountOwnerId: null, + name: 'Google', + createdAt: '2024-08-02T09:48:36.193Z', + address: { + __typename: 'Address', + addressStreet1: '760 Market St', + addressStreet2: 'Floor 10', + addressCity: 'San Francisco', + addressState: null, + addressCountry: 'United States', + addressPostcode: '94102', + addressLat: null, + addressLng: null, }, annualRecurringRevenue: { __typename: 'Currency', amountMicros: null, currencyCode: '', }, + domainName: { + __typename: 'Links', + primaryLinkUrl: 'https://google.com', + primaryLinkLabel: '', + secondaryLinks: null, + }, + linkedinLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', + }, xLink: { __typename: 'Links', - primaryLinkLabel: '', primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, }, }, }, @@ -1161,94 +1195,93 @@ export const peopleQueryResult: { people: RecordGqlConnection } = { cursor: 'WzEyLCAiMjAyMDIwMjAtMmQ0MC00ZTQ5LThkZjQtOWM2YTA0OTE5MGVmIl0=', node: { __typename: 'Person', - id: '20202020-2d40-4e49-8df4-9c6a049190ef', - email: 'madison.perez@google.com', - bestCompany: null, - position: 12, - testJson: null, - testRating: null, - testMultiSelect: null, - testBoolean: true, - testSelect: null, - testDateOnly: null, - phone: '+33788901234', - createdAt: '2024-06-05T09:00:20.412Z', + createdAt: '2024-08-02T09:48:36.193Z', city: 'Seattle', - testPhone: '', - jobTitle: 'CHO', - testCurrency: { - __typename: 'Currency', - amountMicros: null, - currencyCode: 'USD', - }, - xLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - }, - testLinks: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: null, - }, + phone: '+33788901234', + id: '20202020-2d40-4e49-8df4-9c6a049190ef', + jobTitle: '', + position: 12, + email: 'madison.perez@google.com', name: { __typename: 'FullName', firstName: 'Madison', lastName: 'Perez', }, + noteTargets: { + __typename: 'NoteTargetConnection', + edges: [], + }, + taskTargets: { + __typename: 'TaskTargetConnection', + edges: [], + }, linkedinLink: { __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'linkedin.com', - }, - testAddress: { - __typename: 'Address', - addressStreet1: '', - addressStreet2: '', - addressCity: '', - addressState: '', - addressCountry: '', - addressPostcode: '', - addressLat: null, - addressLng: null, - }, - testLink: { - __typename: 'Links', - primaryLinkLabel: '', primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', + }, + xLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, }, company: { __typename: 'Company', - id: '20202020-c21e-4ec2-873b-de4264d89025', employees: null, - previousEmployeesId: null, - accountOwnerId: null, - updatedAt: '2024-06-05T09:00:20.412Z', idealCustomerProfile: false, - createdAt: '2024-06-05T09:00:20.412Z', - name: 'Google', - domainName: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'google.com', - }, - address: '', position: 6, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', + id: '20202020-c21e-4ec2-873b-de4264d89025', + updatedAt: '2024-08-02T09:48:36.193Z', + accountOwnerId: null, + name: 'Google', + createdAt: '2024-08-02T09:48:36.193Z', + address: { + __typename: 'Address', + addressStreet1: '760 Market St', + addressStreet2: 'Floor 10', + addressCity: 'San Francisco', + addressState: null, + addressCountry: 'United States', + addressPostcode: '94102', + addressLat: null, + addressLng: null, }, annualRecurringRevenue: { __typename: 'Currency', amountMicros: null, currencyCode: '', }, + domainName: { + __typename: 'Links', + primaryLinkUrl: 'https://google.com', + primaryLinkLabel: '', + secondaryLinks: null, + }, + linkedinLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', + }, xLink: { __typename: 'Links', - primaryLinkLabel: '', primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, }, }, }, @@ -1258,94 +1291,93 @@ export const peopleQueryResult: { people: RecordGqlConnection } = { cursor: 'WzEzLCAiMjAyMDIwMjAtMmQ0MC00ZTQ5LThkZjQtOWM2YTA0OTE5MGRmIl0=', node: { __typename: 'Person', - id: '20202020-2d40-4e49-8df4-9c6a049190df', - email: 'bertrand.voulzy@google.com', - bestCompany: null, - position: 13, - testJson: null, - testRating: null, - testMultiSelect: null, - testBoolean: false, - testSelect: null, - testDateOnly: null, - phone: '+33788901234', - createdAt: '2024-06-05T09:00:20.412Z', + createdAt: '2024-08-02T09:48:36.193Z', city: 'Seattle', - testPhone: '', - jobTitle: 'CFO', - testCurrency: { - __typename: 'Currency', - amountMicros: null, - currencyCode: 'USD', - }, - xLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - }, - testLinks: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: null, - }, + phone: '+33788901234', + id: '20202020-2d40-4e49-8df4-9c6a049190df', + jobTitle: '', + position: 13, + email: 'bertrand.voulzy@google.com', name: { __typename: 'FullName', firstName: 'Bertrand', lastName: 'Voulzy', }, + noteTargets: { + __typename: 'NoteTargetConnection', + edges: [], + }, + taskTargets: { + __typename: 'TaskTargetConnection', + edges: [], + }, linkedinLink: { __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'linkedin.com', - }, - testAddress: { - __typename: 'Address', - addressStreet1: '', - addressStreet2: '', - addressCity: '', - addressState: '', - addressCountry: '', - addressPostcode: '', - addressLat: null, - addressLng: null, - }, - testLink: { - __typename: 'Links', - primaryLinkLabel: '', primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', + }, + xLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, }, company: { __typename: 'Company', - id: '20202020-c21e-4ec2-873b-de4264d89025', employees: null, - previousEmployeesId: null, - accountOwnerId: null, - updatedAt: '2024-06-05T09:00:20.412Z', idealCustomerProfile: false, - createdAt: '2024-06-05T09:00:20.412Z', - name: 'Google', - domainName: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'google.com', - }, - address: '', position: 6, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', + id: '20202020-c21e-4ec2-873b-de4264d89025', + updatedAt: '2024-08-02T09:48:36.193Z', + accountOwnerId: null, + name: 'Google', + createdAt: '2024-08-02T09:48:36.193Z', + address: { + __typename: 'Address', + addressStreet1: '760 Market St', + addressStreet2: 'Floor 10', + addressCity: 'San Francisco', + addressState: null, + addressCountry: 'United States', + addressPostcode: '94102', + addressLat: null, + addressLng: null, }, annualRecurringRevenue: { __typename: 'Currency', amountMicros: null, currencyCode: '', }, + domainName: { + __typename: 'Links', + primaryLinkUrl: 'https://google.com', + primaryLinkLabel: '', + secondaryLinks: null, + }, + linkedinLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', + }, xLink: { __typename: 'Links', - primaryLinkLabel: '', primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, }, }, }, @@ -1355,94 +1387,93 @@ export const peopleQueryResult: { people: RecordGqlConnection } = { cursor: 'WzE0LCAiMjAyMDIwMjAtMmQ0MC00ZTQ5LThkZjQtOWM2YTA0OTE5MWRlIl0=', node: { __typename: 'Person', - id: '20202020-2d40-4e49-8df4-9c6a049191de', - email: 'louis.duss@google.com', - bestCompany: null, - position: 14, - testJson: null, - testRating: null, - testMultiSelect: null, - testBoolean: true, - testSelect: 'OPTION_1', - testDateOnly: null, - phone: '+33788901234', - createdAt: '2024-06-05T09:00:20.412Z', + createdAt: '2024-08-02T09:48:36.193Z', city: 'Seattle', - testPhone: '', - jobTitle: 'CTO', - testCurrency: { - __typename: 'Currency', - amountMicros: null, - currencyCode: 'USD', - }, - xLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'twitter.com', - }, - testLinks: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: null, - }, + phone: '+33788901234', + id: '20202020-2d40-4e49-8df4-9c6a049191de', + jobTitle: '', + position: 14, + email: 'louis.duss@google.com', name: { __typename: 'FullName', firstName: 'Louis', lastName: 'Duss', }, + noteTargets: { + __typename: 'NoteTargetConnection', + edges: [], + }, + taskTargets: { + __typename: 'TaskTargetConnection', + edges: [], + }, linkedinLink: { __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'linkedin.com', - }, - testAddress: { - __typename: 'Address', - addressStreet1: '', - addressStreet2: '', - addressCity: '', - addressState: '', - addressCountry: '', - addressPostcode: '', - addressLat: null, - addressLng: null, - }, - testLink: { - __typename: 'Links', - primaryLinkLabel: '', primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', + }, + xLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, }, company: { __typename: 'Company', - id: '20202020-c21e-4ec2-873b-de4264d89025', employees: null, - previousEmployeesId: null, - accountOwnerId: null, - updatedAt: '2024-06-05T09:00:20.412Z', idealCustomerProfile: false, - createdAt: '2024-06-05T09:00:20.412Z', - name: 'Google', - domainName: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'google.com', - }, - address: '', position: 6, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', + id: '20202020-c21e-4ec2-873b-de4264d89025', + updatedAt: '2024-08-02T09:48:36.193Z', + accountOwnerId: null, + name: 'Google', + createdAt: '2024-08-02T09:48:36.193Z', + address: { + __typename: 'Address', + addressStreet1: '760 Market St', + addressStreet2: 'Floor 10', + addressCity: 'San Francisco', + addressState: null, + addressCountry: 'United States', + addressPostcode: '94102', + addressLat: null, + addressLng: null, }, annualRecurringRevenue: { __typename: 'Currency', amountMicros: null, currencyCode: '', }, + domainName: { + __typename: 'Links', + primaryLinkUrl: 'https://google.com', + primaryLinkLabel: '', + secondaryLinks: null, + }, + linkedinLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', + }, xLink: { __typename: 'Links', - primaryLinkLabel: '', primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, }, }, }, @@ -1452,94 +1483,93 @@ export const peopleQueryResult: { people: RecordGqlConnection } = { cursor: 'WzE1LCAiMjAyMDIwMjAtMmQ0MC00ZTQ5LThkZjQtOWM2YTA0OTE5MWRmIl0=', node: { __typename: 'Person', - id: '20202020-2d40-4e49-8df4-9c6a049191df', - email: 'lorie.vladim@google.com', - bestCompany: null, - position: 15, - testJson: null, - testRating: null, - testMultiSelect: null, - testBoolean: false, - testSelect: null, - testDateOnly: null, - phone: '+33788901235', - createdAt: '2024-06-05T09:00:20.412Z', + createdAt: '2024-08-02T09:48:36.193Z', city: 'Seattle', - testPhone: '', - jobTitle: 'CEO', - testCurrency: { - __typename: 'Currency', - amountMicros: null, - currencyCode: 'USD', - }, - xLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - }, - testLinks: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: null, - }, + phone: '+33788901235', + id: '20202020-2d40-4e49-8df4-9c6a049191df', + jobTitle: '', + position: 15, + email: 'lorie.vladim@google.com', name: { __typename: 'FullName', firstName: 'Lorie', lastName: 'Vladim', }, + noteTargets: { + __typename: 'NoteTargetConnection', + edges: [], + }, + taskTargets: { + __typename: 'TaskTargetConnection', + edges: [], + }, linkedinLink: { __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'linkedin.com', - }, - testAddress: { - __typename: 'Address', - addressStreet1: '', - addressStreet2: '', - addressCity: '', - addressState: '', - addressCountry: '', - addressPostcode: '', - addressLat: null, - addressLng: null, - }, - testLink: { - __typename: 'Links', - primaryLinkLabel: '', primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: null, + name: '', + }, + xLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, }, company: { __typename: 'Company', - id: '20202020-c21e-4ec2-873b-de4264d89025', employees: null, - previousEmployeesId: null, - accountOwnerId: null, - updatedAt: '2024-06-05T09:00:20.412Z', idealCustomerProfile: false, - createdAt: '2024-06-05T09:00:20.412Z', - name: 'Google', - domainName: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'google.com', - }, - address: '', position: 6, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', + id: '20202020-c21e-4ec2-873b-de4264d89025', + updatedAt: '2024-08-02T09:48:36.193Z', + accountOwnerId: null, + name: 'Google', + createdAt: '2024-08-02T09:48:36.193Z', + address: { + __typename: 'Address', + addressStreet1: '760 Market St', + addressStreet2: 'Floor 10', + addressCity: 'San Francisco', + addressState: null, + addressCountry: 'United States', + addressPostcode: '94102', + addressLat: null, + addressLng: null, }, annualRecurringRevenue: { __typename: 'Currency', amountMicros: null, currencyCode: '', }, + domainName: { + __typename: 'Links', + primaryLinkUrl: 'https://google.com', + primaryLinkLabel: '', + secondaryLinks: null, + }, + linkedinLink: { + __typename: 'Links', + primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, + }, + createdBy: { + __typename: 'Actor', + source: 'MANUAL', + workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', + name: 'Tim Apple', + }, xLink: { __typename: 'Links', - primaryLinkLabel: '', primaryLinkUrl: '', + primaryLinkLabel: '', + secondaryLinks: null, }, }, }, diff --git a/packages/twenty-front/vite.config.ts b/packages/twenty-front/vite.config.ts index 705c2dcc5..3c3d4edb5 100644 --- a/packages/twenty-front/vite.config.ts +++ b/packages/twenty-front/vite.config.ts @@ -72,6 +72,8 @@ export default defineConfig(({ command, mode }) => { '**/RecordTableCellTd.tsx', '**/RecordTableTd.tsx', '**/RecordTableHeaderDragDropColumn.tsx', + '**/ActorDisplay.tsx', + '**/AvatarChip.tsx', ], babelOptions: { presets: ['@babel/preset-typescript', '@babel/preset-react'], diff --git a/packages/twenty-server/@types/express.d.ts b/packages/twenty-server/@types/express.d.ts index 09c6bfbfe..89fea7d77 100644 --- a/packages/twenty-server/@types/express.d.ts +++ b/packages/twenty-server/@types/express.d.ts @@ -1,9 +1,11 @@ import { User } from 'src/engine/core-modules/user/user.entity'; import { Workspace } from 'src/engine/core-modules/workspace/workspace.entity'; +import { ApiKeyWorkspaceEntity } from 'src/modules/api-key/standard-objects/api-key.workspace-entity'; declare module 'express-serve-static-core' { interface Request { - user?: User; + user?: User | null; + apiKey?: ApiKeyWorkspaceEntity | null; workspace?: Workspace; workspaceId?: string; cacheVersion?: string | null; diff --git a/packages/twenty-server/package.json b/packages/twenty-server/package.json index 19dbeabcf..f389bc07a 100644 --- a/packages/twenty-server/package.json +++ b/packages/twenty-server/package.json @@ -32,6 +32,7 @@ "langchain": "^0.2.6", "langfuse-langchain": "^3.11.2", "lodash.differencewith": "^4.5.0", + "lodash.merge": "^4.6.2", "lodash.omitby": "^4.6.0", "lodash.uniq": "^4.5.0", "lodash.uniqby": "^4.7.0", @@ -48,6 +49,7 @@ "@types/lodash.isempty": "^4.4.7", "@types/lodash.isequal": "^4.5.8", "@types/lodash.isobject": "^3.0.7", + "@types/lodash.merge": "^4.6.9", "@types/lodash.omit": "^4.5.9", "@types/lodash.omitby": "^4.6.9", "@types/lodash.snakecase": "^4.1.7", diff --git a/packages/twenty-server/src/database/typeorm-seeds/workspace/companies.ts b/packages/twenty-server/src/database/typeorm-seeds/workspace/companies.ts index d9c262c55..c2e84868d 100644 --- a/packages/twenty-server/src/database/typeorm-seeds/workspace/companies.ts +++ b/packages/twenty-server/src/database/typeorm-seeds/workspace/companies.ts @@ -1,5 +1,7 @@ import { EntityManager } from 'typeorm'; +import { DEV_SEED_WORKSPACE_MEMBER_IDS } from 'src/database/typeorm-seeds/workspace/workspace-members'; + const tableName = 'company'; export const DEV_SEED_COMPANY_IDS = { @@ -36,6 +38,9 @@ export const seedCompanies = async ( 'addressAddressPostcode', 'addressAddressCountry', 'position', + 'createdBySource', + 'createdByWorkspaceMemberId', + 'createdByName', ]) .orIgnore() .values([ @@ -50,6 +55,9 @@ export const seedCompanies = async ( addressAddressPostcode: null, addressAddressCountry: 'Ireland', position: 1, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM, + createdByName: 'Tim Apple', }, { id: DEV_SEED_COMPANY_IDS.FACEBOOK, @@ -62,6 +70,9 @@ export const seedCompanies = async ( addressAddressPostcode: null, addressAddressCountry: null, position: 2, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM, + createdByName: 'Tim Apple', }, { id: DEV_SEED_COMPANY_IDS.QONTO, @@ -74,6 +85,9 @@ export const seedCompanies = async ( addressAddressPostcode: '75009', addressAddressCountry: 'France', position: 3, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM, + createdByName: 'Tim Apple', }, { id: DEV_SEED_COMPANY_IDS.MICROSOFT, @@ -86,6 +100,9 @@ export const seedCompanies = async ( addressAddressPostcode: null, addressAddressCountry: null, position: 4, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM, + createdByName: 'Tim Apple', }, { id: DEV_SEED_COMPANY_IDS.AIRBNB, @@ -98,6 +115,9 @@ export const seedCompanies = async ( addressAddressPostcode: '94103', addressAddressCountry: 'United States', position: 5, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM, + createdByName: 'Tim Apple', }, { id: DEV_SEED_COMPANY_IDS.GOOGLE, @@ -110,6 +130,9 @@ export const seedCompanies = async ( addressAddressPostcode: '94102', addressAddressCountry: 'United States', position: 6, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM, + createdByName: 'Tim Apple', }, { id: DEV_SEED_COMPANY_IDS.NETFLIX, @@ -122,6 +145,9 @@ export const seedCompanies = async ( addressAddressPostcode: '94110', addressAddressCountry: 'United States', position: 7, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM, + createdByName: 'Tim Apple', }, { id: DEV_SEED_COMPANY_IDS.LIBEO, @@ -134,6 +160,9 @@ export const seedCompanies = async ( addressAddressPostcode: null, addressAddressCountry: null, position: 8, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM, + createdByName: 'Tim Apple', }, { id: DEV_SEED_COMPANY_IDS.CLAAP, @@ -146,6 +175,9 @@ export const seedCompanies = async ( addressAddressPostcode: null, addressAddressCountry: null, position: 9, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM, + createdByName: 'Tim Apple', }, { id: DEV_SEED_COMPANY_IDS.HASURA, @@ -158,6 +190,9 @@ export const seedCompanies = async ( addressAddressPostcode: null, addressAddressCountry: null, position: 10, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM, + createdByName: 'Tim Apple', }, { id: DEV_SEED_COMPANY_IDS.WEWORK, @@ -170,6 +205,9 @@ export const seedCompanies = async ( addressAddressPostcode: null, addressAddressCountry: null, position: 11, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM, + createdByName: 'Tim Apple', }, { id: DEV_SEED_COMPANY_IDS.SAMSUNG, @@ -182,6 +220,9 @@ export const seedCompanies = async ( addressAddressPostcode: null, addressAddressCountry: null, position: 12, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM, + createdByName: 'Tim Apple', }, { id: DEV_SEED_COMPANY_IDS.ALGOLIA, @@ -194,6 +235,9 @@ export const seedCompanies = async ( addressAddressPostcode: null, addressAddressCountry: null, position: 13, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: null, + createdByName: '', }, ]) .execute(); diff --git a/packages/twenty-server/src/database/typeorm-seeds/workspace/opportunities.ts b/packages/twenty-server/src/database/typeorm-seeds/workspace/opportunities.ts index b1c00b54d..e8c9c8b3b 100644 --- a/packages/twenty-server/src/database/typeorm-seeds/workspace/opportunities.ts +++ b/packages/twenty-server/src/database/typeorm-seeds/workspace/opportunities.ts @@ -2,6 +2,7 @@ import { EntityManager } from 'typeorm'; import { DEV_SEED_COMPANY_IDS } from 'src/database/typeorm-seeds/workspace/companies'; import { DEV_SEED_PERSON_IDS } from 'src/database/typeorm-seeds/workspace/people'; +import { DEV_SEED_WORKSPACE_MEMBER_IDS } from 'src/database/typeorm-seeds/workspace/workspace-members'; const tableName = 'opportunity'; @@ -29,6 +30,9 @@ export const seedOpportunity = async ( 'position', 'pointOfContactId', 'companyId', + 'createdBySource', + 'createdByWorkspaceMemberId', + 'createdByName', ]) .orIgnore() .values([ @@ -42,6 +46,9 @@ export const seedOpportunity = async ( position: 1, pointOfContactId: DEV_SEED_PERSON_IDS.CHRISTOPH, companyId: DEV_SEED_COMPANY_IDS.LINKEDIN, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.JONY, + createdByName: 'Jony Ive', }, { id: DEV_SEED_OPPORTUNITY_IDS.OPPORTUNITY_2, @@ -53,6 +60,9 @@ export const seedOpportunity = async ( position: 2, pointOfContactId: DEV_SEED_PERSON_IDS.CHRISTOPHER_G, companyId: DEV_SEED_COMPANY_IDS.FACEBOOK, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.JONY, + createdByName: 'Jony Ive', }, { id: DEV_SEED_OPPORTUNITY_IDS.OPPORTUNITY_3, @@ -64,6 +74,9 @@ export const seedOpportunity = async ( position: 3, pointOfContactId: DEV_SEED_PERSON_IDS.NICHOLAS, companyId: DEV_SEED_COMPANY_IDS.MICROSOFT, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.JONY, + createdByName: 'Jony Ive', }, { id: DEV_SEED_OPPORTUNITY_IDS.OPPORTUNITY_4, @@ -75,6 +88,9 @@ export const seedOpportunity = async ( position: 4, pointOfContactId: DEV_SEED_PERSON_IDS.MATTHEW, companyId: DEV_SEED_COMPANY_IDS.MICROSOFT, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: null, + createdByName: '', }, ]) .execute(); diff --git a/packages/twenty-server/src/database/typeorm-seeds/workspace/people.ts b/packages/twenty-server/src/database/typeorm-seeds/workspace/people.ts index 32dc66ffb..27cdfccda 100644 --- a/packages/twenty-server/src/database/typeorm-seeds/workspace/people.ts +++ b/packages/twenty-server/src/database/typeorm-seeds/workspace/people.ts @@ -1,6 +1,7 @@ import { EntityManager } from 'typeorm'; import { DEV_SEED_COMPANY_IDS } from 'src/database/typeorm-seeds/workspace/companies'; +import { DEV_SEED_WORKSPACE_MEMBER_IDS } from 'src/database/typeorm-seeds/workspace/workspace-members'; const tableName = 'person'; @@ -38,6 +39,9 @@ export const seedPeople = async ( 'companyId', 'email', 'position', + 'createdBySource', + 'createdByWorkspaceMemberId', + 'createdByName', ]) .orIgnore() .values([ @@ -50,6 +54,9 @@ export const seedPeople = async ( companyId: DEV_SEED_COMPANY_IDS.LINKEDIN, email: 'christoph.calisto@linkedin.com', position: 1, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM, + createdByName: 'Tim Apple', }, { id: DEV_SEED_PERSON_IDS.SYLVIE, @@ -60,6 +67,9 @@ export const seedPeople = async ( companyId: DEV_SEED_COMPANY_IDS.LINKEDIN, email: 'sylvie.palmer@linkedin.com', position: 2, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM, + createdByName: 'Tim Apple', }, { id: DEV_SEED_PERSON_IDS.CHRISTOPHER_G, @@ -70,6 +80,9 @@ export const seedPeople = async ( companyId: DEV_SEED_COMPANY_IDS.QONTO, email: 'christopher.gonzalez@qonto.com', position: 3, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM, + createdByName: 'Tim Apple', }, { id: DEV_SEED_PERSON_IDS.ASHLEY, @@ -80,6 +93,9 @@ export const seedPeople = async ( companyId: DEV_SEED_COMPANY_IDS.QONTO, email: 'ashley.parker@qonto.com', position: 4, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM, + createdByName: 'Tim Apple', }, { id: DEV_SEED_PERSON_IDS.NICHOLAS, @@ -90,6 +106,9 @@ export const seedPeople = async ( companyId: DEV_SEED_COMPANY_IDS.MICROSOFT, email: 'nicholas.wright@microsoft.com', position: 5, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM, + createdByName: 'Tim Apple', }, { id: DEV_SEED_PERSON_IDS.ISABELLA, @@ -100,6 +119,9 @@ export const seedPeople = async ( companyId: DEV_SEED_COMPANY_IDS.MICROSOFT, email: 'isabella.scott@microsoft.com', position: 6, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM, + createdByName: 'Tim Apple', }, { id: DEV_SEED_PERSON_IDS.MATTHEW, @@ -110,6 +132,9 @@ export const seedPeople = async ( companyId: DEV_SEED_COMPANY_IDS.MICROSOFT, email: 'matthew.green@microsoft.com', position: 7, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM, + createdByName: 'Tim Apple', }, { id: DEV_SEED_PERSON_IDS.ELIZABETH, @@ -120,6 +145,9 @@ export const seedPeople = async ( companyId: DEV_SEED_COMPANY_IDS.AIRBNB, email: 'elizabeth.baker@airbnb.com', position: 8, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM, + createdByName: 'Tim Apple', }, { id: DEV_SEED_PERSON_IDS.CHRISTOPHER_N, @@ -130,6 +158,9 @@ export const seedPeople = async ( companyId: DEV_SEED_COMPANY_IDS.AIRBNB, email: 'christopher.nelson@airbnb.com', position: 9, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM, + createdByName: 'Tim Apple', }, { id: DEV_SEED_PERSON_IDS.AVERY, @@ -140,6 +171,9 @@ export const seedPeople = async ( companyId: DEV_SEED_COMPANY_IDS.AIRBNB, email: 'avery.carter@airbnb.com', position: 10, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM, + createdByName: 'Tim Apple', }, { id: DEV_SEED_PERSON_IDS.ETHAN, @@ -150,6 +184,9 @@ export const seedPeople = async ( companyId: DEV_SEED_COMPANY_IDS.GOOGLE, email: 'ethan.mitchell@google.com', position: 11, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM, + createdByName: 'Tim Apple', }, { id: DEV_SEED_PERSON_IDS.MADISON, @@ -160,6 +197,9 @@ export const seedPeople = async ( companyId: DEV_SEED_COMPANY_IDS.GOOGLE, email: 'madison.perez@google.com', position: 12, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM, + createdByName: 'Tim Apple', }, { id: DEV_SEED_PERSON_IDS.BERTRAND, @@ -170,6 +210,9 @@ export const seedPeople = async ( companyId: DEV_SEED_COMPANY_IDS.GOOGLE, email: 'bertrand.voulzy@google.com', position: 13, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM, + createdByName: 'Tim Apple', }, { id: DEV_SEED_PERSON_IDS.LOUIS, @@ -180,6 +223,9 @@ export const seedPeople = async ( companyId: DEV_SEED_COMPANY_IDS.GOOGLE, email: 'louis.duss@google.com', position: 14, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM, + createdByName: 'Tim Apple', }, { id: DEV_SEED_PERSON_IDS.LORIE, @@ -190,6 +236,9 @@ export const seedPeople = async ( companyId: DEV_SEED_COMPANY_IDS.GOOGLE, email: 'lorie.vladim@google.com', position: 15, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: null, + createdByName: '', }, ]) .execute(); diff --git a/packages/twenty-server/src/engine/api/__mocks__/object-metadata-item.mock.ts b/packages/twenty-server/src/engine/api/__mocks__/object-metadata-item.mock.ts index 4fd127e27..37ee2af4e 100644 --- a/packages/twenty-server/src/engine/api/__mocks__/object-metadata-item.mock.ts +++ b/packages/twenty-server/src/engine/api/__mocks__/object-metadata-item.mock.ts @@ -1,3 +1,4 @@ +import { FieldActorSource } from 'src/engine/metadata-modules/field-metadata/composite-types/actor.composite-type'; import { FieldMetadataType } from 'src/engine/metadata-modules/field-metadata/field-metadata.entity'; import { ObjectMetadataEntity } from 'src/engine/metadata-modules/object-metadata/object-metadata.entity'; @@ -196,6 +197,16 @@ const fieldRichTextMock = { defaultValue: null, }; +const fieldActorMock = { + name: 'fieldActor', + type: FieldMetadataType.ACTOR, + isNullable: true, + defaultValue: { + source: FieldActorSource.MANUAL, + name: '', + }, +}; + export const fields = [ fieldUuidMock, fieldTextMock, @@ -218,6 +229,7 @@ export const fields = [ fieldAddressMock, fieldRawJsonMock, fieldRichTextMock, + fieldActorMock, ]; export const objectMetadataItemMock = { diff --git a/packages/twenty-server/src/engine/api/graphql/graphql-config/graphql-config.service.ts b/packages/twenty-server/src/engine/api/graphql/graphql-config/graphql-config.service.ts index ae1aa2e78..d750fa248 100644 --- a/packages/twenty-server/src/engine/api/graphql/graphql-config/graphql-config.service.ts +++ b/packages/twenty-server/src/engine/api/graphql/graphql-config/graphql-config.service.ts @@ -15,7 +15,7 @@ import { JsonWebTokenError, TokenExpiredError } from 'jsonwebtoken'; import { useThrottler } from 'src/engine/api/graphql/graphql-config/hooks/use-throttler'; import { WorkspaceSchemaFactory } from 'src/engine/api/graphql/workspace-schema.factory'; import { TokenService } from 'src/engine/core-modules/auth/services/token.service'; -import { JwtData } from 'src/engine/core-modules/auth/types/jwt-data.type'; +import { AuthContext } from 'src/engine/core-modules/auth/types/auth-context.type'; import { CoreEngineModule } from 'src/engine/core-modules/core-engine.module'; import { useGraphQLErrorHandlerHook } from 'src/engine/core-modules/graphql/hooks/use-graphql-error-handler.hook'; import { User } from 'src/engine/core-modules/user/user.entity'; @@ -65,7 +65,7 @@ export class GraphQLConfigService autoSchemaFile: true, include: [CoreEngineModule], conditionalSchema: async (context) => { - let user: User | undefined; + let user: User | null | undefined; let workspace: Workspace | undefined; try { @@ -136,7 +136,7 @@ export class GraphQLConfigService async createSchema( context: YogaDriverServerContext<'express'> & YogaInitialContext, - data: JwtData, + data: AuthContext, ): Promise>> { // Create a new contextId for each request const contextId = ContextIdFactory.create(); @@ -155,9 +155,6 @@ export class GraphQLConfigService }, ); - return await workspaceFactory.createGraphQLSchema( - data.workspace.id, - data.user?.id, - ); + return await workspaceFactory.createGraphQLSchema(data); } } diff --git a/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/factories/__tests__/query-runner-args.factory.spec.ts b/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/factories/__tests__/query-runner-args.factory.spec.ts index 962c8fcc9..5c5650538 100644 --- a/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/factories/__tests__/query-runner-args.factory.spec.ts +++ b/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/factories/__tests__/query-runner-args.factory.spec.ts @@ -19,7 +19,7 @@ describe('QueryRunnerArgsFactory', () => { { name: 'testNumber', type: FieldMetadataType.NUMBER }, ] as FieldMetadataInterface[], objectMetadataItem: { isCustom: true, nameSingular: 'test' }, - workspaceId, + authContext: { workspace: { id: workspaceId } }, } as WorkspaceQueryRunnerOptions; let factory: QueryRunnerArgsFactory; @@ -149,6 +149,7 @@ describe('QueryRunnerArgsFactory', () => { { name: 'testNumber', type: FieldMetadataType.NUMBER }, ] as FieldMetadataInterface[], objectMetadataItem: { isCustom: true, nameSingular: 'test' }, + authContext: { workspace: { id: workspaceId } }, } as WorkspaceQueryRunnerOptions; const args = { diff --git a/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/factories/query-runner-args.factory.ts b/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/factories/query-runner-args.factory.ts index d8299e1cb..bdf9d862a 100644 --- a/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/factories/query-runner-args.factory.ts +++ b/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/factories/query-runner-args.factory.ts @@ -129,7 +129,7 @@ export class QueryRunnerArgsFactory { isCustom: options.objectMetadataItem.isCustom, nameSingular: options.objectMetadataItem.nameSingular, }, - options.workspaceId, + options.authContext.workspace.id, argPositionBackfillInput.argIndex, ), ]; @@ -157,7 +157,7 @@ export class QueryRunnerArgsFactory { isCustom: options.objectMetadataItem.isCustom, nameSingular: options.objectMetadataItem.nameSingular, }, - options.workspaceId, + options.authContext.workspace.id, argPositionBackfillInput.argIndex, ), ], diff --git a/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/interfaces/query-runner-option.interface.ts b/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/interfaces/query-runner-option.interface.ts index 13b462a04..45883f99d 100644 --- a/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/interfaces/query-runner-option.interface.ts +++ b/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/interfaces/query-runner-option.interface.ts @@ -3,9 +3,10 @@ import { GraphQLResolveInfo } from 'graphql'; import { FieldMetadataInterface } from 'src/engine/metadata-modules/field-metadata/interfaces/field-metadata.interface'; import { ObjectMetadataInterface } from 'src/engine/metadata-modules/field-metadata/interfaces/object-metadata.interface'; +import { AuthContext } from 'src/engine/core-modules/auth/types/auth-context.type'; + export interface WorkspaceQueryRunnerOptions { - workspaceId: string; - userId: string | undefined; + authContext: AuthContext; info: GraphQLResolveInfo; objectMetadataItem: ObjectMetadataInterface; fieldMetadataCollection: FieldMetadataInterface[]; diff --git a/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/workspace-query-hook/interfaces/workspace-query-hook.interface.ts b/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/workspace-query-hook/interfaces/workspace-query-hook.interface.ts index 93c3964c8..6d6b2e86d 100644 --- a/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/workspace-query-hook/interfaces/workspace-query-hook.interface.ts +++ b/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/workspace-query-hook/interfaces/workspace-query-hook.interface.ts @@ -1,9 +1,11 @@ import { ResolverArgs } from 'src/engine/api/graphql/workspace-resolver-builder/interfaces/workspace-resolvers-builder.interface'; +import { AuthContext } from 'src/engine/core-modules/auth/types/auth-context.type'; + export interface WorkspaceQueryHookInstance { execute( - userId: string | undefined, - workspaceId: string, + authContext: AuthContext, + objectName: string, payload: ResolverArgs, - ): Promise; + ): Promise; } diff --git a/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/workspace-query-hook/storage/workspace-query-hook.storage.ts b/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/workspace-query-hook/storage/workspace-query-hook.storage.ts index 18b25d1d9..4aca2f20d 100644 --- a/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/workspace-query-hook/storage/workspace-query-hook.storage.ts +++ b/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/workspace-query-hook/storage/workspace-query-hook.storage.ts @@ -3,6 +3,7 @@ import { Injectable } from '@nestjs/common'; import { Module } from '@nestjs/core/injector/module'; import { WorkspaceQueryHookInstance } from 'src/engine/api/graphql/workspace-query-runner/workspace-query-hook/interfaces/workspace-query-hook.interface'; +import { WorkspaceResolverBuilderMethodNames } from 'src/engine/api/graphql/workspace-resolver-builder/interfaces/workspace-resolvers-builder.interface'; import { WorkspaceQueryHookKey } from 'src/engine/api/graphql/workspace-query-runner/workspace-query-hook/decorators/workspace-query-hook.decorator'; @@ -36,8 +37,23 @@ export class WorkspaceQueryHookStorage { getWorkspaceQueryPreHookInstances( key: WorkspaceQueryHookKey, - ): WorkspaceQueryHookData[] | undefined { - return this.preHookInstances.get(key); + ): WorkspaceQueryHookData[] { + const methodName = key.split('.')?.[1] as + | WorkspaceResolverBuilderMethodNames + | undefined; + let wildcardInstances: WorkspaceQueryHookData[] = + []; + + if (!methodName) { + throw new Error(`Can't split workspace query hook key: ${key}`); + } + + // Retrive wildcard pre-hook instances + if (this.preHookInstances.has(`*.${methodName}`)) { + wildcardInstances = this.preHookInstances.get(`*.${methodName}`)!; + } + + return [...wildcardInstances, ...(this.preHookInstances.get(key) ?? [])]; } registerWorkspaceQueryPostHookInstance( diff --git a/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/workspace-query-hook/workspace-query-hook.explorer.ts b/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/workspace-query-hook/workspace-query-hook.explorer.ts index 87bce8248..322966139 100644 --- a/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/workspace-query-hook/workspace-query-hook.explorer.ts +++ b/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/workspace-query-hook/workspace-query-hook.explorer.ts @@ -1,14 +1,14 @@ import { Injectable, Logger, OnModuleInit } from '@nestjs/common'; import { DiscoveryService, ModuleRef, createContextId } from '@nestjs/core'; -import { Module } from '@nestjs/core/injector/module'; import { Injector } from '@nestjs/core/injector/injector'; +import { Module } from '@nestjs/core/injector/module'; import { WorkspaceQueryHookInstance } from 'src/engine/api/graphql/workspace-query-runner/workspace-query-hook/interfaces/workspace-query-hook.interface'; -import { WorkspaceQueryHookMetadataAccessor } from 'src/engine/api/graphql/workspace-query-runner/workspace-query-hook/workspace-query-hook-metadata.accessor'; -import { WorkspaceQueryHookStorage } from 'src/engine/api/graphql/workspace-query-runner/workspace-query-hook/storage/workspace-query-hook.storage'; import { WorkspaceQueryHookKey } from 'src/engine/api/graphql/workspace-query-runner/workspace-query-hook/decorators/workspace-query-hook.decorator'; +import { WorkspaceQueryHookStorage } from 'src/engine/api/graphql/workspace-query-runner/workspace-query-hook/storage/workspace-query-hook.storage'; import { WorkspaceQueryHookType } from 'src/engine/api/graphql/workspace-query-runner/workspace-query-hook/types/workspace-query-hook.type'; +import { WorkspaceQueryHookMetadataAccessor } from 'src/engine/api/graphql/workspace-query-runner/workspace-query-hook/workspace-query-hook-metadata.accessor'; @Injectable() export class WorkspaceQueryHookExplorer implements OnModuleInit { @@ -73,7 +73,7 @@ export class WorkspaceQueryHookExplorer implements OnModuleInit { instance: object, host: Module, isRequestScoped: boolean, - ) { + ): Promise> { const methodName = 'execute'; if (isRequestScoped) { @@ -83,7 +83,7 @@ export class WorkspaceQueryHookExplorer implements OnModuleInit { this.moduleRef.registerRequestByContextId( { req: { - workspaceId: payload?.[1], + workspaceId: payload?.[0].workspace.id, }, }, contextId, @@ -97,9 +97,9 @@ export class WorkspaceQueryHookExplorer implements OnModuleInit { contextId, ); - await contextInstance[methodName].call(contextInstance, ...payload); + return contextInstance[methodName].call(contextInstance, ...payload); } else { - await instance[methodName].call(instance, ...payload); + return instance[methodName].call(instance, ...payload); } } diff --git a/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/workspace-query-hook/workspace-query-hook.service.ts b/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/workspace-query-hook/workspace-query-hook.service.ts index adfd90f42..cd3e37f01 100644 --- a/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/workspace-query-hook/workspace-query-hook.service.ts +++ b/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/workspace-query-hook/workspace-query-hook.service.ts @@ -1,11 +1,14 @@ import { Injectable } from '@nestjs/common'; +import merge from 'lodash.merge'; + import { WorkspaceResolverBuilderMethodNames } from 'src/engine/api/graphql/workspace-resolver-builder/interfaces/workspace-resolvers-builder.interface'; import { WorkspaceQueryHookStorage } from 'src/engine/api/graphql/workspace-query-runner/workspace-query-hook/storage/workspace-query-hook.storage'; import { WorkspaceQueryHookKey } from 'src/engine/api/graphql/workspace-query-runner/workspace-query-hook/decorators/workspace-query-hook.decorator'; import { WorkspaceQueryHookExplorer } from 'src/engine/api/graphql/workspace-query-runner/workspace-query-hook/workspace-query-hook.explorer'; import { WorkspacePreQueryHookPayload } from 'src/engine/api/graphql/workspace-query-runner/workspace-query-hook/types/workspace-query-hook.type'; +import { AuthContext } from 'src/engine/core-modules/auth/types/auth-context.type'; @Injectable() export class WorkspaceQueryHookService { @@ -17,27 +20,33 @@ export class WorkspaceQueryHookService { public async executePreQueryHooks< T extends WorkspaceResolverBuilderMethodNames, >( - userId: string | undefined, - workspaceId: string, + authContext: AuthContext, + // TODO: We should allow wildcard for object name objectName: string, methodName: T, payload: WorkspacePreQueryHookPayload, - ): Promise { + ): Promise> { const key: WorkspaceQueryHookKey = `${objectName}.${methodName}`; const preHookInstances = this.workspaceQueryHookStorage.getWorkspaceQueryPreHookInstances(key); if (!preHookInstances) { - return; + return payload; } for (const preHookInstance of preHookInstances) { - await this.workspaceQueryHookExplorer.handleHook( - [userId, workspaceId, payload], + // Deep merge all return of handleHook into payload before returning it + const hookPayload = await this.workspaceQueryHookExplorer.handleHook( + [authContext, objectName, payload], preHookInstance.instance, preHookInstance.host, preHookInstance.isRequestScoped, ); + + // TODO: Is it really a good idea ? + payload = merge(payload, hookPayload); } + + return payload; } } diff --git a/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/workspace-query-runner.service.ts b/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/workspace-query-runner.service.ts index fc70c7c84..18a550388 100644 --- a/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/workspace-query-runner.service.ts +++ b/packages/twenty-server/src/engine/api/graphql/workspace-query-runner/workspace-query-runner.service.ts @@ -52,7 +52,6 @@ import { TwentyORMGlobalManager } from 'src/engine/twenty-orm/twenty-orm-global. import { computeObjectTargetTable } from 'src/engine/utils/compute-object-target-table.util'; import { isQueryTimeoutError } from 'src/engine/utils/query-timeout.util'; import { WorkspaceDataSourceService } from 'src/engine/workspace-datasource/workspace-datasource.service'; -import { STANDARD_OBJECT_IDS } from 'src/engine/workspace-manager/workspace-sync-metadata/constants/standard-object-ids'; import { PGGraphQLMutation, @@ -90,11 +89,19 @@ export class WorkspaceQueryRunnerService { args: FindManyResolverArgs, options: WorkspaceQueryRunnerOptions, ): Promise | undefined> { - const { workspaceId, userId, objectMetadataItem } = options; + const { authContext, objectMetadataItem } = options; const start = performance.now(); + const hookedArgs = + await this.workspaceQueryHookService.executePreQueryHooks( + authContext, + objectMetadataItem.nameSingular, + 'findMany', + args, + ); + const computedArgs = (await this.queryRunnerArgsFactory.create( - args, + hookedArgs, options, ResolverArgsType.FindMany, )) as FindManyResolverArgs; @@ -104,15 +111,7 @@ export class WorkspaceQueryRunnerService { options, ); - await this.workspaceQueryHookService.executePreQueryHooks( - userId, - workspaceId, - objectMetadataItem.nameSingular, - 'findMany', - args, - ); - - const result = await this.execute(query, workspaceId); + const result = await this.execute(query, authContext.workspace.id); const end = performance.now(); this.logger.log( @@ -125,7 +124,7 @@ export class WorkspaceQueryRunnerService { result, objectMetadataItem, '', - workspaceId, + authContext.workspace.id, ); } @@ -142,10 +141,18 @@ export class WorkspaceQueryRunnerService { WorkspaceQueryRunnerExceptionCode.INVALID_QUERY_INPUT, ); } - const { workspaceId, userId, objectMetadataItem } = options; + const { authContext, objectMetadataItem } = options; + + const hookedArgs = + await this.workspaceQueryHookService.executePreQueryHooks( + authContext, + objectMetadataItem.nameSingular, + 'findOne', + args, + ); const computedArgs = (await this.queryRunnerArgsFactory.create( - args, + hookedArgs, options, ResolverArgsType.FindOne, )) as FindOneResolverArgs; @@ -155,20 +162,12 @@ export class WorkspaceQueryRunnerService { options, ); - await this.workspaceQueryHookService.executePreQueryHooks( - userId, - workspaceId, - objectMetadataItem.nameSingular, - 'findOne', - args, - ); - - const result = await this.execute(query, workspaceId); + const result = await this.execute(query, authContext.workspace.id); const parsedResult = await this.parseResult>( result, objectMetadataItem, '', - workspaceId, + authContext.workspace.id, ); return parsedResult?.edges?.[0]?.node; @@ -192,10 +191,18 @@ export class WorkspaceQueryRunnerService { ); } - const { workspaceId, userId, objectMetadataItem } = options; + const { authContext, objectMetadataItem } = options; + + const hookedArgs = + await this.workspaceQueryHookService.executePreQueryHooks( + authContext, + objectMetadataItem.nameSingular, + 'findDuplicates', + args, + ); const computedArgs = (await this.queryRunnerArgsFactory.create( - args, + hookedArgs, options, ResolverArgsType.FindDuplicates, )) as FindDuplicatesResolverArgs; @@ -206,7 +213,7 @@ export class WorkspaceQueryRunnerService { existingRecords = await this.duplicateService.findExistingRecords( computedArgs.ids, objectMetadataItem, - workspaceId, + authContext.workspace.id, ); if (!existingRecords || existingRecords.length === 0) { @@ -223,21 +230,13 @@ export class WorkspaceQueryRunnerService { existingRecords, ); - await this.workspaceQueryHookService.executePreQueryHooks( - userId, - workspaceId, - objectMetadataItem.nameSingular, - 'findDuplicates', - computedArgs, - ); - - const result = await this.execute(query, workspaceId); + const result = await this.execute(query, authContext.workspace.id); return this.parseResult>( result, objectMetadataItem, '', - workspaceId, + authContext.workspace.id, true, ); } @@ -246,7 +245,7 @@ export class WorkspaceQueryRunnerService { args: CreateManyResolverArgs>, options: WorkspaceQueryRunnerOptions, ): Promise { - const { workspaceId, userId, objectMetadataItem } = options; + const { authContext, objectMetadataItem } = options; assertMutationNotOnRemoteObject(objectMetadataItem); @@ -260,33 +259,33 @@ export class WorkspaceQueryRunnerService { } }); + const hookedArgs = + await this.workspaceQueryHookService.executePreQueryHooks( + authContext, + objectMetadataItem.nameSingular, + 'createMany', + args, + ); + const computedArgs = (await this.queryRunnerArgsFactory.create( - args, + hookedArgs, options, ResolverArgsType.CreateMany, )) as CreateManyResolverArgs; - await this.workspaceQueryHookService.executePreQueryHooks( - userId, - workspaceId, - objectMetadataItem.nameSingular, - 'createMany', - args, - ); - const query = await this.workspaceQueryBuilderFactory.createMany( computedArgs, options, ); - const result = await this.execute(query, workspaceId); + const result = await this.execute(query, authContext.workspace.id); const parsedResults = ( await this.parseResult>( result, objectMetadataItem, 'insertInto', - workspaceId, + authContext.workspace.id, ) )?.records; @@ -299,8 +298,8 @@ export class WorkspaceQueryRunnerService { parsedResults.forEach((record) => { this.eventEmitter.emit(`${objectMetadataItem.nameSingular}.created`, { name: `${objectMetadataItem.nameSingular}.created`, - workspaceId, - userId, + workspaceId: authContext.workspace.id, + userId: authContext.user?.id, recordId: record.id, objectMetadata: objectMetadataItem, properties: { @@ -325,7 +324,7 @@ export class WorkspaceQueryRunnerService { ? await this.duplicateService.findExistingRecords( ids as string[], options.objectMetadataItem, - options.workspaceId, + options.authContext.workspace.id, ) : []; @@ -381,10 +380,10 @@ export class WorkspaceQueryRunnerService { args: UpdateOneResolverArgs>, options: WorkspaceQueryRunnerOptions, ): Promise { - const { workspaceId, userId, objectMetadataItem } = options; + const { authContext, objectMetadataItem } = options; const repository = await this.twentyORMGlobalManager.getRepositoryForWorkspace( - workspaceId, + authContext.workspace.id, objectMetadataItem.nameSingular, ); @@ -402,27 +401,27 @@ export class WorkspaceQueryRunnerService { ); } + const hookedArgs = + await this.workspaceQueryHookService.executePreQueryHooks( + authContext, + objectMetadataItem.nameSingular, + 'updateOne', + args, + ); + const query = await this.workspaceQueryBuilderFactory.updateOne( - args, + hookedArgs, options, ); - await this.workspaceQueryHookService.executePreQueryHooks( - userId, - workspaceId, - objectMetadataItem.nameSingular, - 'updateOne', - args, - ); - - const result = await this.execute(query, workspaceId); + const result = await this.execute(query, authContext.workspace.id); const parsedResults = ( await this.parseResult>( result, objectMetadataItem, 'update', - workspaceId, + authContext.workspace.id, ) )?.records; @@ -434,8 +433,8 @@ export class WorkspaceQueryRunnerService { this.eventEmitter.emit(`${objectMetadataItem.nameSingular}.updated`, { name: `${objectMetadataItem.nameSingular}.updated`, - workspaceId, - userId, + workspaceId: authContext.workspace.id, + userId: authContext.user?.id, recordId: existingRecord.id, objectMetadata: objectMetadataItem, properties: { @@ -452,10 +451,10 @@ export class WorkspaceQueryRunnerService { args: UpdateManyResolverArgs>, options: WorkspaceQueryRunnerOptions, ): Promise { - const { userId, workspaceId, objectMetadataItem } = options; + const { authContext, objectMetadataItem } = options; const repository = await this.twentyORMGlobalManager.getRepositoryForWorkspace( - workspaceId, + authContext.workspace.id, objectMetadataItem.nameSingular, ); @@ -471,27 +470,31 @@ export class WorkspaceQueryRunnerService { const maximumRecordAffected = this.environmentService.get( 'MUTATION_MAXIMUM_AFFECTED_RECORDS', ); - const query = await this.workspaceQueryBuilderFactory.updateMany(args, { - ...options, - atMost: maximumRecordAffected, - }); - await this.workspaceQueryHookService.executePreQueryHooks( - userId, - workspaceId, - objectMetadataItem.nameSingular, - 'updateMany', - args, + const hookedArgs = + await this.workspaceQueryHookService.executePreQueryHooks( + authContext, + objectMetadataItem.nameSingular, + 'updateMany', + args, + ); + + const query = await this.workspaceQueryBuilderFactory.updateMany( + hookedArgs, + { + ...options, + atMost: maximumRecordAffected, + }, ); - const result = await this.execute(query, workspaceId); + const result = await this.execute(query, authContext.workspace.id); const parsedResults = ( await this.parseResult>( result, objectMetadataItem, 'update', - workspaceId, + authContext.workspace.id, ) )?.records; @@ -514,8 +517,8 @@ export class WorkspaceQueryRunnerService { this.eventEmitter.emit(`${objectMetadataItem.nameSingular}.updated`, { name: `${objectMetadataItem.nameSingular}.updated`, - workspaceId, - userId, + workspaceId: authContext.workspace.id, + userId: authContext.user?.id, recordId: existingRecord.id, objectMetadata: objectMetadataItem, properties: { @@ -536,34 +539,38 @@ export class WorkspaceQueryRunnerService { args: DeleteManyResolverArgs, options: WorkspaceQueryRunnerOptions, ): Promise { - const { workspaceId, userId, objectMetadataItem } = options; + const { authContext, objectMetadataItem } = options; assertMutationNotOnRemoteObject(objectMetadataItem); const maximumRecordAffected = this.environmentService.get( 'MUTATION_MAXIMUM_AFFECTED_RECORDS', ); - const query = await this.workspaceQueryBuilderFactory.deleteMany(args, { - ...options, - atMost: maximumRecordAffected, - }); - await this.workspaceQueryHookService.executePreQueryHooks( - userId, - workspaceId, - objectMetadataItem.nameSingular, - 'deleteMany', - args, + const hookedArgs = + await this.workspaceQueryHookService.executePreQueryHooks( + authContext, + objectMetadataItem.nameSingular, + 'deleteMany', + args, + ); + + const query = await this.workspaceQueryBuilderFactory.deleteMany( + hookedArgs, + { + ...options, + atMost: maximumRecordAffected, + }, ); - const result = await this.execute(query, workspaceId); + const result = await this.execute(query, authContext.workspace.id); const parsedResults = ( await this.parseResult>( result, objectMetadataItem, 'deleteFrom', - workspaceId, + authContext.workspace.id, ) )?.records; @@ -576,8 +583,8 @@ export class WorkspaceQueryRunnerService { parsedResults.forEach((record) => { this.eventEmitter.emit(`${objectMetadataItem.nameSingular}.deleted`, { name: `${objectMetadataItem.nameSingular}.deleted`, - workspaceId, - userId, + workspaceId: authContext.workspace.id, + userId: authContext.user?.id, recordId: record.id, objectMetadata: objectMetadataItem, properties: { @@ -593,18 +600,26 @@ export class WorkspaceQueryRunnerService { args: DeleteOneResolverArgs, options: WorkspaceQueryRunnerOptions, ): Promise { - const { workspaceId, userId, objectMetadataItem } = options; + const { authContext, objectMetadataItem } = options; const repository = await this.twentyORMGlobalManager.getRepositoryForWorkspace( - workspaceId, + authContext.workspace.id, objectMetadataItem.nameSingular, ); assertMutationNotOnRemoteObject(objectMetadataItem); assertIsValidUuid(args.id); + const hookedArgs = + await this.workspaceQueryHookService.executePreQueryHooks( + authContext, + objectMetadataItem.nameSingular, + 'deleteOne', + args, + ); + const query = await this.workspaceQueryBuilderFactory.deleteOne( - args, + hookedArgs, options, ); @@ -612,22 +627,14 @@ export class WorkspaceQueryRunnerService { where: { id: args.id }, }); - await this.workspaceQueryHookService.executePreQueryHooks( - userId, - workspaceId, - objectMetadataItem.nameSingular, - 'deleteOne', - args, - ); - - const result = await this.execute(query, workspaceId); + const result = await this.execute(query, authContext.workspace.id); const parsedResults = ( await this.parseResult>( result, objectMetadataItem, 'deleteFrom', - workspaceId, + authContext.workspace.id, ) )?.records; @@ -639,8 +646,8 @@ export class WorkspaceQueryRunnerService { this.eventEmitter.emit(`${objectMetadataItem.nameSingular}.deleted`, { name: `${objectMetadataItem.nameSingular}.deleted`, - workspaceId, - userId, + workspaceId: authContext.workspace.id, + userId: authContext.user?.id, recordId: args.id, objectMetadata: objectMetadataItem, properties: { @@ -808,7 +815,7 @@ export class WorkspaceQueryRunnerService { CallWebhookJobsJob.name, { record: jobData, - workspaceId: options.workspaceId, + workspaceId: options.authContext.workspace.id, operation, objectMetadataItem: options.objectMetadataItem, }, @@ -816,65 +823,4 @@ export class WorkspaceQueryRunnerService { ); }); } - - async handleDeleteWorkspaceMember( - id: string, - workspaceId: string, - objectMetadataItem: ObjectMetadataInterface, - ) { - if (objectMetadataItem.nameSingular !== 'workspaceMember') { - return; - } - - const workspaceMemberResult = await this.executeAndParse( - ` - query { - workspaceMemberCollection(filter: {id: {eq: "${id}"}}) { - edges { - node { - userId: userId - } - } - } - } - `, - objectMetadataItem, - '', - workspaceId, - ); - - return workspaceMemberResult.edges?.[0]?.node; - } - - async handleDeleteBlocklistItem( - id: string, - workspaceId: string, - objectMetadataItem: ObjectMetadataInterface, - ) { - if (objectMetadataItem.standardId !== STANDARD_OBJECT_IDS.blocklist) { - return; - } - - const blocklistItemResult = await this.executeAndParse( - ` - query { - blocklistCollection(filter: {id: {eq: "${id}"}}) { - edges { - node { - handle - workspaceMember { - id - } - } - } - } - } - `, - objectMetadataItem, - '', - workspaceId, - ); - - return blocklistItemResult.edges?.[0]?.node; - } } diff --git a/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/create-many-resolver.factory.ts b/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/create-many-resolver.factory.ts index d74d4c6b3..6b40eb2db 100644 --- a/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/create-many-resolver.factory.ts +++ b/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/create-many-resolver.factory.ts @@ -25,12 +25,11 @@ export class CreateManyResolverFactory ): Resolver { const internalContext = context; - return async (_source, args, context, info) => { + return (_source, args, context, info) => { try { - return await this.workspaceQueryRunnerService.createMany(args, { + return this.workspaceQueryRunnerService.createMany(args, { + authContext: internalContext.authContext, objectMetadataItem: internalContext.objectMetadataItem, - workspaceId: internalContext.workspaceId, - userId: internalContext.userId, info, fieldMetadataCollection: internalContext.fieldMetadataCollection, objectMetadataCollection: internalContext.objectMetadataCollection, diff --git a/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/create-one-resolver.factory.ts b/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/create-one-resolver.factory.ts index a86787e39..5ae1a939e 100644 --- a/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/create-one-resolver.factory.ts +++ b/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/create-one-resolver.factory.ts @@ -25,12 +25,11 @@ export class CreateOneResolverFactory ): Resolver { const internalContext = context; - return async (_source, args, context, info) => { + return (_source, args, context, info) => { try { - return await this.workspaceQueryRunnerService.createOne(args, { + return this.workspaceQueryRunnerService.createOne(args, { + authContext: internalContext.authContext, objectMetadataItem: internalContext.objectMetadataItem, - workspaceId: internalContext.workspaceId, - userId: internalContext.userId, info, fieldMetadataCollection: internalContext.fieldMetadataCollection, objectMetadataCollection: internalContext.objectMetadataCollection, diff --git a/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/delete-many-resolver.factory.ts b/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/delete-many-resolver.factory.ts index f5d5a0b9f..ba415d92c 100644 --- a/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/delete-many-resolver.factory.ts +++ b/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/delete-many-resolver.factory.ts @@ -25,12 +25,11 @@ export class DeleteManyResolverFactory ): Resolver { const internalContext = context; - return async (_source, args, context, info) => { + return (_source, args, context, info) => { try { - return await this.workspaceQueryRunnerService.deleteMany(args, { + return this.workspaceQueryRunnerService.deleteMany(args, { + authContext: internalContext.authContext, objectMetadataItem: internalContext.objectMetadataItem, - workspaceId: internalContext.workspaceId, - userId: internalContext.userId, info, fieldMetadataCollection: internalContext.fieldMetadataCollection, objectMetadataCollection: internalContext.objectMetadataCollection, diff --git a/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/delete-one-resolver.factory.ts b/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/delete-one-resolver.factory.ts index 0dc7e20f3..f9bde1bf3 100644 --- a/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/delete-one-resolver.factory.ts +++ b/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/delete-one-resolver.factory.ts @@ -25,12 +25,11 @@ export class DeleteOneResolverFactory ): Resolver { const internalContext = context; - return async (_source, args, context, info) => { + return (_source, args, context, info) => { try { - return await this.workspaceQueryRunnerService.deleteOne(args, { + return this.workspaceQueryRunnerService.deleteOne(args, { + authContext: internalContext.authContext, objectMetadataItem: internalContext.objectMetadataItem, - workspaceId: internalContext.workspaceId, - userId: internalContext.userId, info, fieldMetadataCollection: internalContext.fieldMetadataCollection, objectMetadataCollection: internalContext.objectMetadataCollection, diff --git a/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/execute-quick-action-on-one-resolver.factory.ts b/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/execute-quick-action-on-one-resolver.factory.ts index 1b80ec4e8..278dea7f5 100644 --- a/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/execute-quick-action-on-one-resolver.factory.ts +++ b/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/execute-quick-action-on-one-resolver.factory.ts @@ -31,12 +31,11 @@ export class ExecuteQuickActionOnOneResolverFactory ): Resolver { const internalContext = context; - return async (_source, args, context, info) => { + return (_source, args, context, info) => { try { - return await this.executeQuickActionOnOne(args, { + return this.executeQuickActionOnOne(args, { + authContext: internalContext.authContext, objectMetadataItem: internalContext.objectMetadataItem, - userId: internalContext.userId, - workspaceId: internalContext.workspaceId, info, fieldMetadataCollection: internalContext.fieldMetadataCollection, objectMetadataCollection: internalContext.objectMetadataCollection, @@ -55,7 +54,7 @@ export class ExecuteQuickActionOnOneResolverFactory case 'company': { await this.quickActionsService.executeQuickActionOnCompany( args.id, - options.workspaceId, + options.authContext.workspace.id, options.objectMetadataItem, ); break; @@ -63,7 +62,7 @@ export class ExecuteQuickActionOnOneResolverFactory case 'person': { await this.quickActionsService.createCompanyFromPerson( args.id, - options.workspaceId, + options.authContext.workspace.id, options.objectMetadataCollection, ); break; diff --git a/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/find-duplicates-resolver.factory.ts b/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/find-duplicates-resolver.factory.ts index e97626799..bba60e721 100644 --- a/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/find-duplicates-resolver.factory.ts +++ b/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/find-duplicates-resolver.factory.ts @@ -25,12 +25,11 @@ export class FindDuplicatesResolverFactory ): Resolver { const internalContext = context; - return async (_source, args, context, info) => { + return (_source, args, context, info) => { try { - return await this.workspaceQueryRunnerService.findDuplicates(args, { + return this.workspaceQueryRunnerService.findDuplicates(args, { + authContext: internalContext.authContext, objectMetadataItem: internalContext.objectMetadataItem, - workspaceId: internalContext.workspaceId, - userId: internalContext.userId, info, fieldMetadataCollection: internalContext.fieldMetadataCollection, objectMetadataCollection: internalContext.objectMetadataCollection, diff --git a/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/find-many-resolver.factory.ts b/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/find-many-resolver.factory.ts index d6322aa3b..24ee24f74 100644 --- a/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/find-many-resolver.factory.ts +++ b/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/find-many-resolver.factory.ts @@ -25,12 +25,11 @@ export class FindManyResolverFactory ): Resolver { const internalContext = context; - return async (_source, args, context, info) => { + return (_source, args, context, info) => { try { - return await this.workspaceQueryRunnerService.findMany(args, { + return this.workspaceQueryRunnerService.findMany(args, { + authContext: internalContext.authContext, objectMetadataItem: internalContext.objectMetadataItem, - workspaceId: internalContext.workspaceId, - userId: internalContext.userId, info, fieldMetadataCollection: internalContext.fieldMetadataCollection, objectMetadataCollection: internalContext.objectMetadataCollection, diff --git a/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/find-one-resolver.factory.ts b/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/find-one-resolver.factory.ts index fc1fd3d8c..47a51e4ad 100644 --- a/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/find-one-resolver.factory.ts +++ b/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/find-one-resolver.factory.ts @@ -25,12 +25,11 @@ export class FindOneResolverFactory ): Resolver { const internalContext = context; - return async (_source, args, context, info) => { + return (_source, args, context, info) => { try { - return await this.workspaceQueryRunnerService.findOne(args, { + return this.workspaceQueryRunnerService.findOne(args, { + authContext: internalContext.authContext, objectMetadataItem: internalContext.objectMetadataItem, - workspaceId: internalContext.workspaceId, - userId: internalContext.userId, info, fieldMetadataCollection: internalContext.fieldMetadataCollection, objectMetadataCollection: internalContext.objectMetadataCollection, diff --git a/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/update-many-resolver.factory.ts b/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/update-many-resolver.factory.ts index 1f0be848e..888764ec2 100644 --- a/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/update-many-resolver.factory.ts +++ b/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/update-many-resolver.factory.ts @@ -25,12 +25,11 @@ export class UpdateManyResolverFactory ): Resolver { const internalContext = context; - return async (_source, args, context, info) => { + return (_source, args, context, info) => { try { - return await this.workspaceQueryRunnerService.updateMany(args, { + return this.workspaceQueryRunnerService.updateMany(args, { + authContext: internalContext.authContext, objectMetadataItem: internalContext.objectMetadataItem, - workspaceId: internalContext.workspaceId, - userId: internalContext.userId, info, fieldMetadataCollection: internalContext.fieldMetadataCollection, objectMetadataCollection: internalContext.objectMetadataCollection, diff --git a/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/update-one-resolver.factory.ts b/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/update-one-resolver.factory.ts index 92b2a81d5..2e802c3ff 100644 --- a/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/update-one-resolver.factory.ts +++ b/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/factories/update-one-resolver.factory.ts @@ -25,12 +25,11 @@ export class UpdateOneResolverFactory ): Resolver { const internalContext = context; - return async (_source, args, context, info) => { + return (_source, args, context, info) => { try { - return await this.workspaceQueryRunnerService.updateOne(args, { + return this.workspaceQueryRunnerService.updateOne(args, { + authContext: internalContext.authContext, objectMetadataItem: internalContext.objectMetadataItem, - workspaceId: internalContext.workspaceId, - userId: internalContext.userId, info, fieldMetadataCollection: internalContext.fieldMetadataCollection, objectMetadataCollection: internalContext.objectMetadataCollection, diff --git a/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/workspace-resolver.factory.ts b/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/workspace-resolver.factory.ts index a0071bea7..87e94673e 100644 --- a/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/workspace-resolver.factory.ts +++ b/packages/twenty-server/src/engine/api/graphql/workspace-resolver-builder/workspace-resolver.factory.ts @@ -8,6 +8,7 @@ import { getResolverName } from 'src/engine/utils/get-resolver-name.util'; import { UpdateManyResolverFactory } from 'src/engine/api/graphql/workspace-resolver-builder/factories/update-many-resolver.factory'; import { DeleteManyResolverFactory } from 'src/engine/api/graphql/workspace-resolver-builder/factories/delete-many-resolver.factory'; import { ExecuteQuickActionOnOneResolverFactory } from 'src/engine/api/graphql/workspace-resolver-builder/factories/execute-quick-action-on-one-resolver.factory'; +import { AuthContext } from 'src/engine/core-modules/auth/types/auth-context.type'; import { FindDuplicatesResolverFactory } from './factories/find-duplicates-resolver.factory'; import { FindManyResolverFactory } from './factories/find-many-resolver.factory'; @@ -40,8 +41,7 @@ export class WorkspaceResolverFactory { ) {} async create( - workspaceId: string, - userId: string | undefined, + authContext: AuthContext, objectMetadataCollection: ObjectMetadataInterface[], workspaceResolverBuilderMethods: WorkspaceResolverBuilderMethods, ): Promise { @@ -82,8 +82,7 @@ export class WorkspaceResolverFactory { } resolvers.Query[resolverName] = resolverFactory.create({ - workspaceId, - userId, + authContext, objectMetadataItem: objectMetadata, fieldMetadataCollection: objectMetadata.fields, objectMetadataCollection: objectMetadataCollection, @@ -106,8 +105,7 @@ export class WorkspaceResolverFactory { } resolvers.Mutation[resolverName] = resolverFactory.create({ - workspaceId, - userId, + authContext, objectMetadataItem: objectMetadata, fieldMetadataCollection: objectMetadata.fields, objectMetadataCollection: objectMetadataCollection, diff --git a/packages/twenty-server/src/engine/api/graphql/workspace-schema-builder/factories/composite-enum-type-definition.factory.ts b/packages/twenty-server/src/engine/api/graphql/workspace-schema-builder/factories/composite-enum-type-definition.factory.ts new file mode 100644 index 000000000..a400f2905 --- /dev/null +++ b/packages/twenty-server/src/engine/api/graphql/workspace-schema-builder/factories/composite-enum-type-definition.factory.ts @@ -0,0 +1,99 @@ +import { Injectable, Logger } from '@nestjs/common'; + +import { GraphQLEnumType } from 'graphql'; + +import { WorkspaceBuildSchemaOptions } from 'src/engine/api/graphql/workspace-schema-builder/interfaces/workspace-build-schema-optionts.interface'; +import { + CompositeProperty, + CompositeType, +} from 'src/engine/metadata-modules/field-metadata/interfaces/composite-type.interface'; + +import { pascalCase } from 'src/utils/pascal-case'; +import { + FieldMetadataComplexOption, + FieldMetadataDefaultOption, +} from 'src/engine/metadata-modules/field-metadata/dtos/options.input'; +import { isEnumFieldMetadataType } from 'src/engine/metadata-modules/field-metadata/utils/is-enum-field-metadata-type.util'; +import { EnumTypeDefinitionFactory } from 'src/engine/api/graphql/workspace-schema-builder/factories/enum-type-definition.factory'; +import { FieldMetadataType } from 'src/engine/metadata-modules/field-metadata/field-metadata.entity'; +import { computeCompositePropertyTarget } from 'src/engine/api/graphql/workspace-schema-builder/utils/compute-composite-property-target.util'; + +export interface EnumTypeDefinition { + target: string; + type: GraphQLEnumType; +} + +@Injectable() +export class CompositeEnumTypeDefinitionFactory { + private readonly logger = new Logger(EnumTypeDefinitionFactory.name); + + public create( + compositeType: CompositeType, + options: WorkspaceBuildSchemaOptions, + ): EnumTypeDefinition[] { + const enumTypeDefinitions: EnumTypeDefinition[] = []; + + for (const compositeProperty of compositeType.properties) { + if (!isEnumFieldMetadataType(compositeProperty.type)) { + continue; + } + + const target = computeCompositePropertyTarget( + compositeType.type, + compositeProperty, + ); + + enumTypeDefinitions.push({ + target, + type: this.generateEnum(compositeType.type, compositeProperty, options), + }); + } + + return enumTypeDefinitions; + } + + private generateEnum( + compositeType: FieldMetadataType, + compositeProperty: CompositeProperty, + options: WorkspaceBuildSchemaOptions, + ): GraphQLEnumType { + // FixMe: It's a hack until Typescript get fixed on union types for reduce function + // https://github.com/microsoft/TypeScript/issues/36390 + const enumOptions = compositeProperty.options as Array< + FieldMetadataDefaultOption | FieldMetadataComplexOption + >; + + if (!enumOptions) { + this.logger.error( + `Enum options are not defined for ${compositeProperty.name}`, + { + compositeProperty, + options, + }, + ); + + throw new Error( + `Enum options are not defined for ${compositeProperty.name}`, + ); + } + + return new GraphQLEnumType({ + name: `${pascalCase(compositeType.toString())}${pascalCase( + compositeProperty.name, + )}Enum`, + description: compositeProperty.description, + values: enumOptions.reduce( + (acc, enumOption) => { + // Key must match this regex: /^[_A-Za-z][_0-9A-Za-z]+$/ + acc[enumOption.value] = { + value: enumOption.value, + description: enumOption.label, + }; + + return acc; + }, + {} as { [key: string]: { value: string; description: string } }, + ), + }); + } +} diff --git a/packages/twenty-server/src/engine/api/graphql/workspace-schema-builder/factories/composite-input-type-definition.factory.ts b/packages/twenty-server/src/engine/api/graphql/workspace-schema-builder/factories/composite-input-type-definition.factory.ts index 0a89d8b61..39ed36c2a 100644 --- a/packages/twenty-server/src/engine/api/graphql/workspace-schema-builder/factories/composite-input-type-definition.factory.ts +++ b/packages/twenty-server/src/engine/api/graphql/workspace-schema-builder/factories/composite-input-type-definition.factory.ts @@ -12,9 +12,15 @@ import { InputTypeDefinition, InputTypeDefinitionKind, } from 'src/engine/api/graphql/workspace-schema-builder/factories/input-type-definition.factory'; +import { computeCompositePropertyTarget } from 'src/engine/api/graphql/workspace-schema-builder/utils/compute-composite-property-target.util'; import { InputTypeFactory } from './input-type.factory'; +const hiddenAllowListKind = [ + InputTypeDefinitionKind.Create, + InputTypeDefinitionKind.Update, +]; + @Injectable() export class CompositeInputTypeDefinitionFactory { private readonly logger = new Logger( @@ -58,12 +64,19 @@ export class CompositeInputTypeDefinitionFactory { } // Skip hidden fields - if (property.hidden === true || property.hidden === 'input') { + if ( + property.hidden === true || + (property.hidden === 'input' && hiddenAllowListKind.includes(kind)) + ) { continue; } + const target = computeCompositePropertyTarget( + compositeType.type, + property, + ); const type = this.inputTypeFactory.create( - property.name, + target, property.type, kind, options, diff --git a/packages/twenty-server/src/engine/api/graphql/workspace-schema-builder/factories/composite-object-type-definition.factory.ts b/packages/twenty-server/src/engine/api/graphql/workspace-schema-builder/factories/composite-object-type-definition.factory.ts index f7f6cecc8..1a3934505 100644 --- a/packages/twenty-server/src/engine/api/graphql/workspace-schema-builder/factories/composite-object-type-definition.factory.ts +++ b/packages/twenty-server/src/engine/api/graphql/workspace-schema-builder/factories/composite-object-type-definition.factory.ts @@ -13,6 +13,7 @@ import { ObjectTypeDefinitionKind, } from 'src/engine/api/graphql/workspace-schema-builder/factories/object-type-definition.factory'; import { isRelationFieldMetadataType } from 'src/engine/utils/is-relation-field-metadata-type.util'; +import { computeCompositePropertyTarget } from 'src/engine/api/graphql/workspace-schema-builder/utils/compute-composite-property-target.util'; @Injectable() export class CompositeObjectTypeDefinitionFactory { @@ -62,8 +63,12 @@ export class CompositeObjectTypeDefinitionFactory { continue; } + const target = computeCompositePropertyTarget( + compositeType.type, + property, + ); const type = this.outputTypeFactory.create( - property.name, + target, property.type, kind, options, diff --git a/packages/twenty-server/src/engine/api/graphql/workspace-schema-builder/factories/factories.ts b/packages/twenty-server/src/engine/api/graphql/workspace-schema-builder/factories/factories.ts index eed7d7d43..b28c49709 100644 --- a/packages/twenty-server/src/engine/api/graphql/workspace-schema-builder/factories/factories.ts +++ b/packages/twenty-server/src/engine/api/graphql/workspace-schema-builder/factories/factories.ts @@ -1,6 +1,7 @@ import { EnumTypeDefinitionFactory } from 'src/engine/api/graphql/workspace-schema-builder/factories/enum-type-definition.factory'; import { CompositeObjectTypeDefinitionFactory } from 'src/engine/api/graphql/workspace-schema-builder/factories/composite-object-type-definition.factory'; import { CompositeInputTypeDefinitionFactory } from 'src/engine/api/graphql/workspace-schema-builder/factories/composite-input-type-definition.factory'; +import { CompositeEnumTypeDefinitionFactory } from 'src/engine/api/graphql/workspace-schema-builder/factories/composite-enum-type-definition.factory'; import { ArgsFactory } from './args.factory'; import { InputTypeFactory } from './input-type.factory'; @@ -27,6 +28,7 @@ export const workspaceSchemaBuilderFactories = [ ObjectTypeDefinitionFactory, CompositeObjectTypeDefinitionFactory, EnumTypeDefinitionFactory, + CompositeEnumTypeDefinitionFactory, RelationTypeFactory, ExtendObjectTypeDefinitionFactory, ConnectionTypeFactory, diff --git a/packages/twenty-server/src/engine/api/graphql/workspace-schema-builder/interfaces/workspace-schema-builder-context.interface.ts b/packages/twenty-server/src/engine/api/graphql/workspace-schema-builder/interfaces/workspace-schema-builder-context.interface.ts index 1cbf69aef..f5a6aec8b 100644 --- a/packages/twenty-server/src/engine/api/graphql/workspace-schema-builder/interfaces/workspace-schema-builder-context.interface.ts +++ b/packages/twenty-server/src/engine/api/graphql/workspace-schema-builder/interfaces/workspace-schema-builder-context.interface.ts @@ -1,9 +1,10 @@ import { FieldMetadataInterface } from 'src/engine/metadata-modules/field-metadata/interfaces/field-metadata.interface'; import { ObjectMetadataInterface } from 'src/engine/metadata-modules/field-metadata/interfaces/object-metadata.interface'; +import { AuthContext } from 'src/engine/core-modules/auth/types/auth-context.type'; + export interface WorkspaceSchemaBuilderContext { - workspaceId: string; - userId: string | undefined; + authContext: AuthContext; objectMetadataItem: ObjectMetadataInterface; fieldMetadataCollection: FieldMetadataInterface[]; objectMetadataCollection: ObjectMetadataInterface[]; diff --git a/packages/twenty-server/src/engine/api/graphql/workspace-schema-builder/type-definitions.generator.ts b/packages/twenty-server/src/engine/api/graphql/workspace-schema-builder/type-definitions.generator.ts index 9b91550fa..142db1f7a 100644 --- a/packages/twenty-server/src/engine/api/graphql/workspace-schema-builder/type-definitions.generator.ts +++ b/packages/twenty-server/src/engine/api/graphql/workspace-schema-builder/type-definitions.generator.ts @@ -7,6 +7,7 @@ import { EnumTypeDefinitionFactory } from 'src/engine/api/graphql/workspace-sche import { compositeTypeDefintions } from 'src/engine/metadata-modules/field-metadata/composite-types'; import { CompositeObjectTypeDefinitionFactory } from 'src/engine/api/graphql/workspace-schema-builder/factories/composite-object-type-definition.factory'; import { CompositeInputTypeDefinitionFactory } from 'src/engine/api/graphql/workspace-schema-builder/factories/composite-input-type-definition.factory'; +import { CompositeEnumTypeDefinitionFactory } from 'src/engine/api/graphql/workspace-schema-builder/factories/composite-enum-type-definition.factory'; import { TypeDefinitionsStorage } from './storages/type-definitions.storage'; import { @@ -32,6 +33,7 @@ export class TypeDefinitionsGenerator { private readonly objectTypeDefinitionFactory: ObjectTypeDefinitionFactory, private readonly compositeObjectTypeDefinitionFactory: CompositeObjectTypeDefinitionFactory, private readonly enumTypeDefinitionFactory: EnumTypeDefinitionFactory, + private readonly compositeEnumTypeDefinitionFactory: CompositeEnumTypeDefinitionFactory, private readonly inputTypeDefinitionFactory: InputTypeDefinitionFactory, private readonly compositeInputTypeDefinitionFactory: CompositeInputTypeDefinitionFactory, private readonly edgeTypeDefinitionFactory: EdgeTypeDefinitionFactory, @@ -62,10 +64,24 @@ export class TypeDefinitionsGenerator { ); // Generate composite types first because they can be used in metadata objects + this.generateCompositeEnumTypeDefs(compositeTypeCollection, options); this.generateCompositeObjectTypeDefs(compositeTypeCollection, options); this.generateCompositeInputTypeDefs(compositeTypeCollection, options); } + private generateCompositeEnumTypeDefs( + compositeTypes: CompositeType[], + options: WorkspaceBuildSchemaOptions, + ) { + const enumTypeDefs = compositeTypes + .map((compositeType) => + this.compositeEnumTypeDefinitionFactory.create(compositeType, options), + ) + .flat(); + + this.typeDefinitionsStorage.addEnumTypes(enumTypeDefs); + } + private generateCompositeObjectTypeDefs( compositeTypes: CompositeType[], options: WorkspaceBuildSchemaOptions, diff --git a/packages/twenty-server/src/engine/api/graphql/workspace-schema-builder/utils/compute-composite-property-target.util.ts b/packages/twenty-server/src/engine/api/graphql/workspace-schema-builder/utils/compute-composite-property-target.util.ts new file mode 100644 index 000000000..607790ef0 --- /dev/null +++ b/packages/twenty-server/src/engine/api/graphql/workspace-schema-builder/utils/compute-composite-property-target.util.ts @@ -0,0 +1,10 @@ +import { CompositeProperty } from 'src/engine/metadata-modules/field-metadata/interfaces/composite-type.interface'; + +import { FieldMetadataType } from 'src/engine/metadata-modules/field-metadata/field-metadata.entity'; + +export const computeCompositePropertyTarget = ( + type: FieldMetadataType, + compositeProperty: CompositeProperty, +): string => { + return `${type.toString()}->${compositeProperty.name}`; +}; diff --git a/packages/twenty-server/src/engine/api/graphql/workspace-schema.factory.ts b/packages/twenty-server/src/engine/api/graphql/workspace-schema.factory.ts index 531baba6a..f06c94c20 100644 --- a/packages/twenty-server/src/engine/api/graphql/workspace-schema.factory.ts +++ b/packages/twenty-server/src/engine/api/graphql/workspace-schema.factory.ts @@ -11,6 +11,7 @@ import { ScalarsExplorerService } from 'src/engine/api/graphql/services/scalars- import { WorkspaceGraphQLSchemaFactory } from 'src/engine/api/graphql/workspace-schema-builder/workspace-graphql-schema.factory'; import { workspaceResolverBuilderMethodNames } from 'src/engine/api/graphql/workspace-resolver-builder/factories/factories'; import { WorkspaceResolverFactory } from 'src/engine/api/graphql/workspace-resolver-builder/workspace-resolver.factory'; +import { AuthContext } from 'src/engine/core-modules/auth/types/auth-context.type'; @Injectable() export class WorkspaceSchemaFactory { @@ -23,17 +24,14 @@ export class WorkspaceSchemaFactory { private readonly workspaceCacheStorageService: WorkspaceCacheStorageService, ) {} - async createGraphQLSchema( - workspaceId: string | undefined, - userId: string | undefined, - ): Promise { - if (!workspaceId) { + async createGraphQLSchema(authContext: AuthContext): Promise { + if (!authContext.workspace?.id) { return new GraphQLSchema({}); } const dataSourcesMetadata = await this.dataSourceService.getDataSourcesMetadataFromWorkspaceId( - workspaceId, + authContext.workspace.id, ); // Can'f find any data sources for this workspace @@ -42,30 +40,37 @@ export class WorkspaceSchemaFactory { } // Validate cache version - await this.workspaceCacheStorageService.validateCacheVersion(workspaceId); + await this.workspaceCacheStorageService.validateCacheVersion( + authContext.workspace.id, + ); // Get object metadata from cache let objectMetadataCollection = await this.workspaceCacheStorageService.getObjectMetadataCollection( - workspaceId, + authContext.workspace.id, ); // If object metadata is not cached, get it from the database if (!objectMetadataCollection) { objectMetadataCollection = - await this.objectMetadataService.findManyWithinWorkspace(workspaceId); + await this.objectMetadataService.findManyWithinWorkspace( + authContext.workspace.id, + ); await this.workspaceCacheStorageService.setObjectMetadataCollection( - workspaceId, + authContext.workspace.id, objectMetadataCollection, ); } // Get typeDefs from cache - let typeDefs = - await this.workspaceCacheStorageService.getTypeDefs(workspaceId); + let typeDefs = await this.workspaceCacheStorageService.getTypeDefs( + authContext.workspace.id, + ); let usedScalarNames = - await this.workspaceCacheStorageService.getUsedScalarNames(workspaceId); + await this.workspaceCacheStorageService.getUsedScalarNames( + authContext.workspace.id, + ); // If typeDefs are not cached, generate them if (!typeDefs || !usedScalarNames) { @@ -80,18 +85,17 @@ export class WorkspaceSchemaFactory { typeDefs = printSchema(autoGeneratedSchema); await this.workspaceCacheStorageService.setTypeDefs( - workspaceId, + authContext.workspace.id, typeDefs, ); await this.workspaceCacheStorageService.setUsedScalarNames( - workspaceId, + authContext.workspace.id, usedScalarNames, ); } const autoGeneratedResolvers = await this.workspaceResolverFactory.create( - workspaceId, - userId, + authContext, objectMetadataCollection, workspaceResolverBuilderMethodNames, ); diff --git a/packages/twenty-server/src/engine/api/rest/core/query-builder/utils/map-field-metadata-to-graphql-query.utils.ts b/packages/twenty-server/src/engine/api/rest/core/query-builder/utils/map-field-metadata-to-graphql-query.utils.ts index 1f337f499..b82e5b05c 100644 --- a/packages/twenty-server/src/engine/api/rest/core/query-builder/utils/map-field-metadata-to-graphql-query.utils.ts +++ b/packages/twenty-server/src/engine/api/rest/core/query-builder/utils/map-field-metadata-to-graphql-query.utils.ts @@ -135,5 +135,14 @@ export const mapFieldMetadataToGraphqlQuery = ( addressLng } `; + } else if (fieldType === FieldMetadataType.ACTOR) { + return ` + ${field.name} + { + source + workspaceMemberId + name + } + `; } }; diff --git a/packages/twenty-server/src/engine/core-modules/auth/services/auth.service.ts b/packages/twenty-server/src/engine/core-modules/auth/services/auth.service.ts index 391e1c7da..95a0b597b 100644 --- a/packages/twenty-server/src/engine/core-modules/auth/services/auth.service.ts +++ b/packages/twenty-server/src/engine/core-modules/auth/services/auth.service.ts @@ -39,6 +39,7 @@ import { AppToken, AppTokenType, } from 'src/engine/core-modules/app-token/app-token.entity'; +import { WorkspaceMember } from 'src/engine/core-modules/user/dtos/workspace-member.dto'; import { TokenService } from './token.service'; @@ -131,7 +132,7 @@ export class AuthService { const workspaceMember = await this.userService.loadWorkspaceMember(user); if (workspaceMember) { - user.workspaceMember = workspaceMember; + user.workspaceMember = workspaceMember as WorkspaceMember; } const accessToken = await this.tokenService.generateAccessToken(user.id); diff --git a/packages/twenty-server/src/engine/core-modules/auth/services/token.service.ts b/packages/twenty-server/src/engine/core-modules/auth/services/token.service.ts index 85bfcebc7..0216f9686 100644 --- a/packages/twenty-server/src/engine/core-modules/auth/services/token.service.ts +++ b/packages/twenty-server/src/engine/core-modules/auth/services/token.service.ts @@ -42,7 +42,7 @@ import { ValidatePasswordResetToken } from 'src/engine/core-modules/auth/dto/val import { EmailService } from 'src/engine/integrations/email/email.service'; import { InvalidatePassword } from 'src/engine/core-modules/auth/dto/invalidate-password.entity'; import { EmailPasswordResetLink } from 'src/engine/core-modules/auth/dto/email-password-reset-link.entity'; -import { JwtData } from 'src/engine/core-modules/auth/types/jwt-data.type'; +import { AuthContext } from 'src/engine/core-modules/auth/types/auth-context.type'; import { Workspace } from 'src/engine/core-modules/workspace/workspace.entity'; import { ExchangeAuthCodeInput } from 'src/engine/core-modules/auth/dto/exchange-auth-code.input'; import { ExchangeAuthCode } from 'src/engine/core-modules/auth/dto/exchange-auth-code.entity'; @@ -208,7 +208,7 @@ export class TokenService { return !!token; } - async validateToken(request: Request): Promise { + async validateToken(request: Request): Promise { const token = ExtractJwt.fromAuthHeaderAsBearerToken()(request); if (!token) { @@ -219,11 +219,11 @@ export class TokenService { this.environmentService.get('ACCESS_TOKEN_SECRET'), ); - const { user, workspace } = await this.jwtStrategy.validate( + const { user, apiKey, workspace } = await this.jwtStrategy.validate( decoded as JwtPayload, ); - return { user, workspace }; + return { user, apiKey, workspace }; } async verifyLoginToken(loginToken: string): Promise { diff --git a/packages/twenty-server/src/engine/core-modules/auth/strategies/jwt.auth.strategy.ts b/packages/twenty-server/src/engine/core-modules/auth/strategies/jwt.auth.strategy.ts index 5e0d531fc..392c6f44c 100644 --- a/packages/twenty-server/src/engine/core-modules/auth/strategies/jwt.auth.strategy.ts +++ b/packages/twenty-server/src/engine/core-modules/auth/strategies/jwt.auth.strategy.ts @@ -15,9 +15,10 @@ import { Workspace } from 'src/engine/core-modules/workspace/workspace.entity'; import { EnvironmentService } from 'src/engine/integrations/environment/environment.service'; import { DataSourceService } from 'src/engine/metadata-modules/data-source/data-source.service'; import { assert } from 'src/utils/assert'; +import { AuthContext } from 'src/engine/core-modules/auth/types/auth-context.type'; +import { ApiKeyWorkspaceEntity } from 'src/modules/api-key/standard-objects/api-key.workspace-entity'; export type JwtPayload = { sub: string; workspaceId: string; jti?: string }; -export type PassportUser = { user?: User; workspace: Workspace }; @Injectable() export class JwtAuthStrategy extends PassportStrategy(Strategy, 'jwt') { @@ -37,15 +38,24 @@ export class JwtAuthStrategy extends PassportStrategy(Strategy, 'jwt') { }); } - async validate(payload: JwtPayload): Promise { + async validate(payload: JwtPayload): Promise { const workspace = await this.workspaceRepository.findOneBy({ id: payload.workspaceId ?? payload.sub, }); + let user: User | null = null; + let apiKey: ApiKeyWorkspaceEntity | null = null; if (!workspace) { throw new UnauthorizedException(); } if (payload.jti) { + // TODO: Check why it's not working + // const apiKeyRepository = + // await this.twentyORMGlobalManager.getRepositoryForWorkspace( + // workspace.id, + // 'apiKey', + // ); + const dataSourceMetadata = await this.dataSourceService.getLastDataSourceMetadataFromWorkspaceIdOrFail( workspace.id, @@ -54,20 +64,20 @@ export class JwtAuthStrategy extends PassportStrategy(Strategy, 'jwt') { const workspaceDataSource = await this.typeORMService.connectToDataSource(dataSourceMetadata); - const apiKey = await workspaceDataSource?.query( + const res = await workspaceDataSource?.query( `SELECT * FROM ${dataSourceMetadata.schema}."apiKey" WHERE id = $1`, [payload.jti], ); + apiKey = res?.[0]; + assert( - apiKey.length === 1 && !apiKey?.[0].revokedAt, + apiKey && !apiKey.revokedAt, 'This API Key is revoked', ForbiddenException, ); } - let user; - if (payload.workspaceId) { user = await this.userRepository.findOne({ where: { id: payload.sub }, @@ -78,6 +88,6 @@ export class JwtAuthStrategy extends PassportStrategy(Strategy, 'jwt') { } } - return { user, workspace }; + return { user, apiKey, workspace }; } } diff --git a/packages/twenty-server/src/engine/core-modules/auth/types/auth-context.type.ts b/packages/twenty-server/src/engine/core-modules/auth/types/auth-context.type.ts new file mode 100644 index 000000000..cf8faca18 --- /dev/null +++ b/packages/twenty-server/src/engine/core-modules/auth/types/auth-context.type.ts @@ -0,0 +1,9 @@ +import { User } from 'src/engine/core-modules/user/user.entity'; +import { Workspace } from 'src/engine/core-modules/workspace/workspace.entity'; +import { ApiKeyWorkspaceEntity } from 'src/modules/api-key/standard-objects/api-key.workspace-entity'; + +export type AuthContext = { + user?: User | null | undefined; + apiKey?: ApiKeyWorkspaceEntity | null | undefined; + workspace: Workspace; +}; diff --git a/packages/twenty-server/src/engine/core-modules/auth/types/jwt-data.type.ts b/packages/twenty-server/src/engine/core-modules/auth/types/jwt-data.type.ts deleted file mode 100644 index 3c24db8de..000000000 --- a/packages/twenty-server/src/engine/core-modules/auth/types/jwt-data.type.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { User } from 'src/engine/core-modules/user/user.entity'; -import { Workspace } from 'src/engine/core-modules/workspace/workspace.entity'; - -export type JwtData = { - user?: User | undefined; - workspace: Workspace; -}; diff --git a/packages/twenty-server/src/engine/core-modules/open-api/utils/__tests__/components.utils.spec.ts b/packages/twenty-server/src/engine/core-modules/open-api/utils/__tests__/components.utils.spec.ts index 97a8b79e3..a99a07ef3 100644 --- a/packages/twenty-server/src/engine/core-modules/open-api/utils/__tests__/components.utils.spec.ts +++ b/packages/twenty-server/src/engine/core-modules/open-api/utils/__tests__/components.utils.spec.ts @@ -137,6 +137,21 @@ describe('computeSchemaComponents', () => { fieldRichText: { type: 'string', }, + fieldActor: { + properties: { + source: { + type: 'string', + }, + workspaceMemberId: { + type: 'string', + format: 'uuid', + }, + name: { + type: 'string', + }, + }, + type: 'object', + }, }, }, 'ObjectName with Relations': { diff --git a/packages/twenty-server/src/engine/core-modules/open-api/utils/components.utils.ts b/packages/twenty-server/src/engine/core-modules/open-api/utils/components.utils.ts index 74b72c67d..ea26a3118 100644 --- a/packages/twenty-server/src/engine/core-modules/open-api/utils/components.utils.ts +++ b/packages/twenty-server/src/engine/core-modules/open-api/utils/components.utils.ts @@ -71,6 +71,7 @@ const getSchemaComponentsProperties = ( case FieldMetadataType.CURRENCY: case FieldMetadataType.FULL_NAME: case FieldMetadataType.ADDRESS: + case FieldMetadataType.ACTOR: itemProperty = { type: 'object', properties: compositeTypeDefintions diff --git a/packages/twenty-server/src/engine/core-modules/user/services/__tests__/user.service.spec.ts b/packages/twenty-server/src/engine/core-modules/user/services/__tests__/user.service.spec.ts index 3697794a9..1773f249c 100644 --- a/packages/twenty-server/src/engine/core-modules/user/services/__tests__/user.service.spec.ts +++ b/packages/twenty-server/src/engine/core-modules/user/services/__tests__/user.service.spec.ts @@ -8,6 +8,7 @@ import { DataSourceService } from 'src/engine/metadata-modules/data-source/data- import { TypeORMService } from 'src/database/typeorm/typeorm.service'; import { UserWorkspace } from 'src/engine/core-modules/user-workspace/user-workspace.entity'; import { WorkspaceService } from 'src/engine/core-modules/workspace/services/workspace.service'; +import { TwentyORMGlobalManager } from 'src/engine/twenty-orm/twenty-orm-global.manager'; describe('UserService', () => { let service: UserService; @@ -40,6 +41,10 @@ describe('UserService', () => { provide: WorkspaceService, useValue: {}, }, + { + provide: TwentyORMGlobalManager, + useValue: {}, + }, ], }).compile(); diff --git a/packages/twenty-server/src/engine/core-modules/user/services/user.service.ts b/packages/twenty-server/src/engine/core-modules/user/services/user.service.ts index 266b4eaa6..161107603 100644 --- a/packages/twenty-server/src/engine/core-modules/user/services/user.service.ts +++ b/packages/twenty-server/src/engine/core-modules/user/services/user.service.ts @@ -1,18 +1,22 @@ import { EventEmitter2 } from '@nestjs/event-emitter'; import { InjectRepository } from '@nestjs/typeorm'; +import assert from 'assert'; + import { TypeOrmQueryService } from '@ptc-org/nestjs-query-typeorm'; import { Repository } from 'typeorm'; import { TypeORMService } from 'src/database/typeorm/typeorm.service'; -import { WorkspaceMember } from 'src/engine/core-modules/user/dtos/workspace-member.dto'; import { User } from 'src/engine/core-modules/user/user.entity'; import { WorkspaceService } from 'src/engine/core-modules/workspace/services/workspace.service'; +import { + Workspace, + WorkspaceActivationStatus, +} from 'src/engine/core-modules/workspace/workspace.entity'; import { ObjectRecordDeleteEvent } from 'src/engine/integrations/event-emitter/types/object-record-delete.event'; -import { DataSourceEntity } from 'src/engine/metadata-modules/data-source/data-source.entity'; import { DataSourceService } from 'src/engine/metadata-modules/data-source/data-source.service'; +import { TwentyORMGlobalManager } from 'src/engine/twenty-orm/twenty-orm-global.manager'; import { WorkspaceMemberWorkspaceEntity } from 'src/modules/workspace-member/standard-objects/workspace-member.workspace-entity'; -import { assert } from 'src/utils/assert'; export class UserService extends TypeOrmQueryService { constructor( @@ -22,73 +26,46 @@ export class UserService extends TypeOrmQueryService { private readonly typeORMService: TypeORMService, private readonly eventEmitter: EventEmitter2, private readonly workspaceService: WorkspaceService, + private readonly twentyORMGlobalManager: TwentyORMGlobalManager, ) { super(userRepository); } async loadWorkspaceMember(user: User) { - const dataSourcesMetadata = - await this.dataSourceService.getDataSourcesMetadataFromWorkspaceId( - user.defaultWorkspace.id, + if ( + user.defaultWorkspace.activationStatus !== + WorkspaceActivationStatus.ACTIVE + ) { + return null; + } + + const workspaceMemberRepository = + await this.twentyORMGlobalManager.getRepositoryForWorkspace( + user.defaultWorkspaceId, + 'workspaceMember', ); - if (!dataSourcesMetadata.length) { - return; - } + const workspaceMember = await workspaceMemberRepository.findOne({ + where: { + userId: user.id, + }, + }); - if (dataSourcesMetadata.length > 1) { - throw new Error( - `user '${user.id}' default workspace '${user.defaultWorkspace.id}' has multiple data source metadata`, - ); - } - - const dataSourceMetadata = dataSourcesMetadata[0]; - - const workspaceDataSource = - await this.typeORMService.connectToDataSource(dataSourceMetadata); - - const workspaceMembers = await workspaceDataSource?.query( - `SELECT * FROM ${dataSourceMetadata.schema}."workspaceMember" WHERE "userId" = '${user.id}'`, - ); - - if (!workspaceMembers.length) { - return; - } - - assert( - workspaceMembers.length === 1, - 'WorkspaceMember not found or too many found', - ); - - const userWorkspaceMember = new WorkspaceMember(); - - userWorkspaceMember.id = workspaceMembers[0].id; - userWorkspaceMember.colorScheme = workspaceMembers[0].colorScheme; - userWorkspaceMember.locale = workspaceMembers[0].locale; - userWorkspaceMember.avatarUrl = workspaceMembers[0].avatarUrl; - userWorkspaceMember.name = { - firstName: workspaceMembers[0].nameFirstName, - lastName: workspaceMembers[0].nameLastName, - }; - userWorkspaceMember.timeZone = workspaceMembers[0].timeZone; - userWorkspaceMember.dateFormat = workspaceMembers[0].dateFormat; - userWorkspaceMember.timeFormat = workspaceMembers[0].timeFormat; - - return userWorkspaceMember; + return workspaceMember; } - async loadWorkspaceMembers(dataSource: DataSourceEntity) { - const workspaceDataSource = - await this.typeORMService.connectToDataSource(dataSource); + async loadWorkspaceMembers(workspace: Workspace) { + if (workspace.activationStatus !== WorkspaceActivationStatus.ACTIVE) { + return []; + } - return await workspaceDataSource?.query( - ` - SELECT * - FROM ${dataSource.schema}."workspaceMember" AS s - INNER JOIN core.user AS u - ON s."userId" = u.id - `, - ); + const workspaceMemberRepository = + await this.twentyORMGlobalManager.getRepositoryForWorkspace( + workspace.id, + 'workspaceMember', + ); + + return workspaceMemberRepository.find(); } async deleteUser(userId: string): Promise { @@ -136,6 +113,7 @@ export class UserService extends TypeOrmQueryService { payload.properties = { before: workspaceMember, }; + payload.name = 'workspaceMember.deleted'; payload.recordId = workspaceMember.id; this.eventEmitter.emit('workspaceMember.deleted', payload); diff --git a/packages/twenty-server/src/engine/core-modules/user/user.resolver.ts b/packages/twenty-server/src/engine/core-modules/user/user.resolver.ts index 68453d8f4..4a95a9588 100644 --- a/packages/twenty-server/src/engine/core-modules/user/user.resolver.ts +++ b/packages/twenty-server/src/engine/core-modules/user/user.resolver.ts @@ -112,9 +112,7 @@ export class UserResolver { @ResolveField(() => WorkspaceMember, { nullable: true, }) - async workspaceMember( - @Parent() user: User, - ): Promise { + async workspaceMember(@Parent() user: User): Promise { const workspaceMember = await this.userService.loadWorkspaceMember(user); if (workspaceMember && workspaceMember.avatarUrl) { @@ -126,7 +124,31 @@ export class UserResolver { workspaceMember.avatarUrl = `${workspaceMember.avatarUrl}?token=${avatarUrlToken}`; } - return workspaceMember; + // TODO: Fix typing disrepency between Entity and DTO + return workspaceMember as WorkspaceMember | null; + } + + @ResolveField(() => [WorkspaceMember], { + nullable: true, + }) + async workspaceMembers(@Parent() user: User): Promise { + const workspaceMembers = await this.userService.loadWorkspaceMembers( + user.defaultWorkspace, + ); + + for (const workspaceMember of workspaceMembers) { + if (workspaceMember.avatarUrl) { + const avatarUrlToken = await this.fileService.encodeFileToken({ + workspace_member_id: workspaceMember.id, + workspace_id: user.defaultWorkspaceId, + }); + + workspaceMember.avatarUrl = `${workspaceMember.avatarUrl}?token=${avatarUrlToken}`; + } + } + + // TODO: Fix typing disrepency between Entity and DTO + return workspaceMembers as WorkspaceMember[]; } @ResolveField(() => String, { diff --git a/packages/twenty-server/src/engine/integrations/exception-handler/interfaces/exception-handler-options.interface.ts b/packages/twenty-server/src/engine/integrations/exception-handler/interfaces/exception-handler-options.interface.ts index 7cb267d4b..f01c7e169 100644 --- a/packages/twenty-server/src/engine/integrations/exception-handler/interfaces/exception-handler-options.interface.ts +++ b/packages/twenty-server/src/engine/integrations/exception-handler/interfaces/exception-handler-options.interface.ts @@ -8,5 +8,5 @@ export interface ExceptionHandlerOptions { name: string; }; document?: string; - user?: ExceptionHandlerUser; + user?: ExceptionHandlerUser | null; } diff --git a/packages/twenty-server/src/engine/metadata-modules/field-metadata/composite-types/actor.composite-type.ts b/packages/twenty-server/src/engine/metadata-modules/field-metadata/composite-types/actor.composite-type.ts new file mode 100644 index 000000000..69c6d256a --- /dev/null +++ b/packages/twenty-server/src/engine/metadata-modules/field-metadata/composite-types/actor.composite-type.ts @@ -0,0 +1,49 @@ +import { + CompositeProperty, + CompositeType, +} from 'src/engine/metadata-modules/field-metadata/interfaces/composite-type.interface'; + +import { FieldMetadataType } from 'src/engine/metadata-modules/field-metadata/field-metadata.entity'; + +export enum FieldActorSource { + EMAIL = 'EMAIL', + CALENDAR = 'CALENDAR', + API = 'API', + IMPORT = 'IMPORT', + MANUAL = 'MANUAL', +} + +export const actorCompositeType: CompositeType = { + type: FieldMetadataType.ACTOR, + properties: [ + { + name: 'source', + type: FieldMetadataType.SELECT, + hidden: false, + isRequired: true, + options: Object.keys(FieldActorSource).map((key, index) => ({ + label: `${FieldActorSource[key].toLowerCase()}`, + value: key, + position: index, + })), + } as CompositeProperty, + { + name: 'workspaceMemberId', + type: FieldMetadataType.UUID, + hidden: 'input', + isRequired: false, + }, + { + name: 'name', + type: FieldMetadataType.TEXT, + hidden: 'input', + isRequired: true, + }, + ], +}; + +export type ActorMetadata = { + source: FieldActorSource; + workspaceMemberId?: string; + name: string; +}; diff --git a/packages/twenty-server/src/engine/metadata-modules/field-metadata/composite-types/index.ts b/packages/twenty-server/src/engine/metadata-modules/field-metadata/composite-types/index.ts index 913748d76..442fe6356 100644 --- a/packages/twenty-server/src/engine/metadata-modules/field-metadata/composite-types/index.ts +++ b/packages/twenty-server/src/engine/metadata-modules/field-metadata/composite-types/index.ts @@ -1,24 +1,13 @@ -import { FieldMetadataInterface } from 'src/engine/metadata-modules/field-metadata/interfaces/field-metadata.interface'; import { CompositeType } from 'src/engine/metadata-modules/field-metadata/interfaces/composite-type.interface'; +import { FieldMetadataInterface } from 'src/engine/metadata-modules/field-metadata/interfaces/field-metadata.interface'; -import { - CurrencyMetadata, - currencyCompositeType, -} from 'src/engine/metadata-modules/field-metadata/composite-types/currency.composite-type'; -import { - FullNameMetadata, - fullNameCompositeType, -} from 'src/engine/metadata-modules/field-metadata/composite-types/full-name.composite-type'; -import { - LinkMetadata, - linkCompositeType, -} from 'src/engine/metadata-modules/field-metadata/composite-types/link.composite-type'; -import { FieldMetadataType } from 'src/engine/metadata-modules/field-metadata/field-metadata.entity'; -import { - addressCompositeType, - AddressMetadata, -} from 'src/engine/metadata-modules/field-metadata/composite-types/address.composite-type'; +import { actorCompositeType } from 'src/engine/metadata-modules/field-metadata/composite-types/actor.composite-type'; +import { addressCompositeType } from 'src/engine/metadata-modules/field-metadata/composite-types/address.composite-type'; +import { currencyCompositeType } from 'src/engine/metadata-modules/field-metadata/composite-types/currency.composite-type'; +import { fullNameCompositeType } from 'src/engine/metadata-modules/field-metadata/composite-types/full-name.composite-type'; +import { linkCompositeType } from 'src/engine/metadata-modules/field-metadata/composite-types/link.composite-type'; import { linksCompositeType } from 'src/engine/metadata-modules/field-metadata/composite-types/links.composite-type'; +import { FieldMetadataType } from 'src/engine/metadata-modules/field-metadata/field-metadata.entity'; export type CompositeFieldsDefinitionFunction = ( fieldMetadata?: FieldMetadataInterface, @@ -33,10 +22,5 @@ export const compositeTypeDefintions = new Map< [FieldMetadataType.CURRENCY, currencyCompositeType], [FieldMetadataType.FULL_NAME, fullNameCompositeType], [FieldMetadataType.ADDRESS, addressCompositeType], + [FieldMetadataType.ACTOR, actorCompositeType], ]); - -export type CompositeMetadataTypes = - | AddressMetadata - | CurrencyMetadata - | FullNameMetadata - | LinkMetadata; diff --git a/packages/twenty-server/src/engine/metadata-modules/field-metadata/dtos/default-value.input.ts b/packages/twenty-server/src/engine/metadata-modules/field-metadata/dtos/default-value.input.ts index 5cb2cac07..15f565d73 100644 --- a/packages/twenty-server/src/engine/metadata-modules/field-metadata/dtos/default-value.input.ts +++ b/packages/twenty-server/src/engine/metadata-modules/field-metadata/dtos/default-value.input.ts @@ -6,7 +6,9 @@ import { IsNumber, IsNumberString, IsObject, + IsOptional, IsString, + IsUUID, Matches, ValidateIf, } from 'class-validator'; @@ -158,3 +160,18 @@ export class FieldMetadataDefaultValueLinks { @IsObject() secondaryLinks: object | null; } + +export class FieldMetadataDefaultActor { + @ValidateIf((_object, value) => value !== null) + @IsString() + source: string; + + @ValidateIf((_object, value) => value !== null) + @IsOptional() + @IsUUID() + workspaceMemberId?: string | null; + + @ValidateIf((_object, value) => value !== null) + @IsString() + name: string; +} diff --git a/packages/twenty-server/src/engine/metadata-modules/field-metadata/field-metadata.entity.ts b/packages/twenty-server/src/engine/metadata-modules/field-metadata/field-metadata.entity.ts index 12e3b6af1..04971c014 100644 --- a/packages/twenty-server/src/engine/metadata-modules/field-metadata/field-metadata.entity.ts +++ b/packages/twenty-server/src/engine/metadata-modules/field-metadata/field-metadata.entity.ts @@ -43,6 +43,7 @@ export enum FieldMetadataType { ADDRESS = 'ADDRESS', RAW_JSON = 'RAW_JSON', RICH_TEXT = 'RICH_TEXT', + ACTOR = 'ACTOR', } @Entity('fieldMetadata') diff --git a/packages/twenty-server/src/engine/metadata-modules/field-metadata/field-metadata.module.ts b/packages/twenty-server/src/engine/metadata-modules/field-metadata/field-metadata.module.ts index b26e5ffa4..7eac88744 100644 --- a/packages/twenty-server/src/engine/metadata-modules/field-metadata/field-metadata.module.ts +++ b/packages/twenty-server/src/engine/metadata-modules/field-metadata/field-metadata.module.ts @@ -21,6 +21,7 @@ import { WorkspaceMigrationModule } from 'src/engine/metadata-modules/workspace- import { TwentyORMModule } from 'src/engine/twenty-orm/twenty-orm.module'; import { WorkspaceMigrationRunnerModule } from 'src/engine/workspace-manager/workspace-migration-runner/workspace-migration-runner.module'; import { WorkspaceStatusModule } from 'src/engine/workspace-manager/workspace-status/workspace-manager.module'; +import { CreatedByPreQueryHook } from 'src/engine/metadata-modules/field-metadata/query-hooks/created-by.pre-query-hook'; import { FieldMetadataEntity } from './field-metadata.entity'; import { FieldMetadataService } from './field-metadata.service'; @@ -42,7 +43,11 @@ import { UpdateFieldInput } from './dtos/update-field.input'; DataSourceModule, TypeORMModule, ], - services: [IsFieldMetadataDefaultValue, FieldMetadataService], + services: [ + IsFieldMetadataDefaultValue, + FieldMetadataService, + CreatedByPreQueryHook, + ], resolvers: [ { EntityClass: FieldMetadataEntity, diff --git a/packages/twenty-server/src/engine/metadata-modules/field-metadata/interfaces/composite-type.interface.ts b/packages/twenty-server/src/engine/metadata-modules/field-metadata/interfaces/composite-type.interface.ts index 156ce2f09..c6f34b318 100644 --- a/packages/twenty-server/src/engine/metadata-modules/field-metadata/interfaces/composite-type.interface.ts +++ b/packages/twenty-server/src/engine/metadata-modules/field-metadata/interfaces/composite-type.interface.ts @@ -1,12 +1,17 @@ +import { FieldMetadataOptions } from 'src/engine/metadata-modules/field-metadata/interfaces/field-metadata-options.interface'; + import { FieldMetadataType } from 'src/engine/metadata-modules/field-metadata/field-metadata.entity'; -export interface CompositeProperty { +export interface CompositeProperty< + Type extends FieldMetadataType = FieldMetadataType, +> { name: string; description?: string; - type: FieldMetadataType; + type: Type; hidden: 'input' | 'output' | true | false; isRequired: boolean; isArray?: boolean; + options?: FieldMetadataOptions; } export interface CompositeType { diff --git a/packages/twenty-server/src/engine/metadata-modules/field-metadata/interfaces/field-metadata-default-value.interface.ts b/packages/twenty-server/src/engine/metadata-modules/field-metadata/interfaces/field-metadata-default-value.interface.ts index 61d4f09ba..82fd94661 100644 --- a/packages/twenty-server/src/engine/metadata-modules/field-metadata/interfaces/field-metadata-default-value.interface.ts +++ b/packages/twenty-server/src/engine/metadata-modules/field-metadata/interfaces/field-metadata-default-value.interface.ts @@ -1,4 +1,5 @@ import { + FieldMetadataDefaultActor, FieldMetadataDefaultValueAddress, FieldMetadataDefaultValueBoolean, FieldMetadataDefaultValueCurrency, @@ -46,6 +47,7 @@ type FieldMetadataDefaultValueMapping = { [FieldMetadataType.MULTI_SELECT]: FieldMetadataDefaultValueString; [FieldMetadataType.RAW_JSON]: FieldMetadataDefaultValueRawJson; [FieldMetadataType.RICH_TEXT]: FieldMetadataDefaultValueRichText; + [FieldMetadataType.ACTOR]: FieldMetadataDefaultActor; }; export type FieldMetadataClassValidation = diff --git a/packages/twenty-server/src/engine/metadata-modules/field-metadata/query-hooks/created-by.pre-query-hook.ts b/packages/twenty-server/src/engine/metadata-modules/field-metadata/query-hooks/created-by.pre-query-hook.ts new file mode 100644 index 000000000..1e33aa850 --- /dev/null +++ b/packages/twenty-server/src/engine/metadata-modules/field-metadata/query-hooks/created-by.pre-query-hook.ts @@ -0,0 +1,103 @@ +import { InjectRepository } from '@nestjs/typeorm'; + +import { Repository } from 'typeorm'; + +import { WorkspaceQueryHookInstance } from 'src/engine/api/graphql/workspace-query-runner/workspace-query-hook/interfaces/workspace-query-hook.interface'; +import { CreateManyResolverArgs } from 'src/engine/api/graphql/workspace-resolver-builder/interfaces/workspace-resolvers-builder.interface'; + +import { WorkspaceQueryHook } from 'src/engine/api/graphql/workspace-query-runner/workspace-query-hook/decorators/workspace-query-hook.decorator'; +import { AuthContext } from 'src/engine/core-modules/auth/types/auth-context.type'; +import { + ActorMetadata, + FieldActorSource, +} from 'src/engine/metadata-modules/field-metadata/composite-types/actor.composite-type'; +import { FieldMetadataEntity } from 'src/engine/metadata-modules/field-metadata/field-metadata.entity'; +import { CustomWorkspaceEntity } from 'src/engine/twenty-orm/custom.workspace-entity'; +import { TwentyORMGlobalManager } from 'src/engine/twenty-orm/twenty-orm-global.manager'; +import { WorkspaceMemberWorkspaceEntity } from 'src/modules/workspace-member/standard-objects/workspace-member.workspace-entity'; + +type CustomWorkspaceItem = Omit< + CustomWorkspaceEntity, + 'createdAt' | 'updatedAt' +> & { + createdAt: string; + updatedAt: string; +}; + +@WorkspaceQueryHook(`*.createMany`) +export class CreatedByPreQueryHook implements WorkspaceQueryHookInstance { + constructor( + private readonly twentyORMGlobalManager: TwentyORMGlobalManager, + @InjectRepository(FieldMetadataEntity, 'metadata') + private readonly fieldMetadataRepository: Repository, + ) {} + + async execute( + authContext: AuthContext, + objectName: string, + payload: CreateManyResolverArgs, + ): Promise> { + let createdBy: ActorMetadata | null = null; + + // TODO: Once all objects have it, we can remove this check + const createdByFieldMetadata = await this.fieldMetadataRepository.findOne({ + where: { + object: { + nameSingular: objectName, + }, + name: 'createdBy', + workspaceId: authContext.workspace.id, + }, + }); + + if (!createdByFieldMetadata) { + return payload; + } + + // If user is logged in, we use the workspace member + if (authContext.user) { + const workspaceMemberRepository = + await this.twentyORMGlobalManager.getRepositoryForWorkspace( + authContext.workspace.id, + 'workspaceMember', + ); + + const workspaceMember = await workspaceMemberRepository.findOne({ + where: { + userId: authContext.user?.id, + }, + }); + + if (!workspaceMember) { + throw new Error( + `Workspace member can't be found for user ${authContext.user.id}`, + ); + } + + createdBy = { + source: FieldActorSource.MANUAL, + workspaceMemberId: workspaceMember.id, + name: `${workspaceMember.name.firstName} ${workspaceMember.name.lastName}`, + }; + } + + if (authContext.apiKey) { + createdBy = { + source: FieldActorSource.API, + name: authContext.apiKey.name, + }; + } + + for (const datum of payload.data) { + // Front-end can fill the source field + if (createdBy && (!datum.createdBy || !datum.createdBy.name)) { + datum.createdBy = { + ...createdBy, + source: datum.createdBy?.source ?? createdBy.source, + }; + } + } + + return payload; + } +} diff --git a/packages/twenty-server/src/engine/metadata-modules/field-metadata/utils/is-composite-field-metadata-type.util.ts b/packages/twenty-server/src/engine/metadata-modules/field-metadata/utils/is-composite-field-metadata-type.util.ts index d529e54f6..e795d79a5 100644 --- a/packages/twenty-server/src/engine/metadata-modules/field-metadata/utils/is-composite-field-metadata-type.util.ts +++ b/packages/twenty-server/src/engine/metadata-modules/field-metadata/utils/is-composite-field-metadata-type.util.ts @@ -7,12 +7,14 @@ export const isCompositeFieldMetadataType = ( | FieldMetadataType.CURRENCY | FieldMetadataType.FULL_NAME | FieldMetadataType.ADDRESS - | FieldMetadataType.LINKS => { + | FieldMetadataType.LINKS + | FieldMetadataType.ACTOR => { return [ FieldMetadataType.LINK, FieldMetadataType.CURRENCY, FieldMetadataType.FULL_NAME, FieldMetadataType.ADDRESS, FieldMetadataType.LINKS, + FieldMetadataType.ACTOR, ].includes(type); }; diff --git a/packages/twenty-server/src/engine/metadata-modules/field-metadata/utils/validate-default-value-for-type.util.ts b/packages/twenty-server/src/engine/metadata-modules/field-metadata/utils/validate-default-value-for-type.util.ts index 15fca239e..7087cfb5c 100644 --- a/packages/twenty-server/src/engine/metadata-modules/field-metadata/utils/validate-default-value-for-type.util.ts +++ b/packages/twenty-server/src/engine/metadata-modules/field-metadata/utils/validate-default-value-for-type.util.ts @@ -7,6 +7,7 @@ import { } from 'src/engine/metadata-modules/field-metadata/interfaces/field-metadata-default-value.interface'; import { + FieldMetadataDefaultActor, FieldMetadataDefaultValueAddress, FieldMetadataDefaultValueBoolean, FieldMetadataDefaultValueCurrency, @@ -51,6 +52,7 @@ export const defaultValueValidatorsMap = { [FieldMetadataType.RICH_TEXT]: [FieldMetadataDefaultValueString], [FieldMetadataType.RAW_JSON]: [FieldMetadataDefaultValueRawJson], [FieldMetadataType.LINKS]: [FieldMetadataDefaultValueLinks], + [FieldMetadataType.ACTOR]: [FieldMetadataDefaultActor], }; type ValidationResult = { diff --git a/packages/twenty-server/src/engine/metadata-modules/workspace-migration/factories/composite-column-action.factory.ts b/packages/twenty-server/src/engine/metadata-modules/workspace-migration/factories/composite-column-action.factory.ts index a74bdd4e1..827092daa 100644 --- a/packages/twenty-server/src/engine/metadata-modules/workspace-migration/factories/composite-column-action.factory.ts +++ b/packages/twenty-server/src/engine/metadata-modules/workspace-migration/factories/composite-column-action.factory.ts @@ -47,17 +47,29 @@ export class CompositeColumnActionFactory extends ColumnActionAbstractFactory option.value)] + : undefined; columnActions.push({ action: WorkspaceMigrationColumnActionType.CREATE, columnName, columnType: fieldMetadataTypeToColumnType(property.type), + enum: enumOptions, isNullable: fieldMetadata.isNullable || !property.isRequired, defaultValue: serializedDefaultValue, - isArray: property.isArray, + isArray: + property.type === FieldMetadataType.MULTI_SELECT || property.isArray, }); } @@ -103,6 +115,16 @@ export class CompositeColumnActionFactory extends ColumnActionAbstractFactory { + const currentOption = currentProperty.options?.find( + (currentOption) => currentOption.id === option.id, + ); + + // The id is the same, but the value is different, so we need to alter the enum + if (currentOption && currentOption.value !== option.value) { + return { + from: currentOption.value, + to: option.value, + }; + } + + return option.value; + }), + ] + : undefined; columnActions.push({ action: WorkspaceMigrationColumnActionType.ALTER, currentColumnDefinition: { columnName: currentColumnName, columnType: fieldMetadataTypeToColumnType(currentProperty.type), + enum: currentProperty.options + ? [...currentProperty.options.map((option) => option.value)] + : undefined, isNullable: currentFieldMetadata.isNullable || !currentProperty.isRequired, defaultValue: serializeDefaultValue( currentFieldMetadata.defaultValue?.[currentProperty.name], ), - isArray: currentProperty.isArray, + isArray: + currentProperty.type === FieldMetadataType.MULTI_SELECT || + currentProperty.isArray, }, alteredColumnDefinition: { columnName: alteredColumnName, columnType: fieldMetadataTypeToColumnType(alteredProperty.type), + enum: enumOptions, isNullable: alteredFieldMetadata.isNullable || !alteredProperty.isRequired, defaultValue: serializedDefaultValue, - isArray: alteredProperty.isArray, + isArray: + alteredProperty.type === FieldMetadataType.MULTI_SELECT || + alteredProperty.isArray, }, }); } diff --git a/packages/twenty-server/src/engine/metadata-modules/workspace-migration/workspace-migration.exception.ts b/packages/twenty-server/src/engine/metadata-modules/workspace-migration/workspace-migration.exception.ts index 6340aeaa2..ff095a7c6 100644 --- a/packages/twenty-server/src/engine/metadata-modules/workspace-migration/workspace-migration.exception.ts +++ b/packages/twenty-server/src/engine/metadata-modules/workspace-migration/workspace-migration.exception.ts @@ -11,4 +11,5 @@ export enum WorkspaceMigrationExceptionCode { NO_FACTORY_FOUND = 'NO_FACTORY_FOUND', INVALID_ACTION = 'INVALID_ACTION', INVALID_FIELD_METADATA = 'INVALID_FIELD_METADATA', + INVALID_COMPOSITE_TYPE = 'INVALID_COMPOSITE_TYPE', } diff --git a/packages/twenty-server/src/engine/metadata-modules/workspace-migration/workspace-migration.factory.ts b/packages/twenty-server/src/engine/metadata-modules/workspace-migration/workspace-migration.factory.ts index 9e479d2c9..8c16ab64c 100644 --- a/packages/twenty-server/src/engine/metadata-modules/workspace-migration/workspace-migration.factory.ts +++ b/packages/twenty-server/src/engine/metadata-modules/workspace-migration/workspace-migration.factory.ts @@ -96,6 +96,7 @@ export class WorkspaceMigrationFactory { { factory: this.compositeColumnActionFactory }, ], [FieldMetadataType.LINKS, { factory: this.compositeColumnActionFactory }], + [FieldMetadataType.ACTOR, { factory: this.compositeColumnActionFactory }], ]); } diff --git a/packages/twenty-server/src/engine/middlewares/graphql-hydrate-request-from-token.middleware.ts b/packages/twenty-server/src/engine/middlewares/graphql-hydrate-request-from-token.middleware.ts index cbe7f3092..4a402cb27 100644 --- a/packages/twenty-server/src/engine/middlewares/graphql-hydrate-request-from-token.middleware.ts +++ b/packages/twenty-server/src/engine/middlewares/graphql-hydrate-request-from-token.middleware.ts @@ -3,7 +3,7 @@ import { Injectable, NestMiddleware } from '@nestjs/common'; import { Request, Response, NextFunction } from 'express'; import { TokenService } from 'src/engine/core-modules/auth/services/token.service'; -import { JwtData } from 'src/engine/core-modules/auth/types/jwt-data.type'; +import { AuthContext } from 'src/engine/core-modules/auth/types/auth-context.type'; import { ExceptionHandlerService } from 'src/engine/integrations/exception-handler/exception-handler.service'; import { WorkspaceCacheVersionService } from 'src/engine/metadata-modules/workspace-cache-version/workspace-cache-version.service'; import { handleExceptionAndConvertToGraphQLError } from 'src/engine/utils/global-exception-handler.util'; @@ -45,7 +45,7 @@ export class GraphQLHydrateRequestFromTokenMiddleware return next(); } - let data: JwtData; + let data: AuthContext; try { data = await this.tokenService.validateToken(req); @@ -54,6 +54,7 @@ export class GraphQLHydrateRequestFromTokenMiddleware ); req.user = data.user; + req.apiKey = data.apiKey; req.workspace = data.workspace; req.workspaceId = data.workspace.id; req.cacheVersion = cacheVersion; diff --git a/packages/twenty-server/src/engine/twenty-orm/custom.workspace-entity.ts b/packages/twenty-server/src/engine/twenty-orm/custom.workspace-entity.ts index ec54a9c8b..5fd099f02 100644 --- a/packages/twenty-server/src/engine/twenty-orm/custom.workspace-entity.ts +++ b/packages/twenty-server/src/engine/twenty-orm/custom.workspace-entity.ts @@ -1,3 +1,7 @@ +import { + ActorMetadata, + FieldActorSource, +} from 'src/engine/metadata-modules/field-metadata/composite-types/actor.composite-type'; import { FieldMetadataType } from 'src/engine/metadata-modules/field-metadata/field-metadata.entity'; import { RelationMetadataType, @@ -40,6 +44,19 @@ export class CustomWorkspaceEntity extends BaseWorkspaceEntity { @WorkspaceIsSystem() position: number | null; + @WorkspaceField({ + standardId: CUSTOM_OBJECT_STANDARD_FIELD_IDS.createdBy, + type: FieldMetadataType.ACTOR, + label: 'Created by', + icon: 'IconCreativeCommonsSa', + description: 'The creator of the record', + defaultValue: { + source: `'${FieldActorSource.MANUAL}'`, + name: "''", + }, + }) + createdBy: ActorMetadata; + @WorkspaceRelation({ standardId: CUSTOM_OBJECT_STANDARD_FIELD_IDS.activityTargets, label: 'Activities', diff --git a/packages/twenty-server/src/engine/twenty-orm/factories/entity-schema-column.factory.ts b/packages/twenty-server/src/engine/twenty-orm/factories/entity-schema-column.factory.ts index bdbf5d73f..d85282c62 100644 --- a/packages/twenty-server/src/engine/twenty-orm/factories/entity-schema-column.factory.ts +++ b/packages/twenty-server/src/engine/twenty-orm/factories/entity-schema-column.factory.ts @@ -125,7 +125,11 @@ export class EntitySchemaColumnFactory { }; if (isEnumFieldMetadataType(compositeProperty.type)) { - throw new Error('Enum composite properties are not yet supported'); + const values = compositeProperty.options?.map((option) => option.value); + + if (values && values.length > 0) { + entitySchemaColumnMap[columnName].enum = values; + } } } diff --git a/packages/twenty-server/src/engine/twenty-orm/twenty-orm-global.manager.ts b/packages/twenty-server/src/engine/twenty-orm/twenty-orm-global.manager.ts index d03750ff3..add735169 100644 --- a/packages/twenty-server/src/engine/twenty-orm/twenty-orm-global.manager.ts +++ b/packages/twenty-server/src/engine/twenty-orm/twenty-orm-global.manager.ts @@ -1,9 +1,10 @@ -import { Injectable } from '@nestjs/common'; +import { Injectable, Type } from '@nestjs/common'; import { ObjectLiteral } from 'typeorm'; import { WorkspaceDatasourceFactory } from 'src/engine/twenty-orm/factories/workspace-datasource.factory'; import { WorkspaceRepository } from 'src/engine/twenty-orm/repository/workspace.repository'; +import { convertClassNameToObjectMetadataName } from 'src/engine/workspace-manager/workspace-sync-metadata/utils/convert-class-to-object-metadata-name.util'; @Injectable() export class TwentyORMGlobalManager { @@ -11,10 +12,30 @@ export class TwentyORMGlobalManager { private readonly workspaceDataSourceFactory: WorkspaceDatasourceFactory, ) {} + async getRepositoryForWorkspace( + workspaceId: string, + workspaceEntity: Type, + ): Promise>; + async getRepositoryForWorkspace( workspaceId: string, objectMetadataName: string, + ): Promise>; + + async getRepositoryForWorkspace( + workspaceId: string, + workspaceEntityOrobjectMetadataName: Type | string, ): Promise> { + let objectMetadataName: string; + + if (typeof workspaceEntityOrobjectMetadataName === 'string') { + objectMetadataName = workspaceEntityOrobjectMetadataName; + } else { + objectMetadataName = convertClassNameToObjectMetadataName( + workspaceEntityOrobjectMetadataName.name, + ); + } + const workspaceDataSource = await this.workspaceDataSourceFactory.create( workspaceId, null, diff --git a/packages/twenty-server/src/engine/twenty-orm/twenty-orm.manager.ts b/packages/twenty-server/src/engine/twenty-orm/twenty-orm.manager.ts index d04c9030a..5ebd65a3c 100644 --- a/packages/twenty-server/src/engine/twenty-orm/twenty-orm.manager.ts +++ b/packages/twenty-server/src/engine/twenty-orm/twenty-orm.manager.ts @@ -1,10 +1,11 @@ -import { Injectable } from '@nestjs/common'; +import { Injectable, Type } from '@nestjs/common'; import { ObjectLiteral } from 'typeorm'; import { ScopedWorkspaceContextFactory } from 'src/engine/twenty-orm/factories/scoped-workspace-context.factory'; import { WorkspaceDatasourceFactory } from 'src/engine/twenty-orm/factories/workspace-datasource.factory'; import { WorkspaceRepository } from 'src/engine/twenty-orm/repository/workspace.repository'; +import { convertClassNameToObjectMetadataName } from 'src/engine/workspace-manager/workspace-sync-metadata/utils/convert-class-to-object-metadata-name.util'; @Injectable() export class TwentyORMManager { @@ -13,12 +14,30 @@ export class TwentyORMManager { private readonly scopedWorkspaceContextFactory: ScopedWorkspaceContextFactory, ) {} + async getRepository( + workspaceEntity: Type, + ): Promise>; + async getRepository( objectMetadataName: string, + ): Promise>; + + async getRepository( + workspaceEntityOrobjectMetadataName: Type | string, ): Promise> { const { workspaceId, cacheVersion } = this.scopedWorkspaceContextFactory.create(); + let objectMetadataName: string; + + if (typeof workspaceEntityOrobjectMetadataName === 'string') { + objectMetadataName = workspaceEntityOrobjectMetadataName; + } else { + objectMetadataName = convertClassNameToObjectMetadataName( + workspaceEntityOrobjectMetadataName.name, + ); + } + if (!workspaceId) { throw new Error('Workspace not found'); } diff --git a/packages/twenty-server/src/engine/workspace-manager/demo-objects-prefill-data/companies-demo.json.ts b/packages/twenty-server/src/engine/workspace-manager/demo-objects-prefill-data/companies-demo.json.ts index 284221d5f..41145381d 100644 --- a/packages/twenty-server/src/engine/workspace-manager/demo-objects-prefill-data/companies-demo.json.ts +++ b/packages/twenty-server/src/engine/workspace-manager/demo-objects-prefill-data/companies-demo.json.ts @@ -1,3 +1,5 @@ +import { DEMO_SEED_WORKSPACE_MEMBER_IDS } from "src/engine/workspace-manager/demo-objects-prefill-data/workspace-member"; + export const companiesDemo = [ { name: 'Google', @@ -5,6 +7,9 @@ export const companiesDemo = [ addressAddressCity: 'Mountain View', employees: 284571, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/google', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Microsoft', @@ -12,6 +17,9 @@ export const companiesDemo = [ addressAddressCity: 'Redmond', employees: 226067, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/microsoft', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Meta', @@ -19,6 +27,9 @@ export const companiesDemo = [ addressAddressCity: 'Menlo Park', employees: 119511, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/meta', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'SLB', @@ -26,6 +37,9 @@ export const companiesDemo = [ addressAddressCity: 'Houston', employees: 113151, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/slbglobal', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Cisco', @@ -33,6 +47,9 @@ export const companiesDemo = [ addressAddressCity: 'San Jose', employees: 99625, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/cisco', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Uber', @@ -40,6 +57,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 90545, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/uber-com', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Salesforce', @@ -47,6 +67,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 71322, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/salesforce', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Amdocs', @@ -54,6 +77,9 @@ export const companiesDemo = [ addressAddressCity: 'Chesterfield', employees: 35731, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/amdocs', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'VMware', @@ -61,6 +87,9 @@ export const companiesDemo = [ addressAddressCity: 'Palo Alto', employees: 34759, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/vmware', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'GlobalLogic', @@ -68,6 +97,9 @@ export const companiesDemo = [ addressAddressCity: 'Santa Clara', employees: 24461, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/globallogic', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'ServiceNow', @@ -75,6 +107,9 @@ export const companiesDemo = [ addressAddressCity: 'Santa Clara', employees: 24104, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/servicenow', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'SS&C Technologies', @@ -82,6 +117,9 @@ export const companiesDemo = [ addressAddressCity: 'Windsor', employees: 20311, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ss-c-technologies', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Workday', @@ -89,6 +127,9 @@ export const companiesDemo = [ addressAddressCity: 'Pleasanton', employees: 20036, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/workday', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Red Hat', @@ -96,6 +137,9 @@ export const companiesDemo = [ addressAddressCity: 'Raleigh', employees: 19945, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/red-hat', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'NetSuite', @@ -103,6 +147,9 @@ export const companiesDemo = [ addressAddressCity: 'Austin', employees: 19269, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/netsuite', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Synopsys Inc', @@ -110,6 +157,9 @@ export const companiesDemo = [ addressAddressCity: 'Sunnyvale', employees: 18061, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/synopsys', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Siemens Digital Industries Software', @@ -117,6 +167,9 @@ export const companiesDemo = [ addressAddressCity: 'Plano', employees: 17262, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/siemenssoftware', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'SAS', @@ -124,6 +177,9 @@ export const companiesDemo = [ addressAddressCity: 'Cary', employees: 16287, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sas', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Intuit', @@ -131,6 +187,9 @@ export const companiesDemo = [ addressAddressCity: 'Mountain View', employees: 15851, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/intuit', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Broadcom Software', @@ -138,6 +197,9 @@ export const companiesDemo = [ addressAddressCity: 'San Jose', employees: 15127, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/broadcomsoftware', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Autodesk', @@ -145,6 +207,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 14593, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/autodesk', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Epic', @@ -152,6 +217,9 @@ export const companiesDemo = [ addressAddressCity: 'Verona', employees: 13765, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/epic1979', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Bosch USA', @@ -159,6 +227,9 @@ export const companiesDemo = [ addressAddressCity: 'Farmington', employees: 13754, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/boschusa', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Cloud Software Group', @@ -166,6 +237,9 @@ export const companiesDemo = [ addressAddressCity: 'Fort Lauderdale', employees: 13111, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/cloudsoftwaregroup', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Pitney Bowes', @@ -173,6 +247,9 @@ export const companiesDemo = [ addressAddressCity: 'Stamford', employees: 12306, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/pitney-bowes', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Juniper Networks', @@ -180,6 +257,9 @@ export const companiesDemo = [ addressAddressCity: 'Sunnyvale', employees: 11928, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/juniper-networks', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Chegg Inc.', @@ -187,6 +267,9 @@ export const companiesDemo = [ addressAddressCity: 'Santa Clara', employees: 10790, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/chegg-inc-', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Teradata', @@ -194,6 +277,9 @@ export const companiesDemo = [ addressAddressCity: 'San Diego', employees: 10748, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/teradata', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'NICE', @@ -201,6 +287,9 @@ export const companiesDemo = [ addressAddressCity: 'Hoboken', employees: 10258, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/nice-systems', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Cadence Design Systems', @@ -208,6 +297,9 @@ export const companiesDemo = [ addressAddressCity: 'San Jose', employees: 9377, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/cadence-design-systems', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Cox Automotive Inc.', @@ -215,6 +307,9 @@ export const companiesDemo = [ addressAddressCity: 'Atlanta', employees: 9331, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/cox-automotive-inc-', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Trimble Inc.', @@ -222,6 +317,9 @@ export const companiesDemo = [ addressAddressCity: 'Broomfield', employees: 9311, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/trimble', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: '[24]7.ai', @@ -229,6 +327,9 @@ export const companiesDemo = [ addressAddressCity: 'San Jose', employees: 9170, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/24-7-ai', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Akamai Technologies', @@ -236,6 +337,9 @@ export const companiesDemo = [ addressAddressCity: 'Cambridge', employees: 9168, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/akamai-technologies', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Splunk', @@ -243,6 +347,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 8891, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/splunk', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Okta', @@ -250,6 +357,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 8860, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/okta-inc-', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Ceridian', @@ -257,6 +367,9 @@ export const companiesDemo = [ addressAddressCity: 'Minneapolis', employees: 8813, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ceridian', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'RealPage, Inc.', @@ -264,6 +377,9 @@ export const companiesDemo = [ addressAddressCity: 'Richardson', employees: 8227, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/realpage', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Freelance', @@ -271,6 +387,9 @@ export const companiesDemo = [ addressAddressCity: 'Ny', employees: 8180, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/pro-freelance', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Stripe', @@ -278,6 +397,9 @@ export const companiesDemo = [ addressAddressCity: 'South San Francisco', employees: 8145, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/stripe', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Shutterfly', @@ -285,6 +407,9 @@ export const companiesDemo = [ addressAddressCity: 'San Jose', employees: 8070, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/shutterfly', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Unity', @@ -292,6 +417,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 8063, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/unity', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Veeva Systems', @@ -299,6 +427,9 @@ export const companiesDemo = [ addressAddressCity: 'Pleasanton', employees: 7831, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/veeva-systems', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Nuance Communications', @@ -306,6 +437,9 @@ export const companiesDemo = [ addressAddressCity: 'Burlington', employees: 7761, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/nuance-communications', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Freshworks', @@ -313,6 +447,9 @@ export const companiesDemo = [ addressAddressCity: 'San Mateo', employees: 7687, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/freshworks-inc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Seal Software, a DocuSign Company', @@ -320,6 +457,9 @@ export const companiesDemo = [ addressAddressCity: 'Walnut Creek', employees: 7586, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/seal-software-group', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'DocuSign', @@ -327,6 +467,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 7557, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/docusign', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Nutanix', @@ -334,6 +477,9 @@ export const companiesDemo = [ addressAddressCity: 'San Jose', employees: 7454, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/nutanix', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Genesys', @@ -341,6 +487,9 @@ export const companiesDemo = [ addressAddressCity: 'Menlo Park', employees: 7371, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/genesys', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'SAP Concur', @@ -348,6 +497,9 @@ export const companiesDemo = [ addressAddressCity: 'Bellevue', employees: 7305, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sapconcur', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Square', @@ -355,6 +507,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 7233, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/joinsquare', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Snap Inc.', @@ -362,6 +517,9 @@ export const companiesDemo = [ addressAddressCity: 'Santa Monica', employees: 7219, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/snap-inc-co', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'MathWorks', @@ -369,6 +527,9 @@ export const companiesDemo = [ addressAddressCity: 'Natick', employees: 7188, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/the-mathworks_2', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'PTC', @@ -376,6 +537,9 @@ export const companiesDemo = [ addressAddressCity: 'Boston', employees: 7119, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ptcinc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Ansys', @@ -383,6 +547,9 @@ export const companiesDemo = [ addressAddressCity: 'Canonsburg', employees: 7112, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ansys-inc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Aricent', @@ -390,6 +557,9 @@ export const companiesDemo = [ addressAddressCity: 'Santa Clara', employees: 7016, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/aricent', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Databricks', @@ -397,6 +567,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 6927, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/databricks', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Shipt', @@ -404,6 +577,9 @@ export const companiesDemo = [ addressAddressCity: 'Birmingham', employees: 6902, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/shipt', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'CSG', @@ -411,6 +587,9 @@ export const companiesDemo = [ addressAddressCity: 'Englewood', employees: 6849, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/csg-', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Twilio', @@ -418,6 +597,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 6721, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/twilio-inc-', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Veritas Technologies LLC', @@ -425,6 +607,9 @@ export const companiesDemo = [ addressAddressCity: 'Santa Clara', employees: 6718, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/veritas-technologies-llc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Citrix', @@ -432,6 +617,9 @@ export const companiesDemo = [ addressAddressCity: 'Fort Lauderdale', employees: 6528, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/citrix', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Tyler Technologies', @@ -439,6 +627,9 @@ export const companiesDemo = [ addressAddressCity: 'Plano', employees: 6496, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/tyler-technologies', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Esri', @@ -446,6 +637,9 @@ export const companiesDemo = [ addressAddressCity: 'Redlands', employees: 6463, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/esri', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Paycom', @@ -453,6 +647,9 @@ export const companiesDemo = [ addressAddressCity: 'Oklahoma City', employees: 6378, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/paycom', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Roblox', @@ -460,6 +657,9 @@ export const companiesDemo = [ addressAddressCity: 'San Mateo', employees: 6297, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/roblox', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Zendesk', @@ -467,6 +667,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 6255, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/zendesk', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Newfold Digital', @@ -474,6 +677,9 @@ export const companiesDemo = [ addressAddressCity: 'Jacksonville', employees: 6213, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/newfold', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Informatica', @@ -481,6 +687,9 @@ export const companiesDemo = [ addressAddressCity: 'Redwood City', employees: 5850, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/informatica', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Caf\u00e9', @@ -488,6 +697,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 5795, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/get-cafe', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Mavenir', @@ -495,6 +707,9 @@ export const companiesDemo = [ addressAddressCity: 'Richardson', employees: 5763, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mavenir', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Allscripts', @@ -502,6 +717,9 @@ export const companiesDemo = [ addressAddressCity: 'Chicago', employees: 5719, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/allscripts', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Yardi', @@ -509,6 +727,9 @@ export const companiesDemo = [ addressAddressCity: 'Goleta', employees: 5583, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/yardi', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Datadog', @@ -516,6 +737,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 5470, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/datadog', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Epicor', @@ -523,6 +747,9 @@ export const companiesDemo = [ addressAddressCity: 'Austin', employees: 5310, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/epicor-software-corp', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Hexagon Asset Lifecycle Intelligence', @@ -531,13 +758,19 @@ export const companiesDemo = [ employees: 5262, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/hexagonassetlifecycleintelligence', - }, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', + }, { name: 'Blue Yonder', domainName: 'blueyonder.com', addressAddressCity: 'Scottsdale', employees: 5205, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/blueyonder', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'MongoDB', @@ -545,6 +778,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 5182, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mongodbinc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'uTest', @@ -552,6 +788,9 @@ export const companiesDemo = [ addressAddressCity: 'Framingham', employees: 5125, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/utest', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Paylocity', @@ -559,6 +798,9 @@ export const companiesDemo = [ addressAddressCity: 'Schaumburg', employees: 5095, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/paylocity', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'IAC', @@ -566,6 +808,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 5040, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/iac', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Toast', @@ -573,6 +818,9 @@ export const companiesDemo = [ addressAddressCity: 'Boston', employees: 5008, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/toast-inc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Bentley Systems', @@ -580,6 +828,9 @@ export const companiesDemo = [ addressAddressCity: 'Exton', employees: 4862, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/bentley-systems', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Owner.com', @@ -587,6 +838,9 @@ export const companiesDemo = [ addressAddressCity: 'Palo Alto', employees: 4677, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/profitboss', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'eClinicalWorks', @@ -594,6 +848,9 @@ export const companiesDemo = [ addressAddressCity: 'Westborough', employees: 4661, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/eclinicalworks', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Altimetrik', @@ -601,6 +858,9 @@ export const companiesDemo = [ addressAddressCity: 'Southfield', employees: 4629, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/altimetrik', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'CA Technologies', @@ -608,6 +868,9 @@ export const companiesDemo = [ addressAddressCity: 'San Jose', employees: 4616, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ca-technologies', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Dynatrace', @@ -615,6 +878,9 @@ export const companiesDemo = [ addressAddressCity: 'Waltham', employees: 4502, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/dynatrace', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Sprinklr', @@ -622,6 +888,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 4495, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sprinklr', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'UiPath', @@ -629,6 +898,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 4484, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/uipath', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'The Reynolds and Reynolds Company', @@ -637,13 +909,19 @@ export const companiesDemo = [ employees: 4473, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/the-reynolds-and-reynolds-company', - }, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', + }, { name: 'Stealth', domainName: 'stealthstartup.com', addressAddressCity: 'San Francisco', employees: 4472, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/stealthstartup', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'WEX', @@ -651,6 +929,9 @@ export const companiesDemo = [ addressAddressCity: 'Portland', employees: 4377, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/wexinc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'HighRadius', @@ -658,6 +939,9 @@ export const companiesDemo = [ addressAddressCity: 'Houston', employees: 4316, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/highradius', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Avalara', @@ -665,6 +949,9 @@ export const companiesDemo = [ addressAddressCity: 'Seattle', employees: 4311, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/avalara', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Manhattan Associates', @@ -672,6 +959,9 @@ export const companiesDemo = [ addressAddressCity: 'Atlanta', employees: 4236, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/manhattan-associates', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Aspen Technology', @@ -679,6 +969,9 @@ export const companiesDemo = [ addressAddressCity: 'Bedford', employees: 4194, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/aspen-technology', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Hyland', @@ -686,6 +979,9 @@ export const companiesDemo = [ addressAddressCity: 'Westlake', employees: 4166, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/hyland-software', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Palantir Technologies', @@ -693,6 +989,9 @@ export const companiesDemo = [ addressAddressCity: 'Denver', employees: 4104, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/palantir-technologies', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Market America, Inc.', @@ -700,6 +999,9 @@ export const companiesDemo = [ addressAddressCity: 'Greensboro', employees: 4091, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/market-america-inc-', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Procore Technologies', @@ -707,6 +1009,9 @@ export const companiesDemo = [ addressAddressCity: 'Carpinteria', employees: 4010, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/procore-technologies', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'ZoomInfo', @@ -714,6 +1019,9 @@ export const companiesDemo = [ addressAddressCity: 'Vancouver', employees: 3875, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/zoominfo', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'TIBCO', @@ -721,6 +1029,9 @@ export const companiesDemo = [ addressAddressCity: 'Palo Alto', employees: 3871, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/tibco', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'GE Digital', @@ -728,6 +1039,9 @@ export const companiesDemo = [ addressAddressCity: 'San Ramon', employees: 3849, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ge-digital', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'RMS', @@ -735,6 +1049,9 @@ export const companiesDemo = [ addressAddressCity: 'Newark', employees: 3844, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/rms', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Tableau', @@ -742,6 +1059,9 @@ export const companiesDemo = [ addressAddressCity: 'Seattle', employees: 3838, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/tableau-software', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Extreme Networks', @@ -749,6 +1069,9 @@ export const companiesDemo = [ addressAddressCity: 'Morrisville', employees: 3799, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/extreme-networks', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Smartsheet', @@ -756,6 +1079,9 @@ export const companiesDemo = [ addressAddressCity: 'Bellevue', employees: 3798, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/smartsheet-com', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Quest Software', @@ -763,6 +1089,9 @@ export const companiesDemo = [ addressAddressCity: 'Aliso Viejo', employees: 3795, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/quest-software', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Motive', @@ -770,6 +1099,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 3788, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/motive-inc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Retired Life', @@ -777,6 +1109,9 @@ export const companiesDemo = [ addressAddressCity: 'San Jose', employees: 3774, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/retired-life', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Dropbox', @@ -784,6 +1119,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 3751, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/dropbox', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Deltek', @@ -791,6 +1129,9 @@ export const companiesDemo = [ addressAddressCity: 'Herndon', employees: 3727, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/deltek', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'e2open', @@ -798,6 +1139,9 @@ export const companiesDemo = [ addressAddressCity: 'Austin', employees: 3694, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/e2open', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Altair', @@ -805,6 +1149,9 @@ export const companiesDemo = [ addressAddressCity: 'Troy', employees: 3596, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/altair-engineering', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Gopuff', @@ -812,6 +1159,9 @@ export const companiesDemo = [ addressAddressCity: 'Philadelphia', employees: 3574, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/gopuff', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'FICO', @@ -819,6 +1169,9 @@ export const companiesDemo = [ addressAddressCity: 'Bozeman', employees: 3511, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/fico', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Elastic', @@ -826,6 +1179,9 @@ export const companiesDemo = [ addressAddressCity: 'Mountain View', employees: 3489, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/elastic-co', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Blackbaud', @@ -833,6 +1189,9 @@ export const companiesDemo = [ addressAddressCity: 'Charleston', employees: 3478, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/blackbaud', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'MicroStrategy', @@ -840,6 +1199,9 @@ export const companiesDemo = [ addressAddressCity: 'Vienna', employees: 3469, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/microstrategy', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Discord', @@ -847,6 +1209,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 3467, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/discord', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Inovalon', @@ -854,6 +1219,9 @@ export const companiesDemo = [ addressAddressCity: 'Bowie', employees: 3459, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/inovalon', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Progress', @@ -861,6 +1229,9 @@ export const companiesDemo = [ addressAddressCity: 'Burlington', employees: 3428, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/progress-software', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Rubrik', @@ -868,6 +1239,9 @@ export const companiesDemo = [ addressAddressCity: 'Palo Alto', employees: 3370, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/rubrik-inc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Axtria - Ingenious Insights', @@ -875,6 +1249,9 @@ export const companiesDemo = [ addressAddressCity: 'Berkeley Heights', employees: 3367, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/axtria', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Audible', @@ -882,6 +1259,9 @@ export const companiesDemo = [ addressAddressCity: 'Newark', employees: 3192, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/audible', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Kaseya', @@ -889,6 +1269,9 @@ export const companiesDemo = [ addressAddressCity: 'Miami', employees: 3191, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/kaseya', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'MRI Software', @@ -896,6 +1279,9 @@ export const companiesDemo = [ addressAddressCity: 'Solon', employees: 3107, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mri-software-llc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'CyberArk', @@ -903,6 +1289,9 @@ export const companiesDemo = [ addressAddressCity: 'Newton Center', employees: 3099, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/cyber-ark-software', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Cornerstone OnDemand', @@ -910,6 +1299,9 @@ export const companiesDemo = [ addressAddressCity: 'Santa Monica', employees: 3089, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/cornerstone-ondemand', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Reddit, Inc.', @@ -917,6 +1309,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 3061, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/reddit-com', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Ivanti', @@ -924,6 +1319,9 @@ export const companiesDemo = [ addressAddressCity: 'South Jordan', employees: 3056, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ivanti', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Cloudera', @@ -931,6 +1329,9 @@ export const companiesDemo = [ addressAddressCity: 'Santa Clara', employees: 3007, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/cloudera', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Medidata Solutions', @@ -938,6 +1339,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 3001, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/medidata-solutions', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Commvault', @@ -945,6 +1349,9 @@ export const companiesDemo = [ addressAddressCity: 'Eatontown', employees: 2974, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/commvault', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'ConnectWise', @@ -952,6 +1359,9 @@ export const companiesDemo = [ addressAddressCity: 'Tampa', employees: 2937, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/connectwise', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'BILL', @@ -959,6 +1369,9 @@ export const companiesDemo = [ addressAddressCity: 'Alviso', employees: 2932, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/bill', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Alteryx', @@ -966,6 +1379,9 @@ export const companiesDemo = [ addressAddressCity: 'Irvine', employees: 2916, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/alteryx', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'MNC Software', @@ -973,6 +1389,9 @@ export const companiesDemo = [ addressAddressCity: 'San Diego', employees: 2912, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mnc-software', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Celonis', @@ -980,6 +1399,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 2906, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/celonis', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Attachmate', @@ -987,6 +1409,9 @@ export const companiesDemo = [ addressAddressCity: 'Seattle', employees: 2889, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/attachmate', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'NETSCOUT', @@ -994,6 +1419,9 @@ export const companiesDemo = [ addressAddressCity: 'Westford', employees: 2853, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/netscout', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Confluent', @@ -1001,6 +1429,9 @@ export const companiesDemo = [ addressAddressCity: 'Mountain View', employees: 2844, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/confluent', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Samsara', @@ -1008,6 +1439,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 2824, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/samsara', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Chetu, Inc.', @@ -1015,6 +1449,9 @@ export const companiesDemo = [ addressAddressCity: 'Fort Lauderdale', employees: 2809, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/chetu-inc-', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Kronos Incorporated', @@ -1022,6 +1459,9 @@ export const companiesDemo = [ addressAddressCity: 'Lowell', employees: 2808, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/kronos', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Qlik', @@ -1029,6 +1469,9 @@ export const companiesDemo = [ addressAddressCity: 'King Of Prussia', employees: 2779, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/qlik', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Vertafore', @@ -1036,6 +1479,9 @@ export const companiesDemo = [ addressAddressCity: 'Denver', employees: 2768, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/vertafore', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Asana', @@ -1043,6 +1489,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 2753, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/asana', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Jamf', @@ -1050,6 +1499,9 @@ export const companiesDemo = [ addressAddressCity: 'Minneapolis', employees: 2721, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/jamf-software', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Paycor', @@ -1057,6 +1509,9 @@ export const companiesDemo = [ addressAddressCity: 'Cincinnati', employees: 2719, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/paycor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Hudl', @@ -1064,6 +1519,9 @@ export const companiesDemo = [ addressAddressCity: 'Lincoln', employees: 2709, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/hudl', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Precisely', @@ -1071,6 +1529,9 @@ export const companiesDemo = [ addressAddressCity: 'Burlington', employees: 2662, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/preciselydata', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'New Relic', @@ -1078,6 +1539,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 2636, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/new-relic-inc-', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Aptean', @@ -1085,6 +1549,9 @@ export const companiesDemo = [ addressAddressCity: 'Alpharetta', employees: 2617, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/aptean', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'o9 Solutions, Inc.', @@ -1092,6 +1559,9 @@ export const companiesDemo = [ addressAddressCity: 'Dallas', employees: 2612, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/o9solutions', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'SpotOn', @@ -1099,6 +1569,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 2608, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/spoton', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Automation Anywhere', @@ -1106,6 +1579,9 @@ export const companiesDemo = [ addressAddressCity: 'San Jose', employees: 2588, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/automation-anywhere', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Tekion Corp', @@ -1113,6 +1589,9 @@ export const companiesDemo = [ addressAddressCity: 'Pleasanton', employees: 2579, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/tekion', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Aurora', @@ -1120,6 +1599,9 @@ export const companiesDemo = [ addressAddressCity: 'Mountain View', employees: 2557, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/aurora-inc.', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'SolarWinds', @@ -1127,6 +1609,9 @@ export const companiesDemo = [ addressAddressCity: 'Austin', employees: 2529, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/solarwinds', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'GoTo', @@ -1134,6 +1619,9 @@ export const companiesDemo = [ addressAddressCity: 'Boston', employees: 2505, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/goto', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'PROS', @@ -1141,6 +1629,9 @@ export const companiesDemo = [ addressAddressCity: 'Houston', employees: 2479, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/pros', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Miro', @@ -1148,6 +1639,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 2445, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mirohq', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Kofax', @@ -1155,6 +1649,9 @@ export const companiesDemo = [ addressAddressCity: 'Irvine', employees: 2442, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/kofax', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Accolite Digital', @@ -1162,6 +1659,9 @@ export const companiesDemo = [ addressAddressCity: 'Addison', employees: 2438, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/accolitedigital', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'HashiCorp', @@ -1169,6 +1669,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 2436, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/hashicorp', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Pluralsight', @@ -1176,6 +1679,9 @@ export const companiesDemo = [ addressAddressCity: 'Draper', employees: 2433, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/pluralsight', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Bottomline Technologies', @@ -1183,6 +1689,9 @@ export const companiesDemo = [ addressAddressCity: 'Portsmouth', employees: 2407, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/bottomline-technologies', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Anaplan', @@ -1190,6 +1699,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 2401, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/anaplan', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'OneTrust', @@ -1197,6 +1709,9 @@ export const companiesDemo = [ addressAddressCity: 'Atlanta', employees: 2383, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/onetrust', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Medallia', @@ -1204,6 +1719,9 @@ export const companiesDemo = [ addressAddressCity: 'Pleasanton', employees: 2381, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/medallia-inc.', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'SailPoint', @@ -1211,6 +1729,9 @@ export const companiesDemo = [ addressAddressCity: 'Austin', employees: 2366, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sailpoint-technologies', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Appian Corporation', @@ -1218,6 +1739,9 @@ export const companiesDemo = [ addressAddressCity: 'Mc Lean', employees: 2345, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/appian-corporation', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Dealertrack', @@ -1225,6 +1749,9 @@ export const companiesDemo = [ addressAddressCity: 'New Hyde Park', employees: 2335, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/dealertrack', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'impact.com', @@ -1232,6 +1759,9 @@ export const companiesDemo = [ addressAddressCity: 'Santa Barbara', employees: 2327, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/impactdotcom', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Inhabit\u00ae', @@ -1239,6 +1769,9 @@ export const companiesDemo = [ addressAddressCity: 'Knoxville', employees: 2286, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/inhabit-iq', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'SymphonyAI', @@ -1246,6 +1779,9 @@ export const companiesDemo = [ addressAddressCity: 'Palo Alto', employees: 2282, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/symphonyai', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'CCC Intelligent Solutions', @@ -1253,6 +1789,9 @@ export const companiesDemo = [ addressAddressCity: 'Chicago', employees: 2282, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ccc-intelligent-solutions', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Toshiba Global Commerce Solutions', @@ -1260,6 +1799,9 @@ export const companiesDemo = [ addressAddressCity: 'Durham', employees: 2281, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/toshibacommerce', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Vertex Inc.', @@ -1267,6 +1809,9 @@ export const companiesDemo = [ addressAddressCity: 'King Of Prussia', employees: 2265, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/vertex-inc.', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'PRO Unlimited', @@ -1274,6 +1819,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 2264, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/prounlimited', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Five9', @@ -1281,6 +1829,9 @@ export const companiesDemo = [ addressAddressCity: 'San Ramon', employees: 2253, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/five9', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Cohesity', @@ -1288,6 +1839,9 @@ export const companiesDemo = [ addressAddressCity: 'San Jose', employees: 2252, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/cohesity', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Wind River', @@ -1295,6 +1849,9 @@ export const companiesDemo = [ addressAddressCity: 'Alameda', employees: 2244, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/wind-river', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Icertis', @@ -1302,6 +1859,9 @@ export const companiesDemo = [ addressAddressCity: 'Bellevue', employees: 2233, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/icertis', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Navan', @@ -1309,6 +1869,9 @@ export const companiesDemo = [ addressAddressCity: 'Palo Alto', employees: 2221, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/navan', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Diligent', @@ -1317,13 +1880,19 @@ export const companiesDemo = [ employees: 2215, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/diligent-board-member-services', - }, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', + }, { name: 'Applied Systems', domainName: 'appliedsystems.com', addressAddressCity: 'University Park', employees: 2198, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/applied-systems', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Forcepoint', @@ -1331,6 +1900,9 @@ export const companiesDemo = [ addressAddressCity: 'Austin', employees: 2196, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/forcepoint', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Compuware', @@ -1338,6 +1910,9 @@ export const companiesDemo = [ addressAddressCity: 'Detroit', employees: 2183, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/compuware', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Netsmart', @@ -1345,6 +1920,9 @@ export const companiesDemo = [ addressAddressCity: 'Leawood', employees: 2177, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/netsmart', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'The Apache Software Foundation', @@ -1353,13 +1931,19 @@ export const companiesDemo = [ employees: 2177, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/the-apache-software-foundation', - }, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', + }, { name: 'ArisGlobal', domainName: 'arisglobal.com', addressAddressCity: 'Miami', employees: 2168, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/aris-global', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'WORKING BY MY SELF', @@ -1367,6 +1951,9 @@ export const companiesDemo = [ addressAddressCity: 'Fort Lauderdale', employees: 2148, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/working-by-my-self', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Varonis', @@ -1374,6 +1961,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 2140, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/varonis', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Fever', @@ -1381,6 +1971,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 2125, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/fever-up', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Agilysys', @@ -1388,6 +1981,9 @@ export const companiesDemo = [ addressAddressCity: 'Alpharetta', employees: 2081, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/agilysys', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'OutSystems', @@ -1395,6 +1991,9 @@ export const companiesDemo = [ addressAddressCity: 'Boston', employees: 2057, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/outsystems', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Entrata', @@ -1402,6 +2001,9 @@ export const companiesDemo = [ addressAddressCity: 'Lehi', employees: 2045, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/entratasoftware', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Verkada', @@ -1409,6 +2011,9 @@ export const companiesDemo = [ addressAddressCity: 'San Mateo', employees: 2044, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/verkada', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Majesco', @@ -1416,6 +2021,9 @@ export const companiesDemo = [ addressAddressCity: 'Morristown', employees: 2021, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/majesco', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Boomi', @@ -1423,6 +2031,9 @@ export const companiesDemo = [ addressAddressCity: 'Wayne', employees: 2009, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/boomi-inc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'PDI Technologies', @@ -1430,6 +2041,9 @@ export const companiesDemo = [ addressAddressCity: 'Alpharetta', employees: 2005, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/pdi-technologies', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'ServiceTitan', @@ -1437,6 +2051,9 @@ export const companiesDemo = [ addressAddressCity: 'Glendale', employees: 1997, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/servicetitan', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Sitecore', @@ -1444,6 +2061,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 1943, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sitecore', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'SAP SuccessFactors', @@ -1451,6 +2071,9 @@ export const companiesDemo = [ addressAddressCity: 'South San Francisco', employees: 1941, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/successfactors', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Postman', @@ -1458,6 +2081,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 1928, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/postman-platform', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Scale AI', @@ -1465,6 +2091,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 1906, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/scaleai', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Duck Creek Technologies', @@ -1472,6 +2101,9 @@ export const companiesDemo = [ addressAddressCity: 'Boston', employees: 1894, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/duck-creek-technologies', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'MICROS Systems Inc', @@ -1479,6 +2111,9 @@ export const companiesDemo = [ addressAddressCity: 'Columbia', employees: 1882, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/micros-systems-inc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Riverbed Technology', @@ -1486,6 +2121,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 1874, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/riverbed-technology', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Fast Enterprises, LLC', @@ -1493,6 +2131,9 @@ export const companiesDemo = [ addressAddressCity: 'Englewood', employees: 1833, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/fast-enterprises', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Alvaria, Inc.', @@ -1500,6 +2141,9 @@ export const companiesDemo = [ addressAddressCity: 'Westford', employees: 1830, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/alvaria-inc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'BlackLine', @@ -1507,6 +2151,9 @@ export const companiesDemo = [ addressAddressCity: 'Woodland Hills', employees: 1826, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/blackline', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: '3Pillar Global', @@ -1514,6 +2161,9 @@ export const companiesDemo = [ addressAddressCity: 'Fairfax', employees: 1824, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/3pillar-global', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Saama', @@ -1521,6 +2171,9 @@ export const companiesDemo = [ addressAddressCity: 'Campbell', employees: 1809, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/saama-technologies', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Ancestry', @@ -1528,6 +2181,9 @@ export const companiesDemo = [ addressAddressCity: 'Lehi', employees: 1794, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ancestry.com', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'insightsoftware', @@ -1535,6 +2191,9 @@ export const companiesDemo = [ addressAddressCity: 'Raleigh', employees: 1788, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/outcomes-by-insightsoftware', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Ebix', @@ -1542,6 +2201,9 @@ export const companiesDemo = [ addressAddressCity: 'Duluth', employees: 1757, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ebix', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Zuora', @@ -1549,6 +2211,9 @@ export const companiesDemo = [ addressAddressCity: 'Redwood City', employees: 1746, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/zuora', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'IntelyCare', @@ -1556,6 +2221,9 @@ export const companiesDemo = [ addressAddressCity: 'Quincy', employees: 1731, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/intelycare', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Axway', @@ -1563,6 +2231,9 @@ export const companiesDemo = [ addressAddressCity: 'Scottsdale', employees: 1731, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/axway', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Community Brands', @@ -1570,6 +2241,9 @@ export const companiesDemo = [ addressAddressCity: 'Saint Petersburg', employees: 1731, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/communitybrands', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'InterSystems', @@ -1577,6 +2251,9 @@ export const companiesDemo = [ addressAddressCity: 'Cambridge', employees: 1730, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/intersystems', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Mozilla', @@ -1584,6 +2261,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 1721, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mozilla-corporation', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Semrush', @@ -1591,6 +2271,9 @@ export const companiesDemo = [ addressAddressCity: 'Boston', employees: 1706, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/semrush', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Avid', @@ -1598,6 +2281,9 @@ export const companiesDemo = [ addressAddressCity: 'Burlington', employees: 1705, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/avid-technology', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Conga', @@ -1605,6 +2291,9 @@ export const companiesDemo = [ addressAddressCity: 'Broomfield', employees: 1695, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/conga', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'InfoBeans', @@ -1612,6 +2301,9 @@ export const companiesDemo = [ addressAddressCity: 'Danville', employees: 1691, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/infobeans', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'AppFolio, Inc.', @@ -1619,6 +2311,9 @@ export const companiesDemo = [ addressAddressCity: 'Goleta', employees: 1688, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/appfolio-inc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Sovos', @@ -1626,6 +2321,9 @@ export const companiesDemo = [ addressAddressCity: 'Wilmington', employees: 1684, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sovos', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'nCino, Inc.', @@ -1633,6 +2331,9 @@ export const companiesDemo = [ addressAddressCity: 'Wilmington', employees: 1680, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ncino-inc-', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Vistex', @@ -1640,6 +2341,9 @@ export const companiesDemo = [ addressAddressCity: 'Hoffman Estates', employees: 1677, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/vistex', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Taboola', @@ -1647,6 +2351,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 1677, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/taboola', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'EverCommerce', @@ -1654,6 +2361,9 @@ export const companiesDemo = [ addressAddressCity: 'Denver', employees: 1673, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/evercommerce', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Virgin Pulse', @@ -1661,6 +2371,9 @@ export const companiesDemo = [ addressAddressCity: 'Providence', employees: 1666, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/virgin-pulse', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Houzz', @@ -1668,6 +2381,9 @@ export const companiesDemo = [ addressAddressCity: 'Palo Alto', employees: 1641, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/houzz', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'AvidXchange, Inc.', @@ -1675,6 +2391,9 @@ export const companiesDemo = [ addressAddressCity: 'Charlotte', employees: 1639, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/avidxchange-inc-', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Planview, Inc.', @@ -1682,6 +2401,9 @@ export const companiesDemo = [ addressAddressCity: 'Austin', employees: 1634, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/planview', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'HackerRank', @@ -1689,6 +2411,9 @@ export const companiesDemo = [ addressAddressCity: 'Mountain View', employees: 1632, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/hackerrank', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Clearwater Analytics', @@ -1696,6 +2421,9 @@ export const companiesDemo = [ addressAddressCity: 'Boise', employees: 1615, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/clearwateranalytics', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Outreach', @@ -1703,6 +2431,9 @@ export const companiesDemo = [ addressAddressCity: 'Seattle', employees: 1612, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/outreach-saas', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Everbridge', @@ -1710,6 +2441,9 @@ export const companiesDemo = [ addressAddressCity: 'Burlington', employees: 1607, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/everbridge', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Zycus', @@ -1717,6 +2451,9 @@ export const companiesDemo = [ addressAddressCity: 'Princeton', employees: 1604, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/zycus', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Bullhorn', @@ -1724,6 +2461,9 @@ export const companiesDemo = [ addressAddressCity: 'Boston', employees: 1604, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/bullhorn', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'LivePerson', @@ -1731,6 +2471,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 1603, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/liveperson', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Relativity', @@ -1738,6 +2481,9 @@ export const companiesDemo = [ addressAddressCity: 'Chicago', employees: 1601, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/relativityhq', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'HealthEdge', @@ -1745,6 +2491,9 @@ export const companiesDemo = [ addressAddressCity: 'Burlington', employees: 1600, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/healthedge', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'QAD', @@ -1752,6 +2501,9 @@ export const companiesDemo = [ addressAddressCity: 'Santa Barbara', employees: 1598, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/qad', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Braze', @@ -1759,6 +2511,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 1598, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/braze-', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Exadel', @@ -1766,6 +2521,9 @@ export const companiesDemo = [ addressAddressCity: 'Walnut Creek', employees: 1592, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/exadel', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Phenom', @@ -1773,6 +2531,9 @@ export const companiesDemo = [ addressAddressCity: 'Ambler', employees: 1592, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/phenomtxm', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Bazaarvoice', @@ -1780,6 +2541,9 @@ export const companiesDemo = [ addressAddressCity: 'Austin', employees: 1587, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/bazaarvoice', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'AppDynamics', @@ -1787,6 +2551,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 1553, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/appdynamics', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Mitchell International', @@ -1794,6 +2561,9 @@ export const companiesDemo = [ addressAddressCity: 'San Diego', employees: 1548, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mitchell-international', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Talkdesk', @@ -1801,6 +2571,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 1491, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/talkdesk', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Hughes Systique Corporation (HSC)', @@ -1808,6 +2581,9 @@ export const companiesDemo = [ addressAddressCity: 'Rockville', employees: 1481, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/hsc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Avature', @@ -1815,6 +2591,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 1478, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/avature', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Anyone Home Inc', @@ -1822,6 +2601,9 @@ export const companiesDemo = [ addressAddressCity: 'Lake Forest', employees: 1476, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/anyone-home-inc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Engineer.ai', @@ -1829,6 +2611,9 @@ export const companiesDemo = [ addressAddressCity: 'Venice', employees: 1474, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/engineer.ai', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Apptio', @@ -1836,6 +2621,9 @@ export const companiesDemo = [ addressAddressCity: 'Bellevue', employees: 1467, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/apptio', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'KMS Technology, Inc.', @@ -1843,6 +2631,9 @@ export const companiesDemo = [ addressAddressCity: 'Atlanta', employees: 1464, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/kms-technology', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'JFrog', @@ -1850,6 +2641,9 @@ export const companiesDemo = [ addressAddressCity: 'Sunnyvale', employees: 1459, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/jfrog-ltd', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'ASG Technologies', @@ -1857,6 +2651,9 @@ export const companiesDemo = [ addressAddressCity: 'Naples', employees: 1459, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/asg', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Seismic', @@ -1864,6 +2661,9 @@ export const companiesDemo = [ addressAddressCity: 'San Diego', employees: 1457, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/seismic', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'ModMed', @@ -1871,6 +2671,9 @@ export const companiesDemo = [ addressAddressCity: 'Boca Raton', employees: 1452, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/modernizing-medicine', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'ACV Auctions', @@ -1878,6 +2681,9 @@ export const companiesDemo = [ addressAddressCity: 'Buffalo', employees: 1450, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/acv-auctions', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Cerence Inc.', @@ -1885,6 +2691,9 @@ export const companiesDemo = [ addressAddressCity: 'Burlington', employees: 1448, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/cerence', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Via', @@ -1892,6 +2701,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 1446, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ridewithvia', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Kingsoft', @@ -1899,6 +2711,9 @@ export const companiesDemo = [ addressAddressCity: 'Palo Alto', employees: 1445, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/kingsoft', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Model N', @@ -1906,6 +2721,9 @@ export const companiesDemo = [ addressAddressCity: 'San Mateo', employees: 1445, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/modeln', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'ThoughtSpot', @@ -1913,6 +2731,9 @@ export const companiesDemo = [ addressAddressCity: 'Mountain View', employees: 1436, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/thoughtspot', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'SSS', @@ -1920,6 +2741,9 @@ export const companiesDemo = [ addressAddressCity: 'Littleton', employees: 1431, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/employee-based-software', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'BeyondTrust', @@ -1927,6 +2751,9 @@ export const companiesDemo = [ addressAddressCity: 'Duluth', employees: 1428, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/beyondtrust', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'MetricStream', @@ -1934,6 +2761,9 @@ export const companiesDemo = [ addressAddressCity: 'Alviso', employees: 1426, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/metricstream', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'LogMeIn', @@ -1941,6 +2771,9 @@ export const companiesDemo = [ addressAddressCity: 'Boston', employees: 1425, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/logmein', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Khoros', @@ -1948,6 +2781,9 @@ export const companiesDemo = [ addressAddressCity: 'Austin', employees: 1424, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/khoros', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Sprout Social, Inc.', @@ -1955,6 +2791,9 @@ export const companiesDemo = [ addressAddressCity: 'Chicago', employees: 1416, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sprout-social-inc-', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Odessa', @@ -1962,6 +2801,9 @@ export const companiesDemo = [ addressAddressCity: 'Philadelphia', employees: 1415, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/odessa-inc-', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Enverus', @@ -1969,6 +2811,9 @@ export const companiesDemo = [ addressAddressCity: 'Austin', employees: 1404, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/enverus-energy', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'AvePoint', @@ -1976,6 +2821,9 @@ export const companiesDemo = [ addressAddressCity: 'Jersey City', employees: 1404, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/avepoint', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Gong', @@ -1983,6 +2831,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 1398, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/gong-io', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Syncfusion', @@ -1990,6 +2841,9 @@ export const companiesDemo = [ addressAddressCity: 'Morrisville', employees: 1397, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/syncfusion', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Ping Identity', @@ -1997,6 +2851,9 @@ export const companiesDemo = [ addressAddressCity: 'Denver', employees: 1388, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ping-identity', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'WellSky', @@ -2004,6 +2861,9 @@ export const companiesDemo = [ addressAddressCity: 'Overland Park', employees: 1387, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/wellsky', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Tricentis', @@ -2011,6 +2871,9 @@ export const companiesDemo = [ addressAddressCity: 'Austin', employees: 1383, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/tricentis', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Taskrabbit', @@ -2018,6 +2881,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 1383, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/taskrabbit', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Syniti', @@ -2025,6 +2891,9 @@ export const companiesDemo = [ addressAddressCity: 'Needham Heights', employees: 1372, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/synitidata', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'BigCommerce', @@ -2032,6 +2901,9 @@ export const companiesDemo = [ addressAddressCity: 'Austin', employees: 1360, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/bigcommerce', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'OEC', @@ -2039,6 +2911,9 @@ export const companiesDemo = [ addressAddressCity: 'Richfield', employees: 1357, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/oeconnection', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Calsoft', @@ -2046,6 +2921,9 @@ export const companiesDemo = [ addressAddressCity: 'San Jose', employees: 1357, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/calsoft', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Taller', @@ -2053,6 +2931,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 1351, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/taller-technologies', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Planet', @@ -2060,6 +2941,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 1348, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/planet-labs', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: '6sense', @@ -2067,6 +2951,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 1346, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/6sense', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Vitech Systems Group', @@ -2074,6 +2961,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 1345, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/vitech-systems-group', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Smarsh', @@ -2081,6 +2971,9 @@ export const companiesDemo = [ addressAddressCity: 'Portland', employees: 1344, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/smarsh', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'NICE Actimize', @@ -2088,6 +2981,9 @@ export const companiesDemo = [ addressAddressCity: 'Hoboken', employees: 1343, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/actimize', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Dataiku', @@ -2095,6 +2991,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 1340, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/dataiku', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Liferay', @@ -2102,6 +3001,9 @@ export const companiesDemo = [ addressAddressCity: 'Diamond Bar', employees: 1329, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/liferay-inc-', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Gainsight', @@ -2109,6 +3011,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 1328, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/gainsight', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Infotech', @@ -2116,6 +3021,9 @@ export const companiesDemo = [ addressAddressCity: 'Gainesville', employees: 1322, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/infotech-inc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'JAGGAER', @@ -2123,6 +3031,9 @@ export const companiesDemo = [ addressAddressCity: 'Morrisville', employees: 1317, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/jaggaer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Checkr, Inc.', @@ -2130,6 +3041,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 1304, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/checkr-com', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'CARFAX', @@ -2137,6 +3051,9 @@ export const companiesDemo = [ addressAddressCity: 'Centreville', employees: 1296, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/carfax', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Lucid Software', @@ -2144,6 +3061,9 @@ export const companiesDemo = [ addressAddressCity: 'South Jordan', employees: 1295, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/lucidsoftware', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Domo', @@ -2151,6 +3071,9 @@ export const companiesDemo = [ addressAddressCity: 'American Fork', employees: 1293, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/domotalk', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Podium', @@ -2158,6 +3081,9 @@ export const companiesDemo = [ addressAddressCity: 'Lehi', employees: 1292, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/podium', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Mendix', @@ -2165,6 +3091,9 @@ export const companiesDemo = [ addressAddressCity: 'Boston', employees: 1290, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mendix', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'EDB', @@ -2172,6 +3101,9 @@ export const companiesDemo = [ addressAddressCity: 'Bedford', employees: 1289, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/edbpostgres', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'OneStream Software', @@ -2179,6 +3111,9 @@ export const companiesDemo = [ addressAddressCity: 'Birmingham', employees: 1288, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/onestream-software', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Rent.', @@ -2186,6 +3121,9 @@ export const companiesDemo = [ addressAddressCity: 'Atlanta', employees: 1285, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/rentsolutions', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Waystar', @@ -2193,6 +3131,9 @@ export const companiesDemo = [ addressAddressCity: 'Louisville', employees: 1273, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/waystar', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: '2020', @@ -2200,6 +3141,9 @@ export const companiesDemo = [ addressAddressCity: 'Westford', employees: 1267, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/2020spaces', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'isolved', @@ -2207,6 +3151,9 @@ export const companiesDemo = [ addressAddressCity: 'Charlotte', employees: 1261, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/isolved', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Art Technology Group', @@ -2214,6 +3161,9 @@ export const companiesDemo = [ addressAddressCity: 'Cambridge', employees: 1259, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/atg', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'CAST', @@ -2221,6 +3171,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 1259, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/cast', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'OCLC', @@ -2228,6 +3181,9 @@ export const companiesDemo = [ addressAddressCity: 'Dublin', employees: 1258, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/oclc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Mediaocean', @@ -2235,6 +3191,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 1255, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mediaocean', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Bandwidth Inc.', @@ -2242,6 +3201,9 @@ export const companiesDemo = [ addressAddressCity: 'Raleigh', employees: 1252, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/bandwidth-inc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Hexagon Safety, Infrastructure & Geospatial', @@ -2249,6 +3211,9 @@ export const companiesDemo = [ addressAddressCity: 'Madison', employees: 1252, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/hexagon-geospatial', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Wish', @@ -2256,6 +3221,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 1248, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/wishshopping', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Sagitec Solutions', @@ -2263,6 +3231,9 @@ export const companiesDemo = [ addressAddressCity: 'Saint Paul', employees: 1244, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sagitec-solutions', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Zinnia ', @@ -2270,6 +3241,9 @@ export const companiesDemo = [ addressAddressCity: 'Greenwich', employees: 1243, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/zinniatm', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'CureMD', @@ -2277,6 +3251,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 1243, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/curemd', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Druva', @@ -2284,6 +3261,9 @@ export const companiesDemo = [ addressAddressCity: 'Santa Clara', employees: 1238, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/druva', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Restaurant365', @@ -2292,13 +3272,19 @@ export const companiesDemo = [ employees: 1234, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/restaurant365-cloud-erp-for-restaurants', - }, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', + }, { name: 'Lawson Software', domainName: 'lawson.com', addressAddressCity: 'New York', employees: 1231, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/lawson-software', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'AlphaSense', @@ -2306,6 +3292,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 1223, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/alphasense', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'ECI Software Solutions', @@ -2313,6 +3302,9 @@ export const companiesDemo = [ addressAddressCity: 'Fort Worth', employees: 1223, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/eci-software--solutions', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Wrike', @@ -2320,6 +3312,9 @@ export const companiesDemo = [ addressAddressCity: 'San Diego', employees: 1210, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/wrike', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Syndigo', @@ -2327,6 +3322,9 @@ export const companiesDemo = [ addressAddressCity: 'Chicago', employees: 1208, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/syndigo', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Gigamon', @@ -2334,6 +3332,9 @@ export const companiesDemo = [ addressAddressCity: 'Santa Clara', employees: 1196, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/gigamon', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Fastly', @@ -2341,6 +3342,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 1188, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/fastly', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Cantaloupe Inc', @@ -2348,6 +3352,9 @@ export const companiesDemo = [ addressAddressCity: 'Malvern', employees: 1187, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/cantaloupeinc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'EagleView', @@ -2355,6 +3362,9 @@ export const companiesDemo = [ addressAddressCity: 'Bellevue', employees: 1184, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/eagleview-technologies-inc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Litera', @@ -2362,6 +3372,9 @@ export const companiesDemo = [ addressAddressCity: 'Chicago', employees: 1183, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/literamicrosystems', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Collibra', @@ -2369,6 +3382,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 1183, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/collibra', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Picsart', @@ -2376,6 +3392,9 @@ export const companiesDemo = [ addressAddressCity: 'Miami Beach', employees: 1180, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/picsart-photo-studio', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'CalAmp', @@ -2383,6 +3402,9 @@ export const companiesDemo = [ addressAddressCity: 'Irvine', employees: 1180, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/calamp-corp', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'ESS', @@ -2390,6 +3412,9 @@ export const companiesDemo = [ addressAddressCity: 'Tempe', employees: 1178, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ess', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Grafana Labs', @@ -2397,6 +3422,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 1178, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/grafana-labs', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Fivetran', @@ -2404,6 +3432,9 @@ export const companiesDemo = [ addressAddressCity: 'Oakland', employees: 1176, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/fivetran', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'CentralSquare Technologies', @@ -2411,6 +3442,9 @@ export const companiesDemo = [ addressAddressCity: 'Lake Mary', employees: 1175, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/centralsqtech', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'StubHub', @@ -2418,6 +3452,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 1164, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/stubhub', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'EIS Ltd', @@ -2425,6 +3462,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 1154, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/eisgroupltd', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Tebra', @@ -2432,6 +3472,9 @@ export const companiesDemo = [ addressAddressCity: 'Corona Del Mar', employees: 1151, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/tebra', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Benefitfocus', @@ -2439,6 +3482,9 @@ export const companiesDemo = [ addressAddressCity: 'Charleston', employees: 1148, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/benefitfocus', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'NISC', @@ -2446,6 +3492,9 @@ export const companiesDemo = [ addressAddressCity: 'Lake Saint Louis', employees: 1140, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/nisc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Dell Compellent', @@ -2453,6 +3502,9 @@ export const companiesDemo = [ addressAddressCity: 'Eden Prairie', employees: 1138, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/dell-compellent', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Radancy', @@ -2460,6 +3512,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 1137, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/radancy', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Granicus', @@ -2467,6 +3522,9 @@ export const companiesDemo = [ addressAddressCity: 'Denver', employees: 1134, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/granicusinc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'ACTIVE Network', @@ -2474,6 +3532,9 @@ export const companiesDemo = [ addressAddressCity: 'Plano', employees: 1134, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/the-active-network', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Acquia', @@ -2481,6 +3542,9 @@ export const companiesDemo = [ addressAddressCity: 'Boston', employees: 1134, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/acquia', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'WalkMe\u2122', @@ -2488,6 +3552,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 1127, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/walkme', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Outbrain', @@ -2495,6 +3562,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 1123, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/outbrain', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'WillowTree', @@ -2502,6 +3572,9 @@ export const companiesDemo = [ addressAddressCity: 'Charlottesville', employees: 1117, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/willowtreeapps', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'LogicMonitor', @@ -2509,6 +3582,9 @@ export const companiesDemo = [ addressAddressCity: 'Santa Barbara', employees: 1113, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/logicmonitor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Jellysmack', @@ -2516,6 +3592,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 1109, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/jellysmack', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Henry Schein One', @@ -2523,6 +3602,9 @@ export const companiesDemo = [ addressAddressCity: 'American Fork', employees: 1108, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/henry-schein-one', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Prometheus Group', @@ -2530,6 +3612,9 @@ export const companiesDemo = [ addressAddressCity: 'Raleigh', employees: 1102, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/prometheusgroup', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Atlas', @@ -2537,6 +3622,9 @@ export const companiesDemo = [ addressAddressCity: 'Chicago', employees: 1101, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/atlashxm', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Dialpad', @@ -2544,6 +3632,9 @@ export const companiesDemo = [ addressAddressCity: 'San Ramon', employees: 1101, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/dialpad', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Accruent', @@ -2551,6 +3642,9 @@ export const companiesDemo = [ addressAddressCity: 'Austin', employees: 1098, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/accruent', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Charles River Development', @@ -2558,6 +3652,9 @@ export const companiesDemo = [ addressAddressCity: 'Burlington', employees: 1090, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/charles-river-development', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Flexera', @@ -2565,6 +3662,9 @@ export const companiesDemo = [ addressAddressCity: 'Itasca', employees: 1089, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/flexera', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Quotient Technology Inc.', @@ -2572,6 +3672,9 @@ export const companiesDemo = [ addressAddressCity: 'Salt Lake City', employees: 1087, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/quotient-technology', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Sage Intacct, Inc.', @@ -2579,6 +3682,9 @@ export const companiesDemo = [ addressAddressCity: 'San Jose', employees: 1087, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sageintacct', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Plaid', @@ -2586,6 +3692,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 1081, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/plaid-', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'C3 AI', @@ -2593,6 +3702,9 @@ export const companiesDemo = [ addressAddressCity: 'Redwood City', employees: 1077, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/c3-ai', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Upland Software', @@ -2600,6 +3712,9 @@ export const companiesDemo = [ addressAddressCity: 'Austin', employees: 1072, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/upland-software', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Zapier', @@ -2607,6 +3722,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 1066, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/zapier', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'WSO2', @@ -2614,6 +3732,9 @@ export const companiesDemo = [ addressAddressCity: 'Santa Clara', employees: 1065, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/wso2', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Auctane', @@ -2621,6 +3742,9 @@ export const companiesDemo = [ addressAddressCity: 'Austin', employees: 1055, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/auctane', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Salesloft', @@ -2628,6 +3752,9 @@ export const companiesDemo = [ addressAddressCity: 'Atlanta', employees: 1055, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/salesloft', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'RLDatix', @@ -2635,6 +3762,9 @@ export const companiesDemo = [ addressAddressCity: 'Chicago', employees: 1048, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/rldatix', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'SS&C Blue Prism', @@ -2642,6 +3772,9 @@ export const companiesDemo = [ addressAddressCity: 'Windsor', employees: 1048, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/blue-prism-limited', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Waitr', @@ -2649,6 +3782,9 @@ export const companiesDemo = [ addressAddressCity: 'Lafayette', employees: 1043, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/waitr-inc-', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Software Engineering Institute | Carnegie Mellon University', @@ -2657,7 +3793,10 @@ export const companiesDemo = [ employees: 1043, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/software-engineering-institute', - }, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', + }, { name: 'Downey Unified School District', domainName: 'dusd.net', @@ -2665,13 +3804,19 @@ export const companiesDemo = [ employees: 1038, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/downey-unified-school-district', - }, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', + }, { name: 'Private Access, Inc.', domainName: 'privateaccess.com', addressAddressCity: 'Irvine', employees: 1037, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/private-access-inc.', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'iManage', @@ -2679,6 +3824,9 @@ export const companiesDemo = [ addressAddressCity: 'Chicago', employees: 1036, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/imanage', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'QASource', @@ -2686,6 +3834,9 @@ export const companiesDemo = [ addressAddressCity: 'Pleasanton', employees: 1032, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/qasource', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Azuga, Inc.', @@ -2693,6 +3844,9 @@ export const companiesDemo = [ addressAddressCity: 'San Jose', employees: 1026, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/azuga-inc-', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Talent Systems, LLC', @@ -2700,6 +3854,9 @@ export const companiesDemo = [ addressAddressCity: 'Los Angeles', employees: 1022, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/talent-systems-llc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Datasite', @@ -2707,6 +3864,9 @@ export const companiesDemo = [ addressAddressCity: 'Minneapolis', employees: 1021, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/datasiteglobal', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'AVASOFT', @@ -2714,6 +3874,9 @@ export const companiesDemo = [ addressAddressCity: 'Blue Bell', employees: 1017, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/avasoft', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'DataRobot', @@ -2721,6 +3884,9 @@ export const companiesDemo = [ addressAddressCity: 'Boston', employees: 1015, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/datarobot', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Technisys', @@ -2728,6 +3894,9 @@ export const companiesDemo = [ addressAddressCity: 'Miami', employees: 1014, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/technisys', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'project44', @@ -2735,6 +3904,9 @@ export const companiesDemo = [ addressAddressCity: 'Chicago', employees: 1013, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/project-44', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Imprivata', @@ -2742,6 +3914,9 @@ export const companiesDemo = [ addressAddressCity: 'Waltham', employees: 1013, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/imprivata', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Webflow', @@ -2749,6 +3924,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 1011, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/webflow-inc-', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Blend', @@ -2756,6 +3934,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 1011, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/blend-', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Egnyte', @@ -2763,6 +3944,9 @@ export const companiesDemo = [ addressAddressCity: 'Mountain View', employees: 1009, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/egnyte', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'SS&C Eze', @@ -2770,6 +3954,9 @@ export const companiesDemo = [ addressAddressCity: 'Windsor', employees: 1008, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ezesoftware', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Tipalti', @@ -2777,6 +3964,9 @@ export const companiesDemo = [ addressAddressCity: 'San Mateo', employees: 1007, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/tipalti', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Altium\u00ae', @@ -2784,6 +3974,9 @@ export const companiesDemo = [ addressAddressCity: 'La Jolla', employees: 1005, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/altium', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'airSlate', @@ -2791,6 +3984,9 @@ export const companiesDemo = [ addressAddressCity: 'Brookline', employees: 1001, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/airslate', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Arbisoft', @@ -2798,6 +3994,9 @@ export const companiesDemo = [ addressAddressCity: 'Mckinney', employees: 996, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/arbisoft', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Airtable', @@ -2805,6 +4004,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 989, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/airtable', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Birdeye', @@ -2812,6 +4014,9 @@ export const companiesDemo = [ addressAddressCity: 'Palo Alto', employees: 988, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/birdeye', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Ultimate Software', @@ -2819,6 +4024,9 @@ export const companiesDemo = [ addressAddressCity: 'Fort Lauderdale', employees: 988, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ultimate-software', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Homecare Homebase', @@ -2826,6 +4034,9 @@ export const companiesDemo = [ addressAddressCity: 'Dallas', employees: 987, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/homecare-homebase', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'DISCO', @@ -2833,6 +4044,9 @@ export const companiesDemo = [ addressAddressCity: 'Austin', employees: 984, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/cs-disco-llc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Highspot', @@ -2840,6 +4054,9 @@ export const companiesDemo = [ addressAddressCity: 'Seattle', employees: 982, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/highspot', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Sagent', @@ -2847,6 +4064,9 @@ export const companiesDemo = [ addressAddressCity: 'King Of Prussia', employees: 981, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sagent-lending-technologies', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Apollo.io', @@ -2854,6 +4074,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 981, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/apolloio', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'PAS', @@ -2861,6 +4084,9 @@ export const companiesDemo = [ addressAddressCity: 'Houston', employees: 981, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/pas', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Wikimedia Foundation', @@ -2868,6 +4094,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 981, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/wikimedia-foundation', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Nintex', @@ -2875,6 +4104,9 @@ export const companiesDemo = [ addressAddressCity: 'Bellevue', employees: 978, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/nintex', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'RUCKUS Networks', @@ -2882,6 +4114,9 @@ export const companiesDemo = [ addressAddressCity: 'Sunnyvale', employees: 978, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ruckus-networks', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'ForgeRock', @@ -2889,6 +4124,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 977, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/forgerock', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Trading Technologies', @@ -2896,6 +4134,9 @@ export const companiesDemo = [ addressAddressCity: 'Chicago', employees: 975, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/trading-technologies', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'KANINI', @@ -2903,6 +4144,9 @@ export const companiesDemo = [ addressAddressCity: 'Nashville', employees: 972, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/kanini', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Dealer.com', @@ -2910,6 +4154,9 @@ export const companiesDemo = [ addressAddressCity: 'Burlington', employees: 962, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/dealer-com', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'WS', @@ -2917,6 +4164,9 @@ export const companiesDemo = [ addressAddressCity: 'Pinehurst', employees: 960, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/wbem-solutions', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Kyriba', @@ -2924,6 +4174,9 @@ export const companiesDemo = [ addressAddressCity: 'San Diego', employees: 960, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/kyriba', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Demandbase', @@ -2931,6 +4184,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 958, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/demandbase', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Sumo Logic', @@ -2938,6 +4194,9 @@ export const companiesDemo = [ addressAddressCity: 'Redwood City', employees: 954, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sumo-logic', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Edifecs', @@ -2945,6 +4204,9 @@ export const companiesDemo = [ addressAddressCity: 'Bellevue', employees: 949, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/edifecs', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'ibi | Information Builders', @@ -2952,6 +4214,9 @@ export const companiesDemo = [ addressAddressCity: 'Fort Lauderdale', employees: 948, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/information-builders', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Emburse', @@ -2959,6 +4224,9 @@ export const companiesDemo = [ addressAddressCity: 'Los Angeles', employees: 941, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/emburse', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'ConstructConnect', @@ -2966,6 +4234,9 @@ export const companiesDemo = [ addressAddressCity: 'Cincinnati', employees: 940, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/constructconnect', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Perforce Software', @@ -2973,6 +4244,9 @@ export const companiesDemo = [ addressAddressCity: 'Minneapolis', employees: 939, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/perforce', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Insurity', @@ -2980,6 +4254,9 @@ export const companiesDemo = [ addressAddressCity: 'Hartford', employees: 938, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/insurity', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'webOS', @@ -2987,6 +4264,9 @@ export const companiesDemo = [ addressAddressCity: 'Santa Clara', employees: 936, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/webos', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Zenoti', @@ -2994,6 +4274,9 @@ export const companiesDemo = [ addressAddressCity: 'Bellevue', employees: 934, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/zenoti', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Intapp', @@ -3001,6 +4284,9 @@ export const companiesDemo = [ addressAddressCity: 'Palo Alto', employees: 930, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/intapp', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'OATI', @@ -3008,6 +4294,9 @@ export const companiesDemo = [ addressAddressCity: 'Minneapolis', employees: 930, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/oati', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Frontline Education', @@ -3015,6 +4304,9 @@ export const companiesDemo = [ addressAddressCity: 'Malvern', employees: 926, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/frontline-education', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Aspect Software', @@ -3022,6 +4314,9 @@ export const companiesDemo = [ addressAddressCity: 'Westford', employees: 920, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/aspect-software', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'GreyOrange', @@ -3029,6 +4324,9 @@ export const companiesDemo = [ addressAddressCity: 'Roswell', employees: 919, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/gogreyorange', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Sirion', @@ -3036,6 +4334,9 @@ export const companiesDemo = [ addressAddressCity: 'Bellevue', employees: 918, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sirionlabs', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'In Time Tec', @@ -3043,6 +4344,9 @@ export const companiesDemo = [ addressAddressCity: 'Meridian', employees: 917, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/in-time-tec', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Operative', @@ -3050,6 +4354,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 910, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/operative', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Kore.ai', @@ -3057,6 +4364,9 @@ export const companiesDemo = [ addressAddressCity: 'Orlando', employees: 908, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/kore-inc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Redis', @@ -3064,6 +4374,9 @@ export const companiesDemo = [ addressAddressCity: 'Mountain View', employees: 908, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/redisinc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Addepar', @@ -3071,6 +4384,9 @@ export const companiesDemo = [ addressAddressCity: 'Mountain View', employees: 907, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/addepar', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'TCP Software', @@ -3078,6 +4394,9 @@ export const companiesDemo = [ addressAddressCity: 'Austin', employees: 902, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/tcpsoftware', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'TraceLink', @@ -3085,6 +4404,9 @@ export const companiesDemo = [ addressAddressCity: 'Wilmington', employees: 897, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/tracelink', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Benchling', @@ -3092,6 +4414,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 895, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/benchling', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Housecall Pro', @@ -3099,6 +4424,9 @@ export const companiesDemo = [ addressAddressCity: 'Denver', employees: 894, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/housecallpro', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Turnitin', @@ -3106,6 +4434,9 @@ export const companiesDemo = [ addressAddressCity: 'Oakland', employees: 885, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/turnitin', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Schr\u00f6dinger', @@ -3113,6 +4444,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 885, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/schr-dinger', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'eGain Corporation', @@ -3120,6 +4454,9 @@ export const companiesDemo = [ addressAddressCity: 'Sunnyvale', employees: 879, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/egain-corporation', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Brightly', @@ -3127,6 +4464,9 @@ export const companiesDemo = [ addressAddressCity: 'Cary', employees: 878, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/brightlysoftware', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Snap-on Business Solutions', @@ -3134,6 +4474,9 @@ export const companiesDemo = [ addressAddressCity: 'Richfield', employees: 876, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/snap-on-business-solutions', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'ACS Technologies', @@ -3141,6 +4484,9 @@ export const companiesDemo = [ addressAddressCity: 'Florence', employees: 874, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/acs-technologies', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Uniphore', @@ -3148,6 +4494,9 @@ export const companiesDemo = [ addressAddressCity: 'Palo Alto', employees: 872, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/uniphore', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Folio3 Software', @@ -3155,6 +4504,9 @@ export const companiesDemo = [ addressAddressCity: 'Belmont', employees: 872, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/folio3', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'MHC', @@ -3162,6 +4514,9 @@ export const companiesDemo = [ addressAddressCity: 'Burnsville', employees: 871, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mhcautomation', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Xactly Corp', @@ -3169,6 +4524,9 @@ export const companiesDemo = [ addressAddressCity: 'Los Gatos', employees: 865, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/xactly-corporation', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Weave', @@ -3176,6 +4534,9 @@ export const companiesDemo = [ addressAddressCity: 'Lehi', employees: 864, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/getweave', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Microworkers', @@ -3183,6 +4544,9 @@ export const companiesDemo = [ addressAddressCity: 'Frisco', employees: 862, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/microworkers.com', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Trilogy', @@ -3190,6 +4554,9 @@ export const companiesDemo = [ addressAddressCity: 'Austin', employees: 861, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/trilogy', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Akvelon, Inc.', @@ -3197,6 +4564,9 @@ export const companiesDemo = [ addressAddressCity: 'Bellevue', employees: 860, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/akvelon', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'iPipeline', @@ -3204,6 +4574,9 @@ export const companiesDemo = [ addressAddressCity: 'Exton', employees: 856, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ipipeline', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Salary.com', @@ -3211,6 +4584,9 @@ export const companiesDemo = [ addressAddressCity: 'Wellesley Hills', employees: 854, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/salarydotcom', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'PandaDoc', @@ -3218,6 +4594,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 851, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/pandadoc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'MSC Software', @@ -3225,6 +4604,9 @@ export const companiesDemo = [ addressAddressCity: 'Newport Beach', employees: 849, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/msc-software', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Harness', @@ -3232,6 +4614,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 848, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/harnessinc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'ActiveCampaign', @@ -3239,6 +4624,9 @@ export const companiesDemo = [ addressAddressCity: 'Chicago', employees: 848, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/activecampaign-inc-', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Doximity', @@ -3246,6 +4634,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 848, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/doximity', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Couchbase', @@ -3253,6 +4644,9 @@ export const companiesDemo = [ addressAddressCity: 'Santa Clara', employees: 847, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/couchbase', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Lytx, Inc.', @@ -3260,6 +4654,9 @@ export const companiesDemo = [ addressAddressCity: 'San Diego', employees: 845, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/lytxinc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Pendo.io', @@ -3267,6 +4664,9 @@ export const companiesDemo = [ addressAddressCity: 'Raleigh', employees: 844, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/pendo-io', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Workato', @@ -3274,6 +4674,9 @@ export const companiesDemo = [ addressAddressCity: 'Mountain View', employees: 842, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/workato', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Saviynt', @@ -3281,6 +4684,9 @@ export const companiesDemo = [ addressAddressCity: 'El Segundo', employees: 842, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/saviynt', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'SmartBear', @@ -3288,6 +4694,9 @@ export const companiesDemo = [ addressAddressCity: 'Somerville', employees: 838, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/smartbear', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Rovi Corporation (now TiVo)', @@ -3295,6 +4704,9 @@ export const companiesDemo = [ addressAddressCity: 'San Carlos', employees: 837, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/rovi', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Handshake', @@ -3302,6 +4714,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 833, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/team-handshake', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Navitaire, an Amadeus company', @@ -3309,6 +4724,9 @@ export const companiesDemo = [ addressAddressCity: 'Minneapolis', employees: 829, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/navitaire', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'OneSpan', @@ -3316,6 +4734,9 @@ export const companiesDemo = [ addressAddressCity: 'Chicago', employees: 826, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/onespan', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Bitsight', @@ -3323,6 +4744,9 @@ export const companiesDemo = [ addressAddressCity: 'Boston', employees: 824, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/bitsight', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'ID.me', @@ -3330,6 +4754,9 @@ export const companiesDemo = [ addressAddressCity: 'Mc Lean', employees: 823, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/id.me', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'SymphonyAI Retail CPG', @@ -3337,6 +4764,9 @@ export const companiesDemo = [ addressAddressCity: 'Frisco', employees: 823, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/symphonyretailcpg', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Unilog', @@ -3344,6 +4774,9 @@ export const companiesDemo = [ addressAddressCity: 'Wayne', employees: 823, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/unilog-inc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Teletrac Navman', @@ -3351,6 +4784,9 @@ export const companiesDemo = [ addressAddressCity: 'Irvine', employees: 821, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/teletrac', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Buildertrend', @@ -3358,6 +4794,9 @@ export const companiesDemo = [ addressAddressCity: 'Omaha', employees: 819, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/buildertrend', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Tecsys Inc.', @@ -3365,6 +4804,9 @@ export const companiesDemo = [ addressAddressCity: 'Chicago', employees: 816, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/tecsys-inc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'ThousandEyes (part of Cisco)', @@ -3372,6 +4814,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 816, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/thousandeyes', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Greenhouse Software', @@ -3379,6 +4824,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 814, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/greenhouse-inc-', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Exiger', @@ -3386,6 +4834,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 811, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/exiger', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'MBO Partners', @@ -3393,6 +4844,9 @@ export const companiesDemo = [ addressAddressCity: 'Ashburn', employees: 808, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mbo-partners', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Neo4j', @@ -3400,6 +4854,9 @@ export const companiesDemo = [ addressAddressCity: 'San Mateo', employees: 808, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/neo4j', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'VTS', @@ -3407,6 +4864,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 805, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/we-are-vts', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Slice', @@ -3414,6 +4874,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 805, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/slice', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Amplitude', @@ -3421,6 +4884,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 803, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/amplitude-analytics', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Daxko', @@ -3428,6 +4894,9 @@ export const companiesDemo = [ addressAddressCity: 'Birmingham', employees: 802, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/daxko', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'AppLovin', @@ -3435,6 +4904,9 @@ export const companiesDemo = [ addressAddressCity: 'Palo Alto', employees: 802, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/applovin', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Xometry', @@ -3442,6 +4914,9 @@ export const companiesDemo = [ addressAddressCity: 'Rockville', employees: 801, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/xometry', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Quickbase', @@ -3449,6 +4924,9 @@ export const companiesDemo = [ addressAddressCity: 'Boston', employees: 796, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/quickbase', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Agora', @@ -3456,6 +4934,9 @@ export const companiesDemo = [ addressAddressCity: 'Santa Clara', employees: 793, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/agora-lab-inc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'InMoment', @@ -3463,6 +4944,9 @@ export const companiesDemo = [ addressAddressCity: 'South Jordan', employees: 793, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/weareinmoment', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'PatientPoint\u00ae', @@ -3470,6 +4954,9 @@ export const companiesDemo = [ addressAddressCity: 'Cincinnati', employees: 789, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/patientpoint', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'HHAeXchange', @@ -3477,6 +4964,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 788, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/hhaexchange', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'NinjaOne', @@ -3484,6 +4974,9 @@ export const companiesDemo = [ addressAddressCity: 'Austin', employees: 787, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ninjaone', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Zywave', @@ -3491,6 +4984,9 @@ export const companiesDemo = [ addressAddressCity: 'Milwaukee', employees: 785, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/zywave', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Adobe Marketo', @@ -3498,6 +4994,9 @@ export const companiesDemo = [ addressAddressCity: 'San Jose', employees: 784, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/adobemarketoengage', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'MasterControl', @@ -3505,6 +5004,9 @@ export const companiesDemo = [ addressAddressCity: 'Salt Lake City', employees: 783, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mastercontrol', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Jumio Corporation', @@ -3512,6 +5014,9 @@ export const companiesDemo = [ addressAddressCity: 'Sunnyvale', employees: 779, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/jumio-corporation', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'CRMNEXT', @@ -3519,6 +5024,9 @@ export const companiesDemo = [ addressAddressCity: 'Raleigh', employees: 778, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/crmnext', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'ChannelAdvisor', @@ -3526,6 +5034,9 @@ export const companiesDemo = [ addressAddressCity: 'Morrisville', employees: 777, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/channeladvisor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'SumTotal Systems, LLC', @@ -3533,6 +5044,9 @@ export const companiesDemo = [ addressAddressCity: 'Gainesville', employees: 776, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sumtotal-systems', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Payscale', @@ -3540,6 +5054,9 @@ export const companiesDemo = [ addressAddressCity: 'Seattle', employees: 775, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/payscale', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Riskonnect, Inc.', @@ -3547,6 +5064,9 @@ export const companiesDemo = [ addressAddressCity: 'Kennesaw', employees: 775, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/riskonnect-inc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Riskified', @@ -3554,6 +5074,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 770, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/riskified', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Shopkeeper', @@ -3561,6 +5084,9 @@ export const companiesDemo = [ addressAddressCity: 'Pompano Beach', employees: 770, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/shopkeeperapp', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Stack Overflow', @@ -3568,6 +5094,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 768, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/stack-overflow', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Netwrix Corporation', @@ -3575,6 +5104,9 @@ export const companiesDemo = [ addressAddressCity: 'Frisco', employees: 768, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/netwrix-corporation', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Securonix', @@ -3582,6 +5114,9 @@ export const companiesDemo = [ addressAddressCity: 'Addison', employees: 767, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/securonix', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Draup', @@ -3589,6 +5124,9 @@ export const companiesDemo = [ addressAddressCity: 'Spring', employees: 766, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/draupplatform', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'eQ Technologic', @@ -3596,6 +5134,9 @@ export const companiesDemo = [ addressAddressCity: 'Costa Mesa', employees: 766, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/eq-technologic', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Mindtickle', @@ -3603,6 +5144,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 765, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mindtickle', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Omnitracs', @@ -3610,6 +5154,9 @@ export const companiesDemo = [ addressAddressCity: 'Roanoke', employees: 764, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/omnitracs', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Programmer', @@ -3617,6 +5164,9 @@ export const companiesDemo = [ addressAddressCity: 'Austin', employees: 762, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/programmer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Navis', @@ -3624,6 +5174,9 @@ export const companiesDemo = [ addressAddressCity: 'Alpharetta', employees: 761, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/navis', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'AuditBoard', @@ -3631,6 +5184,9 @@ export const companiesDemo = [ addressAddressCity: 'Cerritos', employees: 759, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/auditboard', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Algolia', @@ -3638,6 +5194,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 759, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/algolia', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'YML', @@ -3645,6 +5204,9 @@ export const companiesDemo = [ addressAddressCity: 'Redwood City', employees: 754, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ymlco', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Bolt', @@ -3652,6 +5214,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 750, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/bolt-com', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Dandy', @@ -3659,6 +5224,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 745, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/dandyofficial', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Diverse Lynx', @@ -3666,6 +5234,9 @@ export const companiesDemo = [ addressAddressCity: 'Princeton', employees: 743, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/diverselynx', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'JMP', @@ -3673,6 +5244,9 @@ export const companiesDemo = [ addressAddressCity: 'Cary', employees: 741, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/jmp', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'ON24', @@ -3680,6 +5254,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 741, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/on24', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'LabVantage Solutions, Inc', @@ -3687,6 +5264,9 @@ export const companiesDemo = [ addressAddressCity: 'Somerset', employees: 740, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/labvantage', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Exabeam', @@ -3694,6 +5274,9 @@ export const companiesDemo = [ addressAddressCity: 'San Mateo', employees: 739, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/exabeam', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Iterable', @@ -3701,6 +5284,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 739, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/iterable', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Clari', @@ -3708,6 +5294,9 @@ export const companiesDemo = [ addressAddressCity: 'Sunnyvale', employees: 737, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/clari', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Komodo Health', @@ -3715,6 +5304,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 737, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/komodo-health', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Alation', @@ -3722,6 +5314,9 @@ export const companiesDemo = [ addressAddressCity: 'Redwood City', employees: 736, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/alation', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Celigo', @@ -3729,6 +5324,9 @@ export const companiesDemo = [ addressAddressCity: 'Redwood City', employees: 733, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/celigo-inc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Aptos Retail', @@ -3736,6 +5334,9 @@ export const companiesDemo = [ addressAddressCity: 'Alpharetta', employees: 733, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/aptos-retail', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'WorkForce Software', @@ -3743,6 +5344,9 @@ export const companiesDemo = [ addressAddressCity: 'Livonia', employees: 721, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/workforce-software', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'HPE Security - Data Security', @@ -3750,6 +5354,9 @@ export const companiesDemo = [ addressAddressCity: 'Sunnyvale', employees: 713, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/hpe-security-data-security', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'DDN Storage', @@ -3757,6 +5364,9 @@ export const companiesDemo = [ addressAddressCity: 'Chatsworth', employees: 712, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ddn-storage', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'KPA', @@ -3764,6 +5374,9 @@ export const companiesDemo = [ addressAddressCity: 'Broomfield', employees: 709, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/kpa-llc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Lohika', @@ -3771,6 +5384,9 @@ export const companiesDemo = [ addressAddressCity: 'San Mateo', employees: 705, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/lohika', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Qualifacts', @@ -3778,6 +5394,9 @@ export const companiesDemo = [ addressAddressCity: 'Nashville', employees: 705, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/qualifacts', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Centric Software', @@ -3785,6 +5404,9 @@ export const companiesDemo = [ addressAddressCity: 'Campbell', employees: 705, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/centric-software', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Omdena', @@ -3792,6 +5414,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 704, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/omdena', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'AccountantsWorld', @@ -3799,6 +5424,9 @@ export const companiesDemo = [ addressAddressCity: 'Hauppauge', employees: 704, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/accountantsworld', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Aderant', @@ -3806,6 +5434,9 @@ export const companiesDemo = [ addressAddressCity: 'Atlanta', employees: 704, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/aderant', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Python Software Foundation', @@ -3813,6 +5444,9 @@ export const companiesDemo = [ addressAddressCity: 'Beaverton', employees: 704, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/python-software-foundation', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'OpenGov Inc.', @@ -3820,6 +5454,9 @@ export const companiesDemo = [ addressAddressCity: 'San Jose', employees: 703, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/opengov-inc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Denodo', @@ -3827,6 +5464,9 @@ export const companiesDemo = [ addressAddressCity: 'Palo Alto', employees: 702, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/denodo-technologies', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'NEOGOV', @@ -3834,6 +5474,9 @@ export const companiesDemo = [ addressAddressCity: 'El Segundo', employees: 698, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/neogov', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'VertexOne', @@ -3841,6 +5484,9 @@ export const companiesDemo = [ addressAddressCity: 'Dallas', employees: 696, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/vertex-one', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'The Linux Foundation', @@ -3848,6 +5494,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 694, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/the-linux-foundation', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Reputation', @@ -3855,6 +5504,9 @@ export const companiesDemo = [ addressAddressCity: 'San Ramon', employees: 694, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/reputation-com', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Relevantz ', @@ -3862,6 +5514,9 @@ export const companiesDemo = [ addressAddressCity: 'Alpharetta', employees: 691, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/relevantz', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'M-Files', @@ -3869,6 +5524,9 @@ export const companiesDemo = [ addressAddressCity: 'Austin', employees: 691, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/m-files-corporation', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Homebase', @@ -3876,6 +5534,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 688, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/homebase-app', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Calypso Technology', @@ -3883,6 +5544,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 688, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/calypso-technology', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Viewpoint', @@ -3891,13 +5555,19 @@ export const companiesDemo = [ employees: 686, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/viewpoint-construction-software', - }, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', + }, { name: 'Devo', domainName: 'devo.com', addressAddressCity: 'Cambridge', employees: 685, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/devoinc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'WebPT', @@ -3905,6 +5575,9 @@ export const companiesDemo = [ addressAddressCity: 'Phoenix', employees: 685, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/webpt', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'MatrixCare', @@ -3912,6 +5585,9 @@ export const companiesDemo = [ addressAddressCity: 'Minneapolis', employees: 683, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/matrixcare', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Sisense', @@ -3919,6 +5595,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 683, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sisense', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Calendly', @@ -3926,6 +5605,9 @@ export const companiesDemo = [ addressAddressCity: 'Atlanta', employees: 681, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/calendly', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Placer.ai', @@ -3933,6 +5615,9 @@ export const companiesDemo = [ addressAddressCity: 'Los Altos', employees: 677, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/placer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'MResult', @@ -3940,6 +5625,9 @@ export const companiesDemo = [ addressAddressCity: 'Mystic', employees: 674, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mresult', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Coherent Solutions', @@ -3947,6 +5635,9 @@ export const companiesDemo = [ addressAddressCity: 'Minneapolis', employees: 672, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/coherent-solutions', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Mirantis', @@ -3954,6 +5645,9 @@ export const companiesDemo = [ addressAddressCity: 'Campbell', employees: 671, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mirantis', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Simplify Healthcare', @@ -3961,6 +5655,9 @@ export const companiesDemo = [ addressAddressCity: 'Aurora', employees: 671, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/simplifyhealthcare', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'JumpCloud', @@ -3968,6 +5665,9 @@ export const companiesDemo = [ addressAddressCity: 'Louisville', employees: 671, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/jumpcloud', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'ASAP', @@ -3975,6 +5675,9 @@ export const companiesDemo = [ addressAddressCity: 'Lafayette', employees: 667, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/asap', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Xoxoday', @@ -3982,6 +5685,9 @@ export const companiesDemo = [ addressAddressCity: 'Redwood City', employees: 666, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/xoxoday', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'DataStax', @@ -3989,6 +5695,9 @@ export const companiesDemo = [ addressAddressCity: 'Santa Clara', employees: 666, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/datastax', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Foursquare', @@ -3996,6 +5705,9 @@ export const companiesDemo = [ addressAddressCity: 'New York', employees: 665, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/foursquare', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'LastPass', @@ -4003,6 +5715,9 @@ export const companiesDemo = [ addressAddressCity: 'Boston', employees: 664, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/lastpass', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'SOCi, Inc.', @@ -4010,6 +5725,9 @@ export const companiesDemo = [ addressAddressCity: 'San Diego', employees: 664, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/soci-inc-', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Stratus Technologies', @@ -4017,6 +5735,9 @@ export const companiesDemo = [ addressAddressCity: 'Maynard', employees: 662, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/stratus-technologies', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'AdvancedMD', @@ -4024,6 +5745,9 @@ export const companiesDemo = [ addressAddressCity: 'South Jordan', employees: 661, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/advancedmd', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Matterport', @@ -4031,6 +5755,9 @@ export const companiesDemo = [ addressAddressCity: 'Sunnyvale', employees: 660, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/matterport', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Samsung Research America (SRA)', @@ -4038,6 +5765,9 @@ export const companiesDemo = [ addressAddressCity: 'Mountain View', employees: 658, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sra-samsungreasearchamerica', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Creatio', @@ -4045,6 +5775,9 @@ export const companiesDemo = [ addressAddressCity: 'Boston', employees: 657, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/creatioglobal', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Branch', @@ -4052,6 +5785,9 @@ export const companiesDemo = [ addressAddressCity: 'Palo Alto', employees: 657, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/branch-metrics', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Versa Networks', @@ -4059,6 +5795,9 @@ export const companiesDemo = [ addressAddressCity: 'Alviso', employees: 655, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/versa-networks', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Mitek Systems', @@ -4066,6 +5805,9 @@ export const companiesDemo = [ addressAddressCity: 'San Diego', employees: 653, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/miteksystems', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'PDF Solutions', @@ -4073,6 +5815,9 @@ export const companiesDemo = [ addressAddressCity: 'Santa Clara', employees: 653, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/pdf-solutions', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'ESO', @@ -4080,6 +5825,9 @@ export const companiesDemo = [ addressAddressCity: 'Austin', employees: 652, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/eso-solutions', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Mural', @@ -4087,6 +5835,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 650, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mural.co', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'FourKites, Inc.', @@ -4094,6 +5845,9 @@ export const companiesDemo = [ addressAddressCity: 'Chicago', employees: 650, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/fourkites-inc', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Aras Corporation', @@ -4101,6 +5855,9 @@ export const companiesDemo = [ addressAddressCity: 'Andover', employees: 648, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/aras-corporation', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Delphix', @@ -4108,6 +5865,9 @@ export const companiesDemo = [ addressAddressCity: 'Redwood City', employees: 648, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/delphix', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Wolfram', @@ -4115,6 +5875,9 @@ export const companiesDemo = [ addressAddressCity: 'Champaign', employees: 644, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/wolfram-research', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Eightfold', @@ -4122,6 +5885,9 @@ export const companiesDemo = [ addressAddressCity: 'Santa Clara', employees: 643, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/eightfoldai', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Quark Software Inc.', @@ -4129,6 +5895,9 @@ export const companiesDemo = [ addressAddressCity: 'Grand Rapids', employees: 641, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/quark', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'connectRN', @@ -4136,6 +5905,9 @@ export const companiesDemo = [ addressAddressCity: 'Waltham', employees: 640, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/connectrn', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'RSI', @@ -4143,6 +5915,9 @@ export const companiesDemo = [ addressAddressCity: 'Pembroke', employees: 638, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/revenue-solutions-inc-', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Macrosoft', @@ -4150,6 +5925,9 @@ export const companiesDemo = [ addressAddressCity: 'Parsippany', employees: 638, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/macrosoft', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Paradox', @@ -4157,6 +5935,9 @@ export const companiesDemo = [ addressAddressCity: 'Scottsdale', employees: 637, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/paradoxolivia', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'SmartRecruiters', @@ -4164,6 +5945,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 637, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/smartrecruiters', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Tealium', @@ -4171,6 +5955,9 @@ export const companiesDemo = [ addressAddressCity: 'San Diego', employees: 635, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/tealium', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Securiti', @@ -4178,6 +5965,9 @@ export const companiesDemo = [ addressAddressCity: 'San Jose', employees: 634, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/securitiai', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Lattice', @@ -4185,6 +5975,9 @@ export const companiesDemo = [ addressAddressCity: 'San Francisco', employees: 634, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/lattice-hq', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'TuSimple', @@ -4192,6 +5985,9 @@ export const companiesDemo = [ addressAddressCity: 'San Diego', employees: 633, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/tusimple', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'Ceipal', @@ -4199,6 +5995,9 @@ export const companiesDemo = [ addressAddressCity: 'Rochester', employees: 633, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ceipal', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, { name: 'RSD', @@ -4206,5 +6005,8 @@ export const companiesDemo = [ addressAddressCity: 'Waltham', employees: 633, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/rsd', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.NOAH, + createdByName: 'Noah A', }, ]; diff --git a/packages/twenty-server/src/engine/workspace-manager/demo-objects-prefill-data/company.ts b/packages/twenty-server/src/engine/workspace-manager/demo-objects-prefill-data/company.ts index 2a46316c5..b29a09e00 100644 --- a/packages/twenty-server/src/engine/workspace-manager/demo-objects-prefill-data/company.ts +++ b/packages/twenty-server/src/engine/workspace-manager/demo-objects-prefill-data/company.ts @@ -16,6 +16,9 @@ export const companyPrefillDemoData = async ( 'employees', 'linkedinLinkPrimaryLinkUrl', 'position', + 'createdBySource', + 'createdByWorkspaceMemberId', + 'createdByName' ]) .orIgnore() .values( diff --git a/packages/twenty-server/src/engine/workspace-manager/demo-objects-prefill-data/people-demo.json.ts b/packages/twenty-server/src/engine/workspace-manager/demo-objects-prefill-data/people-demo.json.ts index 0af53c10f..0dbd7471a 100644 --- a/packages/twenty-server/src/engine/workspace-manager/demo-objects-prefill-data/people-demo.json.ts +++ b/packages/twenty-server/src/engine/workspace-manager/demo-objects-prefill-data/people-demo.json.ts @@ -1,3 +1,5 @@ +import { DEMO_SEED_WORKSPACE_MEMBER_IDS } from "src/engine/workspace-manager/demo-objects-prefill-data/workspace-member"; + export const peopleDemo = [ { firstName: 'Mark', @@ -8,6 +10,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-1.png', linkedinUrl: '/in/mark-young-7edccf6aca', jobTitle: 'Surveyor, minerals', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Gabriel', @@ -18,6 +23,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-2.png', linkedinUrl: '/in/gabriel-robinson-3157ccba23', jobTitle: 'Armed forces logistics/support/administrative officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kimberly', @@ -28,6 +36,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-3.png', linkedinUrl: '/in/kimberly-gordon-4a10fde4c9', jobTitle: 'Engineer, manufacturing systems', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Cindy', @@ -38,6 +49,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-4.png', linkedinUrl: '/in/cindy-baker-788ab17f8b', jobTitle: 'Learning disability nurse', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Anthony', @@ -48,6 +62,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-5.png', linkedinUrl: '/in/anthony-may-2020930433', jobTitle: 'Optometrist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Vicki', @@ -58,6 +75,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-6.png', linkedinUrl: '/in/vicki-meyer-f2e0fdfbd9', jobTitle: 'Farm manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Billy', @@ -68,6 +88,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-7.png', linkedinUrl: '/in/billy-mckinney-709e41f9ba', jobTitle: 'Therapist, nutritional', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Andrew', @@ -78,6 +101,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-8.png', linkedinUrl: '/in/andrew-king-9eee067c59', jobTitle: 'Paramedic', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Todd', @@ -88,6 +114,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-9.png', linkedinUrl: '/in/todd-jones-d1cae42f61', jobTitle: 'Media planner', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Gregory', @@ -98,6 +127,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-10.png', linkedinUrl: '/in/gregory-perez-5ca5d506c0', jobTitle: 'Special effects artist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Vanessa', @@ -108,6 +140,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-11.png', linkedinUrl: '/in/vanessa-farmer-c79ab76e62', jobTitle: 'Engineer, land', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Elizabeth', @@ -118,6 +153,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-12.png', linkedinUrl: '/in/elizabeth-chung-72c8e6d73e', jobTitle: 'Race relations officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Melissa', @@ -128,6 +166,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-13.png', linkedinUrl: '/in/melissa-huerta-65292000ee', jobTitle: 'Museum/gallery exhibitions officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Debbie', @@ -138,6 +179,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-14.png', linkedinUrl: '/in/debbie-johnson-6108ee5a49', jobTitle: 'Wellsite geologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kathy', @@ -148,6 +192,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-15.png', linkedinUrl: '/in/kathy-mcclain-cf5890c5b5', jobTitle: 'Surveyor, building control', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michael', @@ -158,6 +205,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-16.png', linkedinUrl: '/in/michael-elliott-d5e13ac5c8', jobTitle: 'Ergonomist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kimberly', @@ -168,6 +218,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-17.png', linkedinUrl: '/in/kimberly-edwards-00862e876a', jobTitle: 'Exercise physiologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Regina', @@ -178,6 +231,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-18.png', linkedinUrl: '/in/regina-williams-9d91d1682f', jobTitle: 'Clinical scientist, histocompatibility and immunogenetics', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'John', @@ -188,6 +244,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-19.png', linkedinUrl: '/in/john-guerrero-f5c763a584', jobTitle: 'Wellsite geologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'David', @@ -198,6 +257,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-20.png', linkedinUrl: '/in/david-bailey-a321ec2517', jobTitle: 'Radiographer, therapeutic', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Emily', @@ -208,6 +270,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-21.png', linkedinUrl: '/in/emily-davidson-4cfca34af8', jobTitle: 'Health visitor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michelle', @@ -218,6 +283,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-22.png', linkedinUrl: '/in/michelle-jackson-bcb3423e3e', jobTitle: 'Social research officer, government', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ryan', @@ -228,6 +296,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-23.png', linkedinUrl: '/in/ryan-romero-36790b1367', jobTitle: 'Forest/woodland manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Victor', @@ -238,6 +309,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-24.png', linkedinUrl: '/in/victor-lewis-71ac9f14ee', jobTitle: 'Surgeon', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christopher', @@ -248,6 +322,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-25.png', linkedinUrl: '/in/christopher-powell-2e521c68f3', jobTitle: 'Hydrogeologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jack', @@ -258,6 +335,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-26.png', linkedinUrl: '/in/jack-george-1b6352407c', jobTitle: 'Engineer, site', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Manuel', @@ -268,6 +348,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-27.png', linkedinUrl: '/in/manuel-lara-f896ffc5d1', jobTitle: 'Government social research officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'John', @@ -278,6 +361,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-28.png', linkedinUrl: '/in/john-gonzalez-1077ebc9e6', jobTitle: 'Horticultural therapist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Theodore', @@ -288,6 +374,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-29.png', linkedinUrl: '/in/theodore-gonzalez-b0caf15fb1', jobTitle: 'Administrator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christine', @@ -298,6 +387,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-30.png', linkedinUrl: '/in/christine-bishop-c6ec520c6c', jobTitle: 'Geneticist, molecular', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Alejandro', @@ -308,6 +400,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-31.png', linkedinUrl: '/in/alejandro-moran-03db39c63a', jobTitle: 'Applications developer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'John', @@ -318,6 +413,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-32.png', linkedinUrl: '/in/john-cook-ced58e0bb5', jobTitle: 'Chief Marketing Officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Leslie', @@ -328,6 +426,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-33.png', linkedinUrl: '/in/leslie-calderon-79bad778f2', jobTitle: 'Teacher, music', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Barbara', @@ -338,6 +439,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-34.png', linkedinUrl: '/in/barbara-young-d2423e1be3', jobTitle: 'Television floor manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Maria', @@ -348,6 +452,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-35.png', linkedinUrl: '/in/maria-thomas-833d46722e', jobTitle: 'Investment banker, operational', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Paul', @@ -358,6 +465,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-36.png', linkedinUrl: '/in/paul-villegas-dda25fb766', jobTitle: 'Veterinary surgeon', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Bradley', @@ -368,6 +478,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-37.png', linkedinUrl: '/in/bradley-turner-eb4dd1bbce', jobTitle: 'Financial controller', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Matthew', @@ -378,6 +491,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-38.png', linkedinUrl: '/in/matthew-alexander-57352bb034', jobTitle: 'Engineer, electrical', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Nancy', @@ -388,6 +504,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-39.png', linkedinUrl: '/in/nancy-green-08c0a785dc', jobTitle: 'Horticulturist, amenity', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Cindy', @@ -398,6 +517,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-40.png', linkedinUrl: '/in/cindy-martin-cef98190f9', jobTitle: 'Geographical information systems officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lori', @@ -408,6 +530,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-41.png', linkedinUrl: '/in/lori-martin-119def9345', jobTitle: 'Logistics and distribution manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kathryn', @@ -418,6 +543,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-42.png', linkedinUrl: '/in/kathryn-cruz-602e728f69', jobTitle: 'Designer, graphic', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Robert', @@ -428,6 +556,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-43.png', linkedinUrl: '/in/robert-terry-8967a9c9ba', jobTitle: 'Sub', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Andrea', @@ -438,6 +569,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-44.png', linkedinUrl: '/in/andrea-walker-1047d1ba76', jobTitle: 'Financial adviser', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Steve', @@ -448,6 +582,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-45.png', linkedinUrl: '/in/steve-campos-1225440c77', jobTitle: 'Osteopath', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Allison', @@ -458,6 +595,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-46.png', linkedinUrl: '/in/allison-morgan-6486ee71fe', jobTitle: 'Microbiologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Tamara', @@ -468,6 +608,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-47.png', linkedinUrl: '/in/tamara-melendez-33bb698d07', jobTitle: 'Accounting technician', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Larry', @@ -478,6 +621,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-48.png', linkedinUrl: '/in/larry-robertson-6829bf55c6', jobTitle: 'Production assistant, television', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lisa', @@ -488,6 +634,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-49.png', linkedinUrl: '/in/lisa-cook-87669acc77', jobTitle: 'Clinical cytogeneticist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kirsten', @@ -498,6 +647,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-50.png', linkedinUrl: '/in/kirsten-moore-91e3033de9', jobTitle: 'Media buyer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Amanda', @@ -508,6 +660,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-51.png', linkedinUrl: '/in/amanda-frye-1f5377943e', jobTitle: 'Metallurgist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jennifer', @@ -518,6 +673,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-52.png', linkedinUrl: '/in/jennifer-chambers-ca724f5258', jobTitle: 'Agricultural engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Rodney', @@ -528,6 +686,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-53.png', linkedinUrl: '/in/rodney-roberts-4b08e437c4', jobTitle: 'Recycling officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lindsay', @@ -538,6 +699,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-54.png', linkedinUrl: '/in/lindsay-wagner-0562c96aa1', jobTitle: 'Psychotherapist, child', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Mary', @@ -548,6 +712,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-55.png', linkedinUrl: '/in/mary-haynes-a41c2d1798', jobTitle: 'Arts development officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'David', @@ -558,6 +725,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-56.png', linkedinUrl: '/in/david-phelps-0dbf8cb8d9', jobTitle: 'IT technical support officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Patricia', @@ -568,6 +738,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-57.png', linkedinUrl: '/in/patricia-smith-5277401ff1', jobTitle: 'Scientist, biomedical', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Rachel', @@ -578,6 +751,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-58.png', linkedinUrl: '/in/rachel-morse-86b5f8b59c', jobTitle: 'Patent attorney', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Rhonda', @@ -588,6 +764,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-59.png', linkedinUrl: '/in/rhonda-nelson-0f7ce0e497', jobTitle: 'Environmental manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lauren', @@ -598,6 +777,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-60.png', linkedinUrl: '/in/lauren-carroll-319b96609a', jobTitle: 'Statistician', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Shannon', @@ -608,6 +790,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-61.png', linkedinUrl: '/in/shannon-martinez-5f73530423', jobTitle: 'Designer, blown glass/stained glass', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Daniel', @@ -618,6 +803,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-62.png', linkedinUrl: '/in/daniel-williams-f8d496db83', jobTitle: 'Nature conservation officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Willie', @@ -628,6 +816,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-63.png', linkedinUrl: '/in/willie-cannon-44b80be6a1', jobTitle: 'Engineer, electronics', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Donna', @@ -638,6 +829,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-64.png', linkedinUrl: '/in/donna-cole-2daf2f491d', jobTitle: 'Land/geomatics surveyor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Morgan', @@ -648,6 +842,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinUrl: '/in/morgan-cook-82f95695fe', jobTitle: 'Research officer, political party', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Elizabeth', @@ -658,6 +855,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-66.png', linkedinUrl: '/in/elizabeth-smith-205530e011', jobTitle: 'Prison officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Nathaniel', @@ -668,6 +868,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-67.png', linkedinUrl: '/in/nathaniel-johnson-847d2defe7', jobTitle: 'Geochemist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Rebecca', @@ -678,6 +881,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-68.png', linkedinUrl: '/in/rebecca-elliott-033486b7fa', jobTitle: 'Fine artist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kristina', @@ -688,6 +894,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-69.png', linkedinUrl: '/in/kristina-olson-be254bb623', jobTitle: 'Warden/ranger', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Robert', @@ -698,6 +907,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-70.png', linkedinUrl: '/in/robert-henderson-39d03b4d6f', jobTitle: 'Video editor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kendra', @@ -708,6 +920,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-71.png', linkedinUrl: '/in/kendra-knox-8b8db240fa', jobTitle: 'Conservation officer, nature', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Donna', @@ -718,6 +933,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-72.png', linkedinUrl: '/in/donna-jacobs-75f4cb3e8a', jobTitle: 'Wellsite geologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michael', @@ -728,6 +946,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-73.png', linkedinUrl: '/in/michael-martinez-37a2df073b', jobTitle: 'Scientist, water quality', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Natalie', @@ -738,6 +959,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-74.png', linkedinUrl: '/in/natalie-hansen-eba76059eb', jobTitle: 'Designer, furniture', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Katie', @@ -748,6 +972,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-75.png', linkedinUrl: '/in/katie-russo-2a475932df', jobTitle: 'Tourism officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Danielle', @@ -758,6 +985,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-76.png', linkedinUrl: '/in/danielle-park-fadefa41f3', jobTitle: 'Transport planner', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Nicholas', @@ -768,6 +998,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-77.png', linkedinUrl: '/in/nicholas-guzman-41594d6dc9', jobTitle: 'Scientist, research (medical)', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brandi', @@ -778,6 +1011,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-78.png', linkedinUrl: '/in/brandi-dodson-428d92f283', jobTitle: 'Therapist, drama', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sara', @@ -788,6 +1024,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-79.png', linkedinUrl: '/in/sara-kane-778b92a3ff', jobTitle: 'Associate Professor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Allison', @@ -798,6 +1037,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-80.png', linkedinUrl: '/in/allison-howard-5cc9c06425', jobTitle: 'Hydrographic surveyor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jonathan', @@ -808,6 +1050,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-81.png', linkedinUrl: '/in/jonathan-drake-5ef0430b02', jobTitle: 'Learning disability nurse', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Samantha', @@ -818,6 +1063,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-82.png', linkedinUrl: '/in/samantha-williams-8b316b4a9d', jobTitle: 'Technical brewer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Katherine', @@ -828,6 +1076,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-83.png', linkedinUrl: '/in/katherine-mooney-ef2c2c12dd', jobTitle: 'Accountant, chartered', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Luis', @@ -838,6 +1089,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-84.png', linkedinUrl: '/in/luis-lloyd-ee56c3462c', jobTitle: 'Producer, television/film/video', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Travis', @@ -848,6 +1102,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-85.png', linkedinUrl: '/in/travis-serrano-789399815b', jobTitle: 'Therapist, art', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Amy', @@ -858,6 +1115,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-86.png', linkedinUrl: '/in/amy-newton-ff6b79dfce', jobTitle: 'Exhibition designer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jonathan', @@ -868,6 +1128,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-87.png', linkedinUrl: '/in/jonathan-hawkins-c68fe4ecec', jobTitle: 'Surveyor, land/geomatics', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Patricia', @@ -878,6 +1141,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-88.png', linkedinUrl: '/in/patricia-anthony-64ce02febc', jobTitle: 'Paediatric nurse', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Matthew', @@ -888,6 +1154,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-89.png', linkedinUrl: '/in/matthew-gomez-68cc301b54', jobTitle: 'Site engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jonathan', @@ -898,6 +1167,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-90.png', linkedinUrl: '/in/jonathan-schultz-3c0c1ecc59', jobTitle: 'Sports therapist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Matthew', @@ -908,6 +1180,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-91.png', linkedinUrl: '/in/matthew-cummings-27d772de78', jobTitle: 'Designer, interior/spatial', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Joshua', @@ -918,6 +1193,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-92.png', linkedinUrl: '/in/joshua-richards-ec2044ed2a', jobTitle: 'Civil engineer, consulting', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ryan', @@ -928,6 +1206,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-93.png', linkedinUrl: '/in/ryan-johnson-7dda846caa', jobTitle: 'Office manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Teresa', @@ -938,6 +1219,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-94.png', linkedinUrl: '/in/teresa-terrell-fe92ba9d84', jobTitle: "Barrister's clerk", + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jacob', @@ -948,6 +1232,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-95.png', linkedinUrl: '/in/jacob-jenkins-b378edc103', jobTitle: 'Lecturer, higher education', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michael', @@ -958,6 +1245,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-96.png', linkedinUrl: '/in/michael-myers-5d468b5c78', jobTitle: 'Psychologist, clinical', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jennifer', @@ -968,6 +1258,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-97.png', linkedinUrl: '/in/jennifer-phillips-83c06e63a9', jobTitle: 'Immunologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Alison', @@ -978,6 +1271,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-98.png', linkedinUrl: '/in/alison-ortega-0b7bad2804', jobTitle: 'Professor Emeritus', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Gregory', @@ -988,6 +1284,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-99.png', linkedinUrl: '/in/gregory-little-bf88b7a274', jobTitle: 'Ship broker', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Barry', @@ -998,6 +1297,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-100.png', linkedinUrl: '/in/barry-finley-72ad288ea6', jobTitle: 'Network engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brian', @@ -1008,6 +1310,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-1.png', linkedinUrl: '/in/brian-evans-7848e0a7de', jobTitle: 'Information officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Troy', @@ -1018,6 +1323,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-2.png', linkedinUrl: '/in/troy-davidson-20a1718421', jobTitle: 'Civil Service fast streamer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Aaron', @@ -1028,6 +1336,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-3.png', linkedinUrl: '/in/aaron-schroeder-c0b91178c9', jobTitle: 'Editorial assistant', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Mary', @@ -1038,6 +1349,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-4.png', linkedinUrl: '/in/mary-anderson-17e7aeb95e', jobTitle: 'Quality manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'David', @@ -1048,6 +1362,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-5.png', linkedinUrl: '/in/david-obrien-5393bdf2d9', jobTitle: 'Air cabin crew', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Colin', @@ -1058,6 +1375,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-6.png', linkedinUrl: '/in/colin-miller-fdfec5eb0f', jobTitle: 'Museum/gallery conservator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jesus', @@ -1068,6 +1388,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-7.png', linkedinUrl: '/in/jesus-johnson-8a2b7bb431', jobTitle: 'Radio broadcast assistant', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brooke', @@ -1078,6 +1401,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-8.png', linkedinUrl: '/in/brooke-henderson-98aee4e9a6', jobTitle: 'Market researcher', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Meredith', @@ -1088,6 +1414,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-9.png', linkedinUrl: '/in/meredith-gregory-a3f977f6ef', jobTitle: 'Environmental manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Crystal', @@ -1098,6 +1427,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-10.png', linkedinUrl: '/in/crystal-vaughn-2886394a50', jobTitle: 'Operations geologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'William', @@ -1108,6 +1440,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-11.png', linkedinUrl: '/in/william-greene-da956010f3', jobTitle: 'Surveyor, commercial/residential', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Aaron', @@ -1118,6 +1453,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-12.png', linkedinUrl: '/in/aaron-griffin-361a228e01', jobTitle: 'Engineer, maintenance (IT)', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Steven', @@ -1128,6 +1466,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-13.png', linkedinUrl: '/in/steven-smith-6e762c7e90', jobTitle: 'Psychologist, forensic', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Mark', @@ -1138,6 +1479,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-14.png', linkedinUrl: '/in/mark-faulkner-5b751ca394', jobTitle: 'Nurse, adult', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jeffrey', @@ -1148,6 +1492,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-15.png', linkedinUrl: '/in/jeffrey-hunt-c364e07096', jobTitle: 'Dramatherapist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Tara', @@ -1158,6 +1505,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-16.png', linkedinUrl: '/in/tara-mathis-1d1d3c04ed', jobTitle: 'Surveyor, minerals', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Anna', @@ -1168,6 +1518,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-17.png', linkedinUrl: '/in/anna-davis-ec88f7642f', jobTitle: 'Programme researcher, broadcasting/film/video', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kevin', @@ -1178,6 +1531,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-18.png', linkedinUrl: '/in/kevin-johnson-c2a28b524a', jobTitle: 'Fast food restaurant manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sergio', @@ -1188,6 +1544,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-19.png', linkedinUrl: '/in/sergio-glenn-5cdb7d803d', jobTitle: 'Surgeon', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Nicole', @@ -1198,6 +1557,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-20.png', linkedinUrl: '/in/nicole-allen-d6ccf222ff', jobTitle: 'Fine artist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christopher', @@ -1208,6 +1570,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-21.png', linkedinUrl: '/in/christopher-jones-7b60309d81', jobTitle: 'Visual merchandiser', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brandon', @@ -1218,6 +1583,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-22.png', linkedinUrl: '/in/brandon-sanchez-f78c3a4268', jobTitle: 'Radio producer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Cindy', @@ -1228,6 +1596,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-23.png', linkedinUrl: '/in/cindy-schmidt-19ce5324d9', jobTitle: 'Production assistant, television', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'John', @@ -1238,6 +1609,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-24.png', linkedinUrl: '/in/john-gillespie-fa4d7d67f3', jobTitle: 'Television/film/video producer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Andrew', @@ -1248,6 +1622,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-25.png', linkedinUrl: '/in/andrew-lyons-02809c0ff1', jobTitle: 'Accountant, chartered public finance', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Joseph', @@ -1258,6 +1635,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-26.png', linkedinUrl: '/in/joseph-willis-242605ba96', jobTitle: 'Accommodation manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Charles', @@ -1268,6 +1648,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-27.png', linkedinUrl: '/in/charles-stanton-89aca5d45a', jobTitle: 'Music tutor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Gary', @@ -1278,6 +1661,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-28.png', linkedinUrl: '/in/gary-hall-1ec55a0077', jobTitle: 'Theme park manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Steven', @@ -1288,6 +1674,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-29.png', linkedinUrl: '/in/steven-martin-82c1e4ee0a', jobTitle: 'Artist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jennifer', @@ -1298,6 +1687,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-30.png', linkedinUrl: '/in/jennifer-mcgee-f4f8b04f40', jobTitle: 'Special effects artist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Bonnie', @@ -1308,6 +1700,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-31.png', linkedinUrl: '/in/bonnie-warren-c433803c71', jobTitle: 'Lobbyist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Gregory', @@ -1318,6 +1713,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-32.png', linkedinUrl: '/in/gregory-martinez-81489f760c', jobTitle: 'Secretary, company', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Bradley', @@ -1328,6 +1726,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-33.png', linkedinUrl: '/in/bradley-randall-00c2f788ab', jobTitle: 'Product manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brian', @@ -1338,6 +1739,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-34.png', linkedinUrl: '/in/brian-steele-fe89252d69', jobTitle: 'Sound technician, broadcasting/film/video', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ann', @@ -1348,6 +1752,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-35.png', linkedinUrl: '/in/ann-mercer-e7eedca5ab', jobTitle: 'Editorial assistant', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Billy', @@ -1358,6 +1765,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-36.png', linkedinUrl: '/in/billy-fuentes-2b9e1e559f', jobTitle: 'Energy manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kelsey', @@ -1368,6 +1778,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-37.png', linkedinUrl: '/in/kelsey-palmer-25e5d90ac8', jobTitle: 'Medical secretary', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ryan', @@ -1378,6 +1791,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-38.png', linkedinUrl: '/in/ryan-holmes-0c335917d6', jobTitle: 'Armed forces operational officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Larry', @@ -1388,6 +1804,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-39.png', linkedinUrl: '/in/larry-castro-631a1061ce', jobTitle: 'Call centre manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Elizabeth', @@ -1398,6 +1817,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-40.png', linkedinUrl: '/in/elizabeth-gonzalez-7717b4d0bd', jobTitle: 'Automotive engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christopher', @@ -1408,6 +1830,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-41.png', linkedinUrl: '/in/christopher-matthews-28232e7783', jobTitle: 'Surveyor, building', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Rodney', @@ -1418,6 +1843,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-42.png', linkedinUrl: '/in/rodney-briggs-634d20e650', jobTitle: 'Clinical cytogeneticist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Donald', @@ -1428,6 +1856,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-43.png', linkedinUrl: '/in/donald-khan-5aae10186f', jobTitle: 'Surveyor, rural practice', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Spencer', @@ -1438,6 +1869,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-44.png', linkedinUrl: '/in/spencer-lee-030eb9cd9d', jobTitle: 'Multimedia programmer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Katherine', @@ -1448,6 +1882,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-45.png', linkedinUrl: '/in/katherine-parker-87afc741ec', jobTitle: 'Arts development officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Amanda', @@ -1458,6 +1895,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-46.png', linkedinUrl: '/in/amanda-jackson-31a0288c40', jobTitle: 'Engineer, energy', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kimberly', @@ -1468,6 +1908,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-47.png', linkedinUrl: '/in/kimberly-lloyd-851cd20ebf', jobTitle: 'Armed forces operational officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Eric', @@ -1478,6 +1921,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-48.png', linkedinUrl: '/in/eric-hunter-a131354d18', jobTitle: 'Call centre manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ashley', @@ -1488,6 +1934,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-49.png', linkedinUrl: '/in/ashley-taylor-4aa9cb790c', jobTitle: 'Arts administrator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michael', @@ -1498,6 +1947,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-50.png', linkedinUrl: '/in/michael-ayers-a7a9c15b39', jobTitle: 'Community pharmacist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Stephen', @@ -1508,6 +1960,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-51.png', linkedinUrl: '/in/stephen-fisher-696b8604f2', jobTitle: 'Equities trader', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kara', @@ -1518,6 +1973,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-52.png', linkedinUrl: '/in/kara-james-5cf607e6c1', jobTitle: 'Maintenance engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Gary', @@ -1528,6 +1986,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-53.png', linkedinUrl: '/in/gary-lamb-c0f66f8f75', jobTitle: 'General practice doctor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'James', @@ -1538,6 +1999,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-54.png', linkedinUrl: '/in/james-griffin-8a5e63d24f', jobTitle: 'Public relations officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Wanda', @@ -1548,6 +2012,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-55.png', linkedinUrl: '/in/wanda-chambers-8ea5f97b07', jobTitle: 'Advertising account planner', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lisa', @@ -1558,6 +2025,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-56.png', linkedinUrl: '/in/lisa-kline-513a938279', jobTitle: 'Actuary', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jason', @@ -1568,6 +2038,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-57.png', linkedinUrl: '/in/jason-roberts-a33d0ea932', jobTitle: 'Tourism officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'John', @@ -1578,6 +2051,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-58.png', linkedinUrl: '/in/john-mcpherson-0d3f263d26', jobTitle: 'Editor, magazine features', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Karen', @@ -1588,6 +2064,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-59.png', linkedinUrl: '/in/karen-rhodes-239af63ac9', jobTitle: 'Commercial art gallery manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kathy', @@ -1598,6 +2077,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-60.png', linkedinUrl: '/in/kathy-sparks-3dcdea4c5a', jobTitle: 'Engineer, production', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Richard', @@ -1608,6 +2090,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-61.png', linkedinUrl: '/in/richard-murphy-66d2f794a5', jobTitle: 'Osteopath', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Nicole', @@ -1618,6 +2103,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-62.png', linkedinUrl: '/in/nicole-peterson-2d8cc71386', jobTitle: 'Production engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Bryan', @@ -1628,6 +2116,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-63.png', linkedinUrl: '/in/bryan-ward-9146d84428', jobTitle: 'Interior and spatial designer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Rebecca', @@ -1638,6 +2129,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-64.png', linkedinUrl: '/in/rebecca-howell-b51b44e75e', jobTitle: 'Engineer, electronics', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lori', @@ -1648,6 +2142,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinUrl: '/in/lori-bean-adcfd993d8', jobTitle: 'Designer, blown glass/stained glass', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kevin', @@ -1658,6 +2155,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-66.png', linkedinUrl: '/in/kevin-eaton-16b640da6b', jobTitle: 'Higher education lecturer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Nicholas', @@ -1668,6 +2168,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-67.png', linkedinUrl: '/in/nicholas-wright-6c27afa8b3', jobTitle: 'Environmental manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kevin', @@ -1678,6 +2181,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-68.png', linkedinUrl: '/in/kevin-paul-12c8e885e9', jobTitle: 'Health and safety inspector', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Joshua', @@ -1688,6 +2194,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-69.png', linkedinUrl: '/in/joshua-black-08413d2634', jobTitle: 'Banker', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Scott', @@ -1698,6 +2207,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-70.png', linkedinUrl: '/in/scott-bruce-f345ae71e4', jobTitle: 'Educational psychologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ebony', @@ -1708,6 +2220,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-71.png', linkedinUrl: '/in/ebony-nixon-6ce991d391', jobTitle: 'Arboriculturist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jesse', @@ -1718,6 +2233,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-72.png', linkedinUrl: '/in/jesse-hartman-f27f702502', jobTitle: 'Chiropractor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Julie', @@ -1728,6 +2246,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-73.png', linkedinUrl: '/in/julie-whitney-527c01e206', jobTitle: 'Leisure centre manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Barbara', @@ -1738,6 +2259,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-74.png', linkedinUrl: '/in/barbara-diaz-5f4a19157d', jobTitle: 'Press photographer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jordan', @@ -1748,6 +2272,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-75.png', linkedinUrl: '/in/jordan-montoya-f49fb6a720', jobTitle: 'Broadcast engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jorge', @@ -1758,6 +2285,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-76.png', linkedinUrl: '/in/jorge-hanson-c899de111f', jobTitle: 'General practice doctor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Anna', @@ -1768,6 +2298,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-77.png', linkedinUrl: '/in/anna-robbins-8ddf20e83c', jobTitle: 'Nurse, mental health', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Steve', @@ -1778,6 +2311,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-78.png', linkedinUrl: '/in/steve-keller-377272ac44', jobTitle: 'Industrial buyer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brianna', @@ -1788,6 +2324,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-79.png', linkedinUrl: '/in/brianna-moreno-dae63a4f83', jobTitle: 'General practice doctor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Shawn', @@ -1798,6 +2337,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-80.png', linkedinUrl: '/in/shawn-krause-f42275b298', jobTitle: 'Insurance broker', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michael', @@ -1808,6 +2350,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-81.png', linkedinUrl: '/in/michael-pierce-b01914124c', jobTitle: 'Engineer, broadcasting (operations)', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Elizabeth', @@ -1818,6 +2363,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-82.png', linkedinUrl: '/in/elizabeth-leon-7618636547', jobTitle: 'Clinical embryologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Carl', @@ -1828,6 +2376,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-83.png', linkedinUrl: '/in/carl-wagner-c6d92ca2ac', jobTitle: 'Programmer, multimedia', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Erica', @@ -1838,6 +2389,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-84.png', linkedinUrl: '/in/erica-taylor-99a8f528f9', jobTitle: 'Catering manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sandy', @@ -1848,6 +2402,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-85.png', linkedinUrl: '/in/sandy-gomez-fe6cfbd6f8', jobTitle: 'Event organiser', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Tracy', @@ -1858,6 +2415,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-86.png', linkedinUrl: '/in/tracy-gray-e7455e5048', jobTitle: 'Charity officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Amy', @@ -1868,6 +2428,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-87.png', linkedinUrl: '/in/amy-davies-6d15292b3d', jobTitle: 'Trading standards officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Mary', @@ -1878,6 +2441,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-88.png', linkedinUrl: '/in/mary-wood-ac63c86744', jobTitle: 'Nutritional therapist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'James', @@ -1888,6 +2454,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-89.png', linkedinUrl: '/in/james-green-0c06ff4286', jobTitle: 'Journalist, broadcasting', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Rebecca', @@ -1898,6 +2467,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-90.png', linkedinUrl: '/in/rebecca-petersen-3213856af4', jobTitle: 'Licensed conveyancer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Hunter', @@ -1908,6 +2480,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-91.png', linkedinUrl: '/in/hunter-pierce-6873b9e186', jobTitle: 'Product manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christian', @@ -1918,6 +2493,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-92.png', linkedinUrl: '/in/christian-bailey-b3f28cc8db', jobTitle: 'Community education officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'William', @@ -1928,6 +2506,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-93.png', linkedinUrl: '/in/william-mitchell-90c3f0b311', jobTitle: 'Insurance account manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brent', @@ -1938,6 +2519,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-94.png', linkedinUrl: '/in/brent-gray-19b7fd459b', jobTitle: 'Careers information officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Melissa', @@ -1948,6 +2532,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-95.png', linkedinUrl: '/in/melissa-myers-0802db2cf0', jobTitle: 'Arboriculturist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brittney', @@ -1958,6 +2545,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-96.png', linkedinUrl: '/in/brittney-nguyen-c1eb8b312b', jobTitle: 'Logistics and distribution manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jacob', @@ -1968,6 +2558,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-97.png', linkedinUrl: '/in/jacob-franklin-fe55bfc993', jobTitle: 'Freight forwarder', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kathy', @@ -1978,6 +2571,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-98.png', linkedinUrl: '/in/kathy-burgess-99f2ff488c', jobTitle: 'Learning disability nurse', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Nicole', @@ -1988,6 +2584,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-99.png', linkedinUrl: '/in/nicole-smith-8aec41062c', jobTitle: 'Legal secretary', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Troy', @@ -1998,6 +2597,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-100.png', linkedinUrl: '/in/troy-decker-bd98e78a69', jobTitle: 'Surveyor, minerals', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Corey', @@ -2008,6 +2610,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-1.png', linkedinUrl: '/in/corey-thompson-f8d368eaf4', jobTitle: 'Structural engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Angela', @@ -2018,6 +2623,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-2.png', linkedinUrl: '/in/angela-webster-0702bee349', jobTitle: 'Chartered public finance accountant', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jenna', @@ -2028,6 +2636,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-3.png', linkedinUrl: '/in/jenna-smith-74d6913e06', jobTitle: 'Colour technologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Johnny', @@ -2038,6 +2649,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-4.png', linkedinUrl: '/in/johnny-lee-37995fae9a', jobTitle: 'Sports development officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Curtis', @@ -2048,6 +2662,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-5.png', linkedinUrl: '/in/curtis-cross-8df12d4c6d', jobTitle: 'Broadcast journalist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Paula', @@ -2058,6 +2675,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-6.png', linkedinUrl: '/in/paula-perez-a4abb3240e', jobTitle: 'Bonds trader', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Stephen', @@ -2068,6 +2688,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-7.png', linkedinUrl: '/in/stephen-berger-fcf9446666', jobTitle: 'Production engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Candace', @@ -2078,6 +2701,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-8.png', linkedinUrl: '/in/candace-michael-a468f60b3c', jobTitle: 'Surveyor, building control', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jessica', @@ -2088,6 +2714,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-9.png', linkedinUrl: '/in/jessica-lawrence-61fd28400c', jobTitle: 'Regulatory affairs officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Victoria', @@ -2098,6 +2727,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-10.png', linkedinUrl: '/in/victoria-west-4514ebe192', jobTitle: 'Therapist, sports', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Matthew', @@ -2108,6 +2740,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-11.png', linkedinUrl: '/in/matthew-matthews-42bbc7a5f8', jobTitle: 'Pathologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Megan', @@ -2118,6 +2753,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-12.png', linkedinUrl: '/in/megan-lopez-936955bbda', jobTitle: 'Ophthalmologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kim', @@ -2128,6 +2766,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-13.png', linkedinUrl: '/in/kim-campbell-7d447d5ec6', jobTitle: 'Recruitment consultant', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'William', @@ -2138,6 +2779,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-14.png', linkedinUrl: '/in/william-ryan-a5c6cbc922', jobTitle: 'Ergonomist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lauren', @@ -2148,6 +2792,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-15.png', linkedinUrl: '/in/lauren-walker-74bbb465a8', jobTitle: 'Nature conservation officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jordan', @@ -2158,6 +2805,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-16.png', linkedinUrl: '/in/jordan-castro-5db609defa', jobTitle: 'Research officer, trade union', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Scott', @@ -2168,6 +2818,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-17.png', linkedinUrl: '/in/scott-williams-0c2a344935', jobTitle: 'Bonds trader', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Peter', @@ -2178,6 +2831,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-18.png', linkedinUrl: '/in/peter-thompson-341acf2282', jobTitle: 'Waste management officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jill', @@ -2188,6 +2844,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-19.png', linkedinUrl: '/in/jill-williams-15b1d79aa6', jobTitle: 'Pathologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Joyce', @@ -2198,6 +2857,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-20.png', linkedinUrl: '/in/joyce-diaz-c25c3d067c', jobTitle: 'Loss adjuster, chartered', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Robert', @@ -2208,6 +2870,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-21.png', linkedinUrl: '/in/robert-owens-39e8664408', jobTitle: 'Land/geomatics surveyor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christine', @@ -2218,6 +2883,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-22.png', linkedinUrl: '/in/christine-fernandez-4bde5f26e0', jobTitle: 'Theme park manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Gary', @@ -2228,6 +2896,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-23.png', linkedinUrl: '/in/gary-jones-a993bf28c1', jobTitle: 'Community education officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ronald', @@ -2238,6 +2909,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-24.png', linkedinUrl: '/in/ronald-brown-921558ef53', jobTitle: 'Arts administrator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Curtis', @@ -2248,6 +2922,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-25.png', linkedinUrl: '/in/curtis-oliver-1f7c8563a6', jobTitle: 'Oncologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Stacy', @@ -2258,6 +2935,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-26.png', linkedinUrl: '/in/stacy-vasquez-72e5c629d2', jobTitle: 'Engineer, biomedical', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Susan', @@ -2268,6 +2948,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-27.png', linkedinUrl: '/in/susan-hancock-00b3694621', jobTitle: 'Charity fundraiser', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Amy', @@ -2278,6 +2961,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-28.png', linkedinUrl: '/in/amy-conner-65d26933e9', jobTitle: 'Web designer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Keith', @@ -2288,6 +2974,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-29.png', linkedinUrl: '/in/keith-stein-dae7ba0be7', jobTitle: 'Airline pilot', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kristen', @@ -2298,6 +2987,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-30.png', linkedinUrl: '/in/kristen-lane-7988cdb7fc', jobTitle: 'Immigration officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Leroy', @@ -2308,6 +3000,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-31.png', linkedinUrl: '/in/leroy-bright-5ce647996d', jobTitle: 'Chief Marketing Officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Bradley', @@ -2318,6 +3013,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-32.png', linkedinUrl: '/in/bradley-patterson-590ba76c7d', jobTitle: 'Public house manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sarah', @@ -2328,6 +3026,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-33.png', linkedinUrl: '/in/sarah-mcdaniel-a2c7767c1e', jobTitle: 'Media planner', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brandon', @@ -2338,6 +3039,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-34.png', linkedinUrl: '/in/brandon-boyd-4e2e998802', jobTitle: 'Surveyor, insurance', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Carolyn', @@ -2348,6 +3052,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-35.png', linkedinUrl: '/in/carolyn-villarreal-3f2ca6cc5f', jobTitle: 'Engineer, automotive', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Harry', @@ -2358,6 +3065,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-36.png', linkedinUrl: '/in/harry-garrett-5faf263278', jobTitle: 'Pharmacist, hospital', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Richard', @@ -2368,6 +3078,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-37.png', linkedinUrl: '/in/richard-lee-8f9dff7c18', jobTitle: 'Financial trader', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kristen', @@ -2378,6 +3091,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-38.png', linkedinUrl: '/in/kristen-landry-106c6fc0b5', jobTitle: 'Facilities manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Joshua', @@ -2388,6 +3104,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-39.png', linkedinUrl: '/in/joshua-burgess-3596563692', jobTitle: 'IT technical support officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Alicia', @@ -2398,6 +3117,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-40.png', linkedinUrl: '/in/alicia-stevens-428bceb969', jobTitle: 'Chiropodist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jason', @@ -2408,6 +3130,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-41.png', linkedinUrl: '/in/jason-torres-8250efe63e', jobTitle: 'QuickActions analyst', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michael', @@ -2418,6 +3143,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-42.png', linkedinUrl: '/in/michael-ortiz-4c03016b05', jobTitle: 'Sound technician, broadcasting/film/video', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Deanna', @@ -2428,6 +3156,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-43.png', linkedinUrl: '/in/deanna-williams-08b67a9a7c', jobTitle: 'Research officer, political party', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kevin', @@ -2438,6 +3169,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-44.png', linkedinUrl: '/in/kevin-ray-dbea2dd52d', jobTitle: 'Naval architect', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Tony', @@ -2448,6 +3182,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-45.png', linkedinUrl: '/in/tony-walters-2bfeca8dd4', jobTitle: 'Purchasing manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Andrew', @@ -2458,6 +3195,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-46.png', linkedinUrl: '/in/andrew-roberts-41c13e9f43', jobTitle: 'Physiotherapist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lucas', @@ -2468,6 +3208,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-47.png', linkedinUrl: '/in/lucas-fisher-7a563c63b5', jobTitle: 'Materials engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sarah', @@ -2478,6 +3221,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-48.png', linkedinUrl: '/in/sarah-bates-477cbbc18f', jobTitle: 'Educational psychologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jon', @@ -2488,6 +3234,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-49.png', linkedinUrl: '/in/jon-osborne-e72d657289', jobTitle: 'Geologist, engineering', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lisa', @@ -2498,6 +3247,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-50.png', linkedinUrl: '/in/lisa-green-e3c92b78e0', jobTitle: 'Art therapist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'George', @@ -2508,6 +3260,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-51.png', linkedinUrl: '/in/george-allen-9de1c6f0d2', jobTitle: 'Retail merchandiser', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Rhonda', @@ -2518,6 +3273,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-52.png', linkedinUrl: '/in/rhonda-smith-7c802edf30', jobTitle: 'Therapist, nutritional', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kyle', @@ -2528,6 +3286,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-53.png', linkedinUrl: '/in/kyle-day-bedc45ac4c', jobTitle: 'Dispensing optician', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Valerie', @@ -2538,6 +3299,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-54.png', linkedinUrl: '/in/valerie-smith-71a58f5833', jobTitle: 'Diagnostic radiographer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Matthew', @@ -2548,6 +3312,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-55.png', linkedinUrl: '/in/matthew-nelson-a288db243c', jobTitle: 'Surveyor, insurance', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Terri', @@ -2558,6 +3325,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-56.png', linkedinUrl: '/in/terri-ramos-eb86c1f353', jobTitle: 'Tour manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brian', @@ -2568,6 +3338,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-57.png', linkedinUrl: '/in/brian-bell-50b9b8cc1c', jobTitle: 'Engineer, electrical', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Troy', @@ -2578,6 +3351,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-58.png', linkedinUrl: '/in/troy-stuart-f056c7bfcb', jobTitle: 'Corporate investment banker', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Beth', @@ -2588,6 +3364,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-59.png', linkedinUrl: '/in/beth-shea-2f51929bb5', jobTitle: 'Forensic psychologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Erin', @@ -2598,6 +3377,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-60.png', linkedinUrl: '/in/erin-barrera-74010827a9', jobTitle: 'Youth worker', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Danielle', @@ -2608,6 +3390,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-61.png', linkedinUrl: '/in/danielle-maynard-ba9f453d8e', jobTitle: 'Location manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sarah', @@ -2618,6 +3403,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-62.png', linkedinUrl: '/in/sarah-oneal-814e3f10b5', jobTitle: 'Programmer, multimedia', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Carrie', @@ -2628,6 +3416,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-63.png', linkedinUrl: '/in/carrie-taylor-33e1df2a16', jobTitle: 'Archaeologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Andrea', @@ -2638,6 +3429,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-64.png', linkedinUrl: '/in/andrea-smith-63bc9b52c2', jobTitle: 'Mechanical engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Adam', @@ -2648,6 +3442,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinUrl: '/in/adam-cowan-a8cb02d136', jobTitle: 'Sports development officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Bryan', @@ -2658,6 +3455,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-66.png', linkedinUrl: '/in/bryan-johnson-ec29fc1f9a', jobTitle: 'Clinical molecular geneticist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Richard', @@ -2668,6 +3468,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-67.png', linkedinUrl: '/in/richard-jackson-a17e46e0d7', jobTitle: 'Engineer, water', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kelly', @@ -2678,6 +3481,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-68.png', linkedinUrl: '/in/kelly-jackson-8b32bfb505', jobTitle: 'Pension scheme manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jack', @@ -2688,6 +3494,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-69.png', linkedinUrl: '/in/jack-ingram-e68114f5c7', jobTitle: 'Pharmacist, community', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Rhonda', @@ -2698,6 +3507,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-70.png', linkedinUrl: '/in/rhonda-jenkins-f071128f22', jobTitle: 'Aeronautical engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jacqueline', @@ -2708,6 +3520,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-71.png', linkedinUrl: '/in/jacqueline-johnson-dda681b600', jobTitle: 'Water quality scientist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Casey', @@ -2718,6 +3533,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-72.png', linkedinUrl: '/in/casey-oneill-ab8f249833', jobTitle: 'Local government officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kathleen', @@ -2728,6 +3546,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-73.png', linkedinUrl: '/in/kathleen-francis-097093196c', jobTitle: 'Paediatric nurse', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Gary', @@ -2738,6 +3559,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-74.png', linkedinUrl: '/in/gary-woods-4b0cba46d6', jobTitle: 'Multimedia specialist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Rachel', @@ -2748,6 +3572,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-75.png', linkedinUrl: '/in/rachel-harris-93dfc3611e', jobTitle: 'Medical laboratory scientific officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Charlene', @@ -2758,6 +3585,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-76.png', linkedinUrl: '/in/charlene-rose-98947b0547', jobTitle: 'Solicitor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Donna', @@ -2768,6 +3598,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-77.png', linkedinUrl: '/in/donna-saunders-4f712712f8', jobTitle: 'Actor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Thomas', @@ -2778,6 +3611,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-78.png', linkedinUrl: '/in/thomas-singh-640bdc36f3', jobTitle: 'Press sub', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ryan', @@ -2788,6 +3624,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-79.png', linkedinUrl: '/in/ryan-morales-081c6966a9', jobTitle: 'Food technologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christy', @@ -2798,6 +3637,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-80.png', linkedinUrl: '/in/christy-hall-916136bbc9', jobTitle: 'Pension scheme manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Joshua', @@ -2808,6 +3650,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-81.png', linkedinUrl: '/in/joshua-hawkins-9a0340bb4e', jobTitle: 'Occupational psychologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jasmine', @@ -2818,6 +3663,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-82.png', linkedinUrl: '/in/jasmine-stanley-94eeb75ca5', jobTitle: 'Nutritional therapist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Morgan', @@ -2828,6 +3676,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-83.png', linkedinUrl: '/in/morgan-thomas-a18e91a104', jobTitle: 'Clinical research associate', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Laura', @@ -2838,6 +3689,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-84.png', linkedinUrl: '/in/laura-gomez-7ee145bfc4', jobTitle: 'Bookseller', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Anne', @@ -2848,6 +3702,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-85.png', linkedinUrl: '/in/anne-montgomery-10245f347a', jobTitle: 'Arts development officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Tiffany', @@ -2858,6 +3715,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-86.png', linkedinUrl: '/in/tiffany-peterson-fed8500c17', jobTitle: 'Multimedia specialist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ian', @@ -2868,6 +3728,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-87.png', linkedinUrl: '/in/ian-martinez-03c2967428', jobTitle: 'Phytotherapist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Shelly', @@ -2878,6 +3741,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-88.png', linkedinUrl: '/in/shelly-rodriguez-42e2b8178f', jobTitle: 'Conservation officer, nature', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Philip', @@ -2888,6 +3754,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-89.png', linkedinUrl: '/in/philip-santos-0c763b15db', jobTitle: 'Field trials officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michael', @@ -2898,6 +3767,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-90.png', linkedinUrl: '/in/michael-foley-a0535b3102', jobTitle: 'Exhibition designer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'David', @@ -2908,6 +3780,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-91.png', linkedinUrl: '/in/david-raymond-1e1178af61', jobTitle: 'Psychologist, occupational', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Amanda', @@ -2918,6 +3793,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-92.png', linkedinUrl: '/in/amanda-booker-6781b9995d', jobTitle: 'Network engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Emily', @@ -2928,6 +3806,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-93.png', linkedinUrl: '/in/emily-jenkins-54d2700826', jobTitle: 'Technical brewer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Timothy', @@ -2938,6 +3819,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-94.png', linkedinUrl: '/in/timothy-larsen-fb5366ba23', jobTitle: 'Geneticist, molecular', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ashley', @@ -2948,6 +3832,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-95.png', linkedinUrl: '/in/ashley-barrett-014f05cf8c', jobTitle: 'Writer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sandra', @@ -2958,6 +3845,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-96.png', linkedinUrl: '/in/sandra-adkins-8cbb8957df', jobTitle: 'Chief Marketing Officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kelly', @@ -2968,6 +3858,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-97.png', linkedinUrl: '/in/kelly-johnson-c74ca2d4f3', jobTitle: 'Farm manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Patricia', @@ -2978,6 +3871,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-98.png', linkedinUrl: '/in/patricia-rodriguez-e83155aa16', jobTitle: 'QuickActions analyst', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Dawn', @@ -2988,6 +3884,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-99.png', linkedinUrl: '/in/dawn-scott-c95e0080c3', jobTitle: 'Sports therapist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Timothy', @@ -2998,6 +3897,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-100.png', linkedinUrl: '/in/timothy-jones-eb531fbe5d', jobTitle: 'Manufacturing engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'William', @@ -3008,6 +3910,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-1.png', linkedinUrl: '/in/william-walker-492bb70711', jobTitle: 'Water engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jesus', @@ -3018,6 +3923,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-2.png', linkedinUrl: '/in/jesus-santana-fc2b873356', jobTitle: 'Designer, industrial/product', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Maurice', @@ -3028,6 +3936,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-3.png', linkedinUrl: '/in/maurice-carpenter-2f52cbbda1', jobTitle: 'Surveyor, insurance', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Robert', @@ -3038,6 +3949,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-4.png', linkedinUrl: '/in/robert-barnes-b7ef473c08', jobTitle: 'Ecologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Matthew', @@ -3048,6 +3962,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-5.png', linkedinUrl: '/in/matthew-aguilar-c9fde35926', jobTitle: 'Biomedical scientist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Anthony', @@ -3058,6 +3975,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-6.png', linkedinUrl: '/in/anthony-stanley-3854ad13be', jobTitle: 'Designer, interior/spatial', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brian', @@ -3068,6 +3988,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-7.png', linkedinUrl: '/in/brian-garza-66afe09a9a', jobTitle: 'Medical illustrator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lisa', @@ -3078,6 +4001,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-8.png', linkedinUrl: '/in/lisa-oconnor-ec7fe69b0a', jobTitle: 'Systems analyst', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'William', @@ -3088,6 +4014,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-9.png', linkedinUrl: '/in/william-wilson-fdb80928cc', jobTitle: 'Radio broadcast assistant', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Joanna', @@ -3098,6 +4027,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-10.png', linkedinUrl: '/in/joanna-alvarez-9f444908cb', jobTitle: 'Data processing manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Denise', @@ -3108,6 +4040,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-11.png', linkedinUrl: '/in/denise-hill-3e8506c956', jobTitle: 'Trade union research officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Marie', @@ -3118,6 +4053,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-12.png', linkedinUrl: '/in/marie-frey-6f12dc710b', jobTitle: 'Lecturer, higher education', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sarah', @@ -3128,6 +4066,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-13.png', linkedinUrl: '/in/sarah-anderson-fe0d0f83d5', jobTitle: 'Pensions consultant', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Mary', @@ -3138,6 +4079,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-14.png', linkedinUrl: '/in/mary-garcia-ed7168a5f9', jobTitle: 'Optometrist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Richard', @@ -3148,6 +4092,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-15.png', linkedinUrl: '/in/richard-massey-af5c02d5ad', jobTitle: 'Armed forces operational officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Megan', @@ -3158,6 +4105,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-16.png', linkedinUrl: '/in/megan-rodriguez-377a7d26f7', jobTitle: 'Editor, magazine features', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sandra', @@ -3168,6 +4118,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-17.png', linkedinUrl: '/in/sandra-conway-49f0ce34eb', jobTitle: 'Press sub', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Rachael', @@ -3178,6 +4131,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-18.png', linkedinUrl: '/in/rachael-dalton-6bab20a6a3', jobTitle: 'Catering manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Katherine', @@ -3188,6 +4144,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-19.png', linkedinUrl: '/in/katherine-little-d826db995d', jobTitle: 'Production assistant, radio', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Faith', @@ -3198,6 +4157,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-20.png', linkedinUrl: '/in/faith-cross-029912b4f5', jobTitle: 'Pensions consultant', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Amy', @@ -3208,6 +4170,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-21.png', linkedinUrl: '/in/amy-farmer-e9024737cf', jobTitle: 'Printmaker', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Stanley', @@ -3218,6 +4183,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-22.png', linkedinUrl: '/in/stanley-todd-d92752ad42', jobTitle: 'Psychologist, forensic', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Bradley', @@ -3228,6 +4196,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-23.png', linkedinUrl: '/in/bradley-miller-4b0d674c5d', jobTitle: 'Hospital doctor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sharon', @@ -3238,6 +4209,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-24.png', linkedinUrl: '/in/sharon-rhodes-708695e723', jobTitle: 'Lighting technician, broadcasting/film/video', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Emily', @@ -3248,6 +4222,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-25.png', linkedinUrl: '/in/emily-young-721fb2a8e0', jobTitle: 'Bonds trader', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Victoria', @@ -3258,6 +4235,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-26.png', linkedinUrl: '/in/victoria-harris-6f291283ab', jobTitle: 'Hospital pharmacist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Andrew', @@ -3268,6 +4248,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-27.png', linkedinUrl: '/in/andrew-massey-0f7983ac40', jobTitle: 'Podiatrist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Heather', @@ -3278,6 +4261,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-28.png', linkedinUrl: '/in/heather-mack-fc2f7ee6fd', jobTitle: "Politician's assistant", + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michelle', @@ -3288,6 +4274,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-29.png', linkedinUrl: '/in/michelle-richards-5d0d907e8c', jobTitle: 'Geochemist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Billy', @@ -3298,6 +4287,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-30.png', linkedinUrl: '/in/billy-jacobs-e9d18903f6', jobTitle: 'Pensions consultant', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michael', @@ -3308,6 +4300,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-31.png', linkedinUrl: '/in/michael-white-6548d80612', jobTitle: 'Metallurgist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jose', @@ -3318,6 +4313,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-32.png', linkedinUrl: '/in/jose-frazier-c989680d85', jobTitle: 'Conservation officer, historic buildings', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michael', @@ -3328,6 +4326,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-33.png', linkedinUrl: '/in/michael-barrett-9a6fdee03b', jobTitle: 'Sound technician, broadcasting/film/video', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lisa', @@ -3338,6 +4339,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-34.png', linkedinUrl: '/in/lisa-allen-65f7418d40', jobTitle: 'Contracting civil engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kristopher', @@ -3348,6 +4352,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-35.png', linkedinUrl: '/in/kristopher-berg-66eb2e31cf', jobTitle: 'Community pharmacist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Regina', @@ -3358,6 +4365,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-36.png', linkedinUrl: '/in/regina-allen-f1f56a375b', jobTitle: 'Civil Service administrator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Angela', @@ -3368,6 +4378,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-37.png', linkedinUrl: '/in/angela-williams-00ba2b783f', jobTitle: 'Designer, furniture', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Aaron', @@ -3378,6 +4391,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-38.png', linkedinUrl: '/in/aaron-watts-423d6e63d0', jobTitle: 'Commissioning editor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Angela', @@ -3388,6 +4404,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-39.png', linkedinUrl: '/in/angela-callahan-c21517a078', jobTitle: 'Merchant navy officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Walter', @@ -3398,6 +4417,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-40.png', linkedinUrl: '/in/walter-mclaughlin-7ec17dd691', jobTitle: 'Lecturer, further education', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brian', @@ -3408,6 +4430,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-41.png', linkedinUrl: '/in/brian-ellis-bc4c380ff5', jobTitle: 'Corporate investment banker', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Joshua', @@ -3418,6 +4443,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-42.png', linkedinUrl: '/in/joshua-watson-5613c41859', jobTitle: 'Scientist, clinical (histocompatibility and immunogenetics)', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Monica', @@ -3428,6 +4456,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-43.png', linkedinUrl: '/in/monica-molina-2213f0ccce', jobTitle: 'Press sub', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Justin', @@ -3438,6 +4469,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-44.png', linkedinUrl: '/in/justin-castro-43678bde89', jobTitle: 'Plant breeder/geneticist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Austin', @@ -3448,6 +4482,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-45.png', linkedinUrl: '/in/austin-dixon-791d6f8fa6', jobTitle: 'Dealer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Mitchell', @@ -3458,6 +4495,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-46.png', linkedinUrl: '/in/mitchell-massey-22fdbe6b77', jobTitle: 'Phytotherapist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Eric', @@ -3468,6 +4508,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-47.png', linkedinUrl: '/in/eric-reid-4a1a08817b', jobTitle: 'TEFL teacher', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Andrea', @@ -3478,6 +4521,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-48.png', linkedinUrl: '/in/andrea-park-80bc0bf8a0', jobTitle: 'Brewing technologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Wendy', @@ -3488,6 +4534,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-49.png', linkedinUrl: '/in/wendy-page-7d996e5a2f', jobTitle: 'Chief Executive Officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Vanessa', @@ -3498,6 +4547,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-50.png', linkedinUrl: '/in/vanessa-carpenter-a0b8dc7720', jobTitle: 'Chiropractor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lisa', @@ -3508,6 +4560,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-51.png', linkedinUrl: '/in/lisa-bailey-f737183c93', jobTitle: 'Agricultural engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jason', @@ -3518,6 +4573,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-52.png', linkedinUrl: '/in/jason-wagner-6eafd392ce', jobTitle: 'Surveyor, quantity', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Judith', @@ -3528,6 +4586,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-53.png', linkedinUrl: '/in/judith-moore-e8bdfc83e3', jobTitle: 'Translator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Steven', @@ -3538,6 +4599,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-54.png', linkedinUrl: '/in/steven-moore-a4d5be1e3c', jobTitle: 'Accountant, chartered certified', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Darren', @@ -3548,6 +4612,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-55.png', linkedinUrl: '/in/darren-castillo-8ed7a1702b', jobTitle: 'Advertising copywriter', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Regina', @@ -3558,6 +4625,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-56.png', linkedinUrl: '/in/regina-quinn-3983eab37e', jobTitle: 'Materials engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michelle', @@ -3568,6 +4638,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-57.png', linkedinUrl: '/in/michelle-delgado-53f8093373', jobTitle: 'Soil scientist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Miguel', @@ -3578,6 +4651,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-58.png', linkedinUrl: '/in/miguel-rose-31034cf613', jobTitle: 'Therapeutic radiographer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Gary', @@ -3588,6 +4664,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-59.png', linkedinUrl: '/in/gary-mason-549d3828f5', jobTitle: 'Theatre director', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'David', @@ -3598,6 +4677,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-60.png', linkedinUrl: '/in/david-young-ad2e589cdb', jobTitle: 'Medical illustrator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jennifer', @@ -3608,6 +4690,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-61.png', linkedinUrl: '/in/jennifer-lewis-008f8dc7e6', jobTitle: 'Teaching laboratory technician', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Amanda', @@ -3618,6 +4703,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-62.png', linkedinUrl: '/in/amanda-carson-8e728fa39a', jobTitle: 'Product/process development scientist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jeffrey', @@ -3628,6 +4716,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-63.png', linkedinUrl: '/in/jeffrey-valentine-ccb2756410', jobTitle: 'Surveyor, hydrographic', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Helen', @@ -3638,6 +4729,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-64.png', linkedinUrl: '/in/helen-gordon-71ec22bf50', jobTitle: 'Engineer, communications', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Cameron', @@ -3648,6 +4742,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinUrl: '/in/cameron-lopez-e66f1d22d8', jobTitle: 'Engineer, production', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Troy', @@ -3658,6 +4755,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-66.png', linkedinUrl: '/in/troy-gray-756cd40db4', jobTitle: 'Health and safety inspector', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Tonya', @@ -3668,6 +4768,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-67.png', linkedinUrl: '/in/tonya-payne-5e0b7eec25', jobTitle: 'Training and development officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'April', @@ -3678,6 +4781,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-68.png', linkedinUrl: '/in/april-williams-f4fa095134', jobTitle: 'Tourist information centre manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Gregory', @@ -3688,6 +4794,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-69.png', linkedinUrl: '/in/gregory-baker-58cbfbde95', jobTitle: 'Pharmacist, community', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Bobby', @@ -3698,6 +4807,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-70.png', linkedinUrl: '/in/bobby-cummings-18e64e1c24', jobTitle: 'Mechanical engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Melissa', @@ -3708,6 +4820,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-71.png', linkedinUrl: '/in/melissa-jackson-36c2e59b76', jobTitle: 'Pharmacologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lance', @@ -3718,6 +4833,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-72.png', linkedinUrl: '/in/lance-norman-7b07c0a723', jobTitle: 'Furniture conservator/restorer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Amy', @@ -3728,6 +4846,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-73.png', linkedinUrl: '/in/amy-roberts-b98996c9ef', jobTitle: 'Cytogeneticist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kaitlyn', @@ -3738,6 +4859,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-74.png', linkedinUrl: '/in/kaitlyn-kelly-e6d2be7a00', jobTitle: 'Commercial/residential surveyor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Alan', @@ -3748,6 +4872,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-75.png', linkedinUrl: '/in/alan-perez-6a584f8e83', jobTitle: 'Advertising copywriter', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kaylee', @@ -3758,6 +4885,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-76.png', linkedinUrl: '/in/kaylee-garrett-5c56311f4e', jobTitle: 'Chief Operating Officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Deanna', @@ -3768,6 +4898,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-77.png', linkedinUrl: '/in/deanna-ball-cac5d9cf3c', jobTitle: 'Nurse, learning disability', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michele', @@ -3778,6 +4911,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-78.png', linkedinUrl: '/in/michele-crawford-21fd4da56c', jobTitle: 'Education officer, environmental', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Tommy', @@ -3788,6 +4924,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-79.png', linkedinUrl: '/in/tommy-brown-a3313774fb', jobTitle: 'Civil engineer, consulting', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Mary', @@ -3798,6 +4937,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-80.png', linkedinUrl: '/in/mary-smith-e7451d73fb', jobTitle: 'Commercial/residential surveyor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Danielle', @@ -3808,6 +4950,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-81.png', linkedinUrl: '/in/danielle-dunn-afadb3743f', jobTitle: 'Higher education lecturer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Daniel', @@ -3818,6 +4963,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-82.png', linkedinUrl: '/in/daniel-ward-9eba345b13', jobTitle: 'Corporate treasurer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Louis', @@ -3828,6 +4976,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-83.png', linkedinUrl: '/in/louis-bailey-a7c289633b', jobTitle: 'Actuary', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Melvin', @@ -3838,6 +4989,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-84.png', linkedinUrl: '/in/melvin-rosario-eeb2165a87', jobTitle: 'Mental health nurse', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jason', @@ -3848,6 +5002,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-85.png', linkedinUrl: '/in/jason-fritz-998e404fcc', jobTitle: 'Counselling psychologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Candice', @@ -3858,6 +5015,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-86.png', linkedinUrl: '/in/candice-weber-8d1a3aa843', jobTitle: 'Scientific laboratory technician', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'John', @@ -3868,6 +5028,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-87.png', linkedinUrl: '/in/john-jones-f3a69bf1c7', jobTitle: "Politician's assistant", + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Henry', @@ -3878,6 +5041,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-88.png', linkedinUrl: '/in/henry-gonzalez-ed4236ae1a', jobTitle: 'Medical secretary', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kaitlyn', @@ -3888,6 +5054,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-89.png', linkedinUrl: '/in/kaitlyn-brennan-3e779378d9', jobTitle: 'Osteopath', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jeffrey', @@ -3898,6 +5067,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-90.png', linkedinUrl: '/in/jeffrey-shepard-038f3df4d1', jobTitle: 'Designer, graphic', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Emily', @@ -3908,6 +5080,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-91.png', linkedinUrl: '/in/emily-smith-3c11276729', jobTitle: 'Claims inspector/assessor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Richard', @@ -3918,6 +5093,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-92.png', linkedinUrl: '/in/richard-williams-034896141e', jobTitle: 'Artist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'David', @@ -3928,6 +5106,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-93.png', linkedinUrl: '/in/david-cruz-9821a933f5', jobTitle: 'Lecturer, further education', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Julie', @@ -3938,6 +5119,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-94.png', linkedinUrl: '/in/julie-smith-4b6473adc4', jobTitle: 'Conservator, furniture', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Edward', @@ -3948,6 +5132,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-95.png', linkedinUrl: '/in/edward-russell-34445498de', jobTitle: 'Teaching laboratory technician', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Beth', @@ -3958,6 +5145,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-96.png', linkedinUrl: '/in/beth-kennedy-956fad5f18', jobTitle: 'Passenger transport manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Craig', @@ -3968,6 +5158,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-97.png', linkedinUrl: '/in/craig-maxwell-9b3a04b47e', jobTitle: 'Conservator, furniture', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christopher', @@ -3978,6 +5171,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-98.png', linkedinUrl: '/in/christopher-jackson-0ad43cfe80', jobTitle: 'Education officer, community', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jacob', @@ -3988,6 +5184,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-99.png', linkedinUrl: '/in/jacob-miller-c0d550cede', jobTitle: 'Surveyor, land/geomatics', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kevin', @@ -3998,6 +5197,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-100.png', linkedinUrl: '/in/kevin-williams-41633df75d', jobTitle: 'Doctor, general practice', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Mary', @@ -4008,6 +5210,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-1.png', linkedinUrl: '/in/mary-wiley-2c6f70a754', jobTitle: 'Museum/gallery curator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sierra', @@ -4018,6 +5223,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-2.png', linkedinUrl: '/in/sierra-mccullough-9d4780eddd', jobTitle: 'Tour manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michelle', @@ -4028,6 +5236,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-3.png', linkedinUrl: '/in/michelle-mcknight-d4229e04f1', jobTitle: 'Adult guidance worker', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Devin', @@ -4038,6 +5249,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-4.png', linkedinUrl: '/in/devin-aguilar-ed9890f7fd', jobTitle: 'Press photographer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christopher', @@ -4048,6 +5262,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-5.png', linkedinUrl: '/in/christopher-figueroa-8ef81242d0', jobTitle: 'Theatre stage manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Anita', @@ -4058,6 +5275,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-6.png', linkedinUrl: '/in/anita-orr-7648a03041', jobTitle: 'Air cabin crew', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Richard', @@ -4068,6 +5288,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-7.png', linkedinUrl: '/in/richard-young-10948fb6af', jobTitle: 'Osteopath', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Justin', @@ -4078,6 +5301,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-8.png', linkedinUrl: '/in/justin-berry-4ac0f93944', jobTitle: 'Public house manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Timothy', @@ -4088,6 +5314,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-9.png', linkedinUrl: '/in/timothy-davis-6c07a1c0bc', jobTitle: 'Call centre manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brian', @@ -4098,6 +5327,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-10.png', linkedinUrl: '/in/brian-williams-07738aaf00', jobTitle: 'Media buyer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kyle', @@ -4108,6 +5340,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-11.png', linkedinUrl: '/in/kyle-carr-ae1d05c89e', jobTitle: 'Environmental education officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jessica', @@ -4118,6 +5353,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-12.png', linkedinUrl: '/in/jessica-gonzalez-26ff71c932', jobTitle: 'Acupuncturist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Hannah', @@ -4128,6 +5366,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-13.png', linkedinUrl: '/in/hannah-nguyen-af672e539c', jobTitle: 'Theatre director', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Tina', @@ -4138,6 +5379,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-14.png', linkedinUrl: '/in/tina-salinas-4c6898adb4', jobTitle: 'Office manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Matthew', @@ -4148,6 +5392,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-15.png', linkedinUrl: '/in/matthew-king-4fcd69e0e2', jobTitle: 'Scientist, forensic', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Carrie', @@ -4158,6 +5405,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-16.png', linkedinUrl: '/in/carrie-mayer-19a613bd93', jobTitle: 'Furniture conservator/restorer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Alan', @@ -4168,6 +5418,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-17.png', linkedinUrl: '/in/alan-guerrero-35f65ce7ed', jobTitle: 'Catering manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Alan', @@ -4178,6 +5431,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-18.png', linkedinUrl: '/in/alan-edwards-2c5694b583', jobTitle: 'Air traffic controller', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ellen', @@ -4188,6 +5444,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-19.png', linkedinUrl: '/in/ellen-hughes-d7dcd7cee8', jobTitle: 'Catering manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jennifer', @@ -4198,6 +5457,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-20.png', linkedinUrl: '/in/jennifer-cox-521071720f', jobTitle: 'Product designer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'James', @@ -4208,6 +5470,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-21.png', linkedinUrl: '/in/james-brown-a872fe7489', jobTitle: 'Theatre manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kenneth', @@ -4218,6 +5483,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-22.png', linkedinUrl: '/in/kenneth-mason-7bdf5e7f2b', jobTitle: 'Financial trader', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kent', @@ -4228,6 +5496,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-23.png', linkedinUrl: '/in/kent-mitchell-2685d24cef', jobTitle: 'Horticultural consultant', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christine', @@ -4238,6 +5509,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-24.png', linkedinUrl: '/in/christine-parker-53b7e92f21', jobTitle: 'Dietitian', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christopher', @@ -4248,6 +5522,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-25.png', linkedinUrl: '/in/christopher-thomas-50eba95625', jobTitle: 'Press photographer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Cole', @@ -4258,6 +5535,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-26.png', linkedinUrl: '/in/cole-mckenzie-0febe188ad', jobTitle: 'Transport planner', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'John', @@ -4268,6 +5548,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-27.png', linkedinUrl: '/in/john-jackson-eaf7698388', jobTitle: 'Engineer, land', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Denise', @@ -4278,6 +5561,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-28.png', linkedinUrl: '/in/denise-gregory-2a012e2939', jobTitle: 'Community arts worker', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Deanna', @@ -4288,6 +5574,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-29.png', linkedinUrl: '/in/deanna-mays-d96cf68df8', jobTitle: 'Television camera operator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jennifer', @@ -4298,6 +5587,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-30.png', linkedinUrl: '/in/jennifer-smith-cff724d712', jobTitle: 'Science writer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Dylan', @@ -4308,6 +5600,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-31.png', linkedinUrl: '/in/dylan-jimenez-611f4f7667', jobTitle: 'Runner, broadcasting/film/video', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Amber', @@ -4318,6 +5613,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-32.png', linkedinUrl: '/in/amber-mullins-7c2cf23e98', jobTitle: 'Scientist, research (medical)', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kirsten', @@ -4328,6 +5626,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-33.png', linkedinUrl: '/in/kirsten-watson-e01dabbf2c', jobTitle: 'Radiographer, therapeutic', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Holly', @@ -4338,6 +5639,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-34.png', linkedinUrl: '/in/holly-winters-ad7c60377c', jobTitle: 'Public house manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Matthew', @@ -4348,6 +5652,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-35.png', linkedinUrl: '/in/matthew-jenkins-d451b82929', jobTitle: 'Neurosurgeon', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Elizabeth', @@ -4358,6 +5665,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-36.png', linkedinUrl: '/in/elizabeth-williams-f8ae89860c', jobTitle: 'Ranger/warden', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sophia', @@ -4368,6 +5678,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-37.png', linkedinUrl: '/in/sophia-carpenter-41f6371dcf', jobTitle: 'Translator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sarah', @@ -4378,6 +5691,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-38.png', linkedinUrl: '/in/sarah-duke-9c48b2bc47', jobTitle: 'Holiday representative', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Colin', @@ -4388,6 +5704,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-39.png', linkedinUrl: '/in/colin-smith-319020345b', jobTitle: 'Gaffer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christine', @@ -4398,6 +5717,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-40.png', linkedinUrl: '/in/christine-baldwin-849d34d1c9', jobTitle: 'Emergency planning/management officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michael', @@ -4408,6 +5730,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-41.png', linkedinUrl: '/in/michael-johns-d7c1497c08', jobTitle: 'Waste management officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jeffery', @@ -4418,6 +5743,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-42.png', linkedinUrl: '/in/jeffery-griffin-755dd4b413', jobTitle: 'Embryologist, clinical', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Mike', @@ -4428,6 +5756,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-43.png', linkedinUrl: '/in/mike-hernandez-619531cf07', jobTitle: 'Conservation officer, nature', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Chelsea', @@ -4438,6 +5769,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-44.png', linkedinUrl: '/in/chelsea-robinson-65dedb9ed7', jobTitle: 'Restaurant manager, fast food', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Derek', @@ -4448,6 +5782,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-45.png', linkedinUrl: '/in/derek-small-3b02aeb21a', jobTitle: 'Nutritional therapist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Robin', @@ -4458,6 +5795,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-46.png', linkedinUrl: '/in/robin-miranda-3d69d8721e', jobTitle: 'Logistics and distribution manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Alexander', @@ -4468,6 +5808,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-47.png', linkedinUrl: '/in/alexander-bryant-8e40b5c156', jobTitle: 'Museum education officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jennifer', @@ -4478,6 +5821,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-48.png', linkedinUrl: '/in/jennifer-moody-92078fa8a0', jobTitle: 'Teacher, adult education', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kathleen', @@ -4488,6 +5834,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-49.png', linkedinUrl: '/in/kathleen-coleman-fbba0d93b5', jobTitle: 'Exhibition designer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Miguel', @@ -4498,6 +5847,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-50.png', linkedinUrl: '/in/miguel-malone-931db4892a', jobTitle: 'Industrial buyer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Eric', @@ -4508,6 +5860,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-51.png', linkedinUrl: '/in/eric-kramer-911574885e', jobTitle: 'Surveyor, planning and development', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'David', @@ -4518,6 +5873,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-52.png', linkedinUrl: '/in/david-harmon-a02ccbfe74', jobTitle: 'Trade mark attorney', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michael', @@ -4528,6 +5886,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-53.png', linkedinUrl: '/in/michael-turner-c7db3d22d3', jobTitle: 'Illustrator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kim', @@ -4538,6 +5899,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-54.png', linkedinUrl: '/in/kim-nelson-e9c0c3ac3b', jobTitle: 'Archivist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jason', @@ -4548,6 +5912,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-55.png', linkedinUrl: '/in/jason-mcmahon-17a1cf9c23', jobTitle: 'Oncologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Spencer', @@ -4558,6 +5925,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-56.png', linkedinUrl: '/in/spencer-mason-511dce37fd', jobTitle: 'Investment analyst', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Alison', @@ -4568,6 +5938,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-57.png', linkedinUrl: '/in/alison-barber-c6ac41c30c', jobTitle: 'Tourism officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Alicia', @@ -4578,6 +5951,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-58.png', linkedinUrl: '/in/alicia-kennedy-ffd86f7279', jobTitle: 'Civil engineer, consulting', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Edward', @@ -4588,6 +5964,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-59.png', linkedinUrl: '/in/edward-parsons-0815f3a265', jobTitle: 'Financial controller', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Justin', @@ -4598,6 +5977,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-60.png', linkedinUrl: '/in/justin-petersen-5f4849177a', jobTitle: 'Theatre director', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Dawn', @@ -4608,6 +5990,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-61.png', linkedinUrl: '/in/dawn-dixon-ab7660d36a', jobTitle: 'Musician', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Douglas', @@ -4618,6 +6003,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-62.png', linkedinUrl: '/in/douglas-ward-a7e9b5a4ef', jobTitle: 'Midwife', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Linda', @@ -4628,6 +6016,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-63.png', linkedinUrl: '/in/linda-nguyen-9543ff5b4b', jobTitle: 'General practice doctor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Nicole', @@ -4638,6 +6029,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-64.png', linkedinUrl: '/in/nicole-hernandez-c31e2859c3', jobTitle: 'Teacher, early years/pre', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Anne', @@ -4648,6 +6042,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinUrl: '/in/anne-massey-68ae91f9e7', jobTitle: 'Engineer, energy', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jenny', @@ -4658,6 +6055,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-66.png', linkedinUrl: '/in/jenny-esparza-0ce6d348d2', jobTitle: 'Trade union research officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Robert', @@ -4668,6 +6068,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-67.png', linkedinUrl: '/in/robert-ward-9dbe3cfea4', jobTitle: 'Air broker', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Melissa', @@ -4678,6 +6081,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-68.png', linkedinUrl: '/in/melissa-farrell-e7db325f4e', jobTitle: 'Sports administrator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Stephen', @@ -4688,6 +6094,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-69.png', linkedinUrl: '/in/stephen-powers-848a849fac', jobTitle: 'Occupational psychologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Robin', @@ -4698,6 +6107,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-70.png', linkedinUrl: '/in/robin-brown-95dea5c792', jobTitle: 'Publishing rights manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Wanda', @@ -4708,6 +6120,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-71.png', linkedinUrl: '/in/wanda-moore-846aac522b', jobTitle: 'Chief Technology Officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Danielle', @@ -4718,6 +6133,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-72.png', linkedinUrl: '/in/danielle-brown-9468c67469', jobTitle: 'Biochemist, clinical', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Timothy', @@ -4728,6 +6146,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-73.png', linkedinUrl: '/in/timothy-phillips-f02b8125a6', jobTitle: 'Medical sales representative', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Daniel', @@ -4738,6 +6159,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-74.png', linkedinUrl: '/in/daniel-baker-b080dba2cf', jobTitle: 'Learning disability nurse', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jason', @@ -4748,6 +6172,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-75.png', linkedinUrl: '/in/jason-parker-c8f6658eb8', jobTitle: 'Public relations officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Donald', @@ -4758,6 +6185,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-76.png', linkedinUrl: '/in/donald-roy-81242ff295', jobTitle: 'Ambulance person', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Cameron', @@ -4768,6 +6198,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-77.png', linkedinUrl: '/in/cameron-beck-4a5b8ac2f9', jobTitle: 'Animal technologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christina', @@ -4778,6 +6211,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-78.png', linkedinUrl: '/in/christina-carter-20e5617e72', jobTitle: 'Historic buildings inspector/conservation officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Roy', @@ -4788,6 +6224,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-79.png', linkedinUrl: '/in/roy-jackson-12ef80ee4f', jobTitle: 'Theatre stage manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Valerie', @@ -4798,6 +6237,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-80.png', linkedinUrl: '/in/valerie-green-c4a084e4af', jobTitle: 'Dramatherapist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ryan', @@ -4808,6 +6250,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-81.png', linkedinUrl: '/in/ryan-parker-f86f7a2a2c', jobTitle: 'Catering manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Spencer', @@ -4818,6 +6263,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-82.png', linkedinUrl: '/in/spencer-cortez-8653fe9874', jobTitle: 'Logistics and distribution manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jacqueline', @@ -4828,6 +6276,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-83.png', linkedinUrl: '/in/jacqueline-freeman-4dc0ff463f', jobTitle: 'English as a second language teacher', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Joanne', @@ -4838,6 +6289,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-84.png', linkedinUrl: '/in/joanne-hernandez-22617ea91c', jobTitle: 'Research scientist (maths)', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brandon', @@ -4848,6 +6302,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-85.png', linkedinUrl: '/in/brandon-randolph-f206b641f3', jobTitle: 'Games developer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'William', @@ -4858,6 +6315,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-86.png', linkedinUrl: '/in/william-wells-ddf1c0e80e', jobTitle: 'Teacher, secondary school', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Monica', @@ -4868,6 +6328,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-87.png', linkedinUrl: '/in/monica-wall-18fcd0b442', jobTitle: 'Clinical molecular geneticist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Patricia', @@ -4878,6 +6341,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-88.png', linkedinUrl: '/in/patricia-whitehead-b76f160790', jobTitle: 'Learning disability nurse', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Chelsey', @@ -4888,6 +6354,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-89.png', linkedinUrl: '/in/chelsey-cruz-3927a3b54f', jobTitle: 'Accountant, chartered management', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Marie', @@ -4898,6 +6367,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-90.png', linkedinUrl: '/in/marie-herrera-3c032f2c87', jobTitle: 'Teacher, English as a foreign language', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Gail', @@ -4908,6 +6380,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-91.png', linkedinUrl: '/in/gail-russell-47081f3909', jobTitle: 'Building services engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christopher', @@ -4918,6 +6393,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-92.png', linkedinUrl: '/in/christopher-whitehead-907e5c7217', jobTitle: 'Research officer, trade union', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Vicki', @@ -4928,6 +6406,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-93.png', linkedinUrl: '/in/vicki-gonzales-a6b6db11ce', jobTitle: 'Psychologist, counselling', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Paul', @@ -4938,6 +6419,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-94.png', linkedinUrl: '/in/paul-graham-0159c4f113', jobTitle: 'Surveyor, commercial/residential', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'John', @@ -4948,6 +6432,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-95.png', linkedinUrl: '/in/john-carter-c39f5f879b', jobTitle: 'Cabin crew', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Dennis', @@ -4958,6 +6445,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-96.png', linkedinUrl: '/in/dennis-taylor-81e83d5e15', jobTitle: 'Sports development officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Gail', @@ -4968,6 +6458,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-97.png', linkedinUrl: '/in/gail-salinas-6fd9ac936d', jobTitle: 'Theatre stage manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Stacey', @@ -4978,6 +6471,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-98.png', linkedinUrl: '/in/stacey-doyle-c2b53da3c1', jobTitle: 'Engineer, water', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Nicholas', @@ -4988,6 +6484,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-99.png', linkedinUrl: '/in/nicholas-jones-37d87e9bef', jobTitle: 'Runner, broadcasting/film/video', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sheri', @@ -4998,6 +6497,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-100.png', linkedinUrl: '/in/sheri-donaldson-aef36dc097', jobTitle: 'Dentist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christopher', @@ -5008,6 +6510,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-1.png', linkedinUrl: '/in/christopher-christensen-0405d38686', jobTitle: 'Public relations officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Joshua', @@ -5018,6 +6523,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-2.png', linkedinUrl: '/in/joshua-hernandez-aaf7b631ad', jobTitle: 'Therapist, sports', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ryan', @@ -5028,6 +6536,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-3.png', linkedinUrl: '/in/ryan-walter-3f704e09d0', jobTitle: 'Therapeutic radiographer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brandy', @@ -5038,6 +6549,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-4.png', linkedinUrl: '/in/brandy-trevino-a6f561480a', jobTitle: 'Herpetologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'John', @@ -5048,6 +6562,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-5.png', linkedinUrl: '/in/john-martinez-9b2c36ab60', jobTitle: 'Armed forces technical officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jennifer', @@ -5058,6 +6575,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-6.png', linkedinUrl: '/in/jennifer-morris-94daa88e52', jobTitle: 'Homeopath', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Amanda', @@ -5068,6 +6588,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-7.png', linkedinUrl: '/in/amanda-barnett-6714ab7883', jobTitle: 'Clothing/textile technologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Tanner', @@ -5078,6 +6601,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-8.png', linkedinUrl: '/in/tanner-miller-dcf9fa91b8', jobTitle: 'Trading standards officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Bobby', @@ -5088,6 +6614,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-9.png', linkedinUrl: '/in/bobby-sanchez-b2c15c3790', jobTitle: 'Scientist, marine', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brian', @@ -5098,6 +6627,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-10.png', linkedinUrl: '/in/brian-cortez-77d96367ee', jobTitle: 'Metallurgist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Misty', @@ -5108,6 +6640,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-11.png', linkedinUrl: '/in/misty-jenkins-7bb3609670', jobTitle: 'Teacher, primary school', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Erin', @@ -5118,6 +6653,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-12.png', linkedinUrl: '/in/erin-hernandez-701db083a7', jobTitle: 'Textile designer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Victoria', @@ -5128,6 +6666,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-13.png', linkedinUrl: '/in/victoria-larsen-8bc60c5ec2', jobTitle: 'General practice doctor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brian', @@ -5138,6 +6679,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-14.png', linkedinUrl: '/in/brian-diaz-97d66d36ca', jobTitle: 'Television floor manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Krista', @@ -5148,6 +6692,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-15.png', linkedinUrl: '/in/krista-murphy-51da3fe5d2', jobTitle: 'Social researcher', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Calvin', @@ -5158,6 +6705,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-16.png', linkedinUrl: '/in/calvin-bond-59b4aeacff', jobTitle: 'Early years teacher', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Terry', @@ -5168,6 +6718,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-17.png', linkedinUrl: '/in/terry-perez-68f6738ace', jobTitle: 'Teaching laboratory technician', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Stephen', @@ -5178,6 +6731,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-18.png', linkedinUrl: '/in/stephen-wilson-009cf79121', jobTitle: 'Development worker, international aid', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lisa', @@ -5188,6 +6744,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-19.png', linkedinUrl: '/in/lisa-johnson-d9406b185e', jobTitle: 'Archaeologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Tim', @@ -5198,6 +6757,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-20.png', linkedinUrl: '/in/tim-torres-9031065f9f', jobTitle: 'Accounting technician', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Claudia', @@ -5208,6 +6770,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-21.png', linkedinUrl: '/in/claudia-sosa-8b95753698', jobTitle: 'Retail buyer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Steven', @@ -5218,6 +6783,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-22.png', linkedinUrl: '/in/steven-higgins-004f3810c4', jobTitle: 'Environmental health practitioner', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'James', @@ -5228,6 +6796,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-23.png', linkedinUrl: '/in/james-benson-6cc556ac5b', jobTitle: 'Games developer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Tyler', @@ -5238,6 +6809,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-24.png', linkedinUrl: '/in/tyler-bishop-b9b8afc542', jobTitle: 'Surveyor, land/geomatics', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Monica', @@ -5248,6 +6822,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-25.png', linkedinUrl: '/in/monica-smith-df2db66e3e', jobTitle: 'Exercise physiologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jillian', @@ -5258,6 +6835,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-26.png', linkedinUrl: '/in/jillian-carter-9a44a80690', jobTitle: 'Forest/woodland manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Roberta', @@ -5268,6 +6848,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-27.png', linkedinUrl: '/in/roberta-graves-5584549fbc', jobTitle: 'Camera operator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Clarence', @@ -5278,6 +6861,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-28.png', linkedinUrl: '/in/clarence-flores-bc6d7c12e4', jobTitle: 'Publishing copy', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Robert', @@ -5288,6 +6874,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-29.png', linkedinUrl: '/in/robert-gonzalez-624dd9bd66', jobTitle: 'Geologist, engineering', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Melissa', @@ -5298,6 +6887,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-30.png', linkedinUrl: '/in/melissa-lucas-d06ec4efc8', jobTitle: 'Youth worker', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lee', @@ -5308,6 +6900,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-31.png', linkedinUrl: '/in/lee-lewis-c341df06f3', jobTitle: 'Graphic designer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jessica', @@ -5318,6 +6913,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-32.png', linkedinUrl: '/in/jessica-preston-011a349bc5', jobTitle: 'Therapist, art', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Henry', @@ -5328,6 +6926,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-33.png', linkedinUrl: '/in/henry-west-168b570375', jobTitle: 'Programme researcher, broadcasting/film/video', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kristin', @@ -5338,6 +6939,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-34.png', linkedinUrl: '/in/kristin-sanchez-16a334fc5e', jobTitle: 'Hydrologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Derek', @@ -5348,6 +6952,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-35.png', linkedinUrl: '/in/derek-davis-919fba4163', jobTitle: 'Logistics and distribution manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Dan', @@ -5358,6 +6965,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-36.png', linkedinUrl: '/in/dan-gonzales-83d3f8867f', jobTitle: 'Location manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Edwin', @@ -5368,6 +6978,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-37.png', linkedinUrl: '/in/edwin-garcia-7bcfaf8b3a', jobTitle: 'Nurse, mental health', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Tonya', @@ -5378,6 +6991,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-38.png', linkedinUrl: '/in/tonya-hooper-da5e36c5c5', jobTitle: 'Water engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jennifer', @@ -5388,6 +7004,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-39.png', linkedinUrl: '/in/jennifer-tate-ffbd43bb7e', jobTitle: 'Hospital doctor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Earl', @@ -5398,6 +7017,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-40.png', linkedinUrl: '/in/earl-higgins-1785700a3f', jobTitle: 'Administrator, sports', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sandra', @@ -5408,6 +7030,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-41.png', linkedinUrl: '/in/sandra-werner-ca50c4d94a', jobTitle: 'Administrator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brian', @@ -5418,6 +7043,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-42.png', linkedinUrl: '/in/brian-johnson-1b262bb370', jobTitle: 'Environmental consultant', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jacqueline', @@ -5428,6 +7056,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-43.png', linkedinUrl: '/in/jacqueline-bell-41ae313193', jobTitle: 'Advice worker', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jeffery', @@ -5438,6 +7069,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-44.png', linkedinUrl: '/in/jeffery-gibson-33288473cf', jobTitle: 'Therapist, occupational', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jacqueline', @@ -5448,6 +7082,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-45.png', linkedinUrl: '/in/jacqueline-snyder-cdfcd4794c', jobTitle: 'Press photographer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'John', @@ -5458,6 +7095,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-46.png', linkedinUrl: '/in/john-stone-ed440ef104', jobTitle: 'Advertising account executive', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Elizabeth', @@ -5468,6 +7108,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-47.png', linkedinUrl: '/in/elizabeth-allen-f3a164c8d0', jobTitle: 'Animator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Daniel', @@ -5478,6 +7121,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-48.png', linkedinUrl: '/in/daniel-knight-71d19ed590', jobTitle: 'Producer, television/film/video', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Whitney', @@ -5488,6 +7134,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-49.png', linkedinUrl: '/in/whitney-thomas-ef126a0de0', jobTitle: 'Ophthalmologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christina', @@ -5498,6 +7147,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-50.png', linkedinUrl: '/in/christina-anderson-f8458640de', jobTitle: 'Museum education officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Joseph', @@ -5508,6 +7160,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-51.png', linkedinUrl: '/in/joseph-peterson-0735ee6e8a', jobTitle: 'Actor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Larry', @@ -5518,6 +7173,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-52.png', linkedinUrl: '/in/larry-graham-ec62249904', jobTitle: 'Surveyor, planning and development', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Rachael', @@ -5528,6 +7186,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-53.png', linkedinUrl: '/in/rachael-fox-736e697d7a', jobTitle: 'Senior tax professional/tax inspector', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christopher', @@ -5538,6 +7199,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-54.png', linkedinUrl: '/in/christopher-wilson-f6db69b44e', jobTitle: 'Lecturer, further education', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Aaron', @@ -5548,6 +7212,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-55.png', linkedinUrl: '/in/aaron-mccarty-4207ebed52', jobTitle: 'Engineer, structural', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Albert', @@ -5558,6 +7225,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-56.png', linkedinUrl: '/in/albert-taylor-715173cf8c', jobTitle: 'Exercise physiologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Laura', @@ -5568,6 +7238,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-57.png', linkedinUrl: '/in/laura-diaz-83aa93da5c', jobTitle: 'Clinical embryologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Hannah', @@ -5578,6 +7251,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-58.png', linkedinUrl: '/in/hannah-craig-e5a9be07cf', jobTitle: 'Air traffic controller', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jessica', @@ -5588,6 +7264,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-59.png', linkedinUrl: '/in/jessica-smith-59aaca3a47', jobTitle: 'Seismic interpreter', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michael', @@ -5598,6 +7277,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-60.png', linkedinUrl: '/in/michael-george-2f16bc3685', jobTitle: 'Insurance risk surveyor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ronald', @@ -5608,6 +7290,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-61.png', linkedinUrl: '/in/ronald-hogan-67f4504d1b', jobTitle: 'Engineer, electrical', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Elizabeth', @@ -5618,6 +7303,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-62.png', linkedinUrl: '/in/elizabeth-wright-3d2908f9b7', jobTitle: 'Legal secretary', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Thomas', @@ -5628,6 +7316,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-63.png', linkedinUrl: '/in/thomas-zimmerman-83ce4ea20a', jobTitle: 'Advertising art director', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Judith', @@ -5638,6 +7329,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-64.png', linkedinUrl: '/in/judith-harris-c394ff92d4', jobTitle: 'Teacher, secondary school', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'James', @@ -5648,6 +7342,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinUrl: '/in/james-massey-14adc3c2b2', jobTitle: 'IT sales professional', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Louis', @@ -5658,6 +7355,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-66.png', linkedinUrl: '/in/louis-huynh-8409c77412', jobTitle: 'Education officer, environmental', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lori', @@ -5668,6 +7368,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-67.png', linkedinUrl: '/in/lori-alexander-06fabb279c', jobTitle: 'Diplomatic Services operational officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Anna', @@ -5678,6 +7381,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-68.png', linkedinUrl: '/in/anna-moore-209cbeb00b', jobTitle: 'Armed forces operational officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Richard', @@ -5688,6 +7394,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-69.png', linkedinUrl: '/in/richard-smith-37150fdba0', jobTitle: 'Administrator, arts', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Eric', @@ -5698,6 +7407,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-70.png', linkedinUrl: '/in/eric-hunter-5944420676', jobTitle: 'Osteopath', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Cody', @@ -5708,6 +7420,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-71.png', linkedinUrl: '/in/cody-todd-e59e1908cb', jobTitle: 'Financial planner', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Nicole', @@ -5718,6 +7433,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-72.png', linkedinUrl: '/in/nicole-patel-d52be83244', jobTitle: 'Glass blower/designer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Eric', @@ -5728,6 +7446,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-73.png', linkedinUrl: '/in/eric-rivera-17c826bef0', jobTitle: 'Teacher, primary school', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Amy', @@ -5738,6 +7459,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-74.png', linkedinUrl: '/in/amy-hall-5b6ee3fd83', jobTitle: 'Recycling officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Randy', @@ -5748,6 +7472,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-75.png', linkedinUrl: '/in/randy-trujillo-c9c04e7445', jobTitle: 'Production engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ashley', @@ -5758,6 +7485,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-76.png', linkedinUrl: '/in/ashley-conner-7e1f59d6d0', jobTitle: 'Chief Technology Officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Adriana', @@ -5768,6 +7498,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-77.png', linkedinUrl: '/in/adriana-larsen-790fff0714', jobTitle: 'Financial manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lindsey', @@ -5778,6 +7511,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-78.png', linkedinUrl: '/in/lindsey-reid-9408f405f8', jobTitle: 'Geneticist, molecular', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sophia', @@ -5788,6 +7524,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-79.png', linkedinUrl: '/in/sophia-collins-65701c7f41', jobTitle: 'Proofreader', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Joshua', @@ -5798,6 +7537,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-80.png', linkedinUrl: '/in/joshua-martin-3db7199eeb', jobTitle: 'Diplomatic Services operational officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'James', @@ -5808,6 +7550,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-81.png', linkedinUrl: '/in/james-adams-fade145464', jobTitle: 'Field trials officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Maureen', @@ -5818,6 +7563,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-82.png', linkedinUrl: '/in/maureen-clay-44447f851e', jobTitle: 'Ceramics designer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brenda', @@ -5828,6 +7576,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-83.png', linkedinUrl: '/in/brenda-moore-431d562885', jobTitle: 'Therapist, nutritional', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kathy', @@ -5838,6 +7589,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-84.png', linkedinUrl: '/in/kathy-glover-1481622628', jobTitle: 'IT consultant', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jeffrey', @@ -5848,6 +7602,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-85.png', linkedinUrl: '/in/jeffrey-jones-74128aa05c', jobTitle: 'Corporate treasurer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Dylan', @@ -5858,6 +7615,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-86.png', linkedinUrl: '/in/dylan-ramirez-de68206ac6', jobTitle: 'Textile designer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Derek', @@ -5868,6 +7628,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-87.png', linkedinUrl: '/in/derek-brown-0bd369600e', jobTitle: 'Maintenance engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Nicole', @@ -5878,6 +7641,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-88.png', linkedinUrl: '/in/nicole-robles-dc92d47af5', jobTitle: 'Customer service manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lauren', @@ -5888,6 +7654,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-89.png', linkedinUrl: '/in/lauren-murray-f56eac5c8b', jobTitle: 'Theatre director', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Vanessa', @@ -5898,6 +7667,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-90.png', linkedinUrl: '/in/vanessa-jones-83ad40ef01', jobTitle: 'Geophysical data processor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Joel', @@ -5908,6 +7680,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-91.png', linkedinUrl: '/in/joel-lopez-6b55707c2c', jobTitle: 'Civil engineer, contracting', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Matthew', @@ -5918,6 +7693,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-92.png', linkedinUrl: '/in/matthew-peterson-55c3973b59', jobTitle: 'Chief Marketing Officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Elaine', @@ -5928,6 +7706,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-93.png', linkedinUrl: '/in/elaine-gonzalez-cb7b12c50a', jobTitle: 'Psychologist, educational', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Charles', @@ -5938,6 +7719,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-94.png', linkedinUrl: '/in/charles-jones-dce2f7c6f3', jobTitle: 'Research officer, government', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Rachel', @@ -5948,6 +7732,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-95.png', linkedinUrl: '/in/rachel-barton-3d81266f5e', jobTitle: 'Cartographer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Alyssa', @@ -5958,6 +7745,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-96.png', linkedinUrl: '/in/alyssa-ellis-c173bc4670', jobTitle: 'Sales promotion account executive', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Patricia', @@ -5968,6 +7758,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-97.png', linkedinUrl: '/in/patricia-lopez-149ef1e411', jobTitle: 'Consulting civil engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Scott', @@ -5978,6 +7771,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-98.png', linkedinUrl: '/in/scott-moran-6acf4736cf', jobTitle: 'Heritage manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jerome', @@ -5988,6 +7784,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-99.png', linkedinUrl: '/in/jerome-morris-c94af1fc97', jobTitle: 'Systems analyst', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christopher', @@ -5998,6 +7797,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-100.png', linkedinUrl: '/in/christopher-davis-4820898e5c', jobTitle: 'Building control surveyor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jessica', @@ -6008,6 +7810,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-1.png', linkedinUrl: '/in/jessica-downs-9f35d94f5c', jobTitle: 'Solicitor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Eric', @@ -6018,6 +7823,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-2.png', linkedinUrl: '/in/eric-jenkins-aad0386096', jobTitle: 'International aid/development worker', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christy', @@ -6028,6 +7836,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-3.png', linkedinUrl: '/in/christy-ramsey-5a861e76c3', jobTitle: 'Pharmacist, hospital', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sarah', @@ -6038,6 +7849,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-4.png', linkedinUrl: '/in/sarah-evans-f7501659e6', jobTitle: 'Exhibitions officer, museum/gallery', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Stanley', @@ -6048,6 +7862,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-5.png', linkedinUrl: '/in/stanley-thomas-76273965ad', jobTitle: 'Production assistant, television', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Hannah', @@ -6058,6 +7875,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-6.png', linkedinUrl: '/in/hannah-watts-a4b37f2ae2', jobTitle: 'Learning mentor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michael', @@ -6068,6 +7888,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-7.png', linkedinUrl: '/in/michael-maldonado-94c0630389', jobTitle: 'Drilling engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Joseph', @@ -6078,6 +7901,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-8.png', linkedinUrl: '/in/joseph-nguyen-3f0a744a58', jobTitle: 'Chartered management accountant', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Erin', @@ -6088,6 +7914,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-9.png', linkedinUrl: '/in/erin-garcia-f9967e5d34', jobTitle: 'Science writer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Eric', @@ -6098,6 +7927,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-10.png', linkedinUrl: '/in/eric-howell-cfccf703d3', jobTitle: 'Merchandiser, retail', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Alexandra', @@ -6108,6 +7940,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-11.png', linkedinUrl: '/in/alexandra-atkins-5fe1b160c9', jobTitle: 'Media planner', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Raymond', @@ -6118,6 +7953,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-12.png', linkedinUrl: '/in/raymond-mcdonald-68f29c3dc8', jobTitle: 'Multimedia specialist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Joseph', @@ -6128,6 +7966,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-13.png', linkedinUrl: '/in/joseph-barrett-942d11d82f', jobTitle: 'Geophysical data processor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lisa', @@ -6138,6 +7979,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-14.png', linkedinUrl: '/in/lisa-salazar-04ed290031', jobTitle: 'Health and safety inspector', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Erica', @@ -6148,6 +7992,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-15.png', linkedinUrl: '/in/erica-andrade-64ca983404', jobTitle: 'Lecturer, higher education', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Adam', @@ -6158,6 +8005,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-16.png', linkedinUrl: '/in/adam-wright-bba29daead', jobTitle: 'Psychotherapist, child', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michael', @@ -6168,6 +8018,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-17.png', linkedinUrl: '/in/michael-williams-ab0d587602', jobTitle: 'Agricultural engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Margaret', @@ -6178,6 +8031,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-18.png', linkedinUrl: '/in/margaret-morales-7c6376f64a', jobTitle: 'Scientist, product/process development', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'David', @@ -6188,6 +8044,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-19.png', linkedinUrl: '/in/david-nelson-a0ef7e99f1', jobTitle: 'Electrical engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Holly', @@ -6198,6 +8057,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-20.png', linkedinUrl: '/in/holly-allen-f9240b572e', jobTitle: 'Chief of Staff', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Cory', @@ -6208,6 +8070,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-21.png', linkedinUrl: '/in/cory-hicks-63ff8f7cf5', jobTitle: 'Charity officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michael', @@ -6218,6 +8083,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-22.png', linkedinUrl: '/in/michael-johnson-db4d9dc5c3', jobTitle: 'Futures trader', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ronnie', @@ -6228,6 +8096,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-23.png', linkedinUrl: '/in/ronnie-martinez-11500b150a', jobTitle: 'Camera operator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jason', @@ -6238,6 +8109,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-24.png', linkedinUrl: '/in/jason-holden-1ebdcf4241', jobTitle: 'Automotive engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Patrick', @@ -6248,6 +8122,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-25.png', linkedinUrl: '/in/patrick-gilbert-61fd32c01e', jobTitle: 'Learning disability nurse', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sean', @@ -6258,6 +8135,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-26.png', linkedinUrl: '/in/sean-white-dad0c13021', jobTitle: 'Scientist, research (physical sciences)', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Valerie', @@ -6268,6 +8148,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-27.png', linkedinUrl: '/in/valerie-martinez-1517f8ad33', jobTitle: 'Biomedical engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'James', @@ -6278,6 +8161,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-28.png', linkedinUrl: '/in/james-hawkins-1cfac0a73a', jobTitle: 'Designer, textile', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Mckenzie', @@ -6288,6 +8174,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-29.png', linkedinUrl: '/in/mckenzie-meyer-51b7a8a764', jobTitle: 'Pharmacist, community', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Parker', @@ -6298,6 +8187,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-30.png', linkedinUrl: '/in/parker-young-7d7d0c964f', jobTitle: 'Electronics engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'John', @@ -6308,6 +8200,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-31.png', linkedinUrl: '/in/john-johnson-08ef07ffe9', jobTitle: 'Control and instrumentation engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sierra', @@ -6318,6 +8213,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-32.png', linkedinUrl: '/in/sierra-rodriguez-5808a345e5', jobTitle: 'Sports therapist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Patricia', @@ -6328,6 +8226,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-33.png', linkedinUrl: '/in/patricia-thompson-8942d96ec6', jobTitle: 'Dance movement psychotherapist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Valerie', @@ -6338,6 +8239,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-34.png', linkedinUrl: '/in/valerie-durham-4fef3b9462', jobTitle: 'Graphic designer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michael', @@ -6348,6 +8252,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-35.png', linkedinUrl: '/in/michael-tucker-6c66202d7e', jobTitle: 'Advertising account executive', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Martin', @@ -6358,6 +8265,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-36.png', linkedinUrl: '/in/martin-hayes-7645eada45', jobTitle: 'Occupational therapist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brittany', @@ -6368,6 +8278,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-37.png', linkedinUrl: '/in/brittany-watkins-af3eeda76b', jobTitle: 'Designer, jewellery', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jacob', @@ -6378,6 +8291,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-38.png', linkedinUrl: '/in/jacob-dixon-81d8755b18', jobTitle: 'Farm manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sheila', @@ -6388,6 +8304,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-39.png', linkedinUrl: '/in/sheila-wilson-b61719f6d6', jobTitle: 'Doctor, hospital', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lee', @@ -6398,6 +8317,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-40.png', linkedinUrl: '/in/lee-oliver-a4da08a2ee', jobTitle: 'Office manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Aaron', @@ -6408,6 +8330,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-41.png', linkedinUrl: '/in/aaron-moreno-cf9f02bc3b', jobTitle: 'Industrial buyer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Diana', @@ -6418,6 +8343,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-42.png', linkedinUrl: '/in/diana-garcia-62a0597c29', jobTitle: 'Engineer, biomedical', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jonathan', @@ -6428,6 +8356,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-43.png', linkedinUrl: '/in/jonathan-harvey-8c1d8e255a', jobTitle: 'English as a second language teacher', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Suzanne', @@ -6438,6 +8369,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-44.png', linkedinUrl: '/in/suzanne-rodriguez-dffb493dbb', jobTitle: 'Games developer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kelsey', @@ -6448,6 +8382,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-45.png', linkedinUrl: '/in/kelsey-allen-27c8b08501', jobTitle: 'TEFL teacher', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Alexander', @@ -6458,6 +8395,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-46.png', linkedinUrl: '/in/alexander-mueller-ce1f7db6fb', jobTitle: 'Chartered legal executive (England and Wales)', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Cynthia', @@ -6468,6 +8408,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-47.png', linkedinUrl: '/in/cynthia-davis-ab0220f93b', jobTitle: 'Designer, fashion/clothing', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brittany', @@ -6478,6 +8421,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-48.png', linkedinUrl: '/in/brittany-smith-fb1075699d', jobTitle: 'Environmental manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Tyler', @@ -6488,6 +8434,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-49.png', linkedinUrl: '/in/tyler-cook-fe2564bd60', jobTitle: 'Hydrologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Heather', @@ -6498,6 +8447,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-50.png', linkedinUrl: '/in/heather-peck-09972b54b0', jobTitle: 'Designer, television/film set', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Justin', @@ -6508,6 +8460,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-51.png', linkedinUrl: '/in/justin-bender-679fb353e6', jobTitle: 'Local government officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sharon', @@ -6518,6 +8473,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-52.png', linkedinUrl: '/in/sharon-phillips-c61cfc876b', jobTitle: 'IT sales professional', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Samuel', @@ -6528,6 +8486,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-53.png', linkedinUrl: '/in/samuel-bailey-b423dc1293', jobTitle: 'Charity officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Thomas', @@ -6538,6 +8499,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-54.png', linkedinUrl: '/in/thomas-hull-f814264a40', jobTitle: 'Professor Emeritus', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Shawn', @@ -6548,6 +8512,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-55.png', linkedinUrl: '/in/shawn-collins-01f97c07d8', jobTitle: 'Chief Marketing Officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Matthew', @@ -6558,6 +8525,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-56.png', linkedinUrl: '/in/matthew-salas-f83a70d28d', jobTitle: 'Scientist, product/process development', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sandra', @@ -6568,6 +8538,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-57.png', linkedinUrl: '/in/sandra-branch-e20208030c', jobTitle: 'Programmer, systems', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Donald', @@ -6578,6 +8551,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-58.png', linkedinUrl: '/in/donald-burns-eba0c35180', jobTitle: 'Interior and spatial designer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Robin', @@ -6588,6 +8564,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-59.png', linkedinUrl: '/in/robin-allen-bb093171b6', jobTitle: 'Personal assistant', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Andrew', @@ -6598,6 +8577,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-60.png', linkedinUrl: '/in/andrew-carter-940e806c3e', jobTitle: 'Broadcast presenter', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Natalie', @@ -6608,6 +8590,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-61.png', linkedinUrl: '/in/natalie-king-f64767c2da', jobTitle: 'Actor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Gregory', @@ -6618,6 +8603,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-62.png', linkedinUrl: '/in/gregory-rosario-17dfa72dac', jobTitle: 'Adult guidance worker', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jeffrey', @@ -6628,6 +8616,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-63.png', linkedinUrl: '/in/jeffrey-schultz-396167e978', jobTitle: 'Occupational hygienist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michelle', @@ -6638,6 +8629,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-64.png', linkedinUrl: '/in/michelle-cook-38eb3ee806', jobTitle: 'Futures trader', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Billy', @@ -6648,6 +8642,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinUrl: '/in/billy-hutchinson-ad8e6c722e', jobTitle: 'Television camera operator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kim', @@ -6658,6 +8655,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-66.png', linkedinUrl: '/in/kim-rhodes-acaa899835', jobTitle: 'Engineer, maintenance (IT)', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Cristian', @@ -6668,6 +8668,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-67.png', linkedinUrl: '/in/cristian-garcia-2ebbb7bd5e', jobTitle: 'Clinical cytogeneticist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Joseph', @@ -6678,6 +8681,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-68.png', linkedinUrl: '/in/joseph-rodriguez-de666b5949', jobTitle: 'Colour technologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Dennis', @@ -6688,6 +8694,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-69.png', linkedinUrl: '/in/dennis-blevins-f1a0ae91b0', jobTitle: 'Engineer, petroleum', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Charles', @@ -6698,6 +8707,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-70.png', linkedinUrl: '/in/charles-bright-08b96bc983', jobTitle: 'Scientist, biomedical', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Pamela', @@ -6708,6 +8720,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-71.png', linkedinUrl: '/in/pamela-moore-cf9a7d2df4', jobTitle: 'Clinical embryologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Andrew', @@ -6718,6 +8733,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-72.png', linkedinUrl: '/in/andrew-bowen-a1a4379f39', jobTitle: 'Industrial/product designer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Steven', @@ -6728,6 +8746,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-73.png', linkedinUrl: '/in/steven-jones-0b032a0b9f', jobTitle: 'Radio producer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Randy', @@ -6738,6 +8759,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-74.png', linkedinUrl: '/in/randy-garza-e9a6dd8b85', jobTitle: 'Diagnostic radiographer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Barbara', @@ -6748,6 +8772,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-75.png', linkedinUrl: '/in/barbara-wallace-69672cb7e7', jobTitle: 'Radiation protection practitioner', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Robert', @@ -6758,6 +8785,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-76.png', linkedinUrl: '/in/robert-johnson-799ff9ca07', jobTitle: 'Producer, radio', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Daniel', @@ -6768,6 +8798,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-77.png', linkedinUrl: '/in/daniel-perez-a5274e65fd', jobTitle: 'Product designer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Breanna', @@ -6778,6 +8811,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-78.png', linkedinUrl: '/in/breanna-chapman-6565f5d75b', jobTitle: 'Television camera operator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ivan', @@ -6788,6 +8824,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-79.png', linkedinUrl: '/in/ivan-garcia-5b5da68591', jobTitle: 'Police officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michelle', @@ -6798,6 +8837,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-80.png', linkedinUrl: '/in/michelle-thomas-ffd3c66255', jobTitle: 'Ranger/warden', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Stacey', @@ -6808,6 +8850,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-81.png', linkedinUrl: '/in/stacey-taylor-bb60b7c3b6', jobTitle: 'Forensic scientist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Randall', @@ -6818,6 +8863,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-82.png', linkedinUrl: '/in/randall-cohen-1b5ce9e43e', jobTitle: 'Freight forwarder', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Dennis', @@ -6828,6 +8876,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-83.png', linkedinUrl: '/in/dennis-johnson-a5cf409bc9', jobTitle: 'Petroleum engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Scott', @@ -6838,6 +8889,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-84.png', linkedinUrl: '/in/scott-rodriguez-8a8fffb3b1', jobTitle: 'Neurosurgeon', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Katrina', @@ -6848,6 +8902,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-85.png', linkedinUrl: '/in/katrina-rodriguez-736608f682', jobTitle: 'Glass blower/designer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Thomas', @@ -6858,6 +8915,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-86.png', linkedinUrl: '/in/thomas-bradley-06ba80922b', jobTitle: 'Automotive engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Anna', @@ -6868,6 +8928,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-87.png', linkedinUrl: '/in/anna-hill-ccdca344ff', jobTitle: 'Therapist, sports', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Karen', @@ -6878,6 +8941,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-88.png', linkedinUrl: '/in/karen-pratt-7389b464f8', jobTitle: 'Editor, commissioning', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Casey', @@ -6888,6 +8954,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-89.png', linkedinUrl: '/in/casey-garza-e265fa80ac', jobTitle: 'Homeopath', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Mathew', @@ -6898,6 +8967,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-90.png', linkedinUrl: '/in/mathew-duran-667faa2205', jobTitle: 'Mechanical engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michael', @@ -6908,6 +8980,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-91.png', linkedinUrl: '/in/michael-watson-7e29289ceb', jobTitle: 'Scientist, research (physical sciences)', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Martha', @@ -6918,6 +8993,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-92.png', linkedinUrl: '/in/martha-lang-37c24a1f79', jobTitle: 'Market researcher', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Latasha', @@ -6928,6 +9006,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-93.png', linkedinUrl: '/in/latasha-perez-a903374657', jobTitle: 'Teacher, primary school', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'James', @@ -6938,6 +9019,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-94.png', linkedinUrl: '/in/james-gordon-c6aee9e0e7', jobTitle: 'Illustrator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Taylor', @@ -6948,6 +9032,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-95.png', linkedinUrl: '/in/taylor-johnson-505c92efc6', jobTitle: 'Hotel manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'George', @@ -6958,6 +9045,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-96.png', linkedinUrl: '/in/george-thompson-0b7979e007', jobTitle: 'Engineer, mining', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'William', @@ -6968,6 +9058,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-97.png', linkedinUrl: '/in/william-gomez-bb381032a2', jobTitle: 'Medical physicist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Patrick', @@ -6978,6 +9071,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-98.png', linkedinUrl: '/in/patrick-beck-a53d364316', jobTitle: 'Patent examiner', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Timothy', @@ -6988,6 +9084,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-99.png', linkedinUrl: '/in/timothy-parker-fa652d4471', jobTitle: 'Therapist, drama', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Nancy', @@ -6998,6 +9097,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-100.png', linkedinUrl: '/in/nancy-mullen-db4e1644e0', jobTitle: 'Chiropodist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Amy', @@ -7008,6 +9110,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-1.png', linkedinUrl: '/in/amy-weaver-f6b74416f5', jobTitle: 'Cabin crew', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Matthew', @@ -7018,6 +9123,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-2.png', linkedinUrl: '/in/matthew-crawford-65e6eb72da', jobTitle: 'Technical author', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Daniel', @@ -7028,6 +9136,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-3.png', linkedinUrl: '/in/daniel-graham-a67e125f10', jobTitle: 'Technical sales engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Teresa', @@ -7038,6 +9149,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-4.png', linkedinUrl: '/in/teresa-lang-584a181fe2', jobTitle: 'Solicitor, Scotland', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Anthony', @@ -7048,6 +9162,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-5.png', linkedinUrl: '/in/anthony-brooks-b32a3564da', jobTitle: 'Aeronautical engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Thomas', @@ -7058,6 +9175,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-6.png', linkedinUrl: '/in/thomas-price-d5c64ebc73', jobTitle: 'Counselling psychologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'William', @@ -7068,6 +9188,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-7.png', linkedinUrl: '/in/william-king-f1790dcb3a', jobTitle: 'Medical laboratory scientific officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Joseph', @@ -7078,6 +9201,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-8.png', linkedinUrl: '/in/joseph-ramos-c3050c9ec5', jobTitle: 'English as a foreign language teacher', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michael', @@ -7088,6 +9214,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-9.png', linkedinUrl: '/in/michael-johnson-442bf8f6cc', jobTitle: 'Phytotherapist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lisa', @@ -7098,6 +9227,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-10.png', linkedinUrl: '/in/lisa-farmer-7e00712bfa', jobTitle: 'Trade mark attorney', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Beth', @@ -7108,6 +9240,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-11.png', linkedinUrl: '/in/beth-tucker-366a3e9978', jobTitle: 'Site engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Gerald', @@ -7118,6 +9253,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-12.png', linkedinUrl: '/in/gerald-olsen-ec232b4b08', jobTitle: 'Seismic interpreter', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Donald', @@ -7128,6 +9266,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-13.png', linkedinUrl: '/in/donald-turner-b84598e436', jobTitle: 'Music tutor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Mary', @@ -7138,6 +9279,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-14.png', linkedinUrl: '/in/mary-robinson-173a75d1ef', jobTitle: 'Public house manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jason', @@ -7148,6 +9292,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-15.png', linkedinUrl: '/in/jason-johnson-a909a78a1c', jobTitle: 'Horticulturist, commercial', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lisa', @@ -7158,6 +9305,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-16.png', linkedinUrl: '/in/lisa-jenkins-c78e76770a', jobTitle: 'Counsellor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kevin', @@ -7168,6 +9318,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-17.png', linkedinUrl: '/in/kevin-cowan-3177fc23bf', jobTitle: 'Recruitment consultant', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Tina', @@ -7178,6 +9331,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-18.png', linkedinUrl: '/in/tina-williams-2c3d8afa12', jobTitle: 'Scientist, research (maths)', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Dustin', @@ -7188,6 +9344,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-19.png', linkedinUrl: '/in/dustin-macdonald-afa9526426', jobTitle: 'Public relations account executive', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michael', @@ -7198,6 +9357,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-20.png', linkedinUrl: '/in/michael-gonzales-3eb48a8cc2', jobTitle: "Nurse, children's", + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Allen', @@ -7208,6 +9370,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-21.png', linkedinUrl: '/in/allen-miller-5378b7d05d', jobTitle: 'Therapist, speech and language', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Meghan', @@ -7218,6 +9383,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-22.png', linkedinUrl: '/in/meghan-tapia-8d4336f0bc', jobTitle: 'Primary school teacher', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Garrett', @@ -7228,6 +9396,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-23.png', linkedinUrl: '/in/garrett-kim-f7e6805c01', jobTitle: 'Education administrator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Heather', @@ -7238,6 +9409,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-24.png', linkedinUrl: '/in/heather-chase-0a2eb1532b', jobTitle: 'Engineer, civil (consulting)', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kevin', @@ -7248,6 +9422,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-25.png', linkedinUrl: '/in/kevin-cruz-d3f02830aa', jobTitle: 'Naval architect', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Desiree', @@ -7258,6 +9435,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-26.png', linkedinUrl: '/in/desiree-adkins-c85deab253', jobTitle: 'Corporate treasurer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Teresa', @@ -7268,6 +9448,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-27.png', linkedinUrl: '/in/teresa-rhodes-f990f416da', jobTitle: 'Primary school teacher', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Catherine', @@ -7278,6 +9461,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-28.png', linkedinUrl: '/in/catherine-wilson-7add346581', jobTitle: 'Optician, dispensing', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Marvin', @@ -7288,6 +9474,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-29.png', linkedinUrl: '/in/marvin-nelson-fde56b8b5d', jobTitle: 'Operational investment banker', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Linda', @@ -7298,6 +9487,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-30.png', linkedinUrl: '/in/linda-hull-4d41c26e8b', jobTitle: 'Clinical cytogeneticist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Dawn', @@ -7308,6 +9500,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-31.png', linkedinUrl: '/in/dawn-martin-fe75b2575e', jobTitle: 'Housing manager/officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Travis', @@ -7318,6 +9513,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-32.png', linkedinUrl: '/in/travis-leon-5c56017c27', jobTitle: 'Further education lecturer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jeffrey', @@ -7328,6 +9526,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-33.png', linkedinUrl: '/in/jeffrey-anderson-1b6caa26b8', jobTitle: 'Merchant navy officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jacqueline', @@ -7338,6 +9539,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-34.png', linkedinUrl: '/in/jacqueline-gomez-0bc243917e', jobTitle: 'Producer, radio', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Laura', @@ -7348,6 +9552,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-35.png', linkedinUrl: '/in/laura-salazar-b649ef3e65', jobTitle: 'Investment analyst', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jacob', @@ -7358,6 +9565,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-36.png', linkedinUrl: '/in/jacob-berry-b613f63da8', jobTitle: 'Dispensing optician', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Justin', @@ -7368,6 +9578,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-37.png', linkedinUrl: '/in/justin-cruz-e21f40fce4', jobTitle: 'Sports development officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Derek', @@ -7378,6 +9591,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-38.png', linkedinUrl: '/in/derek-avery-2e68141d8b', jobTitle: 'Tax adviser', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Julie', @@ -7388,6 +9604,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-39.png', linkedinUrl: '/in/julie-richardson-c004cc7600', jobTitle: 'Visual merchandiser', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Linda', @@ -7398,6 +9617,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-40.png', linkedinUrl: '/in/linda-perry-81b2a5fe77', jobTitle: 'Records manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Shannon', @@ -7408,6 +9630,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-41.png', linkedinUrl: '/in/shannon-johnston-730f636101', jobTitle: 'Local government officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Teresa', @@ -7418,6 +9643,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-42.png', linkedinUrl: '/in/teresa-peters-79db7ef10b', jobTitle: 'Ecologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Vanessa', @@ -7428,6 +9656,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-43.png', linkedinUrl: '/in/vanessa-woods-6e5bdf7c9a', jobTitle: 'QuickActions analyst', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ashley', @@ -7438,6 +9669,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-44.png', linkedinUrl: '/in/ashley-ortiz-5cc26fa72b', jobTitle: 'Surveyor, mining', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Eric', @@ -7448,6 +9682,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-45.png', linkedinUrl: '/in/eric-bailey-c789b6c993', jobTitle: 'Financial controller', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Rebecca', @@ -7458,6 +9695,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-46.png', linkedinUrl: '/in/rebecca-palmer-ef38ef5cea', jobTitle: 'Site engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lee', @@ -7468,6 +9708,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-47.png', linkedinUrl: '/in/lee-jones-0adef06cd7', jobTitle: 'Radiographer, therapeutic', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Samuel', @@ -7478,6 +9721,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-48.png', linkedinUrl: '/in/samuel-king-57c6f39f1c', jobTitle: 'Illustrator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Timothy', @@ -7488,6 +9734,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-49.png', linkedinUrl: '/in/timothy-moreno-eb7ae88f2f', jobTitle: 'Physiotherapist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Darlene', @@ -7498,6 +9747,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-50.png', linkedinUrl: '/in/darlene-jones-e27174b679', jobTitle: 'Health physicist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Gregory', @@ -7508,6 +9760,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-51.png', linkedinUrl: '/in/gregory-liu-aac65508df', jobTitle: 'Psychiatric nurse', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Cheryl', @@ -7518,6 +9773,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-52.png', linkedinUrl: '/in/cheryl-chambers-0f636392e0', jobTitle: 'Education officer, community', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Mark', @@ -7528,6 +9786,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-53.png', linkedinUrl: '/in/mark-gonzalez-4546b149d7', jobTitle: 'Adult nurse', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Douglas', @@ -7538,6 +9799,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-54.png', linkedinUrl: '/in/douglas-andrews-7a6a535f81', jobTitle: 'Accountant, chartered management', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Stephanie', @@ -7548,6 +9812,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-55.png', linkedinUrl: '/in/stephanie-porter-74bdb68326', jobTitle: 'Computer games developer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Meghan', @@ -7558,6 +9825,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-56.png', linkedinUrl: '/in/meghan-campbell-5098a6f7a9', jobTitle: 'Theatre manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Caitlin', @@ -7568,6 +9838,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-57.png', linkedinUrl: '/in/caitlin-martin-93755bb8ba', jobTitle: 'Scientist, research (maths)', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kimberly', @@ -7578,6 +9851,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-58.png', linkedinUrl: '/in/kimberly-terry-5f017ebb4b', jobTitle: 'Surveyor, building', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Levi', @@ -7588,6 +9864,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-59.png', linkedinUrl: '/in/levi-smith-4d6387a547', jobTitle: 'Mental health nurse', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Tracy', @@ -7598,6 +9877,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-60.png', linkedinUrl: '/in/tracy-alvarez-633fc7a383', jobTitle: 'Environmental health practitioner', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'David', @@ -7608,6 +9890,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-61.png', linkedinUrl: '/in/david-gonzales-6df036cad1', jobTitle: 'Legal secretary', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lisa', @@ -7618,6 +9903,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-62.png', linkedinUrl: '/in/lisa-tran-e0115b5653', jobTitle: 'Therapist, speech and language', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kristin', @@ -7628,6 +9916,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-63.png', linkedinUrl: '/in/kristin-pearson-e0ebe90624', jobTitle: 'Editor, film/video', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Bruce', @@ -7638,6 +9929,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-64.png', linkedinUrl: '/in/bruce-wood-e61cf3a298', jobTitle: 'Charity fundraiser', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Stephanie', @@ -7648,6 +9942,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinUrl: '/in/stephanie-stout-da19425869', jobTitle: 'Conservator, furniture', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Denise', @@ -7658,6 +9955,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-66.png', linkedinUrl: '/in/denise-sandoval-07f4d63a26', jobTitle: 'Immunologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christopher', @@ -7668,6 +9968,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-67.png', linkedinUrl: '/in/christopher-clarke-44a16b8bf4', jobTitle: 'Stage manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kimberly', @@ -7678,6 +9981,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-68.png', linkedinUrl: '/in/kimberly-jefferson-ff1550e548', jobTitle: 'Advertising account executive', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jeffrey', @@ -7688,6 +9994,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-69.png', linkedinUrl: '/in/jeffrey-hunt-faa3d941ee', jobTitle: 'Customer service manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Nichole', @@ -7698,6 +10007,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-70.png', linkedinUrl: '/in/nichole-lowery-fb08af1201', jobTitle: 'Planning and development surveyor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Daniel', @@ -7708,6 +10020,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-71.png', linkedinUrl: '/in/daniel-wiley-9ed6e2002f', jobTitle: 'Surveyor, mining', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Elizabeth', @@ -7718,6 +10033,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-72.png', linkedinUrl: '/in/elizabeth-watson-037218b4e1', jobTitle: 'Journalist, broadcasting', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sandra', @@ -7728,6 +10046,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-73.png', linkedinUrl: '/in/sandra-bailey-74db8eab37', jobTitle: 'Minerals surveyor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Andrew', @@ -7738,6 +10059,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-74.png', linkedinUrl: '/in/andrew-henson-23fb7e5d05', jobTitle: 'Biomedical scientist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Samantha', @@ -7748,6 +10072,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-75.png', linkedinUrl: '/in/samantha-alexander-4a24cc632b', jobTitle: 'Production assistant, television', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jeanette', @@ -7758,6 +10085,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-76.png', linkedinUrl: '/in/jeanette-nichols-a24214c373', jobTitle: 'Engineer, biomedical', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kevin', @@ -7768,6 +10098,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-77.png', linkedinUrl: '/in/kevin-williams-0165f2638b', jobTitle: 'Broadcast journalist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brenda', @@ -7778,6 +10111,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-78.png', linkedinUrl: '/in/brenda-harper-30b61b982b', jobTitle: 'Public relations account executive', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Shawn', @@ -7788,6 +10124,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-79.png', linkedinUrl: '/in/shawn-jenkins-c839f2afce', jobTitle: 'Optometrist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michelle', @@ -7798,6 +10137,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-80.png', linkedinUrl: '/in/michelle-bush-2e2e3d23ee', jobTitle: 'Teacher, English as a foreign language', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Melanie', @@ -7808,6 +10150,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-81.png', linkedinUrl: '/in/melanie-gilbert-01fe35dd5f', jobTitle: 'Trading standards officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brandon', @@ -7818,6 +10163,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-82.png', linkedinUrl: '/in/brandon-sanders-4661fbd2df', jobTitle: 'Radiation protection practitioner', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Samantha', @@ -7828,6 +10176,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-83.png', linkedinUrl: '/in/samantha-hicks-d7b99728fd', jobTitle: 'Firefighter', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Joann', @@ -7838,6 +10189,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-84.png', linkedinUrl: '/in/joann-booth-c081ce2c43', jobTitle: 'Geoscientist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Robert', @@ -7848,6 +10202,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-85.png', linkedinUrl: '/in/robert-hernandez-5e65b16f59', jobTitle: 'Nurse, learning disability', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jeremy', @@ -7858,6 +10215,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-86.png', linkedinUrl: '/in/jeremy-stewart-27f2b87ae6', jobTitle: 'Chartered public finance accountant', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lisa', @@ -7868,6 +10228,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-87.png', linkedinUrl: '/in/lisa-brown-01aa1694a4', jobTitle: 'Patent attorney', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kristine', @@ -7878,6 +10241,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-88.png', linkedinUrl: '/in/kristine-benson-ee3307c3e8', jobTitle: 'Financial risk analyst', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Stephanie', @@ -7888,6 +10254,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-89.png', linkedinUrl: '/in/stephanie-carter-aa789505dc', jobTitle: 'Patent attorney', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Benjamin', @@ -7898,6 +10267,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-90.png', linkedinUrl: '/in/benjamin-castro-5609ebd89b', jobTitle: 'Surveyor, mining', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ryan', @@ -7908,6 +10280,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-91.png', linkedinUrl: '/in/ryan-davis-04fe8f1d38', jobTitle: 'Therapeutic radiographer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'David', @@ -7918,6 +10293,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-92.png', linkedinUrl: '/in/david-rhodes-b30501dc23', jobTitle: 'Leisure centre manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Elizabeth', @@ -7928,6 +10306,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-93.png', linkedinUrl: '/in/elizabeth-evans-1c62f6e072', jobTitle: 'Emergency planning/management officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kenneth', @@ -7938,6 +10319,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-94.png', linkedinUrl: '/in/kenneth-solis-abc002b3d7', jobTitle: 'Operational researcher', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Barbara', @@ -7948,6 +10332,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-95.png', linkedinUrl: '/in/barbara-hudson-d52a7f47e3', jobTitle: 'Engineer, manufacturing systems', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kelly', @@ -7958,6 +10345,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-96.png', linkedinUrl: '/in/kelly-hooper-9a2d9e03bd', jobTitle: 'Automotive engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Shannon', @@ -7968,6 +10358,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-97.png', linkedinUrl: '/in/shannon-brown-a9e4eebc94', jobTitle: 'Scientist, forensic', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lucas', @@ -7978,6 +10371,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-98.png', linkedinUrl: '/in/lucas-price-8220b81a6d', jobTitle: 'Health promotion specialist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Theodore', @@ -7988,6 +10384,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-99.png', linkedinUrl: '/in/theodore-booth-28b999e5b3', jobTitle: 'Camera operator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christopher', @@ -7998,6 +10397,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-100.png', linkedinUrl: '/in/christopher-johnson-9e6100ff7b', jobTitle: 'Art therapist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sara', @@ -8008,6 +10410,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-1.png', linkedinUrl: '/in/sara-higgins-3f7fd986f9', jobTitle: 'IT sales professional', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kelly', @@ -8018,6 +10423,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-2.png', linkedinUrl: '/in/kelly-brown-759dbe09e0', jobTitle: 'Psychologist, clinical', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Andrea', @@ -8028,6 +10436,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-3.png', linkedinUrl: '/in/andrea-weaver-6d792fc29a', jobTitle: 'Ceramics designer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'David', @@ -8038,6 +10449,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-4.png', linkedinUrl: '/in/david-ford-ed83f54167', jobTitle: 'Designer, furniture', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Elizabeth', @@ -8048,6 +10462,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-5.png', linkedinUrl: '/in/elizabeth-scott-56456b1569', jobTitle: 'Government social research officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Haley', @@ -8058,6 +10475,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-6.png', linkedinUrl: '/in/haley-rodriguez-5998488ad7', jobTitle: 'Librarian, public', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Joshua', @@ -8068,6 +10488,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-7.png', linkedinUrl: '/in/joshua-harris-c48d311bee', jobTitle: 'Energy engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ellen', @@ -8078,6 +10501,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-8.png', linkedinUrl: '/in/ellen-mcdaniel-4308564cbb', jobTitle: 'Rural practice surveyor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Anthony', @@ -8088,6 +10514,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-9.png', linkedinUrl: '/in/anthony-macias-cd01ea615c', jobTitle: 'Estate manager/land agent', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Samantha', @@ -8098,6 +10527,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-10.png', linkedinUrl: '/in/samantha-bell-3246e99ce4', jobTitle: 'Armed forces technical officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Roger', @@ -8108,6 +10540,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-11.png', linkedinUrl: '/in/roger-king-91a87f58dd', jobTitle: 'Programme researcher, broadcasting/film/video', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Logan', @@ -8118,6 +10553,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-12.png', linkedinUrl: '/in/logan-kim-24c952a76b', jobTitle: 'Ranger/warden', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Nicole', @@ -8128,6 +10566,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-13.png', linkedinUrl: '/in/nicole-bass-3323b936fa', jobTitle: 'Commercial/residential surveyor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Tony', @@ -8138,6 +10579,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-14.png', linkedinUrl: '/in/tony-dean-6a37678e19', jobTitle: 'Tax inspector', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Mercedes', @@ -8148,6 +10592,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-15.png', linkedinUrl: '/in/mercedes-green-4b158a8688', jobTitle: 'Clinical cytogeneticist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Stephen', @@ -8158,6 +10605,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-16.png', linkedinUrl: '/in/stephen-owens-8863b05296', jobTitle: 'Pathologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Nathan', @@ -8168,6 +10618,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-17.png', linkedinUrl: '/in/nathan-williamson-ffdb40e0ae', jobTitle: 'Publishing copy', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Anthony', @@ -8178,6 +10631,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-18.png', linkedinUrl: '/in/anthony-davis-c8f6c37766', jobTitle: 'Ship broker', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kathleen', @@ -8188,6 +10644,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-19.png', linkedinUrl: '/in/kathleen-stewart-3c65492da0', jobTitle: 'Economist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Victoria', @@ -8198,6 +10657,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-20.png', linkedinUrl: '/in/victoria-ruiz-a5f8ac2c75', jobTitle: 'IT trainer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Danielle', @@ -8208,6 +10670,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-21.png', linkedinUrl: '/in/danielle-ibarra-d11e8407ab', jobTitle: 'Nurse, adult', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Meghan', @@ -8218,6 +10683,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-22.png', linkedinUrl: '/in/meghan-delgado-7954afab5b', jobTitle: 'Psychiatric nurse', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lauren', @@ -8228,6 +10696,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-23.png', linkedinUrl: '/in/lauren-skinner-447a3bcd28', jobTitle: 'Psychologist, prison and probation services', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jesse', @@ -8238,6 +10709,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-24.png', linkedinUrl: '/in/jesse-underwood-072dbeda4c', jobTitle: 'Pharmacist, hospital', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Antonio', @@ -8248,6 +10722,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-25.png', linkedinUrl: '/in/antonio-gentry-0f29dc0871', jobTitle: 'Magazine features editor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Gabriela', @@ -8258,6 +10735,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-26.png', linkedinUrl: '/in/gabriela-murphy-e59b96e98f', jobTitle: 'Exercise physiologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kyle', @@ -8268,6 +10748,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-27.png', linkedinUrl: '/in/kyle-kramer-3412f7e41b', jobTitle: 'Exhibitions officer, museum/gallery', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Daniel', @@ -8278,6 +10761,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-28.png', linkedinUrl: '/in/daniel-burton-c79414d37b', jobTitle: 'Commercial horticulturist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Mark', @@ -8288,6 +10774,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-29.png', linkedinUrl: '/in/mark-stevens-8d430f5e85', jobTitle: 'Data processing manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kevin', @@ -8298,6 +10787,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-30.png', linkedinUrl: '/in/kevin-lawson-3923eb16c8', jobTitle: 'Radiographer, therapeutic', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christopher', @@ -8308,6 +10800,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-31.png', linkedinUrl: '/in/christopher-larson-c3acf6c87e', jobTitle: 'Research scientist (life sciences)', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'James', @@ -8318,6 +10813,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-32.png', linkedinUrl: '/in/james-ward-bd728eec7b', jobTitle: 'Chief Marketing Officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Thomas', @@ -8328,6 +10826,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-33.png', linkedinUrl: '/in/thomas-ramirez-2aeaabdca6', jobTitle: 'Claims inspector/assessor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Makayla', @@ -8338,6 +10839,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-34.png', linkedinUrl: '/in/makayla-schmitt-5c93328d2c', jobTitle: 'Web designer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Andrew', @@ -8348,6 +10852,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-35.png', linkedinUrl: '/in/andrew-miller-f2fe0c545b', jobTitle: 'Environmental education officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Matthew', @@ -8358,6 +10865,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-36.png', linkedinUrl: '/in/matthew-perez-e0f9b3e4cb', jobTitle: 'Ranger/warden', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Molly', @@ -8368,6 +10878,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-37.png', linkedinUrl: '/in/molly-peterson-9556e9927d', jobTitle: 'Environmental consultant', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Eric', @@ -8378,6 +10891,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-38.png', linkedinUrl: '/in/eric-kennedy-f791a22768', jobTitle: 'Garment/textile technologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Daniel', @@ -8388,6 +10904,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-39.png', linkedinUrl: '/in/daniel-nguyen-9ecda3ed3b', jobTitle: 'Analytical chemist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Edward', @@ -8398,6 +10917,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-40.png', linkedinUrl: '/in/edward-washington-611f90b992', jobTitle: 'Field trials officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Stephanie', @@ -8408,6 +10930,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-41.png', linkedinUrl: '/in/stephanie-phillips-7959a94ad5', jobTitle: 'Ecologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Francisco', @@ -8418,6 +10943,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-42.png', linkedinUrl: '/in/francisco-leach-ae0211a300', jobTitle: 'Photographer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lisa', @@ -8428,6 +10956,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-43.png', linkedinUrl: '/in/lisa-gutierrez-372eee2535', jobTitle: 'Community development worker', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Robert', @@ -8438,6 +10969,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-44.png', linkedinUrl: '/in/robert-martinez-a6ae2c5b1f', jobTitle: 'Secretary/administrator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Courtney', @@ -8448,6 +10982,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-45.png', linkedinUrl: '/in/courtney-kelley-950cfddf8b', jobTitle: 'Environmental education officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Samuel', @@ -8458,6 +10995,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-46.png', linkedinUrl: '/in/samuel-davis-dd4df4491c', jobTitle: 'Engineer, technical sales', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Paul', @@ -8468,6 +11008,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-47.png', linkedinUrl: '/in/paul-kim-01704924f8', jobTitle: 'Optometrist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Samantha', @@ -8478,6 +11021,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-48.png', linkedinUrl: '/in/samantha-jones-2abb1198e0', jobTitle: 'Medical secretary', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Daniel', @@ -8488,6 +11034,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-49.png', linkedinUrl: '/in/daniel-buchanan-962af5531b', jobTitle: 'Surveyor, land/geomatics', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sherry', @@ -8498,6 +11047,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-50.png', linkedinUrl: '/in/sherry-oliver-f3bbba4a94', jobTitle: 'Buyer, industrial', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Richard', @@ -8508,6 +11060,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-51.png', linkedinUrl: '/in/richard-burton-eba4d16199', jobTitle: 'Trading standards officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Larry', @@ -8518,6 +11073,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-52.png', linkedinUrl: '/in/larry-floyd-a72834d039', jobTitle: 'Herpetologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Abigail', @@ -8528,6 +11086,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-53.png', linkedinUrl: '/in/abigail-garrett-fc4de32453', jobTitle: 'Training and development officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Craig', @@ -8538,6 +11099,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-54.png', linkedinUrl: '/in/craig-miller-e5dbce647e', jobTitle: 'Architect', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christina', @@ -8548,6 +11112,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-55.png', linkedinUrl: '/in/christina-garcia-7ba1c75253', jobTitle: 'Radio producer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lynn', @@ -8558,6 +11125,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-56.png', linkedinUrl: '/in/lynn-gallagher-03ab6cdaae', jobTitle: 'Management consultant', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Veronica', @@ -8568,6 +11138,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-57.png', linkedinUrl: '/in/veronica-oliver-e46c83d82a', jobTitle: 'Theatre stage manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Julie', @@ -8578,6 +11151,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-58.png', linkedinUrl: '/in/julie-stevenson-482959b900', jobTitle: 'Pharmacist, community', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kathleen', @@ -8588,6 +11164,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-59.png', linkedinUrl: '/in/kathleen-gardner-b144fa40bf', jobTitle: 'Research scientist (life sciences)', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'James', @@ -8598,6 +11177,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-60.png', linkedinUrl: '/in/james-ward-9590de76ac', jobTitle: 'Psychologist, clinical', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brandon', @@ -8608,6 +11190,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-61.png', linkedinUrl: '/in/brandon-baker-79f5bc09a5', jobTitle: 'Geologist, wellsite', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Cheyenne', @@ -8618,6 +11203,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-62.png', linkedinUrl: '/in/cheyenne-stevens-9102d355f5', jobTitle: 'Freight forwarder', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Nicholas', @@ -8628,6 +11216,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-63.png', linkedinUrl: '/in/nicholas-chaney-3bd29a6f7f', jobTitle: 'Civil engineer, contracting', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Robert', @@ -8638,6 +11229,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-64.png', linkedinUrl: '/in/robert-allen-d4a0e6e38b', jobTitle: 'Media buyer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Steven', @@ -8648,6 +11242,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinUrl: '/in/steven-walters-cecce0a460', jobTitle: 'Sports administrator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Alexandra', @@ -8658,6 +11255,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-66.png', linkedinUrl: '/in/alexandra-rivera-82738fef4b', jobTitle: 'Scientist, research (maths)', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Robert', @@ -8668,6 +11268,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-67.png', linkedinUrl: '/in/robert-doyle-5012cb4f96', jobTitle: 'Early years teacher', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Melinda', @@ -8678,6 +11281,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-68.png', linkedinUrl: '/in/melinda-graves-4b5dc7a605', jobTitle: 'Scientific laboratory technician', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Phillip', @@ -8688,6 +11294,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-69.png', linkedinUrl: '/in/phillip-johnson-1dbd354784', jobTitle: 'Librarian, public', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kristin', @@ -8698,6 +11307,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-70.png', linkedinUrl: '/in/kristin-garcia-667a8d3bf0', jobTitle: 'Maintenance engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Randy', @@ -8708,6 +11320,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-71.png', linkedinUrl: '/in/randy-white-158e05e8b0', jobTitle: 'Financial risk analyst', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'David', @@ -8718,6 +11333,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-72.png', linkedinUrl: '/in/david-woods-46b2d4b34e', jobTitle: 'Emergency planning/management officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Taylor', @@ -8728,6 +11346,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-73.png', linkedinUrl: '/in/taylor-humphrey-7143e1cb93', jobTitle: 'Catering manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Emily', @@ -8738,6 +11359,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-74.png', linkedinUrl: '/in/emily-evans-df56e8e3d2', jobTitle: 'Engineer, materials', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Mike', @@ -8748,6 +11372,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-75.png', linkedinUrl: '/in/mike-weber-d97f9c1f39', jobTitle: 'Health service manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Bonnie', @@ -8758,6 +11385,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-76.png', linkedinUrl: '/in/bonnie-anderson-e54636e584', jobTitle: 'Town planner', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Tyler', @@ -8768,6 +11398,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-77.png', linkedinUrl: '/in/tyler-barnett-39213ade04', jobTitle: 'Industrial buyer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brenda', @@ -8778,6 +11411,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-78.png', linkedinUrl: '/in/brenda-brown-dbcd1ad947', jobTitle: 'Secretary, company', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Matthew', @@ -8788,6 +11424,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-79.png', linkedinUrl: '/in/matthew-mills-0b84ace87f', jobTitle: 'Nutritional therapist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Bradley', @@ -8798,6 +11437,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-80.png', linkedinUrl: '/in/bradley-henderson-8d96b99f04', jobTitle: "Politician's assistant", + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christopher', @@ -8808,6 +11450,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-81.png', linkedinUrl: '/in/christopher-wilson-04a5992bf8', jobTitle: 'Historic buildings inspector/conservation officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Janet', @@ -8818,6 +11463,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-82.png', linkedinUrl: '/in/janet-cooper-5b3b8ebf22', jobTitle: 'Mental health nurse', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ashlee', @@ -8828,6 +11476,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-83.png', linkedinUrl: '/in/ashlee-barajas-7db08816c2', jobTitle: 'Designer, television/film set', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Amanda', @@ -8838,6 +11489,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-84.png', linkedinUrl: '/in/amanda-valenzuela-30589a563a', jobTitle: 'Engineer, automotive', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Charles', @@ -8848,6 +11502,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-85.png', linkedinUrl: '/in/charles-evans-afcfd375f0', jobTitle: 'Financial planner', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Patricia', @@ -8858,6 +11515,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-86.png', linkedinUrl: '/in/patricia-martinez-a6795704a8', jobTitle: 'Chartered public finance accountant', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Andrea', @@ -8868,6 +11528,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-87.png', linkedinUrl: '/in/andrea-byrd-6adea7eafa', jobTitle: 'Ecologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Martin', @@ -8878,6 +11541,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-88.png', linkedinUrl: '/in/martin-hebert-0fdd8cb20a', jobTitle: 'Statistician', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Joyce', @@ -8888,6 +11554,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-89.png', linkedinUrl: '/in/joyce-mathis-4aefab1ba3', jobTitle: 'Multimedia specialist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Charles', @@ -8898,6 +11567,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-90.png', linkedinUrl: '/in/charles-ray-d81d2e4cf7', jobTitle: 'Communications engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Amanda', @@ -8908,6 +11580,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-91.png', linkedinUrl: '/in/amanda-vega-bc1c79f067', jobTitle: 'Occupational therapist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kathryn', @@ -8918,6 +11593,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-92.png', linkedinUrl: '/in/kathryn-freeman-5cbbc22506', jobTitle: 'Wellsite geologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ryan', @@ -8928,6 +11606,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-93.png', linkedinUrl: '/in/ryan-chambers-2ce1a65a0c', jobTitle: 'Agricultural consultant', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Dustin', @@ -8938,6 +11619,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-94.png', linkedinUrl: '/in/dustin-carr-aea35977e8', jobTitle: 'Ergonomist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Eugene', @@ -8948,6 +11632,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-95.png', linkedinUrl: '/in/eugene-sims-35b50bccf6', jobTitle: 'Banker', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Gwendolyn', @@ -8958,6 +11645,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-96.png', linkedinUrl: '/in/gwendolyn-glover-c850972ca2', jobTitle: 'Geochemist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kevin', @@ -8968,6 +11658,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-97.png', linkedinUrl: '/in/kevin-oconnell-366df31264', jobTitle: 'Editor, commissioning', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Mark', @@ -8978,6 +11671,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-98.png', linkedinUrl: '/in/mark-williams-34678a412b', jobTitle: 'Education administrator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jack', @@ -8988,6 +11684,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-99.png', linkedinUrl: '/in/jack-reed-624aef385a', jobTitle: 'Corporate treasurer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Anthony', @@ -8998,6 +11697,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-100.png', linkedinUrl: '/in/anthony-green-26a1d57a62', jobTitle: 'Land', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Louis', @@ -9008,6 +11710,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-1.png', linkedinUrl: '/in/louis-johnson-dec8e3a5a2', jobTitle: 'Pathologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Fernando', @@ -9018,6 +11723,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-2.png', linkedinUrl: '/in/fernando-stephens-d825082895', jobTitle: 'Sports development officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Tammy', @@ -9028,6 +11736,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-3.png', linkedinUrl: '/in/tammy-soto-dc33b99453', jobTitle: 'Consulting civil engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Anthony', @@ -9038,6 +11749,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-4.png', linkedinUrl: '/in/anthony-clay-d0ffc44035', jobTitle: 'Site engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jennifer', @@ -9048,6 +11762,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-5.png', linkedinUrl: '/in/jennifer-haney-fe08f83150', jobTitle: 'Engineer, broadcasting (operations)', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kevin', @@ -9058,6 +11775,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-6.png', linkedinUrl: '/in/kevin-harris-5184b24b32', jobTitle: 'Presenter, broadcasting', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Allison', @@ -9068,6 +11788,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-7.png', linkedinUrl: '/in/allison-crawford-67b761b025', jobTitle: 'Homeopath', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Stacey', @@ -9078,6 +11801,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-8.png', linkedinUrl: '/in/stacey-garcia-9250901bae', jobTitle: 'Bonds trader', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Stacey', @@ -9088,6 +11814,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-9.png', linkedinUrl: '/in/stacey-romero-7728909deb', jobTitle: 'Civil Service fast streamer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Joseph', @@ -9098,6 +11827,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-10.png', linkedinUrl: '/in/joseph-bell-0f0d64c86b', jobTitle: 'Historic buildings inspector/conservation officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Nicholas', @@ -9108,6 +11840,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-11.png', linkedinUrl: '/in/nicholas-edwards-208dfccc7e', jobTitle: 'Community development worker', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brian', @@ -9118,6 +11853,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-12.png', linkedinUrl: '/in/brian-freeman-f01b205c86', jobTitle: 'Social researcher', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christine', @@ -9128,6 +11866,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-13.png', linkedinUrl: '/in/christine-johnson-20bfd043a5', jobTitle: 'Systems analyst', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christine', @@ -9138,6 +11879,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-14.png', linkedinUrl: '/in/christine-brown-cf7634fc0b', jobTitle: 'Museum/gallery exhibitions officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Grant', @@ -9148,6 +11892,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-15.png', linkedinUrl: '/in/grant-brown-b0072f7d7c', jobTitle: 'Financial trader', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Megan', @@ -9158,6 +11905,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-16.png', linkedinUrl: '/in/megan-robinson-ee228aab40', jobTitle: 'Cartographer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ronald', @@ -9168,6 +11918,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-17.png', linkedinUrl: '/in/ronald-smith-9a58c743fc', jobTitle: 'Engineer, aeronautical', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Tonya', @@ -9178,6 +11931,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-18.png', linkedinUrl: '/in/tonya-chandler-8cba0ccb14', jobTitle: 'Surveyor, building', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jose', @@ -9188,6 +11944,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-19.png', linkedinUrl: '/in/jose-jacobs-e5dd5c613f', jobTitle: 'Environmental consultant', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'William', @@ -9198,6 +11957,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-20.png', linkedinUrl: '/in/william-johnson-fffd051063', jobTitle: 'Oceanographer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jason', @@ -9208,6 +11970,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-21.png', linkedinUrl: '/in/jason-mitchell-d3f1d47944', jobTitle: 'Hydrographic surveyor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Wendy', @@ -9218,6 +11983,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-22.png', linkedinUrl: '/in/wendy-soto-507c1d708f', jobTitle: 'Metallurgist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Patrick', @@ -9228,6 +11996,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-23.png', linkedinUrl: '/in/patrick-jones-33ee1b90f5', jobTitle: 'Engineer, biomedical', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Vanessa', @@ -9238,6 +12009,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-24.png', linkedinUrl: '/in/vanessa-ingram-dd5d4ea14e', jobTitle: 'Hospital pharmacist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Walter', @@ -9248,6 +12022,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-25.png', linkedinUrl: '/in/walter-rhodes-8cff091883', jobTitle: 'Actuary', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Heather', @@ -9258,6 +12035,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-26.png', linkedinUrl: '/in/heather-cardenas-0a0d52106f', jobTitle: 'Sport and exercise psychologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Nathan', @@ -9268,6 +12048,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-27.png', linkedinUrl: '/in/nathan-schwartz-db3bb93189', jobTitle: 'Merchandiser, retail', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Roger', @@ -9278,6 +12061,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-28.png', linkedinUrl: '/in/roger-gill-367ad4e3fc', jobTitle: 'Lighting technician, broadcasting/film/video', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Cynthia', @@ -9288,6 +12074,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-29.png', linkedinUrl: '/in/cynthia-taylor-c8c2e63cb4', jobTitle: 'Biomedical scientist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jenna', @@ -9298,6 +12087,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-30.png', linkedinUrl: '/in/jenna-rojas-01776ae7b4', jobTitle: 'Clinical biochemist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Trevor', @@ -9308,6 +12100,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-31.png', linkedinUrl: '/in/trevor-chase-c2e65df749', jobTitle: 'Lobbyist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Scott', @@ -9318,6 +12113,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-32.png', linkedinUrl: '/in/scott-murphy-2e879fc86d', jobTitle: 'Commissioning editor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Zachary', @@ -9328,6 +12126,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-33.png', linkedinUrl: '/in/zachary-thornton-303f2657b8', jobTitle: 'Wellsite geologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Richard', @@ -9338,6 +12139,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-34.png', linkedinUrl: '/in/richard-aguirre-40f00db472', jobTitle: 'Barista', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Mckenzie', @@ -9348,6 +12152,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-35.png', linkedinUrl: '/in/mckenzie-black-5e934e9a1d', jobTitle: 'Scientist, biomedical', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jacqueline', @@ -9358,6 +12165,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-36.png', linkedinUrl: '/in/jacqueline-randall-38109939cb', jobTitle: 'Retail manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sheri', @@ -9368,6 +12178,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-37.png', linkedinUrl: '/in/sheri-taylor-df26d6d5ee', jobTitle: 'Commercial art gallery manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brandon', @@ -9378,6 +12191,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-38.png', linkedinUrl: '/in/brandon-acevedo-32a27033d1', jobTitle: 'Investment banker, corporate', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Katherine', @@ -9388,6 +12204,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-39.png', linkedinUrl: '/in/katherine-best-9e3dcb6aa0', jobTitle: 'Corporate treasurer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Daniel', @@ -9398,6 +12217,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-40.png', linkedinUrl: '/in/daniel-adams-fbc7ca02b9', jobTitle: 'Research officer, trade union', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Elizabeth', @@ -9408,6 +12230,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-41.png', linkedinUrl: '/in/elizabeth-vega-4755e545bd', jobTitle: 'Investment banker, corporate', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jennifer', @@ -9418,6 +12243,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-42.png', linkedinUrl: '/in/jennifer-kim-e40f68f1d3', jobTitle: 'Counselling psychologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Stephen', @@ -9428,6 +12256,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-43.png', linkedinUrl: '/in/stephen-saunders-d055c5642e', jobTitle: 'Biomedical engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ashley', @@ -9438,6 +12269,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-44.png', linkedinUrl: '/in/ashley-prince-59d88abe81', jobTitle: 'Ophthalmologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Paul', @@ -9448,6 +12282,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-45.png', linkedinUrl: '/in/paul-mckay-00b47ec261', jobTitle: 'Physiotherapist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Shelby', @@ -9458,6 +12295,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-46.png', linkedinUrl: '/in/shelby-hughes-7c90e603de', jobTitle: 'Video editor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Cheryl', @@ -9468,6 +12308,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-47.png', linkedinUrl: '/in/cheryl-townsend-62c7a27460', jobTitle: 'Marketing executive', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brianna', @@ -9478,6 +12321,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-48.png', linkedinUrl: '/in/brianna-peck-ab76fe8301', jobTitle: 'Mudlogger', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Andrew', @@ -9488,6 +12334,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-49.png', linkedinUrl: '/in/andrew-ford-1ddb22e213', jobTitle: 'Interpreter', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Robert', @@ -9498,6 +12347,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-50.png', linkedinUrl: '/in/robert-brown-28cac6c157', jobTitle: 'Public house manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Joy', @@ -9508,6 +12360,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-51.png', linkedinUrl: '/in/joy-richards-f0af7d1ee4', jobTitle: 'Tree surgeon', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jessica', @@ -9518,6 +12373,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-52.png', linkedinUrl: '/in/jessica-hogan-54aff81ceb', jobTitle: 'Land', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lisa', @@ -9528,6 +12386,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-53.png', linkedinUrl: '/in/lisa-watson-0cae086726', jobTitle: 'Graphic designer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christine', @@ -9538,6 +12399,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-54.png', linkedinUrl: '/in/christine-morton-3d83c68241', jobTitle: 'Stage manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brian', @@ -9548,6 +12412,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-55.png', linkedinUrl: '/in/brian-lewis-de68c08ac1', jobTitle: 'Trade union research officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Matthew', @@ -9558,6 +12425,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-56.png', linkedinUrl: '/in/matthew-fernandez-1cd32d9567', jobTitle: 'Lecturer, further education', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Linda', @@ -9568,6 +12438,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-57.png', linkedinUrl: '/in/linda-mitchell-825783bf1c', jobTitle: 'Mechanical engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Colin', @@ -9578,6 +12451,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-58.png', linkedinUrl: '/in/colin-walker-bc08fcfaa1', jobTitle: 'Surveyor, mining', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Robert', @@ -9588,6 +12464,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-59.png', linkedinUrl: '/in/robert-gray-2c8a3e5f3a', jobTitle: 'Development worker, international aid', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Natalie', @@ -9598,6 +12477,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-60.png', linkedinUrl: '/in/natalie-lawrence-d8c06e2d82', jobTitle: 'Therapeutic radiographer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Mark', @@ -9608,6 +12490,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-61.png', linkedinUrl: '/in/mark-castro-4184957d96', jobTitle: 'Engineer, control and instrumentation', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Melissa', @@ -9618,6 +12503,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-62.png', linkedinUrl: '/in/melissa-molina-aae4218215', jobTitle: 'Psychologist, clinical', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Terry', @@ -9628,6 +12516,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-63.png', linkedinUrl: '/in/terry-melendez-692cdf776c', jobTitle: 'Public relations officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Charlene', @@ -9638,6 +12529,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-64.png', linkedinUrl: '/in/charlene-beck-810d5075ae', jobTitle: 'Tax inspector', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Yvonne', @@ -9648,6 +12542,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinUrl: '/in/yvonne-avila-cd93548e92', jobTitle: 'Merchant navy officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Andrea', @@ -9658,6 +12555,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-66.png', linkedinUrl: '/in/andrea-garcia-21bf3350f1', jobTitle: 'Contracting civil engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Mary', @@ -9668,6 +12568,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-67.png', linkedinUrl: '/in/mary-goodman-97470c0612', jobTitle: 'Metallurgist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Shelly', @@ -9678,6 +12581,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-68.png', linkedinUrl: '/in/shelly-powers-8790890d27', jobTitle: 'Glass blower/designer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Holly', @@ -9688,6 +12594,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-69.png', linkedinUrl: '/in/holly-hensley-111036f6da', jobTitle: 'Geophysicist/field seismologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christina', @@ -9698,6 +12607,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-70.png', linkedinUrl: '/in/christina-davis-2b07b44392', jobTitle: 'Chiropodist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Adam', @@ -9708,6 +12620,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-71.png', linkedinUrl: '/in/adam-cochran-1657e82dbf', jobTitle: 'Communications engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Katherine', @@ -9718,6 +12633,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-72.png', linkedinUrl: '/in/katherine-abbott-ec30f06ab2', jobTitle: 'Solicitor, Scotland', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jenna', @@ -9728,6 +12646,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-73.png', linkedinUrl: '/in/jenna-mendez-38ef424a7f', jobTitle: 'Automotive engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Steven', @@ -9738,6 +12659,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-74.png', linkedinUrl: '/in/steven-barnes-f5d1f0c993', jobTitle: 'Occupational hygienist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ashley', @@ -9748,6 +12672,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-75.png', linkedinUrl: '/in/ashley-manning-8b3cc7cf6f', jobTitle: 'Firefighter', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'David', @@ -9758,6 +12685,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-76.png', linkedinUrl: '/in/david-peterson-296c6d71cf', jobTitle: 'Scientist, water quality', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Patrick', @@ -9768,6 +12698,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-77.png', linkedinUrl: '/in/patrick-ellis-984f4db9b8', jobTitle: 'Graphic designer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'James', @@ -9778,6 +12711,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-78.png', linkedinUrl: '/in/james-sullivan-711645bcdd', jobTitle: 'Chief Strategy Officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jeffrey', @@ -9788,6 +12724,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-79.png', linkedinUrl: '/in/jeffrey-beck-a78371285a', jobTitle: 'Corporate investment banker', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Joyce', @@ -9798,6 +12737,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-80.png', linkedinUrl: '/in/joyce-phillips-781047cb11', jobTitle: 'Community pharmacist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Nicholas', @@ -9808,6 +12750,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-81.png', linkedinUrl: '/in/nicholas-sanchez-ba28dda9a9', jobTitle: 'Technical sales engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'John', @@ -9818,6 +12763,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-82.png', linkedinUrl: '/in/john-perez-55c123ef5d', jobTitle: 'Research scientist (physical sciences)', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Tammy', @@ -9828,6 +12776,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-83.png', linkedinUrl: '/in/tammy-mueller-69c65883c9', jobTitle: 'Energy manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Susan', @@ -9838,6 +12789,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-84.png', linkedinUrl: '/in/susan-wong-9581ecf892', jobTitle: 'Lobbyist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jacob', @@ -9848,6 +12802,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-85.png', linkedinUrl: '/in/jacob-lutz-29f1197777', jobTitle: 'Energy engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Mark', @@ -9858,6 +12815,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-86.png', linkedinUrl: '/in/mark-cruz-88019b5101', jobTitle: 'Pilot, airline', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sharon', @@ -9868,6 +12828,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-87.png', linkedinUrl: '/in/sharon-soto-288840ca64', jobTitle: 'Therapist, drama', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Maria', @@ -9878,6 +12841,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-88.png', linkedinUrl: '/in/maria-rodgers-3b3e0df751', jobTitle: 'Merchandiser, retail', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Scott', @@ -9888,6 +12854,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-89.png', linkedinUrl: '/in/scott-norton-fa28a83774', jobTitle: 'Museum/gallery exhibitions officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Caitlin', @@ -9898,6 +12867,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-90.png', linkedinUrl: '/in/caitlin-harper-13e7507d0b', jobTitle: 'Animal nutritionist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Elizabeth', @@ -9908,6 +12880,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-91.png', linkedinUrl: '/in/elizabeth-newman-b3274ecf1c', jobTitle: 'Curator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Rebecca', @@ -9918,6 +12893,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-92.png', linkedinUrl: '/in/rebecca-knight-f9ba229de1', jobTitle: 'Marine scientist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Rebecca', @@ -9928,6 +12906,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-93.png', linkedinUrl: '/in/rebecca-henry-8af895981f', jobTitle: 'Graphic designer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Douglas', @@ -9938,6 +12919,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-94.png', linkedinUrl: '/in/douglas-mccall-bbacffb65f', jobTitle: 'Producer, television/film/video', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Shelia', @@ -9948,6 +12932,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-95.png', linkedinUrl: '/in/shelia-mcneil-09a1a630f5', jobTitle: 'Surveyor, quantity', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Diana', @@ -9958,6 +12945,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-96.png', linkedinUrl: '/in/diana-moore-bfde41a990', jobTitle: 'Public house manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Andrea', @@ -9968,6 +12958,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-97.png', linkedinUrl: '/in/andrea-gregory-1bed92c29b', jobTitle: 'Clinical cytogeneticist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sandra', @@ -9978,6 +12971,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-98.png', linkedinUrl: '/in/sandra-houston-5eb9930bec', jobTitle: 'Research scientist (maths)', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christina', @@ -9988,6 +12984,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-99.png', linkedinUrl: '/in/christina-rangel-14f26a977d', jobTitle: 'Immunologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ruben', @@ -9998,6 +12997,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-100.png', linkedinUrl: '/in/ruben-aguilar-abaeafdd06', jobTitle: 'Counselling psychologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Briana', @@ -10008,6 +13010,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-1.png', linkedinUrl: '/in/briana-townsend-b3b34529fe', jobTitle: 'Cytogeneticist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'William', @@ -10018,6 +13023,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-2.png', linkedinUrl: '/in/william-thompson-94dc40f1de', jobTitle: 'Equities trader', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ashley', @@ -10028,6 +13036,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-3.png', linkedinUrl: '/in/ashley-martinez-a406dfe50c', jobTitle: 'Ecologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Carla', @@ -10038,6 +13049,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-4.png', linkedinUrl: '/in/carla-wilson-d059473869', jobTitle: 'Media buyer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Robert', @@ -10048,6 +13062,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-5.png', linkedinUrl: '/in/robert-contreras-50f852ba89', jobTitle: 'Ecologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Denise', @@ -10058,6 +13075,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-6.png', linkedinUrl: '/in/denise-burton-3a79ce7f23', jobTitle: 'Clothing/textile technologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Cassidy', @@ -10068,6 +13088,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-7.png', linkedinUrl: '/in/cassidy-mckee-1189782a1e', jobTitle: 'Psychotherapist, child', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Angela', @@ -10078,6 +13101,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-8.png', linkedinUrl: '/in/angela-torres-1c99a88f63', jobTitle: 'Agricultural engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Shirley', @@ -10088,6 +13114,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-9.png', linkedinUrl: '/in/shirley-hall-68f8f386ca', jobTitle: 'Editorial assistant', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Robert', @@ -10098,6 +13127,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-10.png', linkedinUrl: '/in/robert-arroyo-956557b51d', jobTitle: 'Counselling psychologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kurt', @@ -10108,6 +13140,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-11.png', linkedinUrl: '/in/kurt-moon-c7b749a5da', jobTitle: 'Cabin crew', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Nicholas', @@ -10118,6 +13153,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-12.png', linkedinUrl: '/in/nicholas-bradshaw-414f2727de', jobTitle: 'Financial controller', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Tyler', @@ -10128,6 +13166,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-13.png', linkedinUrl: '/in/tyler-murray-244f09586c', jobTitle: 'Psychotherapist, child', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Shawn', @@ -10138,6 +13179,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-14.png', linkedinUrl: '/in/shawn-lowery-7baa4120f2', jobTitle: 'Chartered management accountant', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jessica', @@ -10148,6 +13192,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-15.png', linkedinUrl: '/in/jessica-ward-c7e5de5066', jobTitle: 'Acupuncturist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'James', @@ -10158,6 +13205,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-16.png', linkedinUrl: '/in/james-vazquez-edc804602a', jobTitle: 'Housing manager/officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jeffrey', @@ -10168,6 +13218,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-17.png', linkedinUrl: '/in/jeffrey-moyer-82eb5b4ba8', jobTitle: 'Herpetologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Matthew', @@ -10178,6 +13231,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-18.png', linkedinUrl: '/in/matthew-moore-13cab3f864', jobTitle: 'Secondary school teacher', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Crystal', @@ -10188,6 +13244,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-19.png', linkedinUrl: '/in/crystal-pena-620fa626fd', jobTitle: 'Therapist, occupational', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ann', @@ -10198,6 +13257,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-20.png', linkedinUrl: '/in/ann-mclaughlin-cfe670a52c', jobTitle: 'Quality manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Corey', @@ -10208,6 +13270,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-21.png', linkedinUrl: '/in/corey-jones-2b4ff4b6c5', jobTitle: 'Nutritional therapist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'James', @@ -10218,6 +13283,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-22.png', linkedinUrl: '/in/james-boyer-dcd4131baf', jobTitle: 'Management consultant', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Karen', @@ -10228,6 +13296,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-23.png', linkedinUrl: '/in/karen-schroeder-9ded3a0da2', jobTitle: 'Chiropodist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ashley', @@ -10238,6 +13309,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-24.png', linkedinUrl: '/in/ashley-johnson-0d0a8f76d0', jobTitle: 'Presenter, broadcasting', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Susan', @@ -10248,6 +13322,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-25.png', linkedinUrl: '/in/susan-stevens-75236edd7c', jobTitle: 'Psychologist, sport and exercise', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jennifer', @@ -10258,6 +13335,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-26.png', linkedinUrl: '/in/jennifer-deleon-92f894acba', jobTitle: 'Development worker, community', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kelsey', @@ -10268,6 +13348,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-27.png', linkedinUrl: '/in/kelsey-lopez-90ffaeecdc', jobTitle: 'English as a foreign language teacher', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jill', @@ -10278,6 +13361,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-28.png', linkedinUrl: '/in/jill-hammond-4f87a8c4fd', jobTitle: 'Designer, jewellery', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Joseph', @@ -10288,6 +13374,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-29.png', linkedinUrl: '/in/joseph-wu-f673a42110', jobTitle: 'Naval architect', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Melissa', @@ -10298,6 +13387,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-30.png', linkedinUrl: '/in/melissa-walker-34f194896b', jobTitle: 'Meteorologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lisa', @@ -10308,6 +13400,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-31.png', linkedinUrl: '/in/lisa-mcdaniel-9ab62dfbef', jobTitle: 'Investment banker, corporate', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ruben', @@ -10318,6 +13413,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-32.png', linkedinUrl: '/in/ruben-robinson-0da78d81dc', jobTitle: 'Environmental health practitioner', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'David', @@ -10328,6 +13426,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-33.png', linkedinUrl: '/in/david-novak-c3c6f0fb18', jobTitle: 'Pharmacologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Carl', @@ -10338,6 +13439,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-34.png', linkedinUrl: '/in/carl-osborne-4aa9f429ec', jobTitle: 'Arts administrator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jennifer', @@ -10348,6 +13452,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-35.png', linkedinUrl: '/in/jennifer-moore-0468307bea', jobTitle: 'Water engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Nicolas', @@ -10358,6 +13465,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-36.png', linkedinUrl: '/in/nicolas-walton-41b1798348', jobTitle: 'Clinical molecular geneticist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Robert', @@ -10368,6 +13478,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-37.png', linkedinUrl: '/in/robert-vega-c9f7c2fc77', jobTitle: 'Engineer, automotive', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Emily', @@ -10378,6 +13491,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-38.png', linkedinUrl: '/in/emily-morrison-dfcf31f9c8', jobTitle: 'Learning disability nurse', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michael', @@ -10388,6 +13504,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-39.png', linkedinUrl: '/in/michael-johnson-67b413c0fb', jobTitle: 'Consulting civil engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Chris', @@ -10398,6 +13517,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-40.png', linkedinUrl: '/in/chris-miller-e5fd1642f6', jobTitle: 'Artist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ebony', @@ -10408,6 +13530,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-41.png', linkedinUrl: '/in/ebony-jones-46514a3944', jobTitle: 'Armed forces training and education officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Bonnie', @@ -10418,6 +13543,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-42.png', linkedinUrl: '/in/bonnie-mcintyre-a8669d6f36', jobTitle: 'Gaffer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Tom', @@ -10428,6 +13556,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-43.png', linkedinUrl: '/in/tom-dawson-f004272b8c', jobTitle: 'Mechanical engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sharon', @@ -10438,6 +13569,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-44.png', linkedinUrl: '/in/sharon-weber-793caf2e63', jobTitle: 'Magazine journalist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Rodney', @@ -10448,6 +13582,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-45.png', linkedinUrl: '/in/rodney-lewis-ec6d41e8de', jobTitle: 'Scientist, research (physical sciences)', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jordan', @@ -10458,6 +13595,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-46.png', linkedinUrl: '/in/jordan-norton-0c59185977', jobTitle: 'Armed forces training and education officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Stephen', @@ -10468,6 +13608,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-47.png', linkedinUrl: '/in/stephen-kramer-3c9febe618', jobTitle: 'Journalist, broadcasting', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Hannah', @@ -10478,6 +13621,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-48.png', linkedinUrl: '/in/hannah-miles-a7dda4b311', jobTitle: 'Retail manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Matthew', @@ -10488,6 +13634,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-49.png', linkedinUrl: '/in/matthew-gomez-138bea0818', jobTitle: 'Landscape architect', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brian', @@ -10498,6 +13647,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-50.png', linkedinUrl: '/in/brian-ashley-97ba5b196c', jobTitle: 'Clinical psychologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Tyler', @@ -10508,6 +13660,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-51.png', linkedinUrl: '/in/tyler-silva-13e0220240', jobTitle: 'Podiatrist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Timothy', @@ -10518,6 +13673,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-52.png', linkedinUrl: '/in/timothy-neal-dc5fb8cee9', jobTitle: 'Media buyer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Melanie', @@ -10528,6 +13686,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-53.png', linkedinUrl: '/in/melanie-mora-2690667b9b', jobTitle: 'Personal assistant', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michael', @@ -10538,6 +13699,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-54.png', linkedinUrl: '/in/michael-gonzalez-06594d52b5', jobTitle: 'Waste management officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Anthony', @@ -10548,6 +13712,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-55.png', linkedinUrl: '/in/anthony-moran-1b9585391d', jobTitle: 'Accountant, chartered certified', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kelly', @@ -10558,6 +13725,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-56.png', linkedinUrl: '/in/kelly-taylor-a64148e880', jobTitle: 'Nutritional therapist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jesse', @@ -10568,6 +13738,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-57.png', linkedinUrl: '/in/jesse-lawson-b8e1d0a3a6', jobTitle: 'Industrial/product designer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kaylee', @@ -10578,6 +13751,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-58.png', linkedinUrl: '/in/kaylee-wilson-816a279b72', jobTitle: 'Chartered management accountant', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ernest', @@ -10588,6 +13764,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-59.png', linkedinUrl: '/in/ernest-benson-62c7191ff3', jobTitle: 'Data scientist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Anthony', @@ -10598,6 +13777,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-60.png', linkedinUrl: '/in/anthony-garcia-1d2ba220ca', jobTitle: 'Brewing technologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Karen', @@ -10608,6 +13790,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-61.png', linkedinUrl: '/in/karen-moody-f6f256a833', jobTitle: 'Conservation officer, nature', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Erin', @@ -10618,6 +13803,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-62.png', linkedinUrl: '/in/erin-jimenez-0cc5ce0c10', jobTitle: 'Press sub', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Daniel', @@ -10628,6 +13816,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-63.png', linkedinUrl: '/in/daniel-boyd-2fa5991fba', jobTitle: 'Telecommunications researcher', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Robert', @@ -10638,6 +13829,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-64.png', linkedinUrl: '/in/robert-garrett-2fade0517f', jobTitle: 'Immigration officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'David', @@ -10648,6 +13842,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinUrl: '/in/david-vazquez-852b6ab31b', jobTitle: 'Purchasing manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Zachary', @@ -10658,6 +13855,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-66.png', linkedinUrl: '/in/zachary-simmons-3b73fdab08', jobTitle: 'Education officer, museum', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Melissa', @@ -10668,6 +13868,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-67.png', linkedinUrl: '/in/melissa-wilson-8479abddcc', jobTitle: 'General practice doctor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michelle', @@ -10678,6 +13881,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-68.png', linkedinUrl: '/in/michelle-thompson-bf79635c87', jobTitle: 'Counsellor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Donald', @@ -10688,6 +13894,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-69.png', linkedinUrl: '/in/donald-stephens-7f7cf70def', jobTitle: 'Private music teacher', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Marcus', @@ -10698,6 +13907,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-70.png', linkedinUrl: '/in/marcus-smith-3a27ce898a', jobTitle: 'Clinical biochemist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Norma', @@ -10708,6 +13920,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-71.png', linkedinUrl: '/in/norma-watkins-61bad82fae', jobTitle: 'Firefighter', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jody', @@ -10718,6 +13933,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-72.png', linkedinUrl: '/in/jody-morales-9f975a16d2', jobTitle: 'Administrator, education', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ronald', @@ -10728,6 +13946,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-73.png', linkedinUrl: '/in/ronald-cox-f10c08c550', jobTitle: 'Sports coach', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jennifer', @@ -10738,6 +13959,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-74.png', linkedinUrl: '/in/jennifer-horn-7eade4bcb9', jobTitle: 'Product designer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Joseph', @@ -10748,6 +13972,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-75.png', linkedinUrl: '/in/joseph-jones-dcec25d4d9', jobTitle: 'Research scientist (maths)', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Cody', @@ -10758,6 +13985,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-76.png', linkedinUrl: '/in/cody-blevins-57df0cb073', jobTitle: 'Clinical psychologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Allison', @@ -10768,6 +13998,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-77.png', linkedinUrl: '/in/allison-hickman-07a1fac3cf', jobTitle: 'Writer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'David', @@ -10778,6 +14011,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-78.png', linkedinUrl: '/in/david-everett-5a8004bbc1', jobTitle: 'Archaeologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'James', @@ -10788,6 +14024,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-79.png', linkedinUrl: '/in/james-smith-ccd3177ab7', jobTitle: 'Film/video editor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Chad', @@ -10798,6 +14037,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-80.png', linkedinUrl: '/in/chad-stevens-babda7a962', jobTitle: 'Higher education careers adviser', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Nicole', @@ -10808,6 +14050,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-81.png', linkedinUrl: '/in/nicole-campbell-47b63850d5', jobTitle: 'Plant breeder/geneticist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Eric', @@ -10818,6 +14063,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-82.png', linkedinUrl: '/in/eric-johnson-be7867ea1f', jobTitle: 'Bookseller', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Judith', @@ -10828,6 +14076,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-83.png', linkedinUrl: '/in/judith-ortiz-d3ecd8a548', jobTitle: 'Publishing rights manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Evan', @@ -10838,6 +14089,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-84.png', linkedinUrl: '/in/evan-floyd-73bc237c29', jobTitle: 'Chief Operating Officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Deborah', @@ -10848,6 +14102,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-85.png', linkedinUrl: '/in/deborah-myers-0014fb575f', jobTitle: 'Engineer, energy', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jonathan', @@ -10858,6 +14115,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-86.png', linkedinUrl: '/in/jonathan-valdez-cca544261b', jobTitle: 'Manufacturing engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Marie', @@ -10868,6 +14128,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-87.png', linkedinUrl: '/in/marie-davis-50223e7489', jobTitle: 'Garment/textile technologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brent', @@ -10878,6 +14141,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-88.png', linkedinUrl: '/in/brent-mcpherson-365c1d18d0', jobTitle: 'Data scientist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Catherine', @@ -10888,6 +14154,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-89.png', linkedinUrl: '/in/catherine-kim-c3dc33b8f1', jobTitle: 'Manufacturing systems engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Evan', @@ -10898,6 +14167,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-90.png', linkedinUrl: '/in/evan-hanson-93ee351985', jobTitle: 'Art therapist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Natalie', @@ -10908,6 +14180,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-91.png', linkedinUrl: '/in/natalie-cooper-043bdf4ec3', jobTitle: 'Land', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jacqueline', @@ -10918,6 +14193,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-92.png', linkedinUrl: '/in/jacqueline-martin-3a858a2278', jobTitle: 'Product manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ashley', @@ -10928,6 +14206,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-93.png', linkedinUrl: '/in/ashley-harrington-cdb4eef042', jobTitle: 'Immunologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Heather', @@ -10938,6 +14219,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-94.png', linkedinUrl: '/in/heather-jones-6accdac7b2', jobTitle: 'Warehouse manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Corey', @@ -10948,6 +14232,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-95.png', linkedinUrl: '/in/corey-martin-e69cbef278', jobTitle: 'Loss adjuster, chartered', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Christine', @@ -10958,6 +14245,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-96.png', linkedinUrl: '/in/christine-scott-001224382b', jobTitle: 'Historic buildings inspector/conservation officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Alicia', @@ -10968,6 +14258,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-97.png', linkedinUrl: '/in/alicia-ball-3870ff3969', jobTitle: 'Presenter, broadcasting', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Antonio', @@ -10978,6 +14271,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-98.png', linkedinUrl: '/in/antonio-ferguson-995e342c4b', jobTitle: 'Production assistant, radio', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Joseph', @@ -10988,6 +14284,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-99.png', linkedinUrl: '/in/joseph-baldwin-03fcc63126', jobTitle: 'Heritage manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Devin', @@ -10998,6 +14297,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-100.png', linkedinUrl: '/in/devin-lopez-c9e1d4f2c8', jobTitle: 'Surveyor, insurance', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Victoria', @@ -11008,6 +14310,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-1.png', linkedinUrl: '/in/victoria-weber-1d629bb105', jobTitle: 'Probation officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Erica', @@ -11018,6 +14323,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-2.png', linkedinUrl: '/in/erica-lamb-ccc3ee1ef0', jobTitle: 'Environmental health practitioner', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Regina', @@ -11028,6 +14336,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-3.png', linkedinUrl: '/in/regina-rivera-80ffb29755', jobTitle: 'Psychologist, sport and exercise', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sarah', @@ -11038,6 +14349,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-4.png', linkedinUrl: '/in/sarah-hernandez-1e2803fbdb', jobTitle: 'Engineer, water', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jessica', @@ -11048,6 +14362,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-5.png', linkedinUrl: '/in/jessica-graham-c96b6e62d8', jobTitle: 'Water engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'John', @@ -11058,6 +14375,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-6.png', linkedinUrl: '/in/john-ritter-eb8a8f542a', jobTitle: 'Dancer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jessica', @@ -11068,6 +14388,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-7.png', linkedinUrl: '/in/jessica-bruce-a0631e1611', jobTitle: 'Community development worker', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sara', @@ -11078,6 +14401,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-8.png', linkedinUrl: '/in/sara-larsen-cc08b21030', jobTitle: 'Computer games developer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Eric', @@ -11088,6 +14414,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-9.png', linkedinUrl: '/in/eric-ellison-d200f0e1b9', jobTitle: 'Farm manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Katrina', @@ -11098,6 +14427,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-10.png', linkedinUrl: '/in/katrina-butler-3042d9be2a', jobTitle: 'Sales executive', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michelle', @@ -11108,6 +14440,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-11.png', linkedinUrl: '/in/michelle-powers-1f5eda1b79', jobTitle: 'Textile designer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jessica', @@ -11118,6 +14453,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-12.png', linkedinUrl: '/in/jessica-baker-eeaf05a650', jobTitle: 'Operational researcher', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Cory', @@ -11128,6 +14466,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-13.png', linkedinUrl: '/in/cory-cooper-7be856494d', jobTitle: 'Community development worker', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brittany', @@ -11138,6 +14479,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-14.png', linkedinUrl: '/in/brittany-williams-95380b6e0a', jobTitle: 'Engineer, control and instrumentation', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jessica', @@ -11148,6 +14492,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-15.png', linkedinUrl: '/in/jessica-hinton-fa6b8fd2e2', jobTitle: 'Plant breeder/geneticist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Natalie', @@ -11158,6 +14505,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-16.png', linkedinUrl: '/in/natalie-ochoa-b182dc5873', jobTitle: 'Museum/gallery conservator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kristine', @@ -11168,6 +14518,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-17.png', linkedinUrl: '/in/kristine-warren-a4821ef1b4', jobTitle: 'Senior tax professional/tax inspector', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lindsey', @@ -11178,6 +14531,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-18.png', linkedinUrl: '/in/lindsey-dalton-70af5be384', jobTitle: 'Child psychotherapist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jennifer', @@ -11188,6 +14544,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-19.png', linkedinUrl: '/in/jennifer-morgan-ab5acc70fc', jobTitle: 'Quantity surveyor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Bryan', @@ -11198,6 +14557,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-20.png', linkedinUrl: '/in/bryan-harris-f858052f2c', jobTitle: 'Civil engineer, consulting', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Norma', @@ -11208,6 +14570,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-21.png', linkedinUrl: '/in/norma-adkins-6297907f60', jobTitle: 'Forest/woodland manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kara', @@ -11218,6 +14583,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-22.png', linkedinUrl: '/in/kara-perry-3dddc5ee1c', jobTitle: 'Waste management officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Nicole', @@ -11228,6 +14596,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-23.png', linkedinUrl: '/in/nicole-kelly-793e9bc70f', jobTitle: 'Therapist, music', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Annette', @@ -11238,6 +14609,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-24.png', linkedinUrl: '/in/annette-long-45da6c37e7', jobTitle: 'Community arts worker', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'John', @@ -11248,6 +14622,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-25.png', linkedinUrl: '/in/john-stewart-50fd4b2b37', jobTitle: 'Land/geomatics surveyor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Gregory', @@ -11258,6 +14635,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-26.png', linkedinUrl: '/in/gregory-larson-4f52726447', jobTitle: 'Translator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Wanda', @@ -11268,6 +14648,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-27.png', linkedinUrl: '/in/wanda-herrera-10f674edf1', jobTitle: 'Therapeutic radiographer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sarah', @@ -11278,6 +14661,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-28.png', linkedinUrl: '/in/sarah-davis-c63949c87f', jobTitle: 'Architect', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Devin', @@ -11288,6 +14674,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-29.png', linkedinUrl: '/in/devin-snow-b8a26f7352', jobTitle: 'Social researcher', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Gina', @@ -11298,6 +14687,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-30.png', linkedinUrl: '/in/gina-hernandez-40ea9940fd', jobTitle: 'Advice worker', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ronnie', @@ -11308,6 +14700,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-31.png', linkedinUrl: '/in/ronnie-watson-5e8ffd4706', jobTitle: 'Press sub', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Mark', @@ -11318,6 +14713,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-32.png', linkedinUrl: '/in/mark-duran-0a02b4a8ee', jobTitle: 'Operational researcher', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Shawn', @@ -11328,6 +14726,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-33.png', linkedinUrl: '/in/shawn-wolfe-3b9f538b13', jobTitle: 'Research officer, government', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Mark', @@ -11338,6 +14739,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-34.png', linkedinUrl: '/in/mark-welch-3a104608c4', jobTitle: 'Chief Marketing Officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'James', @@ -11348,6 +14752,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-35.png', linkedinUrl: '/in/james-holland-a99089ebf7', jobTitle: 'Engineer, building services', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jennifer', @@ -11358,6 +14765,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-36.png', linkedinUrl: '/in/jennifer-weber-384a97d0de', jobTitle: 'Engineer, maintenance', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Beth', @@ -11368,6 +14778,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-37.png', linkedinUrl: '/in/beth-hernandez-7708149061', jobTitle: 'Runner, broadcasting/film/video', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Eric', @@ -11378,6 +14791,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-38.png', linkedinUrl: '/in/eric-barnes-332ab94dce', jobTitle: 'Patent attorney', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ryan', @@ -11388,6 +14804,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-39.png', linkedinUrl: '/in/ryan-richardson-36096d0c1f', jobTitle: 'Cartographer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brandy', @@ -11398,6 +14817,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-40.png', linkedinUrl: '/in/brandy-cowan-bab6874e38', jobTitle: 'Patent attorney', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Zachary', @@ -11408,6 +14830,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-41.png', linkedinUrl: '/in/zachary-jensen-ad43305058', jobTitle: 'Nurse, adult', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Carrie', @@ -11418,6 +14843,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-42.png', linkedinUrl: '/in/carrie-taylor-c50c9da449', jobTitle: 'Designer, furniture', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Timothy', @@ -11428,6 +14856,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-43.png', linkedinUrl: '/in/timothy-williams-0bd12cc799', jobTitle: 'Editor, magazine features', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Peter', @@ -11438,6 +14869,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-44.png', linkedinUrl: '/in/peter-rodgers-2b96b2d840', jobTitle: 'Scientific laboratory technician', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Julie', @@ -11448,6 +14882,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-45.png', linkedinUrl: '/in/julie-taylor-fa514d063e', jobTitle: 'Careers information officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Samuel', @@ -11458,6 +14895,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-46.png', linkedinUrl: '/in/samuel-ortiz-fd07e1761a', jobTitle: 'Insurance broker', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kevin', @@ -11468,6 +14908,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-47.png', linkedinUrl: '/in/kevin-lucas-3789d78a4d', jobTitle: 'Therapist, occupational', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Alexis', @@ -11478,6 +14921,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-48.png', linkedinUrl: '/in/alexis-hernandez-9b63f9db08', jobTitle: 'Journalist, magazine', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sophia', @@ -11488,6 +14934,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-49.png', linkedinUrl: '/in/sophia-wood-e6ff6bda50', jobTitle: 'Database administrator', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lori', @@ -11498,6 +14947,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-50.png', linkedinUrl: '/in/lori-hunt-242e73a5d1', jobTitle: 'Financial planner', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Dennis', @@ -11508,6 +14960,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-51.png', linkedinUrl: '/in/dennis-stark-aac95d0674', jobTitle: 'Quality manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Robert', @@ -11518,6 +14973,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-52.png', linkedinUrl: '/in/robert-smith-31ba372c60', jobTitle: 'Estate manager/land agent', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Megan', @@ -11528,6 +14986,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-53.png', linkedinUrl: '/in/megan-hughes-d7607985f9', jobTitle: 'Materials engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kristine', @@ -11538,6 +14999,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-54.png', linkedinUrl: '/in/kristine-osborne-bb389c0df3', jobTitle: 'Dietitian', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brandy', @@ -11548,6 +15012,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-55.png', linkedinUrl: '/in/brandy-thomas-9d8f298d17', jobTitle: 'Copy', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brad', @@ -11558,6 +15025,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-56.png', linkedinUrl: '/in/brad-long-f8d735beb2', jobTitle: 'Personal assistant', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Caleb', @@ -11568,6 +15038,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-57.png', linkedinUrl: '/in/caleb-stevens-f00c3e5dd3', jobTitle: 'Multimedia specialist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Matthew', @@ -11578,6 +15051,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-58.png', linkedinUrl: '/in/matthew-wall-90d1a29c8e', jobTitle: 'Chartered legal executive (England and Wales)', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Cynthia', @@ -11588,6 +15064,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-59.png', linkedinUrl: '/in/cynthia-cook-25e7c0ba3c', jobTitle: 'Radiographer, diagnostic', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lisa', @@ -11598,6 +15077,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-60.png', linkedinUrl: '/in/lisa-tate-9456c0ae0b', jobTitle: 'Lecturer, higher education', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Gloria', @@ -11608,6 +15090,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-61.png', linkedinUrl: '/in/gloria-chapman-c537bef76d', jobTitle: 'Building services engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Connie', @@ -11618,6 +15103,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-62.png', linkedinUrl: '/in/connie-lewis-c6b975976f', jobTitle: 'Insurance risk surveyor', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Gary', @@ -11628,6 +15116,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-63.png', linkedinUrl: '/in/gary-harris-619dfa4ebb', jobTitle: 'Research officer, trade union', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sharon', @@ -11638,6 +15129,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-64.png', linkedinUrl: '/in/sharon-berger-2da41916fd', jobTitle: 'Therapeutic radiographer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michael', @@ -11648,6 +15142,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinUrl: '/in/michael-russo-a3ba403e9b', jobTitle: 'Production engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michael', @@ -11658,6 +15155,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-66.png', linkedinUrl: '/in/michael-young-800f26276e', jobTitle: 'Charity fundraiser', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Devin', @@ -11668,6 +15168,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-67.png', linkedinUrl: '/in/devin-ramsey-428f24b810', jobTitle: 'Educational psychologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sara', @@ -11678,6 +15181,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-68.png', linkedinUrl: '/in/sara-lee-becddd74f2', jobTitle: 'Equality and diversity officer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Robin', @@ -11688,6 +15194,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-69.png', linkedinUrl: '/in/robin-stark-868b21526e', jobTitle: 'Production engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Sergio', @@ -11698,6 +15207,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-70.png', linkedinUrl: '/in/sergio-burns-994728d1d7', jobTitle: 'Fitness centre manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Lisa', @@ -11708,6 +15220,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-71.png', linkedinUrl: '/in/lisa-haas-e3c3871c8d', jobTitle: 'Oceanographer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Courtney', @@ -11718,6 +15233,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-72.png', linkedinUrl: '/in/courtney-donaldson-dd063d66c2', jobTitle: 'Sports therapist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ashley', @@ -11728,6 +15246,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-73.png', linkedinUrl: '/in/ashley-conrad-96b6f83928', jobTitle: 'Manufacturing engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Tim', @@ -11738,6 +15259,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-74.png', linkedinUrl: '/in/tim-levine-01557d92c6', jobTitle: 'Animal nutritionist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Michelle', @@ -11748,6 +15272,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-75.png', linkedinUrl: '/in/michelle-martinez-905bf6439c', jobTitle: 'TEFL teacher', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jennifer', @@ -11758,6 +15285,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-76.png', linkedinUrl: '/in/jennifer-rose-162f9c1d7b', jobTitle: 'Logistics and distribution manager', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Casey', @@ -11768,6 +15298,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-77.png', linkedinUrl: '/in/casey-greer-e3d7510c16', jobTitle: 'Editor, commissioning', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Crystal', @@ -11778,6 +15311,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-78.png', linkedinUrl: '/in/crystal-mclaughlin-7b67938d55', jobTitle: 'Chiropodist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Rachel', @@ -11788,6 +15324,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-79.png', linkedinUrl: '/in/rachel-floyd-554e320b10', jobTitle: 'Therapist, drama', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Shannon', @@ -11798,6 +15337,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-80.png', linkedinUrl: '/in/shannon-anderson-7e555790c5', jobTitle: 'Mudlogger', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Catherine', @@ -11808,6 +15350,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-81.png', linkedinUrl: '/in/catherine-white-759d1e61da', jobTitle: 'Barista', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Matthew', @@ -11818,6 +15363,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-82.png', linkedinUrl: '/in/matthew-fisher-4f49bc00ee', jobTitle: 'Systems developer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Tracy', @@ -11828,6 +15376,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-83.png', linkedinUrl: '/in/tracy-leonard-b9b7beae66', jobTitle: 'Psychologist, sport and exercise', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Jenna', @@ -11838,6 +15389,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-84.png', linkedinUrl: '/in/jenna-moore-c17c91ef24', jobTitle: 'Senior tax professional/tax inspector', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Alice', @@ -11848,6 +15402,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-85.png', linkedinUrl: '/in/alice-edwards-aefc82ee0c', jobTitle: 'Engineer, water', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Theresa', @@ -11858,6 +15415,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-86.png', linkedinUrl: '/in/theresa-orozco-4a2ec9a601', jobTitle: 'Journalist, magazine', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Samantha', @@ -11868,6 +15428,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-87.png', linkedinUrl: '/in/samantha-hicks-16b4d5470f', jobTitle: 'Herpetologist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Brian', @@ -11878,6 +15441,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-88.png', linkedinUrl: '/in/brian-finley-aa52351d68', jobTitle: 'Youth worker', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Kevin', @@ -11888,6 +15454,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-89.png', linkedinUrl: '/in/kevin-black-ada9f2fada', jobTitle: 'Teacher, adult education', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Eric', @@ -11898,6 +15467,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-90.png', linkedinUrl: '/in/eric-peterson-2e15a4a39c', jobTitle: 'Ranger/warden', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Samantha', @@ -11908,6 +15480,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-91.png', linkedinUrl: '/in/samantha-steele-a6e15143ce', jobTitle: 'Designer, industrial/product', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Tiffany', @@ -11918,6 +15493,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-92.png', linkedinUrl: '/in/tiffany-boyd-5875da90d3', jobTitle: 'Editor, film/video', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Larry', @@ -11928,6 +15506,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-93.png', linkedinUrl: '/in/larry-johnston-2639a97c12', jobTitle: 'Horticulturist, amenity', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Vanessa', @@ -11938,6 +15519,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-94.png', linkedinUrl: '/in/vanessa-villanueva-cf67adba5d', jobTitle: 'Child psychotherapist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Danielle', @@ -11948,6 +15532,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-95.png', linkedinUrl: '/in/danielle-gutierrez-bae65dfff7', jobTitle: 'Technical author', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Pamela', @@ -11958,6 +15545,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-96.png', linkedinUrl: '/in/pamela-anderson-79a31bf795', jobTitle: 'Geoscientist', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Linda', @@ -11968,6 +15558,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-97.png', linkedinUrl: '/in/linda-young-912fcbd8df', jobTitle: 'Ship broker', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Rodney', @@ -11978,6 +15571,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-98.png', linkedinUrl: '/in/rodney-orr-ae717c2f34', jobTitle: 'Best boy', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Ashley', @@ -11988,6 +15584,9 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-99.png', linkedinUrl: '/in/ashley-perez-9375a8f7c7', jobTitle: 'Chemical engineer', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, { firstName: 'Abigail', @@ -11998,5 +15597,8 @@ export const peopleDemo = [ 'https://twentyhq.github.io/placeholder-images/people/image-100.png', linkedinUrl: '/in/abigail-scott-34179b2995', jobTitle: 'Radiographer, diagnostic', + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: DEMO_SEED_WORKSPACE_MEMBER_IDS.HUGO, + createdByName: 'Hugo I', }, ]; diff --git a/packages/twenty-server/src/engine/workspace-manager/demo-objects-prefill-data/person.ts b/packages/twenty-server/src/engine/workspace-manager/demo-objects-prefill-data/person.ts index 7ddcbc535..190713107 100644 --- a/packages/twenty-server/src/engine/workspace-manager/demo-objects-prefill-data/person.ts +++ b/packages/twenty-server/src/engine/workspace-manager/demo-objects-prefill-data/person.ts @@ -21,6 +21,9 @@ export const personPrefillDemoData = async ( avatarUrl: person.avatarUrl, position: index, companyId: companies[Math.floor(index / 2)].id, + createdBySource: person.createdBySource, + createdByWorkspaceMemberId: person.createdByWorkspaceMemberId, + createdByName: person.createdByName })); await entityManager @@ -36,6 +39,9 @@ export const personPrefillDemoData = async ( 'avatarUrl', 'position', 'companyId', + 'createdBySource', + 'createdByWorkspaceMemberId', + 'createdByName', ]) .orIgnore() .values(people) diff --git a/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/company.ts b/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/company.ts index 88df7879f..8d5a24a1e 100644 --- a/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/company.ts +++ b/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/company.ts @@ -18,6 +18,9 @@ export const companyPrefillData = async ( 'addressAddressCountry', 'employees', 'position', + 'createdBySource', + 'createdByWorkspaceMemberId', + 'createdByName', ]) .orIgnore() .values([ @@ -32,6 +35,9 @@ export const companyPrefillData = async ( addressAddressCountry: 'United States', employees: 5000, position: 1, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: null, + createdByName: 'System', }, { name: 'Qonto', @@ -44,6 +50,9 @@ export const companyPrefillData = async ( addressAddressCountry: 'France', employees: 800, position: 2, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: null, + createdByName: 'System', }, { name: 'Stripe', @@ -56,6 +65,9 @@ export const companyPrefillData = async ( addressAddressCountry: 'Ireland', employees: 8000, position: 3, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: null, + createdByName: 'System', }, { name: 'Figma', @@ -68,6 +80,9 @@ export const companyPrefillData = async ( addressAddressCountry: 'United States', employees: 800, position: 4, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: null, + createdByName: 'System', }, { name: 'Notion', @@ -80,6 +95,9 @@ export const companyPrefillData = async ( addressAddressCountry: 'United States', employees: 400, position: 5, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: null, + createdByName: 'System', }, ]) .returning('*') diff --git a/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/person.ts b/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/person.ts index 5c4a0212b..b30974e81 100644 --- a/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/person.ts +++ b/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/person.ts @@ -1,5 +1,6 @@ import { EntityManager } from 'typeorm'; +// FixMe: Is this file a duplicate of src/database/typeorm-seeds/workspace/people.ts export const personPrefillData = async ( entityManager: EntityManager, schemaName: string, @@ -14,6 +15,9 @@ export const personPrefillData = async ( 'email', 'avatarUrl', 'position', + 'createdBySource', + 'createdByWorkspaceMemberId', + 'createdByName', ]) .orIgnore() .values([ @@ -25,6 +29,9 @@ export const personPrefillData = async ( avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-3.png', position: 1, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: null, + createdByName: 'System', }, { nameFirstName: 'Alexandre', @@ -34,6 +41,9 @@ export const personPrefillData = async ( avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-89.png', position: 2, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: null, + createdByName: 'System', }, { nameFirstName: 'Patrick', @@ -43,6 +53,9 @@ export const personPrefillData = async ( avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-47.png', position: 3, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: null, + createdByName: 'System', }, { nameFirstName: 'Dylan', @@ -52,6 +65,9 @@ export const personPrefillData = async ( avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-40.png', position: 4, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: null, + createdByName: 'System', }, { nameFirstName: 'Ivan', @@ -61,6 +77,9 @@ export const personPrefillData = async ( avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-68.png', position: 5, + createdBySource: 'MANUAL', + createdByWorkspaceMemberId: null, + createdByName: 'System', }, ]) .returning('*') diff --git a/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/views/companies-all.view.ts b/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/views/companies-all.view.ts index c20772255..ff26eab35 100644 --- a/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/views/companies-all.view.ts +++ b/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/views/companies-all.view.ts @@ -39,7 +39,7 @@ export const companiesAllView = async ( { fieldMetadataId: objectMetadataMap[STANDARD_OBJECT_IDS.company].fields[ - COMPANY_STANDARD_FIELD_IDS.accountOwner + COMPANY_STANDARD_FIELD_IDS.createdBy ], position: 2, isVisible: true, @@ -48,7 +48,7 @@ export const companiesAllView = async ( { fieldMetadataId: objectMetadataMap[STANDARD_OBJECT_IDS.company].fields[ - BASE_OBJECT_STANDARD_FIELD_IDS.createdAt + COMPANY_STANDARD_FIELD_IDS.accountOwner ], position: 3, isVisible: true, @@ -57,7 +57,7 @@ export const companiesAllView = async ( { fieldMetadataId: objectMetadataMap[STANDARD_OBJECT_IDS.company].fields[ - COMPANY_STANDARD_FIELD_IDS.employees + BASE_OBJECT_STANDARD_FIELD_IDS.createdAt ], position: 4, isVisible: true, @@ -66,10 +66,19 @@ export const companiesAllView = async ( { fieldMetadataId: objectMetadataMap[STANDARD_OBJECT_IDS.company].fields[ - COMPANY_STANDARD_FIELD_IDS.linkedinLink + COMPANY_STANDARD_FIELD_IDS.employees ], position: 5, isVisible: true, + size: 150, + }, + { + fieldMetadataId: + objectMetadataMap[STANDARD_OBJECT_IDS.company].fields[ + COMPANY_STANDARD_FIELD_IDS.linkedinLink + ], + position: 6, + isVisible: true, size: 170, }, { @@ -77,7 +86,7 @@ export const companiesAllView = async ( objectMetadataMap[STANDARD_OBJECT_IDS.company].fields[ COMPANY_STANDARD_FIELD_IDS.address ], - position: 6, + position: 7, isVisible: true, size: 170, }, diff --git a/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/views/notes-all.view.ts b/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/views/notes-all.view.ts index e60512dcf..764b93995 100644 --- a/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/views/notes-all.view.ts +++ b/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/views/notes-all.view.ts @@ -32,7 +32,16 @@ export const notesAllView = async ( objectMetadataMap[STANDARD_OBJECT_IDS.note].fields[ NOTE_STANDARD_FIELD_IDS.body ], - position: 0, + position: 1, + isVisible: true, + size: 150, + }, + { + fieldMetadataId: + objectMetadataMap[STANDARD_OBJECT_IDS.note].fields[ + NOTE_STANDARD_FIELD_IDS.createdBy + ], + position: 2, isVisible: true, size: 150, }, @@ -41,7 +50,7 @@ export const notesAllView = async ( objectMetadataMap[STANDARD_OBJECT_IDS.note].fields[ BASE_OBJECT_STANDARD_FIELD_IDS.createdAt ], - position: 0, + position: 3, isVisible: true, size: 150, }, diff --git a/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/views/opportunities-all.view.ts b/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/views/opportunities-all.view.ts index 47f68251d..4dfad89ad 100644 --- a/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/views/opportunities-all.view.ts +++ b/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/views/opportunities-all.view.ts @@ -36,7 +36,7 @@ export const opportunitiesAllView = async ( { fieldMetadataId: objectMetadataMap[STANDARD_OBJECT_IDS.opportunity].fields[ - OPPORTUNITY_STANDARD_FIELD_IDS.closeDate + OPPORTUNITY_STANDARD_FIELD_IDS.createdBy ], position: 2, isVisible: true, @@ -45,12 +45,21 @@ export const opportunitiesAllView = async ( { fieldMetadataId: objectMetadataMap[STANDARD_OBJECT_IDS.opportunity].fields[ - OPPORTUNITY_STANDARD_FIELD_IDS.company + OPPORTUNITY_STANDARD_FIELD_IDS.closeDate ], position: 3, isVisible: true, size: 150, }, + { + fieldMetadataId: + objectMetadataMap[STANDARD_OBJECT_IDS.opportunity].fields[ + OPPORTUNITY_STANDARD_FIELD_IDS.company + ], + position: 4, + isVisible: true, + size: 150, + }, { fieldMetadataId: objectMetadataMap[STANDARD_OBJECT_IDS.opportunity].fields[ diff --git a/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/views/opportunity-by-stage.view.ts b/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/views/opportunity-by-stage.view.ts index 23f76456f..c67a5945b 100644 --- a/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/views/opportunity-by-stage.view.ts +++ b/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/views/opportunity-by-stage.view.ts @@ -39,7 +39,7 @@ export const opportunitiesByStageView = async ( { fieldMetadataId: objectMetadataMap[STANDARD_OBJECT_IDS.opportunity].fields[ - OPPORTUNITY_STANDARD_FIELD_IDS.closeDate + OPPORTUNITY_STANDARD_FIELD_IDS.createdBy ], position: 2, isVisible: true, @@ -48,12 +48,21 @@ export const opportunitiesByStageView = async ( { fieldMetadataId: objectMetadataMap[STANDARD_OBJECT_IDS.opportunity].fields[ - OPPORTUNITY_STANDARD_FIELD_IDS.company + OPPORTUNITY_STANDARD_FIELD_IDS.closeDate ], position: 3, isVisible: true, size: 150, }, + { + fieldMetadataId: + objectMetadataMap[STANDARD_OBJECT_IDS.opportunity].fields[ + OPPORTUNITY_STANDARD_FIELD_IDS.company + ], + position: 4, + isVisible: true, + size: 150, + }, { fieldMetadataId: objectMetadataMap[STANDARD_OBJECT_IDS.opportunity].fields[ diff --git a/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/views/people-all.view.ts b/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/views/people-all.view.ts index 6f6903839..4eb9a60db 100644 --- a/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/views/people-all.view.ts +++ b/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/views/people-all.view.ts @@ -39,7 +39,7 @@ export const peopleAllView = async ( { fieldMetadataId: objectMetadataMap[STANDARD_OBJECT_IDS.person].fields[ - PERSON_STANDARD_FIELD_IDS.company + PERSON_STANDARD_FIELD_IDS.createdBy ], position: 2, isVisible: true, @@ -48,7 +48,7 @@ export const peopleAllView = async ( { fieldMetadataId: objectMetadataMap[STANDARD_OBJECT_IDS.person].fields[ - PERSON_STANDARD_FIELD_IDS.phone + PERSON_STANDARD_FIELD_IDS.company ], position: 3, isVisible: true, @@ -57,7 +57,7 @@ export const peopleAllView = async ( { fieldMetadataId: objectMetadataMap[STANDARD_OBJECT_IDS.person].fields[ - BASE_OBJECT_STANDARD_FIELD_IDS.createdAt + PERSON_STANDARD_FIELD_IDS.phone ], position: 4, isVisible: true, @@ -66,7 +66,7 @@ export const peopleAllView = async ( { fieldMetadataId: objectMetadataMap[STANDARD_OBJECT_IDS.person].fields[ - PERSON_STANDARD_FIELD_IDS.city + BASE_OBJECT_STANDARD_FIELD_IDS.createdAt ], position: 5, isVisible: true, @@ -75,7 +75,7 @@ export const peopleAllView = async ( { fieldMetadataId: objectMetadataMap[STANDARD_OBJECT_IDS.person].fields[ - PERSON_STANDARD_FIELD_IDS.jobTitle + PERSON_STANDARD_FIELD_IDS.city ], position: 6, isVisible: true, @@ -84,7 +84,7 @@ export const peopleAllView = async ( { fieldMetadataId: objectMetadataMap[STANDARD_OBJECT_IDS.person].fields[ - PERSON_STANDARD_FIELD_IDS.linkedinLink + PERSON_STANDARD_FIELD_IDS.jobTitle ], position: 7, isVisible: true, @@ -93,12 +93,21 @@ export const peopleAllView = async ( { fieldMetadataId: objectMetadataMap[STANDARD_OBJECT_IDS.person].fields[ - PERSON_STANDARD_FIELD_IDS.xLink + PERSON_STANDARD_FIELD_IDS.linkedinLink ], position: 8, isVisible: true, size: 150, }, + { + fieldMetadataId: + objectMetadataMap[STANDARD_OBJECT_IDS.person].fields[ + PERSON_STANDARD_FIELD_IDS.xLink + ], + position: 9, + isVisible: true, + size: 150, + }, ], }; }; diff --git a/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/views/tasks-all.view.ts b/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/views/tasks-all.view.ts index 1ca193968..c623c07e9 100644 --- a/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/views/tasks-all.view.ts +++ b/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/views/tasks-all.view.ts @@ -49,7 +49,7 @@ export const tasksAllView = async ( { fieldMetadataId: objectMetadataMap[STANDARD_OBJECT_IDS.task].fields[ - TASK_STANDARD_FIELD_IDS.dueAt + TASK_STANDARD_FIELD_IDS.createdBy ], position: 3, isVisible: true, @@ -58,7 +58,7 @@ export const tasksAllView = async ( { fieldMetadataId: objectMetadataMap[STANDARD_OBJECT_IDS.task].fields[ - TASK_STANDARD_FIELD_IDS.assignee + TASK_STANDARD_FIELD_IDS.dueAt ], position: 4, isVisible: true, @@ -67,7 +67,7 @@ export const tasksAllView = async ( { fieldMetadataId: objectMetadataMap[STANDARD_OBJECT_IDS.task].fields[ - TASK_STANDARD_FIELD_IDS.body + TASK_STANDARD_FIELD_IDS.assignee ], position: 5, isVisible: true, @@ -76,12 +76,21 @@ export const tasksAllView = async ( { fieldMetadataId: objectMetadataMap[STANDARD_OBJECT_IDS.task].fields[ - BASE_OBJECT_STANDARD_FIELD_IDS.createdAt + TASK_STANDARD_FIELD_IDS.body ], position: 6, isVisible: true, size: 150, }, + { + fieldMetadataId: + objectMetadataMap[STANDARD_OBJECT_IDS.task].fields[ + BASE_OBJECT_STANDARD_FIELD_IDS.createdAt + ], + position: 7, + isVisible: true, + size: 150, + }, /* TODO: Add later, since we don't have real-time it probably doesn't work well? { diff --git a/packages/twenty-server/src/engine/workspace-manager/workspace-cleaner/crons/clean-inactive-workspace.job.ts b/packages/twenty-server/src/engine/workspace-manager/workspace-cleaner/crons/clean-inactive-workspace.job.ts index 95f9fc9a4..4488f6c9e 100644 --- a/packages/twenty-server/src/engine/workspace-manager/workspace-cleaner/crons/clean-inactive-workspace.job.ts +++ b/packages/twenty-server/src/engine/workspace-manager/workspace-cleaner/crons/clean-inactive-workspace.job.ts @@ -1,26 +1,29 @@ import { Logger } from '@nestjs/common'; +import { InjectRepository } from '@nestjs/typeorm'; import { render } from '@react-email/render'; -import { In } from 'typeorm'; import { CleanInactiveWorkspaceEmail, DeleteInactiveWorkspaceEmail, } from 'twenty-emails'; +import { In, Repository } from 'typeorm'; -import { ObjectMetadataService } from 'src/engine/metadata-modules/object-metadata/object-metadata.service'; -import { DataSourceService } from 'src/engine/metadata-modules/data-source/data-source.service'; import { TypeORMService } from 'src/database/typeorm/typeorm.service'; -import { DataSourceEntity } from 'src/engine/metadata-modules/data-source/data-source.entity'; import { UserService } from 'src/engine/core-modules/user/services/user.service'; +import { Workspace } from 'src/engine/core-modules/workspace/workspace.entity'; import { EmailService } from 'src/engine/integrations/email/email.service'; import { EnvironmentService } from 'src/engine/integrations/environment/environment.service'; +import { Process } from 'src/engine/integrations/message-queue/decorators/process.decorator'; +import { Processor } from 'src/engine/integrations/message-queue/decorators/processor.decorator'; +import { MessageQueue } from 'src/engine/integrations/message-queue/message-queue.constants'; +import { DataSourceEntity } from 'src/engine/metadata-modules/data-source/data-source.entity'; +import { DataSourceService } from 'src/engine/metadata-modules/data-source/data-source.service'; import { ObjectMetadataEntity } from 'src/engine/metadata-modules/object-metadata/object-metadata.entity'; +import { ObjectMetadataService } from 'src/engine/metadata-modules/object-metadata/object-metadata.service'; +import { WorkspaceEntity } from 'src/engine/twenty-orm/decorators/workspace-entity.decorator'; import { computeObjectTargetTable } from 'src/engine/utils/compute-object-target-table.util'; import { CleanInactiveWorkspacesCommandOptions } from 'src/engine/workspace-manager/workspace-cleaner/commands/clean-inactive-workspaces.command'; import { getDryRunLogHeader } from 'src/utils/get-dry-run-log-header'; -import { Processor } from 'src/engine/integrations/message-queue/decorators/processor.decorator'; -import { MessageQueue } from 'src/engine/integrations/message-queue/message-queue.constants'; -import { Process } from 'src/engine/integrations/message-queue/decorators/process.decorator'; const MILLISECONDS_IN_ONE_DAY = 1000 * 3600 * 24; @@ -36,6 +39,8 @@ export class CleanInactiveWorkspaceJob { private readonly inactiveDaysBeforeEmail; constructor( + @InjectRepository(WorkspaceEntity, 'core') + private readonly workspaceRepository: Repository, private readonly dataSourceService: DataSourceService, private readonly objectMetadataService: ObjectMetadataService, private readonly typeORMService: TypeORMService, @@ -94,8 +99,20 @@ export class CleanInactiveWorkspaceJob { daysSinceInactive: number, isDryRun: boolean, ) { + const workspace = await this.workspaceRepository.findOne({ + where: { id: dataSource.workspaceId }, + }); + + if (!workspace) { + this.logger.error( + `Workspace with id ${dataSource.workspaceId} not found in database`, + ); + + return; + } + const workspaceMembers = - await this.userService.loadWorkspaceMembers(dataSource); + await this.userService.loadWorkspaceMembers(workspace); const workspaceDataSource = await this.typeORMService.connectToDataSource(dataSource); @@ -110,7 +127,7 @@ export class CleanInactiveWorkspaceJob { `${getDryRunLogHeader(isDryRun)}Sending workspace ${ dataSource.workspaceId } inactive since ${daysSinceInactive} days emails to users ['${workspaceMembers - .map((workspaceUser) => workspaceUser.email) + .map((workspaceUser) => workspaceUser.userEmail) .join(', ')}']`, ); @@ -121,7 +138,7 @@ export class CleanInactiveWorkspaceJob { workspaceMembers.forEach((workspaceMember) => { const emailData = { daysLeft: this.inactiveDaysBeforeDelete - daysSinceInactive, - userName: `${workspaceMember.nameFirstName} ${workspaceMember.nameLastName}`, + userName: `${workspaceMember.name.firstName} ${workspaceMember.name.lastName}`, workspaceDisplayName: `${displayName}`, }; const emailTemplate = CleanInactiveWorkspaceEmail(emailData); @@ -133,7 +150,7 @@ export class CleanInactiveWorkspaceJob { }); this.emailService.send({ - to: workspaceMember.email, + to: workspaceMember.userEmail, bcc: this.environmentService.get('EMAIL_SYSTEM_ADDRESS'), from: `${this.environmentService.get( 'EMAIL_FROM_NAME', diff --git a/packages/twenty-server/src/engine/workspace-manager/workspace-sync-metadata/constants/standard-field-ids.ts b/packages/twenty-server/src/engine/workspace-manager/workspace-sync-metadata/constants/standard-field-ids.ts index c1c13755b..8c33607e9 100644 --- a/packages/twenty-server/src/engine/workspace-manager/workspace-sync-metadata/constants/standard-field-ids.ts +++ b/packages/twenty-server/src/engine/workspace-manager/workspace-sync-metadata/constants/standard-field-ids.ts @@ -126,6 +126,7 @@ export const COMPANY_STANDARD_FIELD_IDS = { annualRecurringRevenue: '20202020-602a-495c-9776-f5d5b11d227b', idealCustomerProfile: '20202020-ba6b-438a-8213-2c5ba28d76a2', position: '20202020-9b4e-462b-991d-a0ee33326454', + createdBy: '20202020-fabc-451d-ab7d-412170916baa', people: '20202020-3213-4ddf-9494-6422bcff8d7c', accountOwner: '20202020-95b8-4e10-9881-edb5d4765f9d', activityTargets: '20202020-c2a5-4c9b-9d9a-582bcd57fbc8', @@ -267,6 +268,7 @@ export const NOTE_STANDARD_FIELD_IDS = { position: '20202020-368d-4dc2-943f-ed8a49c7fdfb', title: '20202020-faeb-4c76-8ba6-ccbb0b4a965f', body: '20202020-e63d-4e70-95be-a78cd9abe7ef', + createdBy: '20202020-0d79-4e21-ab77-5a394eff97be', noteTargets: '20202020-1f25-43fe-8b00-af212fdde823', attachments: '20202020-4986-4c92-bf19-39934b149b16', timelineActivities: '20202020-7030-42f8-929c-1a57b25d6bce', @@ -287,6 +289,7 @@ export const OPPORTUNITY_STANDARD_FIELD_IDS = { probabilityDeprecated: '20202020-69d4-45f3-9703-690b09fafcf0', stage: '20202020-6f76-477d-8551-28cd65b2b4b9', position: '20202020-806d-493a-bbc6-6313e62958e2', + createdBy: '20202020-a63e-4a62-8e63-42a51828f831', pointOfContact: '20202020-8dfb-42fc-92b6-01afb759ed16', company: '20202020-cbac-457e-b565-adece5fc815f', favorites: '20202020-a1c2-4500-aaae-83ba8a0e827a', @@ -307,6 +310,7 @@ export const PERSON_STANDARD_FIELD_IDS = { city: '20202020-5243-4ffb-afc5-2c675da41346', avatarUrl: '20202020-b8a6-40df-961c-373dc5d2ec21', position: '20202020-fcd5-4231-aff5-fff583eaa0b1', + createdBy: '20202020-f6ab-4d98-af24-a3d5b664148a', company: '20202020-e2f3-448e-b34c-2d625f0025fd', pointOfContactForOpportunities: '20202020-911b-4a7d-b67b-918aa9a5b33a', activityTargets: '20202020-dee7-4b7f-b50a-1f50bd3be452', @@ -325,6 +329,7 @@ export const TASK_STANDARD_FIELD_IDS = { body: '20202020-ce13-43f4-8821-69388fe1fd26', dueAt: '20202020-fd99-40da-951b-4cb9a352fce3', status: '20202020-70bc-48f9-89c5-6aa730b151e0', + createdBy: '20202020-1a04-48ab-a567-576965ae5387', taskTargets: '20202020-de9c-4d0e-a452-713d4a3e5fc7', attachments: '20202020-794d-4783-a8ff-cecdb15be139', assignee: '20202020-065a-4f42-a906-e20422c1753f', @@ -433,6 +438,7 @@ export const WORKSPACE_MEMBER_STANDARD_FIELD_IDS = { export const CUSTOM_OBJECT_STANDARD_FIELD_IDS = { name: '20202020-ba07-4ffd-ba63-009491f5749c', position: '20202020-c2bd-4e16-bb9a-c8b0411bf49d', + createdBy: '20202020-be0e-4971-865b-32ca87cbb315', activityTargets: '20202020-7f42-40ae-b96c-c8a61acc83bf', noteTargets: '20202020-01fd-4f37-99dc-9427a444018a', taskTargets: '20202020-0860-4566-b865-bff3c626c303', diff --git a/packages/twenty-server/src/modules/blocklist/query-hooks/blocklist-create-many.pre-query.hook.ts b/packages/twenty-server/src/modules/blocklist/query-hooks/blocklist-create-many.pre-query.hook.ts index b8118ec12..2022b9a6c 100644 --- a/packages/twenty-server/src/modules/blocklist/query-hooks/blocklist-create-many.pre-query.hook.ts +++ b/packages/twenty-server/src/modules/blocklist/query-hooks/blocklist-create-many.pre-query.hook.ts @@ -1,3 +1,5 @@ +import { BadRequestException } from '@nestjs/common'; + import { WorkspaceQueryHookInstance } from 'src/engine/api/graphql/workspace-query-runner/workspace-query-hook/interfaces/workspace-query-hook.interface'; import { CreateManyResolverArgs } from 'src/engine/api/graphql/workspace-resolver-builder/interfaces/workspace-resolvers-builder.interface'; @@ -6,6 +8,7 @@ import { BlocklistItem, BlocklistValidationService, } from 'src/modules/blocklist/blocklist-validation-manager/services/blocklist-validation.service'; +import { AuthContext } from 'src/engine/core-modules/auth/types/auth-context.type'; @WorkspaceQueryHook(`blocklist.createMany`) export class BlocklistCreateManyPreQueryHook @@ -16,14 +19,20 @@ export class BlocklistCreateManyPreQueryHook ) {} async execute( - userId: string, - workspaceId: string, + authContext: AuthContext, + objectName: string, payload: CreateManyResolverArgs, - ): Promise { + ): Promise> { + if (!authContext.user?.id) { + throw new BadRequestException('User id is required'); + } + await this.blocklistValidationService.validateBlocklistForCreateMany( payload, - userId, - workspaceId, + authContext.user?.id, + authContext.workspace.id, ); + + return payload; } } diff --git a/packages/twenty-server/src/modules/blocklist/query-hooks/blocklist-update-many.pre-query.hook.ts b/packages/twenty-server/src/modules/blocklist/query-hooks/blocklist-update-many.pre-query.hook.ts index 28be74cfc..a2edf7fd6 100644 --- a/packages/twenty-server/src/modules/blocklist/query-hooks/blocklist-update-many.pre-query.hook.ts +++ b/packages/twenty-server/src/modules/blocklist/query-hooks/blocklist-update-many.pre-query.hook.ts @@ -1,8 +1,10 @@ import { MethodNotAllowedException } from '@nestjs/common'; import { WorkspaceQueryHookInstance } from 'src/engine/api/graphql/workspace-query-runner/workspace-query-hook/interfaces/workspace-query-hook.interface'; +import { UpdateManyResolverArgs } from 'src/engine/api/graphql/workspace-resolver-builder/interfaces/workspace-resolvers-builder.interface'; import { WorkspaceQueryHook } from 'src/engine/api/graphql/workspace-query-runner/workspace-query-hook/decorators/workspace-query-hook.decorator'; +import { BlocklistItem } from 'src/modules/blocklist/blocklist-validation-manager/services/blocklist-validation.service'; @WorkspaceQueryHook(`blocklist.updateMany`) export class BlocklistUpdateManyPreQueryHook @@ -10,7 +12,7 @@ export class BlocklistUpdateManyPreQueryHook { constructor() {} - async execute(): Promise { + async execute(): Promise> { throw new MethodNotAllowedException('Method not allowed.'); } } diff --git a/packages/twenty-server/src/modules/blocklist/query-hooks/blocklist-update-one.pre-query.hook.ts b/packages/twenty-server/src/modules/blocklist/query-hooks/blocklist-update-one.pre-query.hook.ts index b9fdaf247..bf6f81399 100644 --- a/packages/twenty-server/src/modules/blocklist/query-hooks/blocklist-update-one.pre-query.hook.ts +++ b/packages/twenty-server/src/modules/blocklist/query-hooks/blocklist-update-one.pre-query.hook.ts @@ -1,3 +1,5 @@ +import { BadRequestException } from '@nestjs/common'; + import { WorkspaceQueryHookInstance } from 'src/engine/api/graphql/workspace-query-runner/workspace-query-hook/interfaces/workspace-query-hook.interface'; import { UpdateOneResolverArgs } from 'src/engine/api/graphql/workspace-resolver-builder/interfaces/workspace-resolvers-builder.interface'; @@ -6,6 +8,7 @@ import { BlocklistItem, BlocklistValidationService, } from 'src/modules/blocklist/blocklist-validation-manager/services/blocklist-validation.service'; +import { AuthContext } from 'src/engine/core-modules/auth/types/auth-context.type'; @WorkspaceQueryHook(`blocklist.updateOne`) export class BlocklistUpdateOnePreQueryHook @@ -16,14 +19,20 @@ export class BlocklistUpdateOnePreQueryHook ) {} async execute( - userId: string, - workspaceId: string, + authContext: AuthContext, + objectName: string, payload: UpdateOneResolverArgs, - ): Promise { + ): Promise> { + if (!authContext.user?.id) { + throw new BadRequestException('User id is required'); + } + await this.blocklistValidationService.validateBlocklistForUpdateOne( payload, - userId, - workspaceId, + authContext.user?.id, + authContext.workspace.id, ); + + return payload; } } diff --git a/packages/twenty-server/src/modules/calendar/common/query-hooks/calendar-event/calendar-event-find-many.pre-query.hook.ts b/packages/twenty-server/src/modules/calendar/common/query-hooks/calendar-event/calendar-event-find-many.pre-query.hook.ts index e1135b914..c7554f170 100644 --- a/packages/twenty-server/src/modules/calendar/common/query-hooks/calendar-event/calendar-event-find-many.pre-query.hook.ts +++ b/packages/twenty-server/src/modules/calendar/common/query-hooks/calendar-event/calendar-event-find-many.pre-query.hook.ts @@ -7,6 +7,7 @@ import { WorkspaceQueryHook } from 'src/engine/api/graphql/workspace-query-runne import { TwentyORMManager } from 'src/engine/twenty-orm/twenty-orm.manager'; import { CanAccessCalendarEventService } from 'src/modules/calendar/common/query-hooks/calendar-event/services/can-access-calendar-event.service'; import { CalendarChannelEventAssociationWorkspaceEntity } from 'src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity'; +import { AuthContext } from 'src/engine/core-modules/auth/types/auth-context.type'; @WorkspaceQueryHook({ key: `calendarEvent.findMany`, @@ -21,14 +22,18 @@ export class CalendarEventFindManyPreQueryHook ) {} async execute( - userId: string, - workspaceId: string, + authContext: AuthContext, + objectName: string, payload: FindManyResolverArgs, - ): Promise { + ): Promise { if (!payload?.filter?.id?.eq) { throw new BadRequestException('id filter is required'); } + if (!authContext.user?.id) { + throw new BadRequestException('User id is required'); + } + const calendarChannelEventAssociationRepository = await this.twentyORMManager.getRepository( 'calendarChannelEventAssociation', @@ -47,9 +52,11 @@ export class CalendarEventFindManyPreQueryHook } await this.canAccessCalendarEventService.canAccessCalendarEvent( - userId, - workspaceId, + authContext.user.id, + authContext.workspace.id, calendarChannelCalendarEventAssociations, ); + + return payload; } } diff --git a/packages/twenty-server/src/modules/calendar/common/query-hooks/calendar-event/calendar-event-find-one.pre-query-hook.ts b/packages/twenty-server/src/modules/calendar/common/query-hooks/calendar-event/calendar-event-find-one.pre-query-hook.ts index 1dd82f205..64616dd13 100644 --- a/packages/twenty-server/src/modules/calendar/common/query-hooks/calendar-event/calendar-event-find-one.pre-query-hook.ts +++ b/packages/twenty-server/src/modules/calendar/common/query-hooks/calendar-event/calendar-event-find-one.pre-query-hook.ts @@ -7,6 +7,7 @@ import { WorkspaceQueryHook } from 'src/engine/api/graphql/workspace-query-runne import { TwentyORMManager } from 'src/engine/twenty-orm/twenty-orm.manager'; import { CanAccessCalendarEventService } from 'src/modules/calendar/common/query-hooks/calendar-event/services/can-access-calendar-event.service'; import { CalendarChannelEventAssociationWorkspaceEntity } from 'src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity'; +import { AuthContext } from 'src/engine/core-modules/auth/types/auth-context.type'; @WorkspaceQueryHook({ key: `calendarEvent.findOne`, @@ -21,14 +22,18 @@ export class CalendarEventFindOnePreQueryHook ) {} async execute( - userId: string, - workspaceId: string, + authContext: AuthContext, + objectName: string, payload: FindOneResolverArgs, - ): Promise { + ): Promise { if (!payload?.filter?.id?.eq) { throw new BadRequestException('id filter is required'); } + if (!authContext.user?.id) { + throw new BadRequestException('User id is required'); + } + const calendarChannelEventAssociationRepository = await this.twentyORMManager.getRepository( 'calendarChannelEventAssociation', @@ -48,9 +53,11 @@ export class CalendarEventFindOnePreQueryHook } await this.canAccessCalendarEventService.canAccessCalendarEvent( - userId, - workspaceId, + authContext.user.id, + authContext.workspace.id, calendarChannelCalendarEventAssociations, ); + + return payload; } } 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 f31b1ef8d..9112e4984 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 @@ -2,6 +2,10 @@ import { Address } from 'nodemailer/lib/mailer'; import { Relation } from 'src/engine/workspace-manager/workspace-sync-metadata/interfaces/relation.interface'; +import { + ActorMetadata, + FieldActorSource, +} from 'src/engine/metadata-modules/field-metadata/composite-types/actor.composite-type'; import { CurrencyMetadata } from 'src/engine/metadata-modules/field-metadata/composite-types/currency.composite-type'; import { LinksMetadata } from 'src/engine/metadata-modules/field-metadata/composite-types/links.composite-type'; import { FieldMetadataType } from 'src/engine/metadata-modules/field-metadata/field-metadata.entity'; @@ -131,6 +135,19 @@ export class CompanyWorkspaceEntity extends BaseWorkspaceEntity { @WorkspaceIsNullable() position: number | null; + @WorkspaceField({ + standardId: COMPANY_STANDARD_FIELD_IDS.createdBy, + type: FieldMetadataType.ACTOR, + label: 'Created by', + icon: 'IconCreativeCommonsSa', + description: 'The creator of the record', + defaultValue: { + source: `'${FieldActorSource.MANUAL}'`, + name: "''", + }, + }) + createdBy: ActorMetadata; + // Relations @WorkspaceRelation({ standardId: COMPANY_STANDARD_FIELD_IDS.people, diff --git a/packages/twenty-server/src/modules/connected-account/query-hooks/connected-account-delete-one.pre-query.hook.ts b/packages/twenty-server/src/modules/connected-account/query-hooks/connected-account-delete-one.pre-query.hook.ts index b2d81a670..7a730431a 100644 --- a/packages/twenty-server/src/modules/connected-account/query-hooks/connected-account-delete-one.pre-query.hook.ts +++ b/packages/twenty-server/src/modules/connected-account/query-hooks/connected-account-delete-one.pre-query.hook.ts @@ -4,6 +4,7 @@ import { WorkspaceQueryHookInstance } from 'src/engine/api/graphql/workspace-que import { DeleteOneResolverArgs } from 'src/engine/api/graphql/workspace-resolver-builder/interfaces/workspace-resolvers-builder.interface'; import { WorkspaceQueryHook } from 'src/engine/api/graphql/workspace-query-runner/workspace-query-hook/decorators/workspace-query-hook.decorator'; +import { AuthContext } from 'src/engine/core-modules/auth/types/auth-context.type'; import { ObjectRecordDeleteEvent } from 'src/engine/integrations/event-emitter/types/object-record-delete.event'; import { TwentyORMManager } from 'src/engine/twenty-orm/twenty-orm.manager'; import { MessageChannelWorkspaceEntity } from 'src/modules/messaging/common/standard-objects/message-channel.workspace-entity'; @@ -18,10 +19,10 @@ export class ConnectedAccountDeleteOnePreQueryHook ) {} async execute( - _userId: string, - workspaceId: string, + authContext: AuthContext, + objectName: string, payload: DeleteOneResolverArgs, - ): Promise { + ): Promise { const connectedAccountId = payload.id; const messageChannelRepository = @@ -35,12 +36,15 @@ export class ConnectedAccountDeleteOnePreQueryHook messageChannels.forEach((messageChannel) => { this.eventEmitter.emit('messageChannel.deleted', { - workspaceId, + workspaceId: authContext.workspace.id, + name: 'messageChannel.deleted', recordId: messageChannel.id, } satisfies Pick< ObjectRecordDeleteEvent, - 'workspaceId' | 'recordId' + 'workspaceId' | 'recordId' | 'name' >); }); + + return payload; } } diff --git a/packages/twenty-server/src/modules/messaging/common/query-hooks/message/message-find-many.pre-query.hook.ts b/packages/twenty-server/src/modules/messaging/common/query-hooks/message/message-find-many.pre-query.hook.ts index 0e2f2a5d7..9feb04611 100644 --- a/packages/twenty-server/src/modules/messaging/common/query-hooks/message/message-find-many.pre-query.hook.ts +++ b/packages/twenty-server/src/modules/messaging/common/query-hooks/message/message-find-many.pre-query.hook.ts @@ -8,6 +8,7 @@ import { InjectObjectMetadataRepository } from 'src/engine/object-metadata-repos import { CanAccessMessageThreadService } from 'src/modules/messaging/common/query-hooks/message/can-access-message-thread.service'; import { MessageChannelMessageAssociationRepository } from 'src/modules/messaging/common/repositories/message-channel-message-association.repository'; import { MessageChannelMessageAssociationWorkspaceEntity } from 'src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity'; +import { AuthContext } from 'src/engine/core-modules/auth/types/auth-context.type'; @WorkspaceQueryHook(`message.findMany`) export class MessageFindManyPreQueryHook implements WorkspaceQueryHookInstance { @@ -20,18 +21,22 @@ export class MessageFindManyPreQueryHook implements WorkspaceQueryHookInstance { ) {} async execute( - userId: string, - workspaceId: string, + authContext: AuthContext, + objectName: string, payload: FindManyResolverArgs, - ): Promise { + ): Promise { if (!payload?.filter?.messageThreadId?.eq) { throw new BadRequestException('messageThreadId filter is required'); } + if (!authContext.user?.id) { + throw new BadRequestException('User id is required'); + } + const messageChannelMessageAssociations = await this.messageChannelMessageAssociationService.getByMessageThreadId( payload?.filter?.messageThreadId?.eq, - workspaceId, + authContext.workspace.id, ); if (messageChannelMessageAssociations.length === 0) { @@ -39,9 +44,11 @@ export class MessageFindManyPreQueryHook implements WorkspaceQueryHookInstance { } await this.canAccessMessageThreadService.canAccessMessageThread( - userId, - workspaceId, + authContext.user.id, + authContext.workspace.id, messageChannelMessageAssociations, ); + + return payload; } } diff --git a/packages/twenty-server/src/modules/messaging/common/query-hooks/message/message-find-one.pre-query-hook.ts b/packages/twenty-server/src/modules/messaging/common/query-hooks/message/message-find-one.pre-query-hook.ts index 713e02489..35d7fcecc 100644 --- a/packages/twenty-server/src/modules/messaging/common/query-hooks/message/message-find-one.pre-query-hook.ts +++ b/packages/twenty-server/src/modules/messaging/common/query-hooks/message/message-find-one.pre-query-hook.ts @@ -9,6 +9,7 @@ import { InjectObjectMetadataRepository } from 'src/engine/object-metadata-repos import { CanAccessMessageThreadService } from 'src/modules/messaging/common/query-hooks/message/can-access-message-thread.service'; import { MessageChannelMessageAssociationRepository } from 'src/modules/messaging/common/repositories/message-channel-message-association.repository'; import { MessageChannelMessageAssociationWorkspaceEntity } from 'src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity'; +import { AuthContext } from 'src/engine/core-modules/auth/types/auth-context.type'; @WorkspaceQueryHook(`message.findOne`) export class MessageFindOnePreQueryHook implements WorkspaceQueryHookInstance { @@ -21,14 +22,18 @@ export class MessageFindOnePreQueryHook implements WorkspaceQueryHookInstance { ) {} async execute( - userId: string, - workspaceId: string, + authContext: AuthContext, + objectName: string, payload: FindOneResolverArgs, - ): Promise { + ): Promise { + if (!authContext.user?.id) { + throw new NotFoundException('User id is required'); + } + const messageChannelMessageAssociations = await this.messageChannelMessageAssociationService.getByMessageIds( [payload?.filter?.id?.eq], - workspaceId, + authContext.workspace.id, ); if (messageChannelMessageAssociations.length === 0) { @@ -36,9 +41,11 @@ export class MessageFindOnePreQueryHook implements WorkspaceQueryHookInstance { } await this.canAccessMessageThreadService.canAccessMessageThread( - userId, - workspaceId, + authContext.user.id, + authContext.workspace.id, messageChannelMessageAssociations, ); + + return payload; } } diff --git a/packages/twenty-server/src/modules/note/standard-objects/note.workspace-entity.ts b/packages/twenty-server/src/modules/note/standard-objects/note.workspace-entity.ts index 52ccc7a6e..33e48b1c4 100644 --- a/packages/twenty-server/src/modules/note/standard-objects/note.workspace-entity.ts +++ b/packages/twenty-server/src/modules/note/standard-objects/note.workspace-entity.ts @@ -1,5 +1,9 @@ import { Relation } from 'src/engine/workspace-manager/workspace-sync-metadata/interfaces/relation.interface'; +import { + ActorMetadata, + FieldActorSource, +} from 'src/engine/metadata-modules/field-metadata/composite-types/actor.composite-type'; import { FieldMetadataType } from 'src/engine/metadata-modules/field-metadata/field-metadata.entity'; import { RelationMetadataType, @@ -57,6 +61,19 @@ export class NoteWorkspaceEntity extends BaseWorkspaceEntity { @WorkspaceIsNullable() body: string | null; + @WorkspaceField({ + standardId: NOTE_STANDARD_FIELD_IDS.createdBy, + type: FieldMetadataType.ACTOR, + label: 'Created by', + icon: 'IconCreativeCommonsSa', + description: 'The creator of the record', + defaultValue: { + source: `'${FieldActorSource.MANUAL}'`, + name: "''", + }, + }) + createdBy: ActorMetadata; + @WorkspaceRelation({ standardId: NOTE_STANDARD_FIELD_IDS.noteTargets, label: 'Targets', diff --git a/packages/twenty-server/src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts b/packages/twenty-server/src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts index 35ac579ee..548fbea14 100644 --- a/packages/twenty-server/src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts +++ b/packages/twenty-server/src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts @@ -1,5 +1,9 @@ import { Relation } from 'src/engine/workspace-manager/workspace-sync-metadata/interfaces/relation.interface'; +import { + ActorMetadata, + FieldActorSource, +} from 'src/engine/metadata-modules/field-metadata/composite-types/actor.composite-type'; import { CurrencyMetadata } from 'src/engine/metadata-modules/field-metadata/composite-types/currency.composite-type'; import { FieldMetadataType } from 'src/engine/metadata-modules/field-metadata/field-metadata.entity'; import { @@ -99,6 +103,19 @@ export class OpportunityWorkspaceEntity extends BaseWorkspaceEntity { @WorkspaceIsNullable() position: number | null; + @WorkspaceField({ + standardId: OPPORTUNITY_STANDARD_FIELD_IDS.createdBy, + type: FieldMetadataType.ACTOR, + label: 'Created by', + icon: 'IconCreativeCommonsSa', + description: 'The creator of the record', + defaultValue: { + source: `'${FieldActorSource.MANUAL}'`, + name: "''", + }, + }) + createdBy: ActorMetadata; + @WorkspaceRelation({ standardId: OPPORTUNITY_STANDARD_FIELD_IDS.pointOfContact, type: RelationMetadataType.MANY_TO_ONE, 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 d552ffbd4..891b453ac 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 @@ -1,5 +1,9 @@ import { Relation } from 'src/engine/workspace-manager/workspace-sync-metadata/interfaces/relation.interface'; +import { + ActorMetadata, + FieldActorSource, +} from 'src/engine/metadata-modules/field-metadata/composite-types/actor.composite-type'; import { FullNameMetadata } from 'src/engine/metadata-modules/field-metadata/composite-types/full-name.composite-type'; import { LinksMetadata } from 'src/engine/metadata-modules/field-metadata/composite-types/links.composite-type'; import { FieldMetadataType } from 'src/engine/metadata-modules/field-metadata/field-metadata.entity'; @@ -124,6 +128,19 @@ export class PersonWorkspaceEntity extends BaseWorkspaceEntity { @WorkspaceIsNullable() position: number | null; + @WorkspaceField({ + standardId: PERSON_STANDARD_FIELD_IDS.createdBy, + type: FieldMetadataType.ACTOR, + label: 'Created by', + icon: 'IconCreativeCommonsSa', + description: 'The creator of the record', + defaultValue: { + source: `'${FieldActorSource.MANUAL}'`, + name: "''", + }, + }) + createdBy: ActorMetadata; + // Relations @WorkspaceRelation({ standardId: PERSON_STANDARD_FIELD_IDS.company, diff --git a/packages/twenty-server/src/modules/task/standard-objects/task.workspace-entity.ts b/packages/twenty-server/src/modules/task/standard-objects/task.workspace-entity.ts index 9688f05c3..40a77ddc5 100644 --- a/packages/twenty-server/src/modules/task/standard-objects/task.workspace-entity.ts +++ b/packages/twenty-server/src/modules/task/standard-objects/task.workspace-entity.ts @@ -1,5 +1,9 @@ import { Relation } from 'src/engine/workspace-manager/workspace-sync-metadata/interfaces/relation.interface'; +import { + ActorMetadata, + FieldActorSource, +} from 'src/engine/metadata-modules/field-metadata/composite-types/actor.composite-type'; import { FieldMetadataType } from 'src/engine/metadata-modules/field-metadata/field-metadata.entity'; import { RelationMetadataType, @@ -95,6 +99,19 @@ export class TaskWorkspaceEntity extends BaseWorkspaceEntity { @WorkspaceIsNullable() status: string | null; + @WorkspaceField({ + standardId: TASK_STANDARD_FIELD_IDS.createdBy, + type: FieldMetadataType.ACTOR, + label: 'Created by', + icon: 'IconCreativeCommonsSa', + description: 'The creator of the record', + defaultValue: { + source: `'${FieldActorSource.MANUAL}'`, + name: "''", + }, + }) + createdBy: ActorMetadata; + @WorkspaceRelation({ standardId: TASK_STANDARD_FIELD_IDS.taskTargets, label: 'Targets', diff --git a/packages/twenty-server/src/modules/workspace-member/query-hooks/workspace-member-delete-many.pre-query.hook.ts b/packages/twenty-server/src/modules/workspace-member/query-hooks/workspace-member-delete-many.pre-query.hook.ts index 9effd3328..a292f50c2 100644 --- a/packages/twenty-server/src/modules/workspace-member/query-hooks/workspace-member-delete-many.pre-query.hook.ts +++ b/packages/twenty-server/src/modules/workspace-member/query-hooks/workspace-member-delete-many.pre-query.hook.ts @@ -1,6 +1,7 @@ import { MethodNotAllowedException } from '@nestjs/common'; import { WorkspaceQueryHookInstance } from 'src/engine/api/graphql/workspace-query-runner/workspace-query-hook/interfaces/workspace-query-hook.interface'; +import { DeleteManyResolverArgs } from 'src/engine/api/graphql/workspace-resolver-builder/interfaces/workspace-resolvers-builder.interface'; import { WorkspaceQueryHook } from 'src/engine/api/graphql/workspace-query-runner/workspace-query-hook/decorators/workspace-query-hook.decorator'; @@ -10,7 +11,7 @@ export class WorkspaceMemberDeleteManyPreQueryHook { constructor() {} - async execute(): Promise { + async execute(): Promise { throw new MethodNotAllowedException('Method not allowed.'); } } diff --git a/packages/twenty-server/src/modules/workspace-member/query-hooks/workspace-member-delete-one.pre-query.hook.ts b/packages/twenty-server/src/modules/workspace-member/query-hooks/workspace-member-delete-one.pre-query.hook.ts index 235da83ef..9c53c6959 100644 --- a/packages/twenty-server/src/modules/workspace-member/query-hooks/workspace-member-delete-one.pre-query.hook.ts +++ b/packages/twenty-server/src/modules/workspace-member/query-hooks/workspace-member-delete-one.pre-query.hook.ts @@ -5,6 +5,7 @@ import { WorkspaceQueryHook } from 'src/engine/api/graphql/workspace-query-runne import { TwentyORMManager } from 'src/engine/twenty-orm/twenty-orm.manager'; import { CommentWorkspaceEntity } from 'src/modules/activity/standard-objects/comment.workspace-entity'; import { AttachmentWorkspaceEntity } from 'src/modules/attachment/standard-objects/attachment.workspace-entity'; +import { AuthContext } from 'src/engine/core-modules/auth/types/auth-context.type'; @WorkspaceQueryHook(`workspaceMember.deleteOne`) export class WorkspaceMemberDeleteOnePreQueryHook @@ -14,10 +15,10 @@ export class WorkspaceMemberDeleteOnePreQueryHook // There is no need to validate the user's access to the workspace member since we don't have permission yet. async execute( - userId: string, - workspaceId: string, + authContext: AuthContext, + objectName: string, payload: DeleteOneResolverArgs, - ): Promise { + ): Promise { const attachmentRepository = await this.twentyORMManager.getRepository( 'attachment', @@ -37,5 +38,7 @@ export class WorkspaceMemberDeleteOnePreQueryHook await commentRepository.delete({ authorId, }); + + return payload; } } diff --git a/packages/twenty-ui/src/display/chip/components/AvatarChip.tsx b/packages/twenty-ui/src/display/chip/components/AvatarChip.tsx index 89c4bdabe..2c993ba65 100644 --- a/packages/twenty-ui/src/display/chip/components/AvatarChip.tsx +++ b/packages/twenty-ui/src/display/chip/components/AvatarChip.tsx @@ -1,12 +1,12 @@ -import { useTheme } from '@emotion/react'; - +import { styled } from '@linaria/react'; import { Avatar } from '@ui/display/avatar/components/Avatar'; import { AvatarType } from '@ui/display/avatar/types/AvatarType'; import { Chip, ChipVariant } from '@ui/display/chip/components/Chip'; import { IconComponent } from '@ui/display/icon/types/IconComponent'; +import { ThemeContext } from '@ui/theme'; import { isDefined } from '@ui/utilities/isDefined'; import { Nullable } from '@ui/utilities/types/Nullable'; -import { MouseEvent } from 'react'; +import { MouseEvent, useContext } from 'react'; export type AvatarChipProps = { name: string; @@ -14,6 +14,7 @@ export type AvatarChipProps = { avatarType?: Nullable; variant?: AvatarChipVariant; LeftIcon?: IconComponent; + isIconInverted?: boolean; className?: string; placeholderColorSeed?: string; onClick?: (event: MouseEvent) => void; @@ -24,17 +25,28 @@ export enum AvatarChipVariant { Transparent = 'transparent', } +const StyledInvertedIconContainer = styled.div<{ backgroundColor: string }>` + display: flex; + align-items: center; + justify-content: center; + width: 14px; + height: 14px; + border-radius: 4px; + background-color: ${({ backgroundColor }) => backgroundColor}; +`; + export const AvatarChip = ({ name, avatarUrl, avatarType = 'rounded', variant = AvatarChipVariant.Regular, LeftIcon, + isIconInverted, className, placeholderColorSeed, onClick, }: AvatarChipProps) => { - const theme = useTheme(); + const { theme } = useContext(ThemeContext); return ( + isDefined(LeftIcon) ? ( + isIconInverted === true ? ( + + + + ) : ( + + ) ) : ( theme.spacing(1)}; - height: ${({ theme }) => theme.spacing(3)}; + height: ${({ theme }) => theme.spacing(4)}; max-width: ${({ maxWidth }) => maxWidth ? `calc(${maxWidth}px - 2 * var(--chip-horizontal-padding))` diff --git a/packages/twenty-ui/src/display/icon/components/TablerIcons.ts b/packages/twenty-ui/src/display/icon/components/TablerIcons.ts index 0d404d41b..3c1942ba8 100644 --- a/packages/twenty-ui/src/display/icon/components/TablerIcons.ts +++ b/packages/twenty-ui/src/display/icon/components/TablerIcons.ts @@ -169,7 +169,9 @@ export { IconVideo, IconWand, IconWorld, - IconX + IconX, + IconCreativeCommonsSa, + IconApi, + IconCsv, } from '@tabler/icons-react'; export type { TablerIconsProps } from '@tabler/icons-react'; - diff --git a/packages/twenty-ui/vite.config.ts b/packages/twenty-ui/vite.config.ts index 46804e3be..3692ff065 100644 --- a/packages/twenty-ui/vite.config.ts +++ b/packages/twenty-ui/vite.config.ts @@ -34,6 +34,7 @@ export default defineConfig({ '**/Chip.tsx', '**/Tag.tsx', '**/Avatar.tsx', + '**/AvatarChip.tsx', ], babelOptions: { presets: ['@babel/preset-typescript', '@babel/preset-react'], diff --git a/yarn.lock b/yarn.lock index 1a4e436ca..11878418e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -18654,7 +18654,7 @@ __metadata: languageName: node linkType: hard -"@types/lodash.merge@npm:^4.6.7": +"@types/lodash.merge@npm:^4.6.7, @types/lodash.merge@npm:^4.6.9": version: 4.6.9 resolution: "@types/lodash.merge@npm:4.6.9" dependencies: @@ -49145,6 +49145,7 @@ __metadata: "@types/lodash.isempty": "npm:^4.4.7" "@types/lodash.isequal": "npm:^4.5.8" "@types/lodash.isobject": "npm:^3.0.7" + "@types/lodash.merge": "npm:^4.6.9" "@types/lodash.omit": "npm:^4.5.9" "@types/lodash.omitby": "npm:^4.6.9" "@types/lodash.snakecase": "npm:^4.1.7" @@ -49161,6 +49162,7 @@ __metadata: langchain: "npm:^0.2.6" langfuse-langchain: "npm:^3.11.2" lodash.differencewith: "npm:^4.5.0" + lodash.merge: "npm:^4.6.2" lodash.omitby: "npm:^4.6.0" lodash.uniq: "npm:^4.5.0" lodash.uniqby: "npm:^4.7.0"