import { createState } from 'twenty-ui'; import { Workspace } from '~/generated/graphql'; export type CurrentWorkspace = Pick< Workspace, | 'id' | 'inviteHash' | 'logo' | 'displayName' | 'allowImpersonation' | 'featureFlags' | 'activationStatus' | 'currentBillingSubscription' | 'workspaceMembersCount' | 'isPublicInviteLinkEnabled' | 'hasValidEntrepriseKey' | 'metadataVersion' >; export const currentWorkspaceState = createState({ key: 'currentWorkspaceState', defaultValue: null, });