{"version":3,"file":"index-BwaC7q6v.js","sources":["../../api/client.tsx","../../../../uiv2/async.tsx","../../../../uiv2/logo.tsx","../../components/dashboard.tsx","../../../../uiv2/spinner.tsx","../../../../uiv2/page.tsx","../../../../uiv2/link.tsx","../../../../uiv2/button.tsx","../../../../uiv2/badge.tsx","../../../../uiv2/table.tsx","../../../../uiv2/input.tsx","../../../../uiv2/select.tsx","../../../../uiv2/multiselect.tsx","../../../../uiv2/fieldset.tsx","../../api/graphql.tsx","../../../../uiv2/navigation.tsx","../../../../uiv2/dialog.tsx","../../../../uiv2/textarea.tsx","../../../../uiv2/file.tsx","../../api/map.tsx","../../../../uiv2/combobox.tsx","../../pages/servicing.tsx","../../pages/copilot.tsx","../../pages/home.tsx","../../pages/policies.tsx","../../../../uiv2/radio.tsx","../../../../uiv2/address.tsx","../../../../uiv2/checkbox.tsx","../../pages/accounts.tsx","../../pages/signin.tsx","../../pages/workbench.tsx","../../api/actions.tsx","../../api/loaders.tsx","../../../../uiv2/error-boundary.tsx","../../pages/landing.tsx","../../../../uiv2/slideout.tsx","../../pages/calls.tsx","../../pages/emails.tsx","../../index.tsx"],"sourcesContent":["import { createClient } from '@oysterjs/corev2/graphql/client';\nexport const client = createClient('Agency');\n","import React from 'react';\nimport { motion, HTMLMotionProps } from 'motion/react';\nimport { Navigate, Await as _Await, useAsyncValue } from 'react-router-dom';\n\nexport const Await = >({\n resolve,\n children\n}: {\n resolve?: Promise;\n children: React.ReactNode | ((data: T) => React.ReactNode);\n}) => {\n return (\n <_Await resolve={resolve}>\n {children}\n \n );\n};\n\nconst AwaitInner = >({\n children\n}: {\n children: React.ReactNode | ((data: T) => React.ReactNode);\n}) => {\n const data = useAsyncValue() as T | undefined;\n\n // Resolved data needs to handle the case where a redirect is returned\n const redirect = Object.values(data || {}).find(\n (v): v is Response => v instanceof Response && v.status === 302\n );\n\n if (redirect) {\n return ;\n }\n\n return typeof children === 'function' ? (\n {children(data!)}\n ) : (\n {children}\n );\n};\n\nexport const TransitionDiv = ({\n children,\n ...props\n}: React.PropsWithChildren>) => (\n \n {children}\n \n);\n","export const OysterLogo = ({\n scale,\n color,\n className\n}: {\n scale?: number;\n color?: string;\n className?: string;\n}): JSX.Element => (\n
\n \n \n \n \n \n \n
\n);\n\nexport const OysterWordMark = ({\n scale,\n forceLight\n}: {\n scale?: number;\n forceLight?: boolean;\n}): JSX.Element => (\n
\n \n \n \n \n \n \n \n
\n);\n\nexport const CaraWordMark = ({\n scale,\n forceLight\n}: {\n scale?: number;\n forceLight?: boolean;\n}): JSX.Element => (\n
\n \n \n \n \n \n \n \n
\n);\n","import React from 'react';\nimport { NavLink, Outlet, useLoaderData } from 'react-router-dom';\nimport { Await } from '@oysterjs/uiv2/async';\n\nimport clsx from 'clsx';\nimport {\n Dialog,\n DialogBackdrop,\n DialogPanel,\n Menu,\n MenuButton,\n TransitionChild\n} from '@headlessui/react';\nimport {\n Bars3Icon,\n BellIcon,\n XMarkIcon,\n MagnifyingGlassIcon,\n Cog6ToothIcon,\n PhoneIcon,\n DocumentTextIcon,\n RectangleStackIcon,\n TicketIcon,\n EnvelopeIcon,\n SparklesIcon,\n HomeIcon\n} from '@heroicons/react/24/outline';\nimport { CaraWordMark } from '@oysterjs/uiv2/logo';\nimport { AgencyUserFieldsFragment } from '../api/graphql';\n\nconst navigationGroups = [\n {\n pages: [{ name: 'Home', href: 'home', icon: HomeIcon }]\n },\n {\n name: 'Copilot',\n pages: [{ name: 'Workspaces', href: 'workspaces', icon: SparklesIcon }]\n },\n {\n name: 'Servicing',\n pages: [{ name: 'Service Requests', href: 'servicing', icon: TicketIcon }]\n },\n {\n name: 'Communication',\n pages: [\n { name: 'Calls', href: 'calls', icon: PhoneIcon },\n { name: 'Emails', href: 'emails', icon: EnvelopeIcon }\n ]\n },\n {\n name: 'Knowledge',\n pages: [\n { name: 'Accounts', href: 'accounts', icon: RectangleStackIcon },\n { name: 'Policies', href: 'policies', icon: DocumentTextIcon }\n ]\n }\n];\n\nexport const DashboardContainer = () => {\n const loader = useLoaderData() as { data: Promise<{ agencyUser: AgencyUserFieldsFragment }> };\n const [sidebarOpen, setSidebarOpen] = React.useState(false);\n\n return (\n }>\n \n {({ agencyUser }) => {\n return (\n <>\n \n \n\n
\n \n \n
\n setSidebarOpen(false)}\n className=\"-m-2.5 p-2.5\"\n >\n Close sidebar\n \n \n
\n
\n {/* Sidebar component, swap this element with another sidebar if you like */}\n
\n
\n \n
\n \n
\n \n
\n \n\n {/* Static sidebar for desktop */}\n
\n {/* Sidebar component, swap this element with another sidebar if you like */}\n
\n
\n \n
\n \n
\n
\n\n
\n
\n setSidebarOpen(true)}\n className=\"-m-2.5 p-2.5 text-neutral-700 lg:hidden\"\n >\n Open sidebar\n \n \n\n {/* Separator */}\n
\n\n
\n
\n \n \n \n \n
\n \n View notifications\n \n \n\n {/* Separator */}\n \n\n {/* Profile dropdown */}\n \n \n Open user menu\n\n
\n {agencyUser.name.split(' ')[0].charAt(0)}\n {agencyUser.name.split(' ')[1]?.charAt(0) || ''}\n
\n \n \n {agencyUser.name}\n \n {/* */}\n \n
\n
\n
\n
\n
\n\n
\n
\n \n
\n
\n
\n \n );\n }}\n \n \n );\n};\n\nconst DashboardContainerLoader = () => {\n const [sidebarOpen, setSidebarOpen] = React.useState(false);\n\n return (\n <>\n \n \n\n
\n \n \n
\n setSidebarOpen(false)}\n className=\"-m-2.5 p-2.5\"\n >\n Close sidebar\n \n \n
\n
\n {/* Sidebar component, swap this element with another sidebar if you like */}\n
\n
\n
\n
\n \n
\n \n
\n
\n\n {/* Static sidebar for desktop */}\n
\n {/* Sidebar component, swap this element with another sidebar if you like */}\n
\n
\n
\n
\n\n \n
\n
\n\n
\n
\n setSidebarOpen(true)}\n className=\"-m-2.5 p-2.5 text-neutral-700 lg:hidden\"\n >\n Open sidebar\n \n \n\n {/* Separator */}\n
\n\n
\n
\n
\n {/* Profile dropdown */}\n \n \n
\n \n
\n \n \n
\n
\n
\n
\n\n
\n
\n
\n
\n \n );\n};\n","import clsx from 'clsx';\n\nconst colors = {\n red: 'border-t-red-500',\n orange: 'border-t-orange-500',\n amber: 'border-t-amber-400',\n yellow: 'border-t-yellow-400',\n lime: 'border-t-lime-400',\n green: 'border-t-green-500',\n emerald: 'border-t-emerald-500',\n teal: 'border-t-teal-500',\n cyan: 'border-t-cyan-400',\n sky: 'border-t-sky-500',\n blue: 'border-t-blue-500',\n indigo: 'border-t-indigo-500',\n violet: 'border-t-violet-500',\n purple: 'border-t-purple-500',\n fuchsia: 'border-t-fuchsia-400',\n pink: 'border-t-pink-400',\n rose: 'border-t-rose-400',\n zinc: 'border-t-zinc-600',\n neutral: 'border-t-neutral-500',\n white: 'border-t-white'\n};\n\nexport const Spinner = ({\n color,\n size\n}: {\n color?: keyof typeof colors;\n size?:\n | 'size-4'\n | 'size-6'\n | 'size-8'\n | 'size-10'\n | 'size-12'\n | 'size-14'\n | 'size-16'\n | 'size-20'\n | 'size-24';\n}) => (\n
\n \n
\n);\n","import React from 'react';\n\nexport const PageTitle = (\n props: React.PropsWithChildren<{\n title: string;\n description?: string | JSX.Element;\n badge?: JSX.Element;\n }>\n) => (\n
\n

{props.title}

\n {props.badge &&
{props.badge}
}\n {props.description &&

{props.description}

}\n
{props.children}
\n
\n);\n\nexport const PageSection = (\n props: React.PropsWithChildren<{ title: string; description?: string }>\n) => (\n
\n

{props.title}

\n {props.description &&

{props.description}

}\n
{props.children}
\n
\n);\n","/**\n * TODO: Update this component to use your client-side framework's link\n * component. We've provided examples of how to do this for Next.js, Remix, and\n * Inertia.js in the Catalyst documentation:\n *\n * https://catalyst.tailwindui.com/docs#client-side-router-integration\n */\n\nimport * as Headless from '@headlessui/react';\nimport React, { forwardRef } from 'react';\nimport { Link as RouterLink } from 'react-router-dom';\n\nexport const Link = forwardRef(function Link(\n props: { href: string } & React.ComponentPropsWithoutRef<'a'>,\n ref: React.ForwardedRef\n) {\n return props.href.startsWith('/') ? (\n \n \n \n ) : (\n \n \n \n );\n});\n","import * as Headless from '@headlessui/react';\nimport clsx from 'clsx';\nimport React, { forwardRef } from 'react';\nimport { Link } from './link';\nimport { Spinner } from './spinner';\n\nconst styles = {\n base: [\n // Base\n 'relative isolate inline-flex items-center justify-center gap-x-2 rounded-lg border text-base/6 font-semibold',\n // Sizing\n 'px-[calc(theme(spacing[3.5])-1px)] py-[calc(theme(spacing[2.5])-1px)] sm:px-[calc(theme(spacing.3)-1px)] sm:py-[calc(theme(spacing[1.5])-1px)] sm:text-sm/6',\n // Focus\n 'focus:outline-none data-[focus]:outline data-[focus]:outline-2 data-[focus]:outline-offset-2 data-[focus]:outline-primary-500',\n // Disabled\n 'data-[disabled]:opacity-50',\n // Icon\n '[&>[data-slot=icon]]:-mx-0.5 [&>[data-slot=icon]]:my-0.5 [&>[data-slot=icon]]:size-5 [&>[data-slot=icon]]:shrink-0 [&>[data-slot=icon]]:text-[--btn-icon] [&>[data-slot=icon]]:sm:my-1 [&>[data-slot=icon]]:sm:size-4 forced-colors:[--btn-icon:ButtonText] forced-colors:data-[hover]:[--btn-icon:ButtonText]'\n ],\n solid: [\n // Optical border, implemented as the button background to avoid corner artifacts\n 'border-transparent bg-[--btn-border]',\n // Dark mode: border is rendered on `after` so background is set to button background\n 'dark:bg-[--btn-bg]',\n // Button background, implemented as foreground layer to stack on top of pseudo-border layer\n 'before:absolute before:inset-0 before:-z-10 before:rounded-[calc(theme(borderRadius.lg)-1px)] before:bg-[--btn-bg]',\n // Drop shadow, applied to the inset `before` layer so it blends with the border\n 'before:shadow',\n // Background color is moved to control and shadow is removed in dark mode so hide `before` pseudo\n 'dark:before:hidden',\n // Dark mode: Subtle white outline is applied using a border\n 'dark:border-white/5',\n // Shim/overlay, inset to match button foreground and used for hover state + highlight shadow\n 'after:absolute after:inset-0 after:-z-10 after:rounded-[calc(theme(borderRadius.lg)-1px)]',\n // Inner highlight shadow\n 'after:shadow-[shadow:inset_0_1px_theme(colors.white/15%)]',\n // White overlay on hover\n 'after:data-[active]:bg-[--btn-hover-overlay] after:data-[hover]:bg-[--btn-hover-overlay]',\n // Dark mode: `after` layer expands to cover entire button\n 'dark:after:-inset-px dark:after:rounded-lg',\n // Disabled\n 'before:data-[disabled]:shadow-none after:data-[disabled]:shadow-none'\n ],\n outline: [\n // Base\n 'border-neutral-950/10 text-neutral-950 data-[active]:bg-neutral-950/[2.5%] data-[hover]:bg-neutral-950/[2.5%]',\n // Dark mode\n 'dark:border-white/15 dark:text-white dark:[--btn-bg:transparent] dark:data-[active]:bg-white/5 dark:data-[hover]:bg-white/5',\n // Icon\n '[--btn-icon:theme(colors.neutral.500)] data-[active]:[--btn-icon:theme(colors.neutral.700)] data-[hover]:[--btn-icon:theme(colors.neutral.700)] dark:data-[active]:[--btn-icon:theme(colors.neutral.400)] dark:data-[hover]:[--btn-icon:theme(colors.neutral.400)]'\n ],\n plain: [\n // Base\n 'border-transparent text-neutral-950 data-[active]:bg-neutral-950/5 data-[hover]:bg-neutral-950/5',\n // Dark mode\n 'dark:text-white dark:data-[active]:bg-white/10 dark:data-[hover]:bg-white/10',\n // Icon\n '[--btn-icon:theme(colors.neutral.500)] data-[active]:[--btn-icon:theme(colors.neutral.700)] data-[hover]:[--btn-icon:theme(colors.neutral.700)] dark:[--btn-icon:theme(colors.neutral.500)] dark:data-[active]:[--btn-icon:theme(colors.neutral.400)] dark:data-[hover]:[--btn-icon:theme(colors.neutral.400)]'\n ],\n colors: {\n 'dark/neutral': [\n 'text-white [--btn-bg:theme(colors.neutral.900)] [--btn-border:theme(colors.neutral.950/90%)] [--btn-hover-overlay:theme(colors.white/10%)]',\n 'dark:text-white dark:[--btn-bg:theme(colors.neutral.600)] dark:[--btn-hover-overlay:theme(colors.white/5%)]',\n '[--btn-icon:theme(colors.neutral.400)] data-[active]:[--btn-icon:theme(colors.neutral.300)] data-[hover]:[--btn-icon:theme(colors.neutral.300)]'\n ],\n light: [\n 'text-neutral-950 [--btn-bg:white] [--btn-border:theme(colors.neutral.950/10%)] [--btn-hover-overlay:theme(colors.neutral.950/2.5%)] data-[active]:[--btn-border:theme(colors.neutral.950/15%)] data-[hover]:[--btn-border:theme(colors.neutral.950/15%)]',\n 'dark:text-white dark:[--btn-hover-overlay:theme(colors.white/5%)] dark:[--btn-bg:theme(colors.neutral.800)]',\n '[--btn-icon:theme(colors.neutral.500)] data-[active]:[--btn-icon:theme(colors.neutral.700)] data-[hover]:[--btn-icon:theme(colors.neutral.700)] dark:[--btn-icon:theme(colors.neutral.500)] dark:data-[active]:[--btn-icon:theme(colors.neutral.400)] dark:data-[hover]:[--btn-icon:theme(colors.neutral.400)]'\n ],\n 'dark/white': [\n 'text-white [--btn-bg:theme(colors.neutral.900)] [--btn-border:theme(colors.neutral.950/90%)] [--btn-hover-overlay:theme(colors.white/10%)]',\n 'dark:text-neutral-950 dark:[--btn-bg:white] dark:[--btn-hover-overlay:theme(colors.neutral.950/5%)]',\n '[--btn-icon:theme(colors.neutral.400)] data-[active]:[--btn-icon:theme(colors.neutral.300)] data-[hover]:[--btn-icon:theme(colors.neutral.300)] dark:[--btn-icon:theme(colors.neutral.500)] dark:data-[active]:[--btn-icon:theme(colors.neutral.400)] dark:data-[hover]:[--btn-icon:theme(colors.neutral.400)]'\n ],\n dark: [\n 'text-white [--btn-bg:theme(colors.neutral.900)] [--btn-border:theme(colors.neutral.950/90%)] [--btn-hover-overlay:theme(colors.white/10%)]',\n 'dark:[--btn-hover-overlay:theme(colors.white/5%)] dark:[--btn-bg:theme(colors.neutral.800)]',\n '[--btn-icon:theme(colors.neutral.400)] data-[active]:[--btn-icon:theme(colors.neutral.300)] data-[hover]:[--btn-icon:theme(colors.neutral.300)]'\n ],\n white: [\n 'text-neutral-950 [--btn-bg:white] [--btn-border:theme(colors.neutral.950/10%)] [--btn-hover-overlay:theme(colors.neutral.950/2.5%)] data-[active]:[--btn-border:theme(colors.neutral.950/15%)] data-[hover]:[--btn-border:theme(colors.neutral.950/15%)]',\n 'dark:[--btn-hover-overlay:theme(colors.neutral.950/5%)]',\n '[--btn-icon:theme(colors.neutral.400)] data-[active]:[--btn-icon:theme(colors.neutral.500)] data-[hover]:[--btn-icon:theme(colors.neutral.500)]'\n ],\n neutral: [\n 'text-white [--btn-hover-overlay:theme(colors.white/10%)] [--btn-bg:theme(colors.neutral.600)] [--btn-border:theme(colors.neutral.700/90%)]',\n 'dark:[--btn-hover-overlay:theme(colors.white/5%)]',\n '[--btn-icon:theme(colors.neutral.400)] data-[active]:[--btn-icon:theme(colors.neutral.300)] data-[hover]:[--btn-icon:theme(colors.neutral.300)]'\n ],\n indigo: [\n 'text-white [--btn-hover-overlay:theme(colors.white/10%)] [--btn-bg:theme(colors.indigo.500)] [--btn-border:theme(colors.indigo.600/90%)]',\n '[--btn-icon:theme(colors.indigo.300)] data-[active]:[--btn-icon:theme(colors.indigo.200)] data-[hover]:[--btn-icon:theme(colors.indigo.200)]'\n ],\n cyan: [\n 'text-cyan-950 [--btn-bg:theme(colors.cyan.300)] [--btn-border:theme(colors.cyan.400/80%)] [--btn-hover-overlay:theme(colors.white/25%)]',\n '[--btn-icon:theme(colors.cyan.500)]'\n ],\n red: [\n 'text-white [--btn-hover-overlay:theme(colors.white/10%)] [--btn-bg:theme(colors.red.600)] [--btn-border:theme(colors.red.700/90%)]',\n '[--btn-icon:theme(colors.red.300)] data-[active]:[--btn-icon:theme(colors.red.200)] data-[hover]:[--btn-icon:theme(colors.red.200)]'\n ],\n orange: [\n 'text-white [--btn-hover-overlay:theme(colors.white/10%)] [--btn-bg:theme(colors.orange.500)] [--btn-border:theme(colors.orange.600/90%)]',\n '[--btn-icon:theme(colors.orange.300)] data-[active]:[--btn-icon:theme(colors.orange.200)] data-[hover]:[--btn-icon:theme(colors.orange.200)]'\n ],\n amber: [\n 'text-amber-950 [--btn-hover-overlay:theme(colors.white/25%)] [--btn-bg:theme(colors.amber.400)] [--btn-border:theme(colors.amber.500/80%)]',\n '[--btn-icon:theme(colors.amber.600)]'\n ],\n yellow: [\n 'text-yellow-950 [--btn-hover-overlay:theme(colors.white/25%)] [--btn-bg:theme(colors.yellow.300)] [--btn-border:theme(colors.yellow.400/80%)]',\n '[--btn-icon:theme(colors.yellow.600)] data-[active]:[--btn-icon:theme(colors.yellow.700)] data-[hover]:[--btn-icon:theme(colors.yellow.700)]'\n ],\n lime: [\n 'text-lime-950 [--btn-hover-overlay:theme(colors.white/25%)] [--btn-bg:theme(colors.lime.300)] [--btn-border:theme(colors.lime.400/80%)]',\n '[--btn-icon:theme(colors.lime.600)] data-[active]:[--btn-icon:theme(colors.lime.700)] data-[hover]:[--btn-icon:theme(colors.lime.700)]'\n ],\n green: [\n 'text-white [--btn-hover-overlay:theme(colors.white/10%)] [--btn-bg:theme(colors.green.600)] [--btn-border:theme(colors.green.700/90%)]',\n '[--btn-icon:theme(colors.white/60%)] data-[active]:[--btn-icon:theme(colors.white/80%)] data-[hover]:[--btn-icon:theme(colors.white/80%)]'\n ],\n emerald: [\n 'text-white [--btn-hover-overlay:theme(colors.white/10%)] [--btn-bg:theme(colors.emerald.600)] [--btn-border:theme(colors.emerald.700/90%)]',\n '[--btn-icon:theme(colors.white/60%)] data-[active]:[--btn-icon:theme(colors.white/80%)] data-[hover]:[--btn-icon:theme(colors.white/80%)]'\n ],\n teal: [\n 'text-white [--btn-hover-overlay:theme(colors.white/10%)] [--btn-bg:theme(colors.teal.600)] [--btn-border:theme(colors.teal.700/90%)]',\n '[--btn-icon:theme(colors.white/60%)] data-[active]:[--btn-icon:theme(colors.white/80%)] data-[hover]:[--btn-icon:theme(colors.white/80%)]'\n ],\n sky: [\n 'text-white [--btn-hover-overlay:theme(colors.white/10%)] [--btn-bg:theme(colors.sky.500)] [--btn-border:theme(colors.sky.600/80%)]',\n '[--btn-icon:theme(colors.white/60%)] data-[active]:[--btn-icon:theme(colors.white/80%)] data-[hover]:[--btn-icon:theme(colors.white/80%)]'\n ],\n blue: [\n 'text-white [--btn-hover-overlay:theme(colors.white/10%)] [--btn-bg:theme(colors.blue.600)] [--btn-border:theme(colors.blue.700/90%)]',\n '[--btn-icon:theme(colors.blue.400)] data-[active]:[--btn-icon:theme(colors.blue.300)] data-[hover]:[--btn-icon:theme(colors.blue.300)]'\n ],\n violet: [\n 'text-white [--btn-hover-overlay:theme(colors.white/10%)] [--btn-bg:theme(colors.violet.500)] [--btn-border:theme(colors.violet.600/90%)]',\n '[--btn-icon:theme(colors.violet.300)] data-[active]:[--btn-icon:theme(colors.violet.200)] data-[hover]:[--btn-icon:theme(colors.violet.200)]'\n ],\n purple: [\n 'text-white [--btn-hover-overlay:theme(colors.white/10%)] [--btn-bg:theme(colors.purple.500)] [--btn-border:theme(colors.purple.600/90%)]',\n '[--btn-icon:theme(colors.purple.300)] data-[active]:[--btn-icon:theme(colors.purple.200)] data-[hover]:[--btn-icon:theme(colors.purple.200)]'\n ],\n fuchsia: [\n 'text-white [--btn-hover-overlay:theme(colors.white/10%)] [--btn-bg:theme(colors.fuchsia.500)] [--btn-border:theme(colors.fuchsia.600/90%)]',\n '[--btn-icon:theme(colors.fuchsia.300)] data-[active]:[--btn-icon:theme(colors.fuchsia.200)] data-[hover]:[--btn-icon:theme(colors.fuchsia.200)]'\n ],\n pink: [\n 'text-white [--btn-hover-overlay:theme(colors.white/10%)] [--btn-bg:theme(colors.pink.500)] [--btn-border:theme(colors.pink.600/90%)]',\n '[--btn-icon:theme(colors.pink.300)] data-[active]:[--btn-icon:theme(colors.pink.200)] data-[hover]:[--btn-icon:theme(colors.pink.200)]'\n ],\n rose: [\n 'text-white [--btn-hover-overlay:theme(colors.white/10%)] [--btn-bg:theme(colors.rose.500)] [--btn-border:theme(colors.rose.600/90%)]',\n '[--btn-icon:theme(colors.rose.300)] data-[active]:[--btn-icon:theme(colors.rose.200)] data-[hover]:[--btn-icon:theme(colors.rose.200)]'\n ]\n }\n};\n\ntype ButtonProps = (\n | { color?: keyof typeof styles.colors; outline?: never; plain?: never }\n | { color?: never; outline: true; plain?: never }\n | { color?: never; outline?: never; plain: true }\n) & { loading?: boolean; className?: string; children: React.ReactNode } & (\n | Omit\n | Omit, 'className'>\n );\n\nexport const Button = forwardRef(function Button(\n { color, outline, plain, className, loading, children, ...props }: ButtonProps,\n ref: React.ForwardedRef\n) {\n const classes = clsx(\n className,\n styles.base,\n outline\n ? styles.outline\n : plain\n ? styles.plain\n : clsx(styles.solid, styles.colors[color ?? 'dark/neutral'])\n );\n\n return 'href' in props ? (\n }>\n {children}\n \n ) : (\n \n {children}\n \n );\n});\n\n/**\n * Expand the hit area to at least 44×44px on touch devices\n */\nexport function TouchTarget({ children }: { children: React.ReactNode }) {\n return (\n <>\n \n {children}\n \n );\n}\n\nexport const PrimaryButton = forwardRef(function Button(\n {\n loading,\n className,\n children,\n ...props\n }: React.PropsWithChildren<\n { loading?: boolean; className?: string } & (\n | Omit\n | Omit, 'className'>\n )\n >,\n ref: React.ForwardedRef\n) {\n const classes = clsx(\n 'w-full bg-primary-500 text-white shadow-sm hover:bg-primary-50 hover:text-primary-700 hover:outline hover:outline-primary-700 cursor-pointer',\n 'font-heading transition-all',\n 'mt-6 block rounded-md px-3 py-3 text-center text-sm font-semibold leading-6 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary-500',\n 'data-[disabled]:opacity-75 data-[disabled]:cursor-not-allowed data-[disabled]:hover:bg-primary-500 data-[disabled]:hover:text-white data-[disabled]:hover:outline-none data-[disabled]:focus-visible:outline-none',\n 'flex items-center justify-center',\n className\n );\n\n return 'href' in props ? (\n }>\n {children}\n \n ) : (\n \n \n {!loading && children}\n {loading && }\n \n \n );\n});\n","import * as Headless from '@headlessui/react';\nimport clsx from 'clsx';\nimport React, { forwardRef } from 'react';\nimport { TouchTarget } from './button';\nimport { Link } from './link';\n\nconst colors = {\n red: 'bg-red-500/15 text-red-700 group-data-[hover]:bg-red-500/25 dark:bg-red-500/10 dark:text-red-400 dark:group-data-[hover]:bg-red-500/20',\n orange:\n 'bg-orange-500/15 text-orange-700 group-data-[hover]:bg-orange-500/25 dark:bg-orange-500/10 dark:text-orange-400 dark:group-data-[hover]:bg-orange-500/20',\n amber:\n 'bg-amber-400/20 text-amber-700 group-data-[hover]:bg-amber-400/30 dark:bg-amber-400/10 dark:text-amber-400 dark:group-data-[hover]:bg-amber-400/15',\n yellow:\n 'bg-yellow-400/20 text-yellow-700 group-data-[hover]:bg-yellow-400/30 dark:bg-yellow-400/10 dark:text-yellow-300 dark:group-data-[hover]:bg-yellow-400/15',\n lime: 'bg-lime-400/20 text-lime-700 group-data-[hover]:bg-lime-400/30 dark:bg-lime-400/10 dark:text-lime-300 dark:group-data-[hover]:bg-lime-400/15',\n green:\n 'bg-green-500/15 text-green-700 group-data-[hover]:bg-green-500/25 dark:bg-green-500/10 dark:text-green-400 dark:group-data-[hover]:bg-green-500/20',\n emerald:\n 'bg-emerald-500/15 text-emerald-700 group-data-[hover]:bg-emerald-500/25 dark:bg-emerald-500/10 dark:text-emerald-400 dark:group-data-[hover]:bg-emerald-500/20',\n teal: 'bg-teal-500/15 text-teal-700 group-data-[hover]:bg-teal-500/25 dark:bg-teal-500/10 dark:text-teal-300 dark:group-data-[hover]:bg-teal-500/20',\n cyan: 'bg-cyan-400/20 text-cyan-700 group-data-[hover]:bg-cyan-400/30 dark:bg-cyan-400/10 dark:text-cyan-300 dark:group-data-[hover]:bg-cyan-400/15',\n sky: 'bg-sky-500/15 text-sky-700 group-data-[hover]:bg-sky-500/25 dark:bg-sky-500/10 dark:text-sky-300 dark:group-data-[hover]:bg-sky-500/20',\n blue: 'bg-blue-500/15 text-blue-700 group-data-[hover]:bg-blue-500/25 dark:text-blue-400 dark:group-data-[hover]:bg-blue-500/25',\n indigo:\n 'bg-indigo-500/15 text-indigo-700 group-data-[hover]:bg-indigo-500/25 dark:text-indigo-400 dark:group-data-[hover]:bg-indigo-500/20',\n violet:\n 'bg-violet-500/15 text-violet-700 group-data-[hover]:bg-violet-500/25 dark:text-violet-400 dark:group-data-[hover]:bg-violet-500/20',\n purple:\n 'bg-purple-500/15 text-purple-700 group-data-[hover]:bg-purple-500/25 dark:text-purple-400 dark:group-data-[hover]:bg-purple-500/20',\n fuchsia:\n 'bg-fuchsia-400/15 text-fuchsia-700 group-data-[hover]:bg-fuchsia-400/25 dark:bg-fuchsia-400/10 dark:text-fuchsia-400 dark:group-data-[hover]:bg-fuchsia-400/20',\n pink: 'bg-pink-400/15 text-pink-700 group-data-[hover]:bg-pink-400/25 dark:bg-pink-400/10 dark:text-pink-400 dark:group-data-[hover]:bg-pink-400/20',\n rose: 'bg-rose-400/15 text-rose-700 group-data-[hover]:bg-rose-400/25 dark:bg-rose-400/10 dark:text-rose-400 dark:group-data-[hover]:bg-rose-400/20',\n zinc: 'bg-zinc-600/10 text-zinc-700 group-data-[hover]:bg-zinc-600/20 dark:bg-white/5 dark:text-zinc-400 dark:group-data-[hover]:bg-white/10',\n neutral:\n 'bg-neutral-100 text-neutral-700 group-data-[hover]:bg-neutral-200 dark:bg-neutral-900 dark:text-neutral-400 dark:group-data-[hover]:bg-neutral-800'\n};\n\ntype BadgeProps = { color?: keyof typeof colors; hoverColor?: keyof typeof colors };\n\nexport function Badge({\n color = 'zinc',\n className,\n ...props\n}: BadgeProps & React.ComponentPropsWithoutRef<'span'>) {\n return (\n \n );\n}\n\nexport const BadgeButton = forwardRef(function BadgeButton(\n {\n color = 'zinc',\n className,\n children,\n ...props\n }: BadgeProps & { className?: string; children: React.ReactNode } & (\n | Omit\n | Omit, 'className'>\n ),\n ref: React.ForwardedRef\n) {\n const classes = clsx(\n className,\n 'group relative inline-flex rounded-md focus:outline-none data-[focus]:outline data-[focus]:outline-2 data-[focus]:outline-offset-2 data-[focus]:outline-blue-500'\n );\n\n return 'href' in props ? (\n }>\n \n {children}\n \n \n ) : (\n \n \n {children}\n \n \n );\n});\n","'use client';\n\nimport clsx from 'clsx';\nimport React from 'react';\nimport { createContext, useContext, useState } from 'react';\nimport { Link } from './link';\n\nconst TableContext = createContext<{\n bleed: boolean;\n dense: boolean;\n grid: boolean;\n striped: boolean;\n}>({\n bleed: false,\n dense: false,\n grid: false,\n striped: false\n});\n\nexport function Table({\n bleed = false,\n dense = false,\n grid = false,\n striped = false,\n className,\n children,\n ...props\n}: {\n bleed?: boolean;\n dense?: boolean;\n grid?: boolean;\n striped?: boolean;\n} & React.ComponentPropsWithoutRef<'div'>) {\n return (\n }\n >\n
\n \n \n \n {children}\n
\n
\n
\n
\n \n );\n}\n\nexport function TableHead({ className, ...props }: React.ComponentPropsWithoutRef<'thead'>) {\n return ;\n}\n\nexport function TableBody(props: React.ComponentPropsWithoutRef<'tbody'>) {\n return ;\n}\n\nconst TableRowContext = createContext<{ href?: string; target?: string; title?: string }>({\n href: undefined,\n target: undefined,\n title: undefined\n});\n\nexport function TableRow({\n href,\n target,\n title,\n className,\n ...props\n}: { href?: string; target?: string; title?: string } & React.ComponentPropsWithoutRef<'tr'>) {\n const { striped } = useContext(TableContext);\n\n return (\n }\n >\n \n \n );\n}\n\nexport function TableHeader({ className, ...props }: React.ComponentPropsWithoutRef<'th'>) {\n const { bleed, grid } = useContext(TableContext);\n\n return (\n \n );\n}\n\nexport function TableCell({ className, children, ...props }: React.ComponentPropsWithoutRef<'td'>) {\n const { bleed, dense, grid, striped } = useContext(TableContext);\n const { href, target, title } = useContext(TableRowContext);\n const [cellRef, setCellRef] = useState(null);\n\n return (\n \n {href && (\n \n )}\n {children}\n \n );\n}\n","import * as Headless from '@headlessui/react';\nimport clsx from 'clsx';\nimport React, { forwardRef, useState } from 'react';\n\nexport function InputGroup({ children }: React.ComponentPropsWithoutRef<'span'>) {\n return (\n [data-slot=icon]]:pointer-events-none [&>[data-slot=icon]]:absolute [&>[data-slot=icon]]:top-3 [&>[data-slot=icon]]:z-10 [&>[data-slot=icon]]:size-5 sm:[&>[data-slot=icon]]:top-2.5 sm:[&>[data-slot=icon]]:size-4',\n '[&>[data-slot=icon]:first-child]:left-3 sm:[&>[data-slot=icon]:first-child]:left-2.5 [&>[data-slot=icon]:last-child]:right-3 sm:[&>[data-slot=icon]:last-child]:right-2.5',\n '[&>[data-slot=icon]]:text-neutral-500 dark:[&>[data-slot=icon]]:text-neutral-400'\n )}\n >\n {children}\n \n );\n}\n\nconst dateTypes = ['date', 'datetime-local', 'month', 'time', 'week'];\ntype DateType = (typeof dateTypes)[number];\n\nexport const Input = forwardRef(function Input(\n {\n className,\n ...props\n }: {\n className?: string;\n type?: 'email' | 'number' | 'password' | 'search' | 'tel' | 'text' | 'url' | DateType;\n } & Omit,\n ref: React.ForwardedRef\n) {\n return (\n \n \n \n );\n});\n\nexport const CurrencyInput = forwardRef(function CurrenctInput(\n {\n className,\n onChange,\n ...props\n }: {\n className?: string;\n onChange?: (val: number) => void;\n } & Omit,\n ref: React.ForwardedRef\n) {\n const [value, setValue] = useState();\n const [displayValue, setDisplayValue] = useState(props.value?.toString() || '');\n\n const formatter = new Intl.NumberFormat('en-US', {\n style: 'currency',\n currency: 'USD',\n minimumFractionDigits: 2,\n maximumFractionDigits: 2\n });\n\n const parsedValue = parseFloat(props.value?.toString() || '');\n\n React.useEffect(() => {\n const value = parseFloat(props.value?.toString() || '');\n if (!isNaN(value)) {\n // Set the actual numeric value\n setValue(value);\n\n // Set the display value\n setDisplayValue(formatter.format(value));\n }\n }, [props.value]);\n\n return (\n \n {\n setDisplayValue(e.currentTarget.value);\n setValue(parseFloat(e.currentTarget.value.replace(/[^0-9.]/g, '')));\n }}\n onBlur={() => {\n if (value !== undefined && !isNaN(value)) {\n setDisplayValue(formatter.format(value));\n onChange?.(value);\n } else {\n if (!isNaN(parsedValue)) {\n setDisplayValue(formatter.format(parsedValue));\n }\n onChange?.(NaN);\n }\n }}\n className={clsx([\n // Basic layout\n 'relative block w-full appearance-none rounded-lg px-[calc(theme(spacing[3.5])-1px)] py-[calc(theme(spacing[2.5])-1px)] sm:px-[calc(theme(spacing[3])-1px)] sm:py-[calc(theme(spacing[1.5])-1px)]',\n // Typography\n 'text-base/6 text-neutral-950 placeholder:text-neutral-400 sm:text-sm/6 dark:text-white',\n // Border\n 'border border-neutral-950/10 data-[hover]:border-neutral-950/20 dark:border-white/10 dark:data-[hover]:border-white/20',\n // Background color\n 'bg-transparent dark:bg-white/5',\n // Hide default focus styles\n 'focus:outline-none focus:ring-0',\n // Invalid state\n 'data-[invalid]:border-red-500 data-[invalid]:data-[hover]:border-red-500 data-[invalid]:dark:border-red-500 data-[invalid]:data-[hover]:dark:border-red-500',\n // Disabled state\n 'data-[disabled]:border-neutral-950/20 dark:data-[hover]:data-[disabled]:border-white/15 data-[disabled]:dark:border-white/15 data-[disabled]:dark:bg-white/[2.5%]',\n // System icons\n 'dark:[color-scheme:dark]'\n ])}\n />\n \n );\n});\n\nexport const PercentageInput = forwardRef(function PercentageInput(\n {\n className,\n onChange,\n ...props\n }: {\n className?: string;\n onChange?: (val: number) => void;\n } & Omit,\n ref: React.ForwardedRef\n) {\n const [value, setValue] = useState();\n const [displayValue, setDisplayValue] = useState(props.value?.toString() || '');\n\n const formatter = new Intl.NumberFormat('en-US', {\n style: 'percent',\n minimumFractionDigits: 0,\n maximumFractionDigits: 2\n });\n\n const parsedValue = parseFloat(props.value?.toString() || '');\n\n React.useEffect(() => {\n const value = parseFloat(props.value?.toString() || '');\n if (!isNaN(value)) {\n // Set the actual numeric value\n setValue(value);\n\n // Set the display value\n setDisplayValue(formatter.format(value));\n }\n }, [props.value]);\n\n return (\n \n {\n setDisplayValue(e.currentTarget.value);\n\n // Percentages are a special case. If the value ends with %, not only do we have to remove it,\n // we also need to divide the value by 100 to get the actual numeric value.\n setValue(parseFloat(e.currentTarget.value.replace(/[^0-9.]/g, '')) / 100);\n }}\n onBlur={() => {\n if (value !== undefined && !isNaN(value)) {\n setDisplayValue(formatter.format(value));\n onChange?.(value);\n } else {\n if (!isNaN(parsedValue)) {\n setDisplayValue(formatter.format(parsedValue));\n }\n onChange?.(NaN);\n }\n }}\n className={clsx([\n // Basic layout\n 'relative block w-full appearance-none rounded-lg px-[calc(theme(spacing[3.5])-1px)] py-[calc(theme(spacing[2.5])-1px)] sm:px-[calc(theme(spacing[3])-1px)] sm:py-[calc(theme(spacing[1.5])-1px)]',\n // Typography\n 'text-base/6 text-neutral-950 placeholder:text-neutral-400 sm:text-sm/6 dark:text-white',\n // Border\n 'border border-neutral-950/10 data-[hover]:border-neutral-950/20 dark:border-white/10 dark:data-[hover]:border-white/20',\n // Background color\n 'bg-transparent dark:bg-white/5',\n // Hide default focus styles\n 'focus:outline-none focus:ring-0',\n // Invalid state\n 'data-[invalid]:border-red-500 data-[invalid]:data-[hover]:border-red-500 data-[invalid]:dark:border-red-500 data-[invalid]:data-[hover]:dark:border-red-500',\n // Disabled state\n 'data-[disabled]:border-neutral-950/20 dark:data-[hover]:data-[disabled]:border-white/15 data-[disabled]:dark:border-white/15 data-[disabled]:dark:bg-white/[2.5%]',\n // System icons\n 'dark:[color-scheme:dark]'\n ])}\n />\n \n );\n});\n","import * as Headless from '@headlessui/react';\nimport clsx from 'clsx';\nimport React, { forwardRef } from 'react';\n\nexport const Select = forwardRef(function Select(\n {\n className,\n multiple,\n ...props\n }: { className?: string } & Omit,\n ref: React.ForwardedRef\n) {\n return (\n \n \n {/* {!multiple && (\n \n \n \n \n \n \n )} */}\n \n );\n});\n","'use client';\n\nimport * as Headless from '@headlessui/react';\nimport clsx from 'clsx';\nimport React, { Fragment } from 'react';\n\nexport function MultiListbox({\n className,\n placeholder,\n autoFocus,\n 'aria-label': ariaLabel,\n children: options,\n ...props\n}: {\n className?: string;\n placeholder?: React.ReactNode;\n autoFocus?: boolean;\n 'aria-label'?: string;\n children?: React.ReactNode;\n} & Omit, 'multiple'>) {\n return (\n \n \n {placeholder}\n }\n className={clsx([\n // Basic layout\n 'relative inline-flex gap-2 w-full appearance-none rounded-lg py-[calc(theme(spacing[2.5])-1px)] sm:py-[calc(theme(spacing[1.5])-1px)]',\n // Set minimum height for when no value is selected\n 'min-h-11 sm:min-h-9',\n // Horizontal padding\n 'pl-[calc(theme(spacing[3.5])-1px)] pr-[calc(theme(spacing.7)-1px)] sm:pl-[calc(theme(spacing.3)-1px)]',\n // Typography\n 'text-left text-base/6 text-neutral-950 placeholder:text-neutral-400 sm:text-sm/6 dark:text-white forced-colors:text-[CanvasText]',\n // Border\n 'border border-neutral-950/10 group-data-[active]:border-neutral-950/20 group-data-[hover]:border-neutral-950/20 dark:border-white/10 dark:group-data-[active]:border-white/20 dark:group-data-[hover]:border-white/20',\n // Background color\n 'bg-transparent dark:bg-white/5',\n // Invalid state\n 'group-data-[invalid]:border-red-500 group-data-[invalid]:group-data-[hover]:border-red-500 group-data-[invalid]:dark:border-red-600 group-data-[invalid]:data-[hover]:dark:border-red-600',\n // Disabled state\n 'group-data-[disabled]:border-neutral-950/20 group-data-[disabled]:opacity-100 group-data-[disabled]:dark:border-white/15 group-data-[disabled]:dark:bg-white/[2.5%] dark:data-[hover]:group-data-[disabled]:border-white/15'\n ])}\n />\n \n \n \n \n \n \n \n \n {options}\n \n \n );\n}\n\nexport function MultiListboxOption({\n children,\n className,\n ...props\n}: { className?: string; children?: React.ReactNode } & Omit<\n Headless.ListboxOptionProps<'div', T>,\n 'className'\n>) {\n const sharedClasses = clsx(\n // Base\n 'flex min-w-0 items-center',\n // Icons\n '[&>[data-slot=icon]]:size-5 [&>[data-slot=icon]]:shrink-0 sm:[&>[data-slot=icon]]:size-4',\n '[&>[data-slot=icon]]:text-neutral-500 [&>[data-slot=icon]]:group-data-[focus]/option:text-white [&>[data-slot=icon]]:dark:text-neutral-400',\n 'forced-colors:[&>[data-slot=icon]]:text-[CanvasText] forced-colors:[&>[data-slot=icon]]:group-data-[focus]/option:text-[Canvas]',\n // Avatars\n '[&>[data-slot=avatar]]:-mx-0.5 [&>[data-slot=avatar]]:size-6 sm:[&>[data-slot=avatar]]:size-5'\n );\n\n return (\n \n {({ selectedOption }) => {\n if (selectedOption) {\n return (\n \n {children}\n
\n );\n }\n\n return (\n \n
\n );\n }}\n \n );\n}\n\nexport function MultiListboxLabel({ className, ...props }: React.ComponentPropsWithoutRef<'span'>) {\n return (\n \n );\n}\n\nexport function MultiListboxDescription({\n className,\n children,\n ...props\n}: React.ComponentPropsWithoutRef<'span'>) {\n return (\n \n {children}\n \n );\n}\n","import * as Headless from '@headlessui/react';\nimport { twMerge } from 'tailwind-merge';\nimport clsx from 'clsx';\nimport React from 'react';\n\nexport function Fieldset({\n className,\n ...props\n}: { className?: string } & Omit) {\n return (\n *+[data-slot=control]]:mt-6 [&>[data-slot=text]]:mt-1')}\n />\n );\n}\n\nexport function Legend({\n className,\n ...props\n}: { className?: string } & Omit) {\n return (\n \n );\n}\n\nexport function FieldGroup({ className, ...props }: React.ComponentPropsWithoutRef<'div'>) {\n return
;\n}\n\nexport function Field({\n className,\n ...props\n}: { className?: string } & Omit) {\n return (\n [data-slot=label]+[data-slot=control]]:mt-2',\n '[&>[data-slot=label]+[data-slot=description]]:mt-1',\n '[&>[data-slot=description]+[data-slot=control]]:mt-2',\n '[&>[data-slot=control]+[data-slot=description]]:mt-2',\n '[&>[data-slot=control]+[data-slot=error]]:mt-2',\n '[&>[data-slot=label]]:font-medium'\n )}\n />\n );\n}\n\nexport function Label({\n className,\n ...props\n}: { className?: string } & Omit) {\n return (\n \n );\n}\n\nexport function Description({\n className,\n ...props\n}: { className?: string } & Omit) {\n return (\n \n );\n}\n\nexport function ErrorMessage({\n className,\n ...props\n}: { className?: string } & Omit) {\n return (\n \n );\n}\n","import { gql } from '@apollo/client';\nimport * as Apollo from '@apollo/client';\nexport type Maybe = T | null | undefined;\nexport type InputMaybe = T | null | undefined;\nexport type Exact = { [K in keyof T]: T[K] };\nexport type MakeOptional = Omit & { [SubKey in K]?: Maybe };\nexport type MakeMaybe = Omit & { [SubKey in K]: Maybe };\nexport type MakeEmpty = {\n [_ in K]?: never;\n};\nexport type Incremental =\n | T\n | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };\nconst defaultOptions = {} as const;\n/** All built-in and custom scalars, mapped to their actual values */\nexport type Scalars = {\n ID: { input: string; output: string };\n String: { input: string; output: string };\n Boolean: { input: boolean; output: boolean };\n Int: { input: number; output: number };\n Float: { input: number; output: number };\n /** Int64 represents a 64-bit integer */\n Int64: { input: number; output: number };\n /** Time represents a timestamp */\n Time: { input: Date; output: Date };\n /** Upload represents a file upload request */\n Upload: { input: globalThis.File; output: globalThis.File };\n};\n\nexport enum AchPaymentStatus {\n Canceled = 'CANCELED',\n Failed = 'FAILED',\n Pending = 'PENDING',\n Sent = 'SENT'\n}\n\n/**\n * An account represents a customer of an agency. They represent either an individual or a business.\n * An agency can have a contact with multiple accounts.\n */\nexport type Account = {\n __typename?: 'Account';\n /** Businesses owned or operated by this account. */\n account: AccountDetails;\n /** The agency that manages this account. */\n agency: Agency;\n /** Insurance applications submitted by this account. */\n businessApplications: Array;\n /** Active insurance policies held by this account. */\n businessPolicies: Array;\n /** Certificates of liability insurance held by this account. */\n certificatesOfLiabilityInsurance: Array;\n /** Contacts associated with this account. */\n contacts: Array;\n /** When the account record was created. */\n createdAt: Scalars['Time']['output'];\n /** Files associated with this account. */\n files: Array;\n /** Unique identifier for the account. */\n id: Scalars['ID']['output'];\n /** Service requests submitted by this account. */\n serviceRequests: Array;\n /** The type of account - either a business or individual account. */\n type: AccountType;\n /** When the account record was last updated. */\n updatedAt: Scalars['Time']['output'];\n};\n\nexport type AccountContact = {\n __typename?: 'AccountContact';\n /** Accounts associated with this contact */\n accounts: Array;\n /** When the contact record was created. */\n createdAt: Scalars['Time']['output'];\n /** The contact's email address */\n email: Scalars['String']['output'];\n /** Unique identifier for the contact */\n id: Scalars['ID']['output'];\n /** The contact's name */\n name: Scalars['String']['output'];\n /** The contact's phone number */\n phone: Scalars['String']['output'];\n /** When the contact record was last updated. */\n updatedAt: Scalars['Time']['output'];\n};\n\n/** Interface defining the common fields required for both business and individual accounts */\nexport type AccountDetails = {\n /** Primary email address for contacting the account holder */\n email: Scalars['String']['output'];\n /** Mailing address for the account holder */\n mailingAddress: Address;\n /** The full name of the account holder - either legal business name or individual's name */\n name: Scalars['String']['output'];\n /** Primary phone number for contacting the account holder */\n phone: Scalars['String']['output'];\n};\n\n/** The type of account - either a business or individual account. */\nexport enum AccountType {\n /** Account represents a business entity */\n Business = 'BUSINESS',\n /** Account represents an individual person */\n Individual = 'INDIVIDUAL'\n}\n\n/** Account user represents an authenticated user of an account */\nexport type AccountUser = {\n __typename?: 'AccountUser';\n /** The account this user is associated with */\n accounts: Array;\n /** When the account user was created */\n createdAt: Scalars['Time']['output'];\n /** Email of the account user */\n email: Scalars['String']['output'];\n /** Unique identifier for the account user */\n id: Scalars['ID']['output'];\n /** Name of the account user */\n name: Scalars['String']['output'];\n /** When the account user was last updated */\n updatedAt: Scalars['Time']['output'];\n};\n\n/** Response from the account user sign in mutation */\nexport type AccountUserSignInResponse = {\n __typename?: 'AccountUserSignInResponse';\n /** The account user that was signed in */\n accountUser: AccountUser;\n};\n\n/**\n * Configuration for a business's auto liability policy's Certificate of Insurance (COI).\n * Contains details about auto coverage types, limits, and policy information.\n */\nexport type Acord25AutoLiabilitySection = {\n __typename?: 'Acord25AutoLiabilitySection';\n /** Whether additional insured coverage is included */\n additionalInsured: Scalars['Boolean']['output'];\n /** Whether coverage applies to any auto */\n anyAutoLiability: Scalars['Boolean']['output'];\n /** NAIC code of the carrier */\n carrierNaic: Scalars['String']['output'];\n /** Name of the carrier */\n carrierName: Scalars['String']['output'];\n /** Whether coverage applies only to hired autos */\n hiredAutosLiability: Scalars['Boolean']['output'];\n /** Coverage limit for bodily injury per accident */\n limitBodilyInjuryPerAccident: Scalars['Float']['output'];\n /** Coverage limit for bodily injury per person */\n limitBodilyInjuryPerPerson: Scalars['Float']['output'];\n /** Coverage limit for each accident */\n limitCombinedSingleLimitPerAccident: Scalars['Float']['output'];\n /** Amount of any other coverage limit */\n limitOtherAmount: Scalars['Float']['output'];\n /** Name of any other coverage limit */\n limitOtherName: Scalars['String']['output'];\n /** Coverage limit for property damage per accident */\n limitPropertyDamagePerAccident: Scalars['Float']['output'];\n /** Whether coverage applies only to non-owned autos */\n nonOwnedAutosLiability: Scalars['Boolean']['output'];\n /** Whether coverage applies only to owned autos */\n ownedAutosLiability: Scalars['Boolean']['output'];\n /** Date the policy becomes effective */\n policyEffectiveDate: Scalars['String']['output'];\n /** Date the policy expires */\n policyExpirationDate: Scalars['String']['output'];\n /** Policy number for the auto liability coverage */\n policyNumber: Scalars['String']['output'];\n /** Whether coverage applies only to scheduled autos */\n scheduledAutosLiability: Scalars['Boolean']['output'];\n /** Whether subrogation is waived */\n subrogationWaiver: Scalars['Boolean']['output'];\n};\n\n/** Configuration for a business's Certificate of Insurance (COI) */\nexport type Acord25Data = {\n __typename?: 'Acord25Data';\n /** Configuration for the agency that produced the COI */\n agency: AcordAgencyInfo;\n /** Configuration for the business's auto liability policy's Certificate of Insurance (COI) */\n autoLiability: Acord25AutoLiabilitySection;\n date: Scalars['String']['output'];\n /** Description of the business's operations, used for generating COIs */\n descriptionOfOperations: Scalars['String']['output'];\n /** The holder entity information that appears on COIs issued by this business */\n holder: CertificateEntity;\n /** The insured entity information that appears on COIs issued by this business */\n insured: CertificateEntity;\n /** Configuration for the business's liability policy's Certificate of Insurance (COI) */\n liability: Acord25LiabilitySection;\n /** Configuration for the business's other policy's Certificate of Insurance (COI) */\n other: Acord25OtherSection;\n /** Configuration for the business's umbrella or excess liability policy's Certificate of Insurance (COI) */\n umbrellaOrExcessLiability: Acord25UmbrellaOrExcessLiabilitySection;\n /** Configuration for the business's workers' compensation policy's Certificate of Insurance (COI) */\n workersCompensation: Acord25WorkersCompensationSection;\n};\n\n/**\n * Configuration for a business's liability policy's Certificate of Insurance (COI).\n * Contains details about coverage types, limits, and policy information.\n */\nexport type Acord25LiabilitySection = {\n __typename?: 'Acord25LiabilitySection';\n /** Whether additional insured coverage is included */\n additionalInsured: Scalars['Boolean']['output'];\n /** NAIC code of the carrier */\n carrierNaic: Scalars['String']['output'];\n /** Name of the carrier */\n carrierName: Scalars['String']['output'];\n /** Whether this coverage is claims made */\n isClaimsMade: Scalars['Boolean']['output'];\n /** Whether this coverage is occurrence based */\n isOccurrenceBased: Scalars['Boolean']['output'];\n /** Whether the general aggregate limit applies per location */\n limitAppliesPerLocation: Scalars['Boolean']['output'];\n /** Description of other general aggregate limit application if type is OTHER */\n limitAppliesPerOther: Scalars['String']['output'];\n /** How the general aggregate limit applies - per policy, project, location or other */\n limitAppliesPerPolicy: Scalars['Boolean']['output'];\n /** Whether the general aggregate limit applies per project */\n limitAppliesPerProject: Scalars['Boolean']['output'];\n /** Coverage limit for damage to rented premises per occurrence */\n limitDamageToPremisesEachOccurrence: Scalars['Float']['output'];\n /** Coverage limit for each occurrence */\n limitEachOccurrence: Scalars['Float']['output'];\n /** General aggregate coverage limit */\n limitGeneralAggregate: Scalars['Float']['output'];\n /** Coverage limit for medical expenses per person */\n limitMedicalExpensePerOccurrence: Scalars['Float']['output'];\n /** Coverage limit for medical expenses per person */\n limitMedicalExpensePerPerson: Scalars['Float']['output'];\n /** Amount of any other coverage limit */\n limitOtherAmount: Scalars['Float']['output'];\n /** Name of any other coverage limit */\n limitOtherName: Scalars['String']['output'];\n /** Coverage limit for personal and advertising injury */\n limitPersonalAndAdvertisingInjury: Scalars['Float']['output'];\n /** Coverage limit for products and completed operations */\n limitProductsAndCompletedOperations: Scalars['Float']['output'];\n /** Date the policy becomes effective */\n policyEffectiveDate: Scalars['String']['output'];\n /** Date the policy expires */\n policyExpirationDate: Scalars['String']['output'];\n /** Policy number for the liability coverage */\n policyNumber: Scalars['String']['output'];\n /** Whether subrogation is waived */\n subrogationWaiver: Scalars['Boolean']['output'];\n};\n\n/**\n * Configuration for any other type of policy's Certificate of Insurance (COI).\n * Contains details about the coverage type, limits, and policy information.\n */\nexport type Acord25OtherSection = {\n __typename?: 'Acord25OtherSection';\n /** Whether additional insured coverage is included */\n additionalInsured: Scalars['Boolean']['output'];\n /** NAIC code of the carrier */\n carrierNaic: Scalars['String']['output'];\n /** Name of the carrier */\n carrierName: Scalars['String']['output'];\n /** Description of the type of coverage */\n coverageType: Scalars['String']['output'];\n /** Amount of the first coverage limit */\n limitAmount1: Scalars['Float']['output'];\n /** Amount of the second coverage limit */\n limitAmount2: Scalars['Float']['output'];\n /** Name of the first coverage limit */\n limitName1: Scalars['String']['output'];\n /** Name of the second coverage limit */\n limitName2: Scalars['String']['output'];\n /** Date the policy becomes effective */\n policyEffectiveDate: Scalars['String']['output'];\n /** Date the policy expires */\n policyExpirationDate: Scalars['String']['output'];\n /** Policy number for the coverage */\n policyNumber: Scalars['String']['output'];\n /** Whether subrogation is waived */\n subrogationWaiver: Scalars['Boolean']['output'];\n};\n\n/**\n * Configuration for a business's umbrella or excess liability policy's Certificate of Insurance (COI).\n * Contains details about umbrella/excess coverage, limits, and policy information.\n */\nexport type Acord25UmbrellaOrExcessLiabilitySection = {\n __typename?: 'Acord25UmbrellaOrExcessLiabilitySection';\n /** Whether additional insured coverage is included */\n additionalInsured: Scalars['Boolean']['output'];\n /** NAIC code of the carrier */\n carrierNaic: Scalars['String']['output'];\n /** Name of the carrier */\n carrierName: Scalars['String']['output'];\n /** Deductible amount for the coverage */\n deductible: Scalars['Float']['output'];\n /** Whether this is excess liability coverage */\n excessLiability: Scalars['Boolean']['output'];\n /** Whether this coverage is claims made */\n isClaimsMade: Scalars['Boolean']['output'];\n /** Whether this coverage is occurrence based */\n isOccurrenceBased: Scalars['Boolean']['output'];\n /** Coverage limit for each occurrence */\n limitEachOccurrence: Scalars['Float']['output'];\n /** General aggregate coverage limit */\n limitGeneralAggregate: Scalars['Float']['output'];\n /** Amount of any other coverage limit */\n limitOtherAmount: Scalars['Float']['output'];\n /** Name of any other coverage limit */\n limitOtherName: Scalars['String']['output'];\n /** Date the policy becomes effective */\n policyEffectiveDate: Scalars['String']['output'];\n /** Date the policy expires */\n policyExpirationDate: Scalars['String']['output'];\n /** Policy number for the umbrella/excess coverage */\n policyNumber: Scalars['String']['output'];\n /** Retention limit for the coverage */\n retentionLimit: Scalars['Float']['output'];\n /** Whether subrogation is waived */\n subrogationWaiver: Scalars['Boolean']['output'];\n /** Whether this is umbrella liability coverage */\n umbrellaLiability: Scalars['Boolean']['output'];\n};\n\n/**\n * Configuration for a business's workers' compensation policy's Certificate of Insurance (COI).\n * Contains details about workers' comp coverage, limits, and policy information.\n */\nexport type Acord25WorkersCompensationSection = {\n __typename?: 'Acord25WorkersCompensationSection';\n /** NAIC code of the carrier */\n carrierNaic: Scalars['String']['output'];\n /** Name of the carrier */\n carrierName: Scalars['String']['output'];\n /** Name of any party excluded from coverage */\n excludedPartyName: Scalars['String']['output'];\n /** Coverage limit per accident */\n limitPerAccident: Scalars['Float']['output'];\n /** Coverage limit per employee */\n limitPerEmployee: Scalars['Float']['output'];\n /** Coverage limit per policy */\n limitPerPolicy: Scalars['Float']['output'];\n /** Whether the coverage limits are provided per statute */\n limitsStatutory: Scalars['Boolean']['output'];\n /** Date the policy becomes effective */\n policyEffectiveDate: Scalars['String']['output'];\n /** Date the policy expires */\n policyExpirationDate: Scalars['String']['output'];\n /** Policy number for the workers' compensation coverage */\n policyNumber: Scalars['String']['output'];\n /** Whether subrogation is waived */\n subrogationWaiver: Scalars['Boolean']['output'];\n};\n\nexport type Acord125Applicant = {\n __typename?: 'Acord125Applicant';\n address: Address;\n dba: Scalars['String']['output'];\n feinOrSsn: Scalars['String']['output'];\n glCode: Scalars['String']['output'];\n legalEntityType: BusinessLegalEntityType;\n naicsCode: Scalars['String']['output'];\n name: Scalars['String']['output'];\n phone: Scalars['String']['output'];\n sicCode: Scalars['String']['output'];\n website: Scalars['String']['output'];\n};\n\nexport type Acord125Contact = {\n __typename?: 'Acord125Contact';\n email: Scalars['String']['output'];\n name: Scalars['String']['output'];\n phone: Scalars['String']['output'];\n role: Scalars['String']['output'];\n};\n\n/** ACORD 125 is the general application form for commercial insurance. */\nexport type Acord125Data = {\n __typename?: 'Acord125Data';\n agency: AcordAgencyInfo;\n applicant1: Acord125Applicant;\n applicant2: Acord125Applicant;\n applicant3: Acord125Applicant;\n carrier: AcordCarrierInfo;\n contact1: Acord125Contact;\n contact2: Acord125Contact;\n /** The date of the application in MM/DD/YYYY format. */\n date: Scalars['String']['output'];\n generalApplication: Acord125GeneralApplication;\n linesOfBusiness: Acord125LinesOfBusiness;\n location1: Acord125Location;\n location2: Acord125Location;\n location3: Acord125Location;\n location4: Acord125Location;\n lossHistory: Acord125LossHistory;\n natureOfBusiness: Acord125NatureOfBusiness;\n policyInfo: Acord125PolicyInformation;\n priorCarrierInfo: Acord125PriorCarrierInformation;\n remarksOrProcessingInstructions: Scalars['String']['output'];\n};\n\nexport type Acord125GeneralApplication = {\n __typename?: 'Acord125GeneralApplication';\n applicantHasSubsidiaries: Scalars['Boolean']['output'];\n codeViolations1: Acord125GeneralApplicationOccurrenceInfo;\n codeViolations2: Acord125GeneralApplicationOccurrenceInfo;\n coverageDeclinedNonPayment: Scalars['Boolean']['output'];\n coverageDeclinedNonRenewal: Scalars['Boolean']['output'];\n coverageDeclinedNotWritingCarrier: Scalars['Boolean']['output'];\n coverageDeclinedUnderwriting: Scalars['Boolean']['output'];\n dronesHiring: Scalars['String']['output'];\n dronesUse: Scalars['String']['output'];\n exposureToFlammablesExplosives: Scalars['String']['output'];\n foreclosureRepoBankruptcy1: Acord125GeneralApplicationOccurrenceInfo;\n foreclosureRepoBankruptcy2: Acord125GeneralApplicationOccurrenceInfo;\n foreignOperationsProducts: Scalars['Boolean']['output'];\n hasOtherSafetyProgram: Scalars['Boolean']['output'];\n hasSafetyManual: Scalars['Boolean']['output'];\n hasSafetyMonthlyMeetings: Scalars['Boolean']['output'];\n hasSafetyOSHA: Scalars['Boolean']['output'];\n hasSafetyPosition: Scalars['Boolean']['output'];\n indictmentsConvictions: Scalars['String']['output'];\n isApplicantSubsidiary: Scalars['Boolean']['output'];\n judgmentLien1: Acord125GeneralApplicationOccurrenceInfo;\n judgmentLien2: Acord125GeneralApplicationOccurrenceInfo;\n otherBusinessVentures: Scalars['String']['output'];\n otherEntityName: Scalars['String']['output'];\n otherEntityRelationship: Scalars['String']['output'];\n otherSafetyProgramDescription: Scalars['String']['output'];\n pastLossesHiringMisconduct: Scalars['String']['output'];\n percentOwnedByOtherEntity: Scalars['Float']['output'];\n percentOwnershipInSubsidiary: Scalars['Float']['output'];\n subsidiaryNames: Scalars['String']['output'];\n subsidiaryRelationship: Scalars['String']['output'];\n trustName: Scalars['String']['output'];\n};\n\nexport type Acord125GeneralApplicationOccurrenceInfo = {\n __typename?: 'Acord125GeneralApplicationOccurrenceInfo';\n explanation: Scalars['String']['output'];\n occurrenceDate: Scalars['String']['output'];\n resolution: Scalars['String']['output'];\n resolutionDate: Scalars['String']['output'];\n};\n\nexport type Acord125LinesOfBusiness = {\n __typename?: 'Acord125LinesOfBusiness';\n boilerAndMachinery: Scalars['Boolean']['output'];\n businessAuto: Scalars['Boolean']['output'];\n businessOwners: Scalars['Boolean']['output'];\n commercialGeneralLiability: Scalars['Boolean']['output'];\n commercialInlandMarine: Scalars['Boolean']['output'];\n commercialProperty: Scalars['Boolean']['output'];\n crime: Scalars['Boolean']['output'];\n cyberAndPrivacy: Scalars['Boolean']['output'];\n fiduciaryLiability: Scalars['Boolean']['output'];\n garageAndDealers: Scalars['Boolean']['output'];\n liquorLiability: Scalars['Boolean']['output'];\n motorCarrier: Scalars['Boolean']['output'];\n other1: Scalars['String']['output'];\n other2: Scalars['String']['output'];\n other3: Scalars['String']['output'];\n other4: Scalars['String']['output'];\n other5: Scalars['String']['output'];\n truckers: Scalars['Boolean']['output'];\n umbrella: Scalars['Boolean']['output'];\n yacht: Scalars['Boolean']['output'];\n};\n\nexport type Acord125Location = {\n __typename?: 'Acord125Location';\n address: Address;\n annualRevenue: Scalars['Float']['output'];\n areaLeasedToOthers: Scalars['Float']['output'];\n descriptionOfOperations: Scalars['String']['output'];\n isOwner: Scalars['Boolean']['output'];\n numFullTime: Scalars['Int']['output'];\n numPartTime: Scalars['Int']['output'];\n occupiedArea: Scalars['Float']['output'];\n openToPublicArea: Scalars['Float']['output'];\n totalBuildingArea: Scalars['Float']['output'];\n};\n\nexport type Acord125Loss = {\n __typename?: 'Acord125Loss';\n amountPaid: Scalars['Float']['output'];\n amountReserved: Scalars['Float']['output'];\n dateOfClaim: Scalars['String']['output'];\n dateOfOccurrence: Scalars['String']['output'];\n description: Scalars['String']['output'];\n isClaimOpen: Scalars['Boolean']['output'];\n isSubrogation: Scalars['Boolean']['output'];\n lineOfBusiness: Scalars['String']['output'];\n};\n\nexport type Acord125LossHistory = {\n __typename?: 'Acord125LossHistory';\n loss1: Acord125Loss;\n loss2: Acord125Loss;\n loss3: Acord125Loss;\n timeFrame: Scalars['Int']['output'];\n};\n\nexport type Acord125NatureOfBusiness = {\n __typename?: 'Acord125NatureOfBusiness';\n dateBusinessStarted: Scalars['String']['output'];\n descriptionOfOperations: Scalars['String']['output'];\n isApartments: Scalars['Boolean']['output'];\n isCondominiums: Scalars['Boolean']['output'];\n isContractor: Scalars['Boolean']['output'];\n isInstitutional: Scalars['Boolean']['output'];\n isManufacturing: Scalars['Boolean']['output'];\n isOffice: Scalars['Boolean']['output'];\n isRestaurant: Scalars['Boolean']['output'];\n isRetail: Scalars['Boolean']['output'];\n isService: Scalars['Boolean']['output'];\n isWholesale: Scalars['Boolean']['output'];\n other: Scalars['String']['output'];\n retailOrServicePercentOfSales: Scalars['Float']['output'];\n};\n\nexport type Acord125PolicyInformation = {\n __typename?: 'Acord125PolicyInformation';\n effectiveDate: Scalars['String']['output'];\n expirationDate: Scalars['String']['output'];\n};\n\nexport type Acord125PriorCarrier = {\n __typename?: 'Acord125PriorCarrier';\n autoCarrier: Scalars['String']['output'];\n autoEffectiveDate: Scalars['String']['output'];\n autoExpirationDate: Scalars['String']['output'];\n autoPolicyNumber: Scalars['String']['output'];\n autoPremium: Scalars['Float']['output'];\n cpCarrier: Scalars['String']['output'];\n cpEffectiveDate: Scalars['String']['output'];\n cpExpirationDate: Scalars['String']['output'];\n cpPolicyNumber: Scalars['String']['output'];\n cpPremium: Scalars['Float']['output'];\n glCarrier: Scalars['String']['output'];\n glEffectiveDate: Scalars['String']['output'];\n glExpirationDate: Scalars['String']['output'];\n glPolicyNumber: Scalars['String']['output'];\n glPremium: Scalars['Float']['output'];\n otherCarrier: Scalars['String']['output'];\n otherEffectiveDate: Scalars['String']['output'];\n otherExpirationDate: Scalars['String']['output'];\n otherPolicyNumber: Scalars['String']['output'];\n otherPremium: Scalars['Float']['output'];\n year: Scalars['String']['output'];\n};\n\nexport type Acord125PriorCarrierInformation = {\n __typename?: 'Acord125PriorCarrierInformation';\n carrier1: Acord125PriorCarrier;\n carrier2: Acord125PriorCarrier;\n carrier3: Acord125PriorCarrier;\n};\n\nexport type Acord126ClaimsMade = {\n __typename?: 'Acord126ClaimsMade';\n anyPriorExclusions: Scalars['String']['output'];\n priorPolicyRetroactiveDate: Scalars['String']['output'];\n proposedRetroactiveDate: Scalars['String']['output'];\n tailCoveragePurchased: Scalars['String']['output'];\n};\n\nexport type Acord126ContractorsInfo = {\n __typename?: 'Acord126ContractorsInfo';\n drawsPlansForOthers: Scalars['String']['output'];\n leasesEquipment: Scalars['String']['output'];\n subcontractorsCarryLowerLimits: Scalars['String']['output'];\n subcontractorsWorkWithoutProofOfInsurance: Scalars['String']['output'];\n undergroundWork: Scalars['String']['output'];\n usesExplosiveMaterials: Scalars['String']['output'];\n};\n\nexport type Acord126CoverageInfo = {\n __typename?: 'Acord126CoverageInfo';\n bodilyInjuryDeductible: Scalars['Boolean']['output'];\n bodilyInjuryDeductibleAmount: Scalars['Float']['output'];\n deductiblePerClaim: Scalars['Boolean']['output'];\n deductiblePerOccurrence: Scalars['Boolean']['output'];\n generalLiability: Scalars['Boolean']['output'];\n generalLiabilityClaimsMade: Scalars['Boolean']['output'];\n generalLiabilityOccurrence: Scalars['Boolean']['output'];\n limitAppliesPerLocation: Scalars['Boolean']['output'];\n limitAppliesPerOther: Scalars['String']['output'];\n limitAppliesPerPolicy: Scalars['Boolean']['output'];\n limitAppliesPerProject: Scalars['Boolean']['output'];\n limitDamageToPremisesEachOccurrence: Scalars['Float']['output'];\n limitEmployeeBenefits: Scalars['Float']['output'];\n limitGeneralAggregate: Scalars['Float']['output'];\n limitMedicalExpensePerPerson: Scalars['Float']['output'];\n limitOtherAmount: Scalars['Float']['output'];\n limitOtherName: Scalars['String']['output'];\n limitPerOccurrence: Scalars['Float']['output'];\n limitPersonalAndAdvertisingInjury: Scalars['Float']['output'];\n limitProductsAndCompletedOperations: Scalars['Float']['output'];\n otherDeductibleAmount: Scalars['Float']['output'];\n otherDeductibleDescription: Scalars['String']['output'];\n otherLiabilityCoverage: Scalars['Boolean']['output'];\n otherLiabilityCoverageDescription: Scalars['String']['output'];\n ownersAndContractorsProtective: Scalars['Boolean']['output'];\n propertyDamageDeductible: Scalars['Boolean']['output'];\n propertyDamageDeductibleAmount: Scalars['Float']['output'];\n};\n\nexport type Acord126Data = {\n __typename?: 'Acord126Data';\n /** Configuration for the agency that produced the document */\n agency: AcordAgencyInfo;\n claimsMade: Acord126ClaimsMade;\n contractors: Acord126ContractorsInfo;\n coverage: Acord126CoverageInfo;\n date: Scalars['String']['output'];\n employeeBenefitsLiability: Acord126EmployeeBenefitsLiability;\n general: Acord126GeneralInfo;\n hazards: Acord126Hazards;\n namedInsured: Scalars['String']['output'];\n pco: Acord126ProductsAndCompletedOperationsInfo;\n};\n\nexport type Acord126EmployeeBenefitsLiability = {\n __typename?: 'Acord126EmployeeBenefitsLiability';\n employeeCount: Scalars['Int']['output'];\n employeesCoveredCount: Scalars['Int']['output'];\n perClaimDeductibleAmount: Scalars['Float']['output'];\n retroactiveDate: Scalars['String']['output'];\n};\n\nexport type Acord126GeneralInfo = {\n __typename?: 'Acord126GeneralInfo';\n anyOperationsRegardingHazardousMaterials: Scalars['String']['output'];\n crimesOnPremises: Scalars['String']['output'];\n dayCareFacilities: Scalars['String']['output'];\n demolition: Scalars['String']['output'];\n exposureToRadioactiveMaterials: Scalars['String']['output'];\n formalSafetyPolicy: Scalars['String']['output'];\n hasSwimmingPool: Scalars['Boolean']['output'];\n jointVentures: Scalars['String']['output'];\n laborInterchange: Scalars['String']['output'];\n leaseEmployeesFrom1: Acord126LeaseEmployees;\n leaseEmployeesFrom2: Acord126LeaseEmployees;\n leaseEmployeesTo1: Acord126LeaseEmployees;\n leaseEmployeesTo2: Acord126LeaseEmployees;\n lodgingOperations: Scalars['String']['output'];\n lodgingOperationsApartmentArea: Scalars['Float']['output'];\n lodgingOperationsApartmentCount: Scalars['Int']['output'];\n medicalFacilitiesProvidedOrEmployeesEmployed: Scalars['String']['output'];\n operationsSoldAcquiredDiscontinued: Scalars['String']['output'];\n parkingFacilities: Scalars['String']['output'];\n parkingFees: Scalars['String']['output'];\n publicizesSafetyPolicy: Scalars['String']['output'];\n recreationFacilities: Scalars['String']['output'];\n rentOrLoanEquipment1: Acord126RentOrLoanEquipment;\n rentOrLoanEquipment2: Acord126RentOrLoanEquipment;\n sponsoredAthleticTeam1: Acord126SponsoredAthleticTeam;\n sponsoredAthleticTeam2: Acord126SponsoredAthleticTeam;\n sponsorsSocialEvents: Scalars['String']['output'];\n structuralAlterations: Scalars['String']['output'];\n swimmingPoolAboveGround: Scalars['Boolean']['output'];\n swimmingPoolApprovedFence: Scalars['Boolean']['output'];\n swimmingPoolDivingBoard: Scalars['Boolean']['output'];\n swimmingPoolInGround: Scalars['Boolean']['output'];\n swimmingPoolLifeGuard: Scalars['Boolean']['output'];\n swimmingPoolLimitedAccess: Scalars['Boolean']['output'];\n swimmingPoolSlide: Scalars['Boolean']['output'];\n watercraftHiredOrOwned: Scalars['String']['output'];\n};\n\nexport type Acord126Hazard = {\n __typename?: 'Acord126Hazard';\n address: Address;\n classificationDescription: Scalars['String']['output'];\n glCode: Scalars['String']['output'];\n glExposure: Scalars['Float']['output'];\n glPremiumBasisCode: Scalars['String']['output'];\n};\n\nexport type Acord126Hazards = {\n __typename?: 'Acord126Hazards';\n hazard1: Acord126Hazard;\n hazard2: Acord126Hazard;\n hazard3: Acord126Hazard;\n};\n\nexport type Acord126LeaseEmployees = {\n __typename?: 'Acord126LeaseEmployees';\n hasWorkersCompensation: Scalars['Boolean']['output'];\n name: Scalars['String']['output'];\n};\n\nexport type Acord126Product = {\n __typename?: 'Acord126Product';\n description: Scalars['String']['output'];\n expectedLife: Scalars['Int']['output'];\n grossSales: Scalars['Float']['output'];\n grossUnits: Scalars['Int']['output'];\n intendedUse: Scalars['String']['output'];\n principalComponents: Scalars['String']['output'];\n timeInMarket: Scalars['Int']['output'];\n};\n\nexport type Acord126Products = {\n __typename?: 'Acord126Products';\n product1: Acord126Product;\n product2: Acord126Product;\n product3: Acord126Product;\n};\n\nexport type Acord126ProductsAndCompletedOperationsInfo = {\n __typename?: 'Acord126ProductsAndCompletedOperationsInfo';\n aircraftSpaceIndustry: Scalars['String']['output'];\n anyNamedInsuredSellsToAnotherNamedInsured: Scalars['String']['output'];\n holdHarmlessAgreements: Scalars['String']['output'];\n installationServicingOrDemo: Scalars['String']['output'];\n newProductsPlanned: Scalars['String']['output'];\n products: Acord126Products;\n recalledOrDiscontinuedProducts: Scalars['String']['output'];\n soldOthersUnderOwnLabel: Scalars['String']['output'];\n soldUnderOtherLabels: Scalars['String']['output'];\n vendorsCoverageRequired: Scalars['String']['output'];\n};\n\nexport type Acord126RentOrLoanEquipment = {\n __typename?: 'Acord126RentOrLoanEquipment';\n description: Scalars['String']['output'];\n instructionsGiven: Scalars['Boolean']['output'];\n isLargeEquipment: Scalars['Boolean']['output'];\n isSmallTools: Scalars['Boolean']['output'];\n};\n\nexport type Acord126SponsoredAthleticTeam = {\n __typename?: 'Acord126SponsoredAthleticTeam';\n ageGroup12AndUnder: Scalars['Boolean']['output'];\n ageGroup13To18: Scalars['Boolean']['output'];\n ageGroup19AndOver: Scalars['Boolean']['output'];\n extentOfSponsorship: Scalars['String']['output'];\n isContactSport: Scalars['Boolean']['output'];\n sportDescription: Scalars['String']['output'];\n};\n\nexport type Acord140BlanketInfo = {\n __typename?: 'Acord140BlanketInfo';\n amount: Scalars['Float']['output'];\n type: Scalars['String']['output'];\n};\n\nexport type Acord140Data = {\n __typename?: 'Acord140Data';\n /** Configuration for the agency that produced the document */\n agency: AcordAgencyInfo;\n blanket1: Acord140BlanketInfo;\n blanket2: Acord140BlanketInfo;\n blanket3: Acord140BlanketInfo;\n blanket4: Acord140BlanketInfo;\n date: Scalars['String']['output'];\n namedInsured: Scalars['String']['output'];\n premise1: Acord140PremiseInfo;\n premise2: Acord140PremiseInfo;\n};\n\nexport type Acord140PremiseAlarmsInfo = {\n __typename?: 'Acord140PremiseAlarmsInfo';\n burglarAlarmCompany: Scalars['String']['output'];\n burglarAlarmDescription: Scalars['String']['output'];\n burglarCentralAlarm: Scalars['Boolean']['output'];\n burglarCentralAlarmCompanyHasKeys: Scalars['Boolean']['output'];\n burglarLocalGong: Scalars['Boolean']['output'];\n fireCentralAlarm: Scalars['Boolean']['output'];\n fireLocalGong: Scalars['Boolean']['output'];\n guardCount: Scalars['Int']['output'];\n sprinklerPercentage: Scalars['Float']['output'];\n sprinklerSystemDescription: Scalars['String']['output'];\n};\n\nexport type Acord140PremiseConstructionInfo = {\n __typename?: 'Acord140PremiseConstructionInfo';\n basementCount: Scalars['Int']['output'];\n buildingArea: Scalars['Float']['output'];\n constructionType: Scalars['String']['output'];\n distanceFromFireHydrant: Scalars['Float']['output'];\n distanceFromFireStation: Scalars['Float']['output'];\n heatingYear: Scalars['String']['output'];\n historialProperty: Scalars['Boolean']['output'];\n plumbingYear: Scalars['String']['output'];\n protectionClassCode: Scalars['String']['output'];\n roofType: Scalars['String']['output'];\n roofingYear: Scalars['String']['output'];\n storyCount: Scalars['Int']['output'];\n wiringYear: Scalars['String']['output'];\n yearBuilt: Scalars['String']['output'];\n yearRenovated: Scalars['String']['output'];\n};\n\nexport type Acord140PremiseCoverageInfo = {\n __typename?: 'Acord140PremiseCoverageInfo';\n amount: Scalars['Float']['output'];\n blanketNumber: Scalars['Int']['output'];\n causeOfLoss: Scalars['String']['output'];\n coinsurancePercentage: Scalars['Float']['output'];\n deductibleAmount: Scalars['Float']['output'];\n deductibleType: Scalars['String']['output'];\n formsAndConditions: Scalars['String']['output'];\n inflationGuardPercentage: Scalars['Float']['output'];\n subjectOfInsurance: Scalars['String']['output'];\n valuation: Scalars['String']['output'];\n};\n\nexport type Acord140PremiseInfo = {\n __typename?: 'Acord140PremiseInfo';\n address: Address;\n alarms: Acord140PremiseAlarmsInfo;\n construction: Acord140PremiseConstructionInfo;\n coverage1: Acord140PremiseCoverageInfo;\n coverage2: Acord140PremiseCoverageInfo;\n coverage3: Acord140PremiseCoverageInfo;\n coverage4: Acord140PremiseCoverageInfo;\n coverage5: Acord140PremiseCoverageInfo;\n description: Scalars['String']['output'];\n spoilage: Acord140PremiseSpoilageInfo;\n};\n\nexport type Acord140PremiseSpoilageInfo = {\n __typename?: 'Acord140PremiseSpoilageInfo';\n amount: Scalars['Float']['output'];\n breakdownOrContamination: Scalars['Boolean']['output'];\n coverageApplies: Scalars['Boolean']['output'];\n deductibleAmount: Scalars['Float']['output'];\n description: Scalars['String']['output'];\n other: Scalars['Boolean']['output'];\n otherDescription: Scalars['String']['output'];\n powerOutage: Scalars['Boolean']['output'];\n refrigeratorMaintenance: Scalars['Boolean']['output'];\n sellingPrice: Scalars['Boolean']['output'];\n};\n\nexport type AcordAgencyInfo = {\n __typename?: 'AcordAgencyInfo';\n address: Address;\n contactEmail: Scalars['String']['output'];\n contactFax: Scalars['String']['output'];\n contactName: Scalars['String']['output'];\n contactPhone: Scalars['String']['output'];\n name: Scalars['String']['output'];\n nationalProducerNumber: Scalars['String']['output'];\n producerCode: Scalars['String']['output'];\n producerName: Scalars['String']['output'];\n stateProducerNumber: Scalars['String']['output'];\n};\n\nexport type AcordCarrierInfo = {\n __typename?: 'AcordCarrierInfo';\n naic: Scalars['String']['output'];\n name: Scalars['String']['output'];\n};\n\n/** Details for a request to add an additional insured to a policy */\nexport type AddAdditionalInsuredRequest = {\n __typename?: 'AddAdditionalInsuredRequest';\n /** Address of the additional insured */\n address: Address;\n /** Name of the additional insured */\n name: Scalars['String']['output'];\n /** Relationship between the policyholder and additional insured */\n relationship: Scalars['String']['output'];\n};\n\n/** Input type for adding an additional insured request */\nexport type AddAdditionalInsuredRequestInput = {\n /** Address of the additional insured */\n address: AddressInput;\n /** Name of the additional insured */\n name: Scalars['String']['input'];\n /** Relationship between the policyholder and additional insured */\n relationship: Scalars['String']['input'];\n};\n\n/** Input type for adding a comment to a service request */\nexport type AddServiceRequestCommentInput = {\n /** The content of the comment */\n content: Scalars['String']['input'];\n};\n\n/** Describes an address that can be accepted as input */\nexport type Address = {\n __typename?: 'Address';\n /**\n * Level 3 administrative division depending on country. For example, this is\n * the city in the U.S., a muncipality in Austria, a ward in Singapore, etc.\n */\n city: Scalars['String']['output'];\n /** First line of the address. */\n line1: Scalars['String']['output'];\n /** Optional second line of the address. */\n line2?: Maybe;\n /**\n * Country-specific mailing identifier, e.g. ZIP Code in the U.S., Post Code\n * in the U.K., etc.\n */\n postalCode: Scalars['String']['output'];\n /**\n * Level 2 administrative division depending on country. For example, this is\n * the county in the U.S., prefectural city in China, division in India, etc.\n */\n subZone?: Maybe;\n /**\n * Level 1 administrative division depending on country. For example, this is\n * the state in the U.S., the province in Canada, etc.\n */\n zone: Scalars['String']['output'];\n};\n\n/** Describes an address that can be accepted as input */\nexport type AddressInput = {\n /**\n * Level 3 administrative division depending on country. For example, this is\n * the city in the U.S., a muncipality in Austria, a ward in Singapore, etc.\n */\n city: Scalars['String']['input'];\n /** First line of the address. */\n line1: Scalars['String']['input'];\n /** Optional second line of the address. */\n line2?: InputMaybe;\n /**\n * Country-specific mailing identifier, e.g. ZIP Code in the U.S., Post Code\n * in the U.K., etc.\n */\n postalCode: Scalars['String']['input'];\n /**\n * Level 2 administrative division depending on country. For example, this is\n * the county in the U.S., prefectural city in China, division in India, etc.\n */\n subZone?: InputMaybe;\n /**\n * Level 1 administrative division depending on country. For example, this is\n * the state in the U.S., the province in Canada, etc.\n */\n zone: Scalars['String']['input'];\n};\n\n/** Agency represents an insurance agency that works with Oyster. */\nexport type Agency = {\n __typename?: 'Agency';\n /** Agency-wide configuration and settings */\n configuration: AgencyConfiguration;\n /** Timestamp the agency was created */\n createdAt: Scalars['Time']['output'];\n /** Display name of the agency */\n displayName: Scalars['String']['output'];\n /** Unique identifier for the agency */\n id: Scalars['ID']['output'];\n /** URL of the agency's logo */\n logoUrl: Scalars['String']['output'];\n /** Mailing address of the agency */\n mailingAddress: Address;\n /** Legal name of the agency */\n name: Scalars['String']['output'];\n /** Phone number of the agency */\n phone: Scalars['String']['output'];\n /** Timestamp the agency was last updated */\n updatedAt: Scalars['Time']['output'];\n /** URL of the agency's wordmark */\n wordmarkUrl: Scalars['String']['output'];\n};\n\n/** Agency-wide configuration and settings */\nexport type AgencyConfiguration = {\n __typename?: 'AgencyConfiguration';\n /** The default COI configuration for the agency */\n liabilityCOIConfiguration: CertificateOfLiabilityAgencyConfiguration;\n};\n\n/** Input for Agency-wide configuration and settings */\nexport type AgencyConfigurationInput = {\n /** The default COI configuration for the agency */\n liabilityCOIConfiguration: CertificateOfLiabilityAgencyConfigurationInput;\n};\n\n/** Input for creating a new agency */\nexport type AgencyInput = {\n /** Agency-wide configuration and settings */\n configuration: AgencyConfigurationInput;\n /** Display name of the agency */\n displayName: Scalars['String']['input'];\n /** URL of the agency's logo */\n logoUrl: Scalars['String']['input'];\n /** Mailing address of the agency */\n mailingAddress: AddressInput;\n /** Legal name of the agency */\n name: Scalars['String']['input'];\n /** Phone number of the agency */\n phone: Scalars['String']['input'];\n /** URL of the agency's wordmark */\n wordmarkUrl: Scalars['String']['input'];\n};\n\n/** Response from the agency sign in mutation */\nexport type AgencySignInResponse = {\n __typename?: 'AgencySignInResponse';\n /** The agency user that was signed in */\n agencyUser: AgencyUser;\n};\n\n/** Agency user represents an authenticated user of an agency */\nexport type AgencyUser = {\n __typename?: 'AgencyUser';\n /** Agency the user is associated with */\n agency: Agency;\n /** Timestamp the agency user was created */\n createdAt: Scalars['Time']['output'];\n /** Email of the user */\n email: Scalars['String']['output'];\n /** ID of the user */\n id: Scalars['ID']['output'];\n /** Name of the user */\n name: Scalars['String']['output'];\n /** Timestamp the agency user was last updated */\n updatedAt: Scalars['Time']['output'];\n};\n\n/** Input for creating a new agency user */\nexport type AgencyUserInput = {\n /** Email of the agency user */\n email: Scalars['String']['input'];\n /** Name of the agency user */\n name: Scalars['String']['input'];\n};\n\n/**\n * Describes the Ascend billable that this policy is associated with. This\n * type represents the response from the Ascend /v1/billables API\n */\nexport type AscendBillable = {\n __typename?: 'AscendBillable';\n /** Fee collected by your agency (dollars). Fully earned, not financeable, and funded directly to your agency. */\n agencyFees: Scalars['Float']['output'];\n /** The identifier assigned to the quote/endorsement by the issuing carrier or wholesaler. */\n billableIdentifier: Scalars['String']['output'];\n /** Fee collected by the wholesaler (dollars). Fully earned, not financeable, and funded directly to the wholesaler. */\n brokerFees: Scalars['Float']['output'];\n /** An insurance company. */\n carrier: AscendCarrier;\n /** A type of coverage. */\n coverageType: AscendCoverage;\n /** A short description to explain to the insured what they are purchasing. */\n description?: Maybe;\n /** The unique identifier for the billable */\n id: Scalars['String']['output'];\n /** Determines if the carrier can audit customer raising premium significantly. */\n isAuditable: Scalars['Boolean']['output'];\n /** Determines if specific lines of business are filed with other bureaus which they have to notify on cancelation. */\n isFiled: Scalars['Boolean']['output'];\n /** Determines if the policy is fined by 10% on top of earned premium when insured cancels */\n isShortRate: Scalars['Boolean']['output'];\n /** Set state determined extended cancelation period for the policy. */\n minDaysToCancel: Scalars['Int']['output'];\n /** The minimum rate to charge insureds when they decide to finance. */\n minEarnedRate: Scalars['Float']['output'];\n /** Any additional fees that come with the policy (dollars). This fee is treated as non-refundable & fully earned. */\n otherFees: Scalars['Float']['output'];\n /** Payouts created for this program, if any. This corresponds to the data returned from the /v1/payouts endpoint */\n payouts: Array;\n /** Any policy fees that come with the billable (dollars). This fee is treated as non-refundable & fully earned. */\n policyFees: Scalars['Float']['output'];\n /** The amount to pay for the insurance policy (dollars). */\n premium: Scalars['Float']['output'];\n /** Your commission rate for this policy. */\n sellerCommissionRate?: Maybe;\n /** The amount of surplus lines tax to be collected (dollars). */\n surplusLinesTax: Scalars['Float']['output'];\n /** Any taxes & unearned fees (dollars). Taxes and fees are financed. */\n taxesAndFees: Scalars['Float']['output'];\n /** An insurance wholesaler or MGA. */\n wholesaler?: Maybe;\n};\n\n/** An insurance company. */\nexport type AscendCarrier = {\n __typename?: 'AscendCarrier';\n /** A human readable unique identifier. */\n id: Scalars['String']['output'];\n /** The carrier display name. */\n title: Scalars['String']['output'];\n};\n\n/** A type of coverage. */\nexport type AscendCoverage = {\n __typename?: 'AscendCoverage';\n /** A human readable unique identifier. */\n id: Scalars['String']['output'];\n /** The coverage type display name. */\n title: Scalars['String']['output'];\n};\n\n/** A document representing a transaction between the insured and Ascend. */\nexport type AscendInvoice = {\n __typename?: 'AscendInvoice';\n /** The checkout url of the invoice. */\n checkoutUrl?: Maybe;\n /** The date by which the invoice should be paid. */\n dueDate?: Maybe;\n /** The invoice unique identifier. */\n id: Scalars['String']['output'];\n /** The unique identifier of the insured invoice is attached to. */\n insuredID: Scalars['String']['output'];\n /** A number assigned to uniquely identify the invoice. */\n invoiceNumber: Scalars['String']['output'];\n /** The url of the invoice document. */\n invoiceUrl?: Maybe;\n /** The date when the invoice was shared with the insured. */\n issuedAt?: Maybe;\n /** The date when the invoice was paid by the insured. */\n paidAt?: Maybe;\n /** The name of the insured/business paying for the invoice. */\n payerName: Scalars['String']['output'];\n /** It represents the payment instrument used by an insured. */\n paymentMethod?: Maybe;\n /** The unique identifier of the program invoice is attached to. */\n programID?: Maybe;\n /** The current state of the invoice. */\n status: Scalars['String']['output'];\n /** The total amount charged, in dollars. */\n totalAmount: Scalars['Float']['output'];\n};\n\n/** A loan associated with an Ascend program */\nexport type AscendLoan = {\n __typename?: 'AscendLoan';\n /** The amount financed through the loan represented in dollars. */\n amountFinanced: Scalars['Float']['output'];\n /** The total annual rate charged. */\n apr: Scalars['Float']['output'];\n /** The date when the loan was created. The date uses UTC and is represented in the ISO8601 format. */\n createdAt: Scalars['Time']['output'];\n /** The initial up-front payment represented in dollars. */\n downPayment: Scalars['Float']['output'];\n /** The loan unique identifier. */\n id: Scalars['String']['output'];\n /** The number of payments that will be made to repay the loan. */\n numberOfPayments: Scalars['Int']['output'];\n /** The current state of the loan. */\n status: Scalars['String']['output'];\n /** The amount that will be payed in each payment in dollars. */\n termPayment: Scalars['Float']['output'];\n /** The date when the loan was last updated. The date uses UTC and is represented in the ISO8601 format. */\n updatedAt: Scalars['Time']['output'];\n};\n\n/** The account the Ascend payout was made to */\nexport type AscendPayableAccount = {\n __typename?: 'AscendPayableAccount';\n /** The ID of the payable account */\n id: Scalars['String']['output'];\n /** The last four digits of the bank account */\n lastFour: Scalars['String']['output'];\n /** The owner name of the bank account */\n ownerName: Scalars['String']['output'];\n /** The routing number of the bank account */\n routingNumber: Scalars['String']['output'];\n /** The usage type of the bank account */\n usageType: AscendPayableAccountUsageType;\n};\n\nexport enum AscendPayableAccountUsageType {\n /** Organization's bank account we transfer commissions to. */\n CommissionAccount = 'COMMISSION_ACCOUNT',\n /** Paid out to carrier/wholesaler */\n SupplierAccount = 'SUPPLIER_ACCOUNT',\n /** Organization's bank account we transfer full premium to. */\n TrustAccount = 'TRUST_ACCOUNT'\n}\n\nexport type AscendPaymentMethod = {\n __typename?: 'AscendPaymentMethod';\n type: AscendPaymentMethodType;\n};\n\nexport enum AscendPaymentMethodType {\n AchCreditTransfer = 'ACH_CREDIT_TRANSFER',\n AchDebit = 'ACH_DEBIT',\n Card = 'CARD'\n}\n\n/** A payout from Ascend to an entity */\nexport type AscendPayout = {\n __typename?: 'AscendPayout';\n /** The date the payout was created */\n createdAt: Scalars['Time']['output'];\n /** The date that the payout failed */\n failedAt?: Maybe;\n /** The gross amount paid out, in dollars. */\n grossPayoutAmount: Scalars['Float']['output'];\n /** The payout unique identifier */\n id: Scalars['String']['output'];\n /** If found, the details of the bank transaction on Oyster's side */\n linkedBankTransaction?: Maybe;\n /** The net amount paid out, in dollars. */\n netPayoutAmount: Scalars['Float']['output'];\n /** The date that the payout was paid */\n paidAt?: Maybe;\n /** The account that the payout was made to */\n payableAccount: AscendPayableAccount;\n /** The date that the payout will be paid */\n payingAt?: Maybe;\n /** The type of the recipient */\n recipientType: AscendRecipientType;\n /** The reference number included in the bank memo associated with this payout */\n reference?: Maybe;\n /** The current state of the payout */\n status: AscendPayoutStatus;\n /** The type of the payout */\n type: AscendPayoutType;\n};\n\n/** The status of the payout */\nexport enum AscendPayoutStatus {\n /** The payout has been canceled */\n Canceled = 'CANCELED',\n /** The payout has failed to reach the payable account. */\n Failed = 'FAILED',\n /** The payout is blocked until the invoice release_date when funds can be paid to the payable account. */\n OnHold = 'ON_HOLD',\n /** The payout has been paid to designated PayableAccount */\n Paid = 'PAID',\n /** The payout has been initiated but we have not received confirmation that it has cleared. */\n Paying = 'PAYING',\n /** The payout is waiting for confirmation from servicer indicating it has been funded. */\n Transferred = 'TRANSFERRED',\n /** Initial state, no action has been taken on the payout. */\n Unpaid = 'UNPAID'\n}\n\n/** The type of the payout */\nexport enum AscendPayoutType {\n /** Transfer cumulative supplier funding to org so that they can pay out to supplier - paid to the organization's trust account */\n AgentSupplierFunding = 'AGENT_SUPPLIER_FUNDING',\n /** Policy's commission paid to organization's commission account */\n Commission = 'COMMISSION',\n /** Policy's full premium (premium w/ commission) paid to organization's trust account */\n FullPremium = 'FULL_PREMIUM',\n /** Policy's net premium (full premium - commission) paid out to org's trust account (direct bill) */\n NetPremium = 'NET_PREMIUM',\n /** Payout to agency's commission account for one-off invoice */\n OneOff = 'ONE_OFF',\n /** Payout to org for additional funds they have transferred to us - paid to the organization's commission account */\n Overpayment = 'OVERPAYMENT',\n /** Policy's premium paid out to supplier's honor_supplier_account or supplier_account (agency bill) */\n Supplier = 'SUPPLIER',\n /** Payout to agency's trust account for surplus line taxes */\n SurplusLinesTax = 'SURPLUS_LINES_TAX',\n /** Financed policy's downpayment paid to honor's downpayment account */\n TakeRate = 'TAKE_RATE'\n}\n\n/** A collection of insurance quotes pooled to produce 1 checkout link. */\nexport type AscendProgram = {\n __typename?: 'AscendProgram';\n /** The date the program was archived. The date uses UTC and is represented in the ISO8601 format. */\n archivedAt?: Maybe;\n /** The date the program was checked out. The date uses UTC and is represented in the ISO8601 format. */\n checkedOutAt?: Maybe;\n /** The date the program was created. The date uses UTC and is represented in the ISO8601 format. */\n createdAt: Scalars['Time']['output'];\n /** The unique identifier for the program */\n id: Scalars['String']['output'];\n /** Invoices created for this program, if any. This corresponds to the data returned from the /v1/invoices endpoint */\n invoices: Array;\n /** Financing details for this program, if any. This corresponds to the data returned from the /v1/loans endpoint */\n loans: Array;\n /** A URL to complete the checkout process. */\n programUrl: Scalars['String']['output'];\n /** The payment option chosen by the insured during the checkout process. */\n selectedPaymentOptionType?: Maybe;\n /** The state of the program */\n status: AscendProgramStatus;\n /** The date the program was last updated. The date uses UTC and is represented in the ISO8601 format. */\n updatedAt: Scalars['Time']['output'];\n};\n\n/** Mode for creating an Ascend program */\nexport enum AscendProgramCreationMode {\n /** Bundle with an existing quote */\n BundleWithExistingQuote = 'BUNDLE_WITH_EXISTING_QUOTE',\n /** Create a new program */\n CreateProgram = 'CREATE_PROGRAM',\n /** Use a specific program ID */\n UseSpecificProgramId = 'USE_SPECIFIC_PROGRAM_ID'\n}\n\n/** The status of a program */\nexport enum AscendProgramStatus {\n Archived = 'ARCHIVED',\n CheckedOut = 'CHECKED_OUT',\n Created = 'CREATED',\n Elected = 'ELECTED',\n Purchased = 'PURCHASED',\n ReadyForCheckout = 'READY_FOR_CHECKOUT'\n}\n\n/** The type of the Ascend recipient */\nexport enum AscendRecipientType {\n Account = 'ACCOUNT',\n Carrier = 'CARRIER',\n Organization = 'ORGANIZATION',\n Wholesaler = 'WHOLESALER'\n}\n\n/** An insurance wholesaler or MGA. */\nexport type AscendWholesaler = {\n __typename?: 'AscendWholesaler';\n /** A human readable unique identifier. */\n id: Scalars['String']['output'];\n /** The wholesaler display name. */\n title: Scalars['String']['output'];\n};\n\nexport type AvailableCoverageLimit = {\n __typename?: 'AvailableCoverageLimit';\n insuranceType: InsuranceType;\n limits: BusinessApplicationInsuranceLimits;\n};\n\n/** BasicAuth contains username/password credentials */\nexport type BasicAuth = {\n __typename?: 'BasicAuth';\n /** Password for basic authentication */\n password: Scalars['String']['output'];\n /** Username for basic authentication */\n username: Scalars['String']['output'];\n};\n\n/** A blanket additional insured for the certificate */\nexport type BlanketAdditionalInsuredCertificateOption = {\n __typename?: 'BlanketAdditionalInsuredCertificateOption';\n /** The description of the blanket additional insured */\n description: Scalars['String']['output'];\n /** The ID of the blanket additional insured */\n id: Scalars['ID']['output'];\n /** The policy this blanket additional insured is associated with */\n policy: BusinessPolicy;\n /** The type of the blanket additional insured */\n type: Scalars['String']['output'];\n};\n\n/** Represents the construction type of a building. */\nexport enum BuildingConstructionType {\n /** A fire resistive construction type. */\n FireResistive = 'FIRE_RESISTIVE',\n /** A frame construction type. */\n Frame = 'FRAME',\n /** A joisted masonry construction type. */\n JoistedMasonry = 'JOISTED_MASONRY',\n /** A masonry non-combustible construction type. */\n MasonryNonCombustible = 'MASONRY_NON_COMBUSTIBLE',\n /** A modified fire resistive construction type. */\n ModifiedFireResistive = 'MODIFIED_FIRE_RESISTIVE',\n /** A non-combustible construction type. */\n NonCombustible = 'NON_COMBUSTIBLE'\n}\n\n/** Represents the building location ownership type */\nexport enum BuildingOwnershipType {\n /** The building is a home that is owned by the business. */\n Home = 'HOME',\n /** The building is leased by the business. */\n Leased = 'LEASED',\n /** The building is owned by the business. */\n Owned = 'OWNED'\n}\n\n/** Represents the type of roof on a building. */\nexport enum BuildingRoofType {\n /** Asphalt shingles roof type. */\n AsphaltShingles = 'ASPHALT_SHINGLES',\n /** Built-up gravel roof type. */\n BuiltUpGravel = 'BUILT_UP_GRAVEL',\n /** Built-up without gravel roof type. */\n BuiltUpWithoutGravel = 'BUILT_UP_WITHOUT_GRAVEL',\n /** Clay tiles roof type. */\n ClayTiles = 'CLAY_TILES',\n /** Foam roof type. */\n Foam = 'FOAM',\n /** Metal roof type. */\n Metal = 'METAL',\n /** Modified bitumen roof type. */\n ModifiedBitumen = 'MODIFIED_BITUMEN',\n /** Single-ply ballasted roof type. */\n SinglePlyBallasted = 'SINGLE_PLY_BALLASTED',\n /** Single-ply PVC TPO roof type. */\n SinglePlyPvcTpo = 'SINGLE_PLY_PVC_TPO',\n /** Single-ply SPDM rubber roof type. */\n SinglePlySpdmRubber = 'SINGLE_PLY_SPDM_RUBBER',\n /** Wood shingles roof type. */\n WoodShingles = 'WOOD_SHINGLES'\n}\n\n/** Represents the type of burglar alarm installed at a business location. */\nexport enum BurglarAlarmType {\n /** A central burglar alarm type. */\n BurglarCentral = 'BURGLAR_CENTRAL',\n /** A local burglar alarm type. */\n BurglarLocal = 'BURGLAR_LOCAL',\n /** No burglar alarm. */\n BurglarNone = 'BURGLAR_NONE',\n /** A police and fire burglar alarm type. */\n BurglarPoliceFire = 'BURGLAR_POLICE_FIRE'\n}\n\n/** A business entity associated with a client */\nexport type Business = {\n __typename?: 'Business';\n /** The business category that determines risk classification and insurance requirements */\n category?: Maybe;\n /** When the business record was created */\n createdAt: Scalars['Time']['output'];\n /** The 'Doing Business As' (DBA) name if different from legal name */\n dba: Scalars['String']['output'];\n /** Unique identifier for the business */\n id: Scalars['ID']['output'];\n /** The business's mailing address for correspondence */\n mailingAddress: Address;\n /** The NAICS code for the business */\n naics: Scalars['String']['output'];\n /** The legal name of the business */\n name: Scalars['String']['output'];\n /** When the business record was last updated */\n updatedAt: Scalars['Time']['output'];\n /** The business's website URL */\n website: Scalars['String']['output'];\n};\n\n/** Account details specific to a business account */\nexport type BusinessAccount = AccountDetails & {\n __typename?: 'BusinessAccount';\n /** The 'Doing Business As' (DBA) name if different from legal name */\n dba: Scalars['String']['output'];\n /** Primary email address for contacting the business */\n email: Scalars['String']['output'];\n /** Mailing address for the business */\n mailingAddress: Address;\n /** NAICS code for the business */\n naics: Scalars['String']['output'];\n /** The legal name of the business */\n name: Scalars['String']['output'];\n /** Primary phone number for contacting the business */\n phone: Scalars['String']['output'];\n /** Website URL for the business */\n website: Scalars['String']['output'];\n};\n\n/** BusinessApplication represents an application */\nexport type BusinessApplication = {\n __typename?: 'BusinessApplication';\n /** The annual revenue of the business. */\n annualRevenue: Scalars['Float']['output'];\n /** The 'doing business as' name of the business. */\n businessDba: Scalars['String']['output'];\n /** The name of the business. */\n businessName: Scalars['String']['output'];\n /** The primary contact information for the business. */\n contact: BusinessContact;\n /** CoverForce applications associated with this application */\n coverforceApplications: Array;\n /** The date the application was originally created */\n createdAt: Scalars['Time']['output'];\n /** Information about the employees at the business */\n employeeInfo: BusinessEmployeeInfo;\n /** The Federal Employer Identification Number of the business. */\n fein: Scalars['String']['output'];\n /** SHA-256 hash of the application data */\n fingerprint: Scalars['String']['output'];\n /** The ID of the business application */\n id: Scalars['ID']['output'];\n /** The desired effective date of the insurance. */\n insuranceEffectiveAt?: Maybe;\n /** The types of insurance the business is applying for. */\n insuranceTypes: Array;\n /** Indicates whether the business is a non-profit organization. */\n isNonProfit: Scalars['Boolean']['output'];\n /** The legal entity type of the business. */\n legalEntityType?: Maybe;\n /** List of locations associated with the business. */\n locations: Array;\n /** The mailing address of the business. */\n mailingAddress: Address;\n /** The North American Industry Classification System code of the business. */\n naicsCode: Scalars['String']['output'];\n /** A description of the nature of the business. */\n natureOfBusiness: Scalars['String']['output'];\n /** Information about the business owners. */\n owners: Array;\n /** Any past policy losses */\n pastPolicyLosses: Array;\n /**\n * Carriers that will quote one or more coverages for this application.\n * Can only be queried after the application has been completed.\n */\n quotableCarriers: Array;\n /** Current quotes for this application, if any are available. */\n quotes: Array;\n /** Carriers selected by the customer to generate quotes for. */\n selectedCarriers: Array;\n /** The selected insurance limits for the application. */\n selectedLimits: BusinessApplicationInsuranceLimits;\n /** State of the application */\n state: BusinessApplicationState;\n /** Answers to underwriting questions. */\n underwritingAnswers: Array;\n /** Underwriting questions needed on this application. */\n underwritingQuestions: Array;\n /** Underwriting statements and disclosures that the insured needs to acknowledge. */\n underwritingStatements: Array;\n /** The date this application was last updated */\n updatedAt: Scalars['Time']['output'];\n /** The version of this application */\n version: Scalars['Int64']['output'];\n /**\n * The previous versions of this application, subject to the specified limit and offset.\n * The first version in this list will be this version (i.e. identical to the current application), followed by the version before that, and so-forth.\n */\n versionHistory: Array;\n /** The website of the business. */\n website: Scalars['String']['output'];\n /** The year the business was founded. */\n yearOfFounding: Scalars['String']['output'];\n /** The number of years of management experience the business has. */\n yearsOfManagementExperience: Scalars['Int']['output'];\n};\n\n/** BusinessApplication represents an application */\nexport type BusinessApplicationVersionHistoryArgs = {\n limit?: InputMaybe;\n offset?: InputMaybe;\n};\n\nexport enum BusinessApplicationCarrier {\n Amtrust = 'AMTRUST',\n Biberk = 'BIBERK',\n Chubb = 'CHUBB',\n Cna = 'CNA',\n Coalition = 'COALITION',\n Coterie = 'COTERIE',\n Employers = 'EMPLOYERS',\n Gaig = 'GAIG',\n Guard = 'GUARD',\n Hiscox = 'HISCOX',\n Libertymutual = 'LIBERTYMUTUAL',\n Markel = 'MARKEL',\n Nationwide = 'NATIONWIDE',\n Next = 'NEXT',\n Progressive = 'PROGRESSIVE',\n Travelers = 'TRAVELERS'\n}\n\nexport type BusinessApplicationInsuranceLimits = {\n __typename?: 'BusinessApplicationInsuranceLimits';\n bopAggregateLimit?: Maybe;\n bopPerOccurrenceLimit?: Maybe;\n coverageState: Scalars['String']['output'];\n cyberAggregateLimit?: Maybe;\n cyberRetentionLimit?: Maybe;\n glAggregateLimit?: Maybe;\n glPerOccurrenceLimit?: Maybe;\n wcPerAccidentLimit?: Maybe;\n wcPerDiseaseEmployeeLimit?: Maybe;\n wcPerDiseasePolicyLimit?: Maybe;\n};\n\nexport type BusinessApplicationInsuranceLimitsInput = {\n bopAggregateLimit?: InputMaybe;\n bopPerOccurrenceLimit?: InputMaybe;\n coverageState: Scalars['String']['input'];\n cyberAggregateLimit?: InputMaybe;\n cyberRetentionLimit?: InputMaybe;\n glAggregateLimit?: InputMaybe;\n glPerOccurrenceLimit?: InputMaybe;\n wcPerAccidentLimit?: InputMaybe;\n wcPerDiseaseEmployeeLimit?: InputMaybe;\n wcPerDiseasePolicyLimit?: InputMaybe;\n};\n\nexport type BusinessApplicationQuote = {\n __typename?: 'BusinessApplicationQuote';\n /** The carrier that has offered this quote */\n carrier: BusinessApplicationCarrier;\n /** The link to the carrier portal to view and modify the quote */\n carrierBridgingLink?: Maybe;\n /** The link to the carrier portal to bind and claim the policy */\n carrierPurchaseLink?: Maybe;\n /** The ID of the quote in the carrier system */\n carrierQuoteId: Scalars['String']['output'];\n /** The ID of the quote */\n id: Scalars['String']['output'];\n /** The effective date of the insurance */\n insuranceEffectiveDate: Scalars['Time']['output'];\n /** The expiration date of the insurance */\n insuranceExpiryDate: Scalars['Time']['output'];\n /** List of payment plans available for this quote if the quote is bindable */\n paymentPlans: Array;\n /** If this policy is binding, the policy ID from the carrier system. */\n policyId?: Maybe;\n /** The type of insurance policy */\n policyType: InsuranceType;\n /** The premium amount for the policy */\n premiumAmount: Scalars['Float']['output'];\n /** The URL of the quote proposal PDF */\n quoteProposalUrl?: Maybe;\n /** The state of the quote */\n state: BusinessApplicationQuoteState;\n /** The tax amount for the policy */\n taxAmount: Scalars['Float']['output'];\n /** The total amount for the policy */\n totalAmount: Scalars['Float']['output'];\n /** The type of quote */\n type: BusinessApplicationQuoteType;\n};\n\n/** Type representing a payment plan for a business application quote */\nexport type BusinessApplicationQuotePaymentPlan = {\n __typename?: 'BusinessApplicationQuotePaymentPlan';\n /** Description of the payment plan */\n description: Scalars['String']['output'];\n /** Initial down payment amount */\n downAmount: Scalars['Float']['output'];\n /** Due date for the down payment */\n downDueAt?: Maybe;\n /** Amount for each installment */\n installmentAmount: Scalars['Float']['output'];\n /** Number of installments */\n installmentCount: Scalars['Int']['output'];\n /** Due date for the installments */\n installmentDueAt?: Maybe;\n /** Fee charged for each installment */\n installmentFee: Scalars['Float']['output'];\n /** Frequency of the installments */\n installmentFrequency: PaymentPlanInstallmentFrequency;\n /** Method of payment for the plan */\n paymentMethod: PaymentPlanPaymentMethodType;\n /** Unique identifier for the payment plan */\n paymentPlanId: Scalars['String']['output'];\n /** Title of the payment plan */\n title: Scalars['String']['output'];\n /** Total amount to be paid */\n totalAmount: Scalars['Float']['output'];\n /** Total fees associated with the payment plan */\n totalFees: Scalars['Float']['output'];\n};\n\n/** Enum representing the possible states of a business application quote */\nexport enum BusinessApplicationQuoteState {\n /** The quote is in the process of being bound */\n Binding = 'BINDING',\n /** The quote has been created */\n Created = 'CREATED'\n}\n\n/** Enum representing the different types of quotes for a business application */\nexport enum BusinessApplicationQuoteType {\n /** Quote that can be bound online */\n BindOnline = 'BIND_ONLINE',\n /** Quote that serves as a bridge between different stages */\n Bridge = 'BRIDGE',\n /** Quote that has been declined */\n Decline = 'DECLINE',\n /** Quote that has failed for some reason */\n Failed = 'FAILED',\n /** Quote that needs to be referred for further review */\n Refer = 'REFER'\n}\n\n/** The state of business application */\nexport enum BusinessApplicationState {\n /** The application has been canceled and is no longer active */\n Canceled = 'CANCELED',\n /** The application has been created but no further action has been taken */\n Created = 'CREATED',\n /** A quote has been generated for the application */\n Quoted = 'QUOTED',\n /** The application is in the process of being quoted */\n Quoting = 'QUOTING',\n /** The application has been submitted for review or processing */\n Submitted = 'SUBMITTED'\n}\n\n/** Describes the reason why an application was updated */\nexport enum BusinessApplicationUpdateReasonCode {\n /** Placeholder reason codes until the use case becomes more clear */\n Unknown = 'UNKNOWN'\n}\n\n/** Describes the type of update that occured to a application */\nexport enum BusinessApplicationUpdateType {\n /** The application was canceled and is no longer active */\n CancelApplication = 'CANCEL_APPLICATION',\n /** The application was created, either directely or by completing an offer */\n CreateApplication = 'CREATE_APPLICATION',\n /** The application was completed and submitted, and is now ready to be reviewed by the carrier */\n SubmitApplication = 'SUBMIT_APPLICATION',\n /** The application was updated. Requires manual inspection of the application to determine the actual update */\n UpdateApplication = 'UPDATE_APPLICATION'\n}\n\n/** Describes a particular version of an application */\nexport type BusinessApplicationVersion = {\n __typename?: 'BusinessApplicationVersion';\n /** The full application object that includes all of the updates made in this version and all previous versions */\n businessApplication: BusinessApplication;\n /** The date this version was created */\n createdAt: Scalars['Time']['output'];\n /** Produces a human-readable string that can be used to diff against another application version. */\n diffableJson: Scalars['String']['output'];\n /** The version number of the previous application version, if there is any. If this field is null, then this version is the only version */\n previousVersion?: Maybe;\n /** The ID of the entity that initiated the update, depending on the type */\n updateInitiatorId: Scalars['String']['output'];\n /** The type of the entity that initiated the update */\n updateInitiatorType: UpdateInitiatorType;\n /** Indicates whether this update is 'private' in the sense that it should not be displayed to the policyholder */\n updatePrivate: Scalars['Boolean']['output'];\n /** A human-readable description of the reason why this update was made */\n updateReason?: Maybe;\n /** A programmatic representation of the reason why this update was made */\n updateReasonCode?: Maybe;\n /** The types of updates made between this version and the previous version */\n updateTypes: Array;\n /** The version number of this application version */\n version: Scalars['Int64']['output'];\n};\n\n/** A business category */\nexport type BusinessCategory = {\n __typename?: 'BusinessCategory';\n /** The category */\n category: Scalars['String']['output'];\n /** The full path of the category, starting with the root category and including the category itself */\n categoryPath: Array;\n /** The ID of the category */\n id: Scalars['ID']['output'];\n /** The parent category */\n parent?: Maybe;\n /** The risk score of the category */\n riskScore: Scalars['Float']['output'];\n};\n\n/** Represents a contact person for the business. */\nexport type BusinessContact = {\n __typename?: 'BusinessContact';\n /** The email address of the contact person. */\n email: Scalars['String']['output'];\n /** The name of the contact person. */\n fullName: Scalars['String']['output'];\n /** The phone number of the contact person. */\n phone: Scalars['String']['output'];\n};\n\n/** Represents a contact person for the business. */\nexport type BusinessContactInput = {\n /** The email address of the contact person. */\n email?: InputMaybe;\n /** The name of the contact person. */\n fullName?: InputMaybe;\n /** The phone number of the contact person. */\n phone?: InputMaybe;\n};\n\n/** Represents information about the employees at a business location. */\nexport type BusinessEmployeeInfo = {\n __typename?: 'BusinessEmployeeInfo';\n /** The job code ID associated with the employees. */\n jobCode: Scalars['String']['output'];\n /** The number of full-time employees at the business location. */\n numFullTimeEmployees: Scalars['Int']['output'];\n /** The number of part-time employees at the business location. */\n numPartTimeEmployees: Scalars['Int']['output'];\n /** The total payroll amount for all employees at the business location. */\n totalEmployeePayroll: Scalars['Float']['output'];\n};\n\n/** Represents information about the employees at a business location. */\nexport type BusinessEmployeeInfoInput = {\n /** The job code ID associated with the employees. */\n jobCode?: InputMaybe;\n /** The number of full-time employees at the business location. */\n numFullTimeEmployees?: InputMaybe;\n /** The number of part-time employees at the business location. */\n numPartTimeEmployees?: InputMaybe;\n /** The total payroll amount for all employees at the business location. */\n totalEmployeePayroll?: InputMaybe;\n};\n\n/** Represents the legal entity type of a business. */\nexport enum BusinessLegalEntityType {\n /** An association. */\n Association = 'ASSOCIATION',\n /** A corporation. */\n Corporation = 'CORPORATION',\n /** An estate. */\n Estate = 'ESTATE',\n /** An executor. */\n Executor = 'EXECUTOR',\n /** A general partnership. */\n GeneralPartnership = 'GENERAL_PARTNERSHIP',\n /** A government entity. */\n GovernmentEntity = 'GOVERNMENT_ENTITY',\n /** An individual. */\n Individual = 'INDIVIDUAL',\n /** Joint employers. */\n JointEmployers = 'JOINT_EMPLOYERS',\n /** A joint venture. */\n JointVenture = 'JOINT_VENTURE',\n /** A labor union. */\n LaborUnion = 'LABOR_UNION',\n /** A limited liability company. */\n LimitedLiabilityCompany = 'LIMITED_LIABILITY_COMPANY',\n /** A limited liability partnership. */\n LimitedLiabilityPartnership = 'LIMITED_LIABILITY_PARTNERSHIP',\n /** A limited partnership. */\n LimitedPartnership = 'LIMITED_PARTNERSHIP',\n /** Multiple statuses. */\n MultipleStatus = 'MULTIPLE_STATUS',\n /** A non-profit association. */\n NonProfitAssociation = 'NON_PROFIT_ASSOCIATION',\n /** A non-profit corporation. */\n NonProfitCorporation = 'NON_PROFIT_CORPORATION',\n /** An S corporation. */\n SCorporation = 'S_CORPORATION',\n /** Tenants in common. */\n TenantsInCommon = 'TENANTS_IN_COMMON',\n /** A trust. */\n Trust = 'TRUST'\n}\n\n/** Represents a business location. */\nexport type BusinessLocation = {\n __typename?: 'BusinessLocation';\n /** The address of the business location. */\n address: Address;\n /** Information about the building of the business location. */\n buildingInfo: BusinessLocationBuildingInfo;\n /** Information about the employees at the business location. */\n employeeInfo: BusinessEmployeeInfo;\n /** The unique identifier of the business location. */\n id: Scalars['ID']['output'];\n /** Indicates whether this is the primary business location. */\n isPrimary: Scalars['Boolean']['output'];\n};\n\n/** Represents information about the building of a business location. */\nexport type BusinessLocationBuildingInfo = {\n __typename?: 'BusinessLocationBuildingInfo';\n /** The annual sales of the business location. */\n annualSales: Scalars['Float']['output'];\n /** The area occupied by the business. */\n areaOccupiedByBusiness: Scalars['Float']['output'];\n /** The building coverage amount. */\n buildingCoverage: Scalars['Float']['output'];\n /** The type of burglar alarm installed at the business location. */\n burglarAlarmType?: Maybe;\n /** The construction type of the building. */\n constructionType?: Maybe;\n /** The year the electrical wiring was last updated. */\n electricalWiringUpdateYear: Scalars['String']['output'];\n /** The year the heating system was last updated. */\n heatingUpdateYear: Scalars['String']['output'];\n /** The type of ownership of this business location. */\n ownershipType?: Maybe;\n /** The personal property coverage amount. */\n personalPropertyCoverage: Scalars['Float']['output'];\n /** The year the plumbing system was last updated. */\n plumbingUpdateYear: Scalars['String']['output'];\n /** The type of roof on the building. */\n roofType?: Maybe;\n /** The year the roof was last updated. */\n roofUpdateYear: Scalars['String']['output'];\n /** The percentage of the building that is sprinklered. */\n sprinkleredPercentage: Scalars['Float']['output'];\n /** The total area of the building. */\n totalArea: Scalars['Float']['output'];\n /** The total number of stories in the building. */\n totalStories: Scalars['Int']['output'];\n /** The year the building was built. */\n yearBuilt: Scalars['String']['output'];\n};\n\n/** Represents information about the building of a business location. */\nexport type BusinessLocationBuildingInfoInput = {\n /** The annual sales of the business location. */\n annualSales?: InputMaybe;\n /** The area occupied by the business. */\n areaOccupiedByBusiness?: InputMaybe;\n /** The building coverage amount. */\n buildingCoverage?: InputMaybe;\n /** The type of burglar alarm installed at the business location. */\n burglarAlarmType?: InputMaybe;\n /** The construction type of the building. */\n constructionType?: InputMaybe;\n /** The year the electrical wiring was last updated. */\n electricalWiringUpdateYear?: InputMaybe;\n /** The year the heating system was last updated. */\n heatingUpdateYear?: InputMaybe;\n /** Indicates whether the business owns the building. */\n ownershipType?: InputMaybe;\n /** The personal property coverage amount. */\n personalPropertyCoverage?: InputMaybe;\n /** The year the plumbing system was last updated. */\n plumbingUpdateYear?: InputMaybe;\n /** The type of roof on the building. */\n roofType?: InputMaybe;\n /** The year the roof was last updated. */\n roofUpdateYear?: InputMaybe;\n /** The percentage of the building that is sprinklered. */\n sprinkleredPercentage?: InputMaybe;\n /** The total area of the building. */\n totalArea?: InputMaybe;\n /** The total number of stories in the building. */\n totalStories?: InputMaybe;\n /** The year the building was built. */\n yearBuilt?: InputMaybe;\n};\n\n/** Input type for creating or updating a business location. */\nexport type BusinessLocationInput = {\n /** The physical address of the business location. */\n address: AddressInput;\n /** Information about the building at this location. */\n buildingInfo: BusinessLocationBuildingInfoInput;\n /** Information about employees at this location. */\n employeeInfo: BusinessEmployeeInfoInput;\n /** Unique identifier for the business location. */\n id: Scalars['String']['input'];\n /** Whether this is the primary business location. */\n isPrimary: Scalars['Boolean']['input'];\n};\n\n/** Represents an owner of the business. */\nexport type BusinessOwner = {\n __typename?: 'BusinessOwner';\n /** The annual payroll of the business owner. */\n annualPayroll: Scalars['Float']['output'];\n /** The date of birth of the business owner. */\n dateOfBirth?: Maybe;\n /** The full name of the business owner. */\n fullName: Scalars['String']['output'];\n /** The job code associated with the business owner. */\n jobCode?: Maybe;\n /** The location ID associated with the business owner. */\n locationId: Scalars['String']['output'];\n};\n\n/** Represents an owner of the business. */\nexport type BusinessOwnerInput = {\n /** The annual payroll of the business owner. */\n annualPayroll: Scalars['Float']['input'];\n /** The date of birth of the business owner. */\n dateOfBirth: Scalars['String']['input'];\n /** The full name of the business owner. */\n fullName: Scalars['String']['input'];\n /** The job code of the business owner. */\n jobCode: Scalars['String']['input'];\n};\n\n/** Business Policy represents the business or commercial insurance policy */\nexport type BusinessPolicy = {\n __typename?: 'BusinessPolicy';\n /** The account this policy is associated with */\n account: Account;\n /** The broker providing this policy, if any */\n broker?: Maybe;\n /** If the policy was canceled or nonrenewed, information about the latest instance of cancellation or nonrenewal */\n cancellation?: Maybe;\n /** The carrier providing this policy */\n carrier: InsuranceCarrier;\n /** The date the policy object was originally created */\n createdAt: Scalars['Time']['output'];\n /** Detailed information extracted from the policy document, if available */\n details?: Maybe;\n /** The timestamp when this policy expires */\n expiresAt?: Maybe;\n /** The external/carrier ID of the policy */\n externalId: Scalars['ID']['output'];\n /** All attached files for this policy */\n files: Array;\n /** The internal ID of the policy */\n id: Scalars['ID']['output'];\n /** The timestamp when this policy is inforce */\n inforceAt?: Maybe;\n /** The timestamp when this policy was issued */\n issuedAt?: Maybe;\n /** The market this policy was written in */\n market: InsuranceMarket;\n /** The number or external identifier associated with this policy within the carrier system */\n policyNumber: Scalars['String']['output'];\n /** The pricing information for this policy */\n pricing: BusinessPolicyPricing;\n /** The number or external identifier associated with this quote within the carrier system */\n quoteNumber: Scalars['String']['output'];\n /** If the policy was reinstated, information about the latest instance of when it was reinstated */\n reinstatement?: Maybe;\n /** If this policy was renewed from another policy, information about the renewal and its previous versions */\n renewal?: Maybe;\n /** The source of the policy, and associated details */\n source: BusinessPolicySource;\n /** The current state of the policy */\n state: PolicyState;\n /** The type of insurance this policy represents */\n type: InsuranceType;\n /** The date this policy object was last updated */\n updatedAt: Scalars['Time']['output'];\n /** The version of this policy */\n version: Scalars['Int64']['output'];\n /** The previous versions of this policy. The first version in this list will be this version (i.e. identical to the current policy), followed by the version before that, and so-forth. */\n versionHistory?: Maybe>;\n};\n\n/** Details about agency billing for a business policy */\nexport type BusinessPolicyAgencyBilling = {\n __typename?: 'BusinessPolicyAgencyBilling';\n /** Details about Ascend billable, if applicable */\n ascendBillable?: Maybe;\n /** Details about Ascend program, if applicable */\n ascendProgram?: Maybe;\n /** The type of agency billing used */\n type: BusinessPolicyAgencyBillingType;\n};\n\n/** The type of agency billing used for the policy */\nexport enum BusinessPolicyAgencyBillingType {\n /** Billing is handled through Ascend */\n Ascend = 'ASCEND',\n /** Billing is handled manually */\n Manual = 'MANUAL'\n}\n\n/** The billing type of policy, indicating how the policy is billed */\nexport enum BusinessPolicyBillingType {\n /** Policy is billed by the agency and then paid to the carrier */\n Agency = 'AGENCY',\n /** Policy is billed directly by the carrier */\n Direct = 'DIRECT',\n /** Billing type is unknown or not specified */\n Unknown = 'UNKNOWN'\n}\n\n/** A blanket additional insured for the policy */\nexport type BusinessPolicyBlanketAdditionalInsured = {\n __typename?: 'BusinessPolicyBlanketAdditionalInsured';\n /** The description of the blanket additional insured */\n description: Scalars['String']['output'];\n /** The form numbers that reference the blanket additional insured */\n formNumbers: Array;\n /** Supporting quotes from the policy document */\n quotes: Array;\n /** The reasoning for why the blanket additional insured is included */\n reasoning: Scalars['String']['output'];\n /** The type of the blanket additional insured */\n type: Scalars['String']['output'];\n};\n\n/** Detailed information about a policy cancellation */\nexport type BusinessPolicyCancellation = {\n __typename?: 'BusinessPolicyCancellation';\n /** The date and time when the cancellation was initiated */\n canceledAt: Scalars['Time']['output'];\n /** The entity that initiated the cancellation */\n canceledBy: BusinessPolicyCancellationSource;\n /** The date and time when the cancellation becomes effective */\n effectiveAt: Scalars['Time']['output'];\n /** The reason for the cancellation */\n reason: BusinessPolicyCancellationReason;\n /** A detailed description of the cancellation reason */\n reasonDescription: Scalars['String']['output'];\n /** The commission that the agency will return to the carrier or broker */\n returnCommission: Scalars['Float']['output'];\n /** The premium that the agency will return to the customer */\n returnPremium: Scalars['Float']['output'];\n /** The type of cancellation */\n type: BusinessPolicyCancellationType;\n};\n\n/** The reason for policy cancellation */\nexport enum BusinessPolicyCancellationReason {\n /** Agency found better coverage for the insured */\n AgencyFoundBetterCoverage = 'AGENCY_FOUND_BETTER_COVERAGE',\n /** Agency found a better price for the insured */\n AgencyFoundBetterPrice = 'AGENCY_FOUND_BETTER_PRICE',\n /** Carrier closed the insurance class */\n CarrierClosedClass = 'CARRIER_CLOSED_CLASS',\n /** Cancellation due to loss history */\n CarrierLossHistory = 'CARRIER_LOSS_HISTORY',\n /** Carrier cancelled due to non-payment */\n CarrierNonpayment = 'CARRIER_NONPAYMENT',\n /** Carrier's underwriting decision */\n CarrierUnderwritingReason = 'CARRIER_UNDERWRITING_REASON',\n /** Insured closed their business */\n InsuredClosedBusiness = 'INSURED_CLOSED_BUSINESS',\n /** Insured found better coverage elsewhere */\n InsuredFoundBetterCoverage = 'INSURED_FOUND_BETTER_COVERAGE',\n /** Insured found a better price elsewhere */\n InsuredFoundBetterPrice = 'INSURED_FOUND_BETTER_PRICE',\n /** Insured failed to make payments */\n InsuredNonpayment = 'INSURED_NONPAYMENT',\n /** Insured no longer has exposure requiring coverage */\n InsuredNoExposure = 'INSURED_NO_EXPOSURE',\n /** Other unspecified reason */\n Other = 'OTHER'\n}\n\n/** The source of the policy cancellation */\nexport enum BusinessPolicyCancellationSource {\n /** Cancellation initiated by the agency */\n Agency = 'AGENCY',\n /** Cancellation initiated by the carrier */\n Carrier = 'CARRIER',\n /** Cancellation initiated by the insured */\n Insured = 'INSURED'\n}\n\n/** The type of policy cancellation */\nexport enum BusinessPolicyCancellationType {\n /** Standard cancellation of the policy */\n Cancellation = 'CANCELLATION',\n /** Non-renewal of the policy */\n Nonrenewal = 'NONRENEWAL',\n /** Expiration of the quote without conversion to a policy */\n QuoteExpired = 'QUOTE_EXPIRED'\n}\n\n/** Description of a policy coverage or exclusion */\nexport type BusinessPolicyCoverageOrExclusionDescription = {\n __typename?: 'BusinessPolicyCoverageOrExclusionDescription';\n /** The description of the coverage or exclusion */\n description: Scalars['String']['output'];\n /** Supporting quotes from the policy document */\n policyQuotes: Array;\n /** The title of the coverage or exclusion */\n title: Scalars['String']['output'];\n};\n\n/** An endorsement for the policy */\nexport type BusinessPolicyEndorsement = {\n __typename?: 'BusinessPolicyEndorsement';\n /** The form numbers that reference the endorsement */\n formNumbers: Array;\n /** Whether the endorsement is included */\n included: Scalars['Boolean']['output'];\n /** Supporting quotes from the policy document */\n quotes: Array;\n /** The reasoning for why the endorsement is included */\n reasoning: Scalars['String']['output'];\n};\n\n/** The endorsements for the policy */\nexport type BusinessPolicyEndorsements = {\n __typename?: 'BusinessPolicyEndorsements';\n /** Whether the primary and non-contributory coverage endorsement is included */\n primaryAndNonContributoryCoverage: BusinessPolicyEndorsement;\n /** Whether the waiver of subrogation endorsement is included */\n waiverOfSubrogation: BusinessPolicyEndorsement;\n};\n\n/** Entity involved in the policy */\nexport type BusinessPolicyEntity = {\n __typename?: 'BusinessPolicyEntity';\n /** The address of the entity */\n address: Address;\n /** The name of the entity */\n name: Scalars['String']['output'];\n};\n\n/** Extra limits for the policy, not covered by the standard limits */\nexport type BusinessPolicyExtraInsuranceLimit = {\n __typename?: 'BusinessPolicyExtraInsuranceLimit';\n /** The limit for the extra coverage */\n limit: Scalars['Float']['output'];\n /** The name of the limit */\n name: Scalars['String']['output'];\n};\n\n/** Policy details extracted from the policy document */\nexport type BusinessPolicyExtractedDetails = {\n __typename?: 'BusinessPolicyExtractedDetails';\n /** The blanket additional insureds for the policy */\n blanketAdditionalInsureds: Array;\n /** The carrier on the policy */\n carrier?: Maybe;\n /** The carrier's NAIC code */\n carrierNaic?: Maybe;\n /** The coverage descriptions for the policy */\n coverageDescriptions: Array;\n /** The deductible for the policy */\n deductible?: Maybe;\n /** The endorsements for the policy */\n endorsements: BusinessPolicyEndorsements;\n /** The exclusion descriptions for the policy */\n exclusionDescriptions: Array;\n /** Extra limits for the policy, not covered by the standard limits */\n extraLimits: Array;\n /** The insured on the policy */\n insured?: Maybe;\n /** The limits for the policy */\n limits: BusinessPolicyInsuranceLimits;\n /** The insured locations for the policy */\n locations: Array;\n /** The named additional insureds for the policy */\n namedAdditionalInsureds: Array;\n /** The policy number */\n policyNumber?: Maybe;\n /** A summary of the policy details */\n summary?: Maybe;\n};\n\n/** Limits for the policy. The policy has the coverage and associated limit if the value is non null or zero. */\nexport type BusinessPolicyInsuranceLimits = {\n __typename?: 'BusinessPolicyInsuranceLimits';\n cyberAggregateLimit?: Maybe;\n cyberRetentionLimit?: Maybe;\n glAggregateLimit?: Maybe;\n glMedicalPerOccurrenceLimit?: Maybe;\n glMedicalPerPersonLimit?: Maybe;\n glPerOccurrenceLimit?: Maybe;\n glPersonalAndAdvertisingInjuryLimit?: Maybe;\n glProductsAndCompletedOperationsLimit?: Maybe;\n glRentedPremisesDamageLimit?: Maybe;\n propertyBuildingLimit?: Maybe;\n propertyContentsLimit?: Maybe;\n umbrellaOrExcessAggregateLimit?: Maybe;\n umbrellaOrExcessPerOccurrenceLimit?: Maybe;\n wcPerAccidentLimit?: Maybe;\n wcPerDiseaseEmployeeLimit?: Maybe;\n wcPerDiseasePolicyLimit?: Maybe;\n};\n\n/** A location covered by the business policy */\nexport type BusinessPolicyLocation = {\n __typename?: 'BusinessPolicyLocation';\n /** The address of the location */\n address: Address;\n /** The limits for the location */\n limits: BusinessPolicyInsuranceLimits;\n};\n\n/** A named additional insured for the policy */\nexport type BusinessPolicyNamedAdditionalInsured = {\n __typename?: 'BusinessPolicyNamedAdditionalInsured';\n /** The address of the named additional insured */\n address: Address;\n /** The form numbers that reference the named additional insured */\n formNumbers: Array;\n /** The type of the named additional insured */\n name: Scalars['String']['output'];\n /** Supporting quotes from the policy document */\n quotes: Array;\n /** The reasoning for why the named additional insured is included */\n reasoning: Scalars['String']['output'];\n};\n\n/** Represents all pricing information for a policy */\nexport type BusinessPolicyPricing = {\n __typename?: 'BusinessPolicyPricing';\n /** The adjusted commission that the agency will receive for this policy, which is the estimated commission minus any returns to the carrier or broker. If the policy is not canceled, this will be nil. */\n adjustedCommission?: Maybe;\n /** The adjusted premium that the agency will receive for this policy, which is the premium minus any returns to the customer. If the policy is not canceled, this will be nil. */\n adjustedPremium?: Maybe;\n /** The adjusted revenue that the agency will receive for this policy, which is the estimated revenue minus any returns to the customer. If the policy is not canceled, this will be the same as estimatedRevenue */\n adjustedRevenue: Scalars['Float']['output'];\n /** If billing type is AGENCY, this specifies information about the agency bill */\n agencyBilling?: Maybe;\n /** Additional fees collected by the agency as revenue. */\n agencyFees: Scalars['Float']['output'];\n /** The billing type */\n billingType: BusinessPolicyBillingType;\n /** Fees collected by the wholesale broker */\n brokerFees: Scalars['Float']['output'];\n /** Estimate of the commission the agency will receive for this policy */\n estimatedCommission: Scalars['Float']['output'];\n /** Estimate of the revenue the agency will receive for this policy */\n estimatedRevenue: Scalars['Float']['output'];\n /** The interval type of payment plan. Required if this is a direct-billed policy */\n intervalType?: Maybe;\n /** The minimum premium that must be paid for policy, regardless of cancellation, if any */\n minimumEarnedPremium: Scalars['Float']['output'];\n /** Other fees incurred on this policy, not collected by the agency as revenue */\n otherFees: Scalars['Float']['output'];\n /** Fees collected by the carrier to administer the policy or program */\n policyFees: Scalars['Float']['output'];\n /** The premium for this policy */\n premium: Scalars['Float']['output'];\n /** Taxes levied on the policy premium and any taxable fees */\n taxes: Scalars['Float']['output'];\n /** The total price paid for this policy */\n total: Scalars['Float']['output'];\n};\n\n/** Information about a policy reinstatement */\nexport type BusinessPolicyReinstatement = {\n __typename?: 'BusinessPolicyReinstatement';\n /** The date and time when the reinstatement becomes effective */\n effectiveAt: Scalars['Time']['output'];\n /** A description of the reason for reinstatement */\n reasonDescription: Scalars['String']['output'];\n /** The date and time when the reinstatement was processed */\n reinstatedAt: Scalars['Time']['output'];\n};\n\n/** Information about policy renewals */\nexport type BusinessPolicyRenewal = {\n __typename?: 'BusinessPolicyRenewal';\n /** List of policies that renew this policy */\n nextPolicies: Array;\n /** List of previous policies that this policy renews */\n previousPolicies: Array;\n};\n\n/** Detailed information about the source of a business policy */\nexport type BusinessPolicySource = {\n __typename?: 'BusinessPolicySource';\n /** The agency user that is associated with this policy, if any */\n agencyUser?: Maybe;\n /** The ID of the campaign, if applicable */\n campaignId?: Maybe;\n /** The ID of the lead, if applicable */\n leadId?: Maybe;\n /** Additional notes about the policy source */\n notes: Scalars['String']['output'];\n /** The type of process used to handle the policy */\n processType: BusinessPolicySourceProcessType;\n /** The ID of the referral source, if applicable */\n referralSourceId?: Maybe;\n /** The subtype of the policy source, if applicable */\n subType?: Maybe;\n /** The main type of the policy source */\n type: BusinessPolicySourceType;\n};\n\n/** Describes the process type for handling the business policy */\nexport enum BusinessPolicySourceProcessType {\n /** Process led by an agent */\n AgentLed = 'AGENT_LED',\n /** Self-service process */\n SelfServe = 'SELF_SERVE'\n}\n\n/** Specifies the subtype of the business policy source */\nexport enum BusinessPolicySourceSubType {\n /** Referral from an agency */\n Agency = 'AGENCY',\n /** Lead from Bold Penguin */\n BoldPenguin = 'BOLD_PENGUIN',\n /** Referral from a customer */\n Customer = 'CUSTOMER',\n /** Other type of referral */\n OtherReferral = 'OTHER_REFERRAL',\n /** Referral from a partner */\n Partner = 'PARTNER',\n /** Lead from Tivly */\n Tivly = 'TIVLY'\n}\n\n/** Describes the source where the business deal comes from */\nexport enum BusinessPolicySourceType {\n /** A campaign or marketing initiative */\n Campaign = 'CAMPAIGN',\n /** Cross-sell a policy to an existing customer */\n CrossSell = 'CROSS_SELL',\n /** Inbound lead or inquiry */\n Inbound = 'INBOUND',\n /** Other unspecified source */\n Other = 'OTHER',\n /** Paid lead acquisition */\n PaidLead = 'PAID_LEAD',\n /** Referral from an existing connection */\n Referral = 'REFERRAL'\n}\n\n/** Describes the reason why an application was updated */\nexport enum BusinessPolicyUpdateReasonCode {\n /** Placeholder reason codes until the use case becomes more clear */\n Unknown = 'UNKNOWN'\n}\n\n/** Describes the type of update that occured to a policy */\nexport enum BusinessPolicyUpdateType {\n /** The policy was canceled and is no longer active */\n CancelPolicy = 'CANCEL_POLICY',\n /** The policy was created */\n CreatePolicy = 'CREATE_POLICY',\n /** The policy expired and its no longer active */\n ExpirePolicy = 'EXPIRE_POLICY',\n /** The policy was reinstated after previously being canceled */\n ReinstatePolicy = 'REINSTATE_POLICY',\n /** The policy was created as a renewal */\n RenewPolicy = 'RENEW_POLICY',\n /** The policy was updated with new details extracted from the policy document */\n UpdateExtractedDetails = 'UPDATE_EXTRACTED_DETAILS',\n /** The policy was updated. Requires manual inspection of the policy to determine the actual update */\n UpdatePolicy = 'UPDATE_POLICY'\n}\n\n/** Describes a particular version of a policy */\nexport type BusinessPolicyVersion = {\n __typename?: 'BusinessPolicyVersion';\n /** The full policy object that includes all of the updates made in this version and all previous versions */\n businessPolicy: BusinessPolicy;\n /** The date this version was created */\n createdAt: Scalars['Time']['output'];\n /** Produces a human-readable string that can be used to diff against another policy version. */\n diffableJson: Scalars['String']['output'];\n /** The version number of the previous policy version, if there is any. If this field is null, then this version is the only version */\n previousVersion?: Maybe;\n /** The ID of the entity that initiated the update, depending on the type */\n updateInitiatorId: Scalars['String']['output'];\n /** The type of the entity that initiated the update */\n updateInitiatorType: UpdateInitiatorType;\n /** Indicates whether this update is 'private' in the sense that it should not be displayed to the policyholder */\n updatePrivate: Scalars['Boolean']['output'];\n /** A human-readable description of the reason why this update was made */\n updateReason?: Maybe;\n /** A programmatic representation of the reason why this update was made */\n updateReasonCode?: Maybe;\n /** The types of updates made between this version and the previous version */\n updateTypes: Array;\n /** The version number of this policy version */\n version: Scalars['Int64']['output'];\n};\n\n/** Represents a phone call recorded through the Retell system */\nexport type Call = {\n __typename?: 'Call';\n /** The account associated with this call, if any */\n account?: Maybe;\n /** The agency associated with this call */\n agency: Agency;\n /** The reason the call was disconnected, available once the call has ended */\n disconnectionReason?: Maybe;\n /** The timestamp when the call ended, if completed */\n endedAt?: Maybe;\n /** The ID of the call in the external call system (currently this is always Retell) */\n externalId: Scalars['String']['output'];\n /** The name of the caller, available once the call has ended */\n fromName?: Maybe;\n /** The phone number the call was from */\n fromNumber: Scalars['String']['output'];\n /** Unique identifier for the call */\n id: Scalars['ID']['output'];\n /** The URL of the recording of the call, available once the call has ended */\n recordingUrl?: Maybe;\n /** The sentiment of the call, available once the call has ended */\n sentiment?: Maybe;\n /** The service requests associated with this call, if any */\n serviceRequests: Array;\n /** The timestamp when the call started */\n startedAt: Scalars['Time']['output'];\n /** The status of the call */\n status: CallStatus;\n /** Whether the call was successful, available once the call has ended */\n successful?: Maybe;\n /** A summary of the call, available once the call has ended */\n summary?: Maybe;\n /** The phone number the call was to */\n toNumber: Scalars['String']['output'];\n /** The transcript of the call, available once the call has ended */\n transcript: Array;\n};\n\n/** The reason why a call was disconnected */\nexport enum CallDisconnectionReason {\n /** Expected behavior where AI agent hangs up the call */\n AgentHangup = 'AGENT_HANGUP',\n /** Expected behavior where AI agent transferred the call */\n CallTransfer = 'CALL_TRANSFER',\n /** Error where concurrency limit reached - add a retry with exponential backoff or consider enterprise plan */\n ConcurrencyLimitReached = 'CONCURRENCY_LIMIT_REACHED',\n /** The number dialed is busy */\n DialBusy = 'DIAL_BUSY',\n /** Dialing failed, might be due to callee number being non-existent, or the agent number is marked as spam and got blocked */\n DialFailed = 'DIAL_FAILED',\n /** The number dialed did not answer */\n DialNoAnswer = 'DIAL_NO_ANSWER',\n /** Error where Retell's ASR encountered a problem */\n ErrorAsr = 'ERROR_ASR',\n /** Error where frontend audio websocket received unspecified payload */\n ErrorFrontendCorruptedPayload = 'ERROR_FRONTEND_CORRUPTED_PAYLOAD',\n /** Error where system failed to retrieve dynamic variables for inbound phone call */\n ErrorInboundWebhook = 'ERROR_INBOUND_WEBHOOK',\n /** Error where LLM websocket received unspecified payload */\n ErrorLlmWebsocketCorruptPayload = 'ERROR_LLM_WEBSOCKET_CORRUPT_PAYLOAD',\n /** Error where LLM websocket connection broke during the call */\n ErrorLlmWebsocketLostConnection = 'ERROR_LLM_WEBSOCKET_LOST_CONNECTION',\n /** Error where LLM websocket did not open between Retell server and backend, likely because the Custom LLM URL is incorrect or LLM server is not reachable */\n ErrorLlmWebsocketOpen = 'ERROR_LLM_WEBSOCKET_OPEN',\n /** Error where LLM websocket received a closing signal other than 1000 from your server */\n ErrorLlmWebsocketRuntime = 'ERROR_LLM_WEBSOCKET_RUNTIME',\n /** Error where system has not received audio from Twilio or web frontend for a while after connection has established */\n ErrorNoAudioReceived = 'ERROR_NO_AUDIO_RECEIVED',\n /** Error, unspecified Retell side problem */\n ErrorRetell = 'ERROR_RETELL',\n /** Error where Twilio websocket connection between Retell server encountered an error */\n ErrorTwilio = 'ERROR_TWILIO',\n /** Error, unknown error */\n ErrorUnknown = 'ERROR_UNKNOWN',\n /** Error where user did not join web call within 30s after calling startWebCall */\n ErrorUserNotJoined = 'ERROR_USER_NOT_JOINED',\n /** Expected behavior where call was terminated due to the \"end_call_after_silence_ms\" setting reached after long inactivity */\n Inactivity = 'INACTIVITY',\n /** Expected behavior where call was terminated due to the \"drop_call_if_machine_detected\" setting triggering when a voicemail or similar is detected */\n MachineDetected = 'MACHINE_DETECTED',\n /** Expected behavior where call was terminated due to maximum duration reached */\n MaxDurationReached = 'MAX_DURATION_REACHED',\n /** Error where no valid payment registered on file, or service shut down due to bill overdue */\n NoValidPayment = 'NO_VALID_PAYMENT',\n /** Error where phone call is 30s or more apart from registering */\n RegisteredCallTimeout = 'REGISTERED_CALL_TIMEOUT',\n /** Error where scam was detected for that particular agent */\n ScamDetected = 'SCAM_DETECTED',\n /** Expected behavior where user hangs up the call */\n UserHangup = 'USER_HANGUP',\n /** Expected behavior where AI agent reached voicemail when voicemail settings were configured */\n VoicemailReached = 'VOICEMAIL_REACHED'\n}\n\n/** The sentiment analysis result for a call */\nexport enum CallSentiment {\n /** The call had an overall negative tone/sentiment */\n Negative = 'NEGATIVE',\n /** The call had a neutral or mixed tone/sentiment */\n Neutral = 'NEUTRAL',\n /** The call had an overall positive tone/sentiment */\n Positive = 'POSITIVE'\n}\n\n/** The current status of a call */\nexport enum CallStatus {\n /** The call has ended */\n Completed = 'COMPLETED',\n /** The call has ended with an error */\n Error = 'ERROR',\n /** The call is in progress */\n InProgress = 'IN_PROGRESS',\n /** The call has been registered with Retell */\n Registered = 'REGISTERED'\n}\n\n/** Represents a single utterance or action in the call transcript */\nexport type CallTranscriptObject = {\n __typename?: 'CallTranscriptObject';\n /** The content of the utterance or tool result */\n content: Scalars['String']['output'];\n /** The duration in seconds of the utterance or tool result */\n durationSeconds: Scalars['Float']['output'];\n /** The role of the participant or action in the transcript */\n role: CallTranscriptRole;\n /** The offset in seconds from the start of the call when the utterance or tool result was spoken or executed */\n startTimeOffsetSeconds: Scalars['Float']['output'];\n /** The arguments passed to the tool in JSON format if this is a tool invocation */\n toolArgumentsJson?: Maybe;\n /** The ID of the tool call if this is a tool invocation or result */\n toolCallId?: Maybe;\n /** The name of the tool being called if this is a tool invocation */\n toolName?: Maybe;\n};\n\n/** The role of a participant or action in the call transcript */\nexport enum CallTranscriptRole {\n /** Represents speech from the AI agent */\n Agent = 'AGENT',\n /** Represents a tool being called by the agent */\n ToolInvocation = 'TOOL_INVOCATION',\n /** Represents the result returned from a tool call */\n ToolResult = 'TOOL_RESULT',\n /** Represents speech from the human user */\n User = 'USER'\n}\n\n/** Input for canceling a business policy */\nexport type CancelBusinessPolicyInput = {\n /** Who initiated the cancellation */\n canceledBy: BusinessPolicyCancellationSource;\n /** When the cancellation becomes effective */\n effectiveAt: Scalars['Time']['input'];\n /** The reason for cancellation */\n reason: BusinessPolicyCancellationReason;\n /** A description of the cancellation reason */\n reasonDescription: Scalars['String']['input'];\n /** The commission amount to be returned */\n returnCommission: Scalars['Float']['input'];\n /** The premium amount to be returned */\n returnPremium: Scalars['Float']['input'];\n /** The type of cancellation */\n type: BusinessPolicyCancellationType;\n};\n\n/** Details for a request to cancel a policy */\nexport type CancelPolicyRequest = {\n __typename?: 'CancelPolicyRequest';\n /** ID of the policy to be cancelled */\n policyId: Scalars['String']['output'];\n /** Reason for cancelling the policy */\n reason: Scalars['String']['output'];\n};\n\n/** Input type for canceling a policy request */\nexport type CancelPolicyRequestInput = {\n /** ID of the policy to be cancelled */\n policyId: Scalars['String']['input'];\n /** Reason for cancelling the policy */\n reason: Scalars['String']['input'];\n};\n\n/** A workspace for Cara to execute tasks and produce artifacts */\nexport type CaraWorkspace = {\n __typename?: 'CaraWorkspace';\n /** The agency user the created this workspace */\n agencyUser: AgencyUser;\n /** The artifacts produced in this workspace */\n artifacts: Array;\n /** The timestamp when this workspace was created */\n createdAt: Scalars['Time']['output'];\n /** The files associated with this workspace */\n files: Array;\n /** The unique identifier for this workspace */\n id: Scalars['ID']['output'];\n /** The messages exchanged in this workspace */\n messages: Array;\n /** The plan stages in this workspace */\n planStages: Array;\n /**\n * The preset for this workspace, if any. This indicates a specific task or goal for the workspace\n * and can be used to guide the AI in its execution.\n */\n preset?: Maybe;\n /** The service request this workspace is handling, if any */\n serviceRequest?: Maybe;\n /** The current state of this workspace */\n state: CaraWorkspaceState;\n /** A brief title describing this workspace, initially set by AI but can be overridden by the agent */\n title: Scalars['String']['output'];\n /** The timestamp when this workspace was last modified */\n updatedAt: Scalars['Time']['output'];\n};\n\n/** An artifact produced during execution of a Cara workspace */\nexport type CaraWorkspaceArtifact = {\n __typename?: 'CaraWorkspaceArtifact';\n /** The certificate of liability insurance details if this is a certificate of liability insurance artifact */\n certificateOfLiabilityInsurance?: Maybe;\n /** The timestamp when the artifact was created */\n createdAt: Scalars['Time']['output'];\n /** The document details if this is a document artifact */\n document?: Maybe;\n /** The email details if this is an email artifact */\n email?: Maybe;\n /** The ID of the artifact */\n id: Scalars['ID']['output'];\n /** The type of artifact (document or email) */\n type: CaraWorkspaceArtifactType;\n};\n\nexport enum CaraWorkspaceArtifactType {\n /** A certificate of liability insurance artifact */\n CertificateOfLiabilityInsurance = 'CERTIFICATE_OF_LIABILITY_INSURANCE',\n /** A document artifact like a report or analysis */\n Document = 'DOCUMENT',\n /** An email artifact for communication */\n Email = 'EMAIL'\n}\n\n/** A message exchanged between a user and agent in a Cara workspace */\nexport type CaraWorkspaceMessage = {\n __typename?: 'CaraWorkspaceMessage';\n /** The content of the message */\n content: Scalars['String']['output'];\n /** The ID of the message in the external system */\n externalId: Scalars['String']['output'];\n /** The files associated with this message */\n files: Array;\n /** The ID of the message */\n id: Scalars['ID']['output'];\n /** The role of the message sender (user or agent) */\n role: CaraWorkspaceMessageRole;\n /** The timestamp when the message was created */\n timestamp: Scalars['Time']['output'];\n};\n\nexport type CaraWorkspaceMessageInput = {\n /**\n * The IDs of the documents for which templates should be generated. This should only be specified\n * when the preset is GENERATE_TEMPLATE.\n */\n documentIds?: InputMaybe>;\n /** Any files to add to the message */\n files: Array;\n /** The content of the message to add */\n message: Scalars['String']['input'];\n /**\n * The preset for this workspace, if any. This indicates a specific task or goal for the workspace\n * and can be used to guide the AI in its execution.\n */\n preset?: InputMaybe;\n /** The ID of the service request this workspace is associated with, if any */\n serviceRequestId?: InputMaybe;\n};\n\n/** The role of a message in a Cara workspace conversation */\nexport enum CaraWorkspaceMessageRole {\n /** A message from the AI agent */\n Agent = 'AGENT',\n /** A message from the human user */\n User = 'USER'\n}\n\n/** A stage in the execution plan of a Cara workspace task */\nexport type CaraWorkspacePlanStage = {\n __typename?: 'CaraWorkspacePlanStage';\n /** The timestamp when the plan stage was created */\n createdAt: Scalars['Time']['output'];\n /** Detailed explanation of the plan stage's purpose and approach */\n details: Scalars['String']['output'];\n /** The timestamp when execution of the plan stage completed */\n endedAt?: Maybe;\n /** The sequence of events that occurred during stage execution */\n events: Array;\n /** The ID of the plan stage */\n id: Scalars['ID']['output'];\n /** The ID of the message that initiated this plan stage */\n initiatedByMessageId: Scalars['String']['output'];\n /** The details of the process attachments plan stage */\n processAttachmentsDetails?: Maybe;\n /** The outcome or findings from executing this plan stage */\n result: Scalars['String']['output'];\n /** The timestamp when execution of the plan stage began */\n startedAt?: Maybe;\n /** The current execution state of the plan stage */\n state: CaraWorkspacePlanStageState;\n /** The type of plan stage */\n type: CaraWorkspacePlanStageType;\n};\n\n/** An event that occurs during the execution of a plan stage */\nexport type CaraWorkspacePlanStageEvent = {\n __typename?: 'CaraWorkspacePlanStageEvent';\n /** The content or description of the event */\n content?: Maybe;\n /** The timestamp when the event ended */\n endedAt?: Maybe;\n /** The ID of the event in the external system */\n externalId: Scalars['String']['output'];\n /** The ID of the event */\n id: Scalars['ID']['output'];\n /** The timestamp when the event was created */\n startedAt: Scalars['Time']['output'];\n /** A brief title of the event */\n title?: Maybe;\n /** The tool call details if this event is a tool invocation */\n toolCall?: Maybe;\n /** The type of the event (thought or tool call) */\n type: CaraWorkspacePlanStageEventType;\n};\n\n/** The type of event that can occur during a plan stage execution */\nexport enum CaraWorkspacePlanStageEventType {\n /** An internal reasoning step by the agent */\n Thought = 'THOUGHT',\n /** An invocation of an external tool or API */\n ToolCall = 'TOOL_CALL'\n}\n\n/** The details of the process attachments plan stage */\nexport type CaraWorkspacePlanStageProcessAttachmentDetails = {\n __typename?: 'CaraWorkspacePlanStageProcessAttachmentDetails';\n /** The progress of the current file being processed (as a decimal between 0 and 1) */\n currentFileProgress: Scalars['Float']['output'];\n};\n\n/** The state of a plan stage in a Cara workspace */\nexport enum CaraWorkspacePlanStageState {\n /** The stage has failed to complete */\n Failed = 'FAILED',\n /** The stage is actively processing a task */\n InProgress = 'IN_PROGRESS',\n /** The stage is planned but not yet started */\n Planned = 'PLANNED',\n /** The stage has been completed successfully */\n Success = 'SUCCESS'\n}\n\n/** The type of plan stage in a Cara workspace */\nexport enum CaraWorkspacePlanStageType {\n /** A plan stage that processes attached files */\n ProcessAttachments = 'PROCESS_ATTACHMENTS',\n /** A plan stage that performs a task */\n Task = 'TASK'\n}\n\nexport enum CaraWorkspacePreset {\n /** A preset for reviewing a certificate of liability insurance for correctness */\n CertificateReview = 'CERTIFICATE_REVIEW',\n /** A preset for reviewing a contract and comparing its requirements to a quote or policy */\n ContractReview = 'CONTRACT_REVIEW',\n /** A preset for comparing insurance coverage between two policies or quotes */\n CoverageComparison = 'COVERAGE_COMPARISON',\n /** A preset for exploring a document and asking questions about it */\n DocumentExploration = 'DOCUMENT_EXPLORATION',\n /** A preset for generating a certificate of liability insurance */\n GenerateCertificateOfLiabilityInsurance = 'GENERATE_CERTIFICATE_OF_LIABILITY_INSURANCE',\n /** A preset for generating a template for a document */\n GenerateTemplate = 'GENERATE_TEMPLATE'\n}\n\n/** The state of a Cara workspace, indicating its current execution status */\nexport enum CaraWorkspaceState {\n /** The workspace is created but not yet started */\n Created = 'CREATED',\n /** The workspace has finished processing the task and is idle */\n Idle = 'IDLE',\n /** The workspace is waiting for user input to continue */\n WaitingForInput = 'WAITING_FOR_INPUT',\n /** The workspace is actively processing a task */\n Working = 'WORKING'\n}\n\n/**\n * Configuration for a business's auto liability policy's Certificate of Insurance (COI).\n * Contains details about auto coverage types, limits, and policy information.\n */\nexport type CertificateAutoLiabilitySection = {\n __typename?: 'CertificateAutoLiabilitySection';\n /** Whether additional insured coverage is included */\n additionalInsured: Scalars['Boolean']['output'];\n /** Whether coverage applies to any auto */\n anyAutoLiability: Scalars['Boolean']['output'];\n /** NAIC code of the carrier */\n carrierNaic: Scalars['String']['output'];\n /** Name of the carrier */\n carrierName: Scalars['String']['output'];\n /** Whether coverage applies only to hired autos */\n hiredAutosOnlyLiability: Scalars['Boolean']['output'];\n /** Coverage limit for bodily injury per accident */\n limitBodilyInjuryPerAccident: Scalars['Float']['output'];\n /** Coverage limit for bodily injury per person */\n limitBodilyInjuryPerPerson: Scalars['Float']['output'];\n /** Coverage limit for each accident */\n limitCombinedSingleLimitPerAccident: Scalars['Float']['output'];\n /** Amount of any other coverage limit */\n limitOtherAmount: Scalars['Float']['output'];\n /** Name of any other coverage limit */\n limitOtherName: Scalars['String']['output'];\n /** Coverage limit for property damage per accident */\n limitPropertyDamagePerAccident: Scalars['Float']['output'];\n /** Whether coverage applies only to non-owned autos */\n nonOwnedAutosOnlyLiability: Scalars['Boolean']['output'];\n /** Whether coverage applies only to owned autos */\n ownedAutosOnlyLiability: Scalars['Boolean']['output'];\n /** The auto liability policy this COI configuration is associated with, if any */\n policy?: Maybe;\n /** Date the policy becomes effective */\n policyEffectiveDate: Scalars['Time']['output'];\n /** Date the policy expires */\n policyExpirationDate: Scalars['Time']['output'];\n /** Policy number for the auto liability coverage */\n policyNumber: Scalars['String']['output'];\n /** Whether coverage applies only to scheduled autos */\n scheduledAutosOnlyLiability: Scalars['Boolean']['output'];\n /** Whether subrogation is waived */\n subrogationWaiver: Scalars['Boolean']['output'];\n};\n\n/** CertificateEntity represents an entity involved in the insurance certificate. */\nexport type CertificateEntity = {\n __typename?: 'CertificateEntity';\n /** The address of the entity */\n address: Address;\n /** The name of the entity */\n name: Scalars['String']['output'];\n};\n\n/** Input for a certificate entity */\nexport type CertificateEntityInput = {\n /** The address of the entity */\n address: AddressInput;\n /** The name of the entity */\n name: Scalars['String']['input'];\n};\n\n/** Input for the holder of the certificate */\nexport type CertificateHolderInput = {\n /** The address of the holder */\n address: AddressInput;\n /** The name of the holder */\n name: Scalars['String']['input'];\n};\n\n/**\n * Configuration for a business's liability policy's Certificate of Insurance (COI).\n * Contains details about coverage types, limits, and policy information.\n */\nexport type CertificateLiabilitySection = {\n __typename?: 'CertificateLiabilitySection';\n /** Whether additional insured coverage is included */\n additionalInsured: Scalars['Boolean']['output'];\n /** NAIC code of the carrier */\n carrierNaic: Scalars['String']['output'];\n /** Name of the carrier */\n carrierName: Scalars['String']['output'];\n /** How the general aggregate limit applies - per policy, project, location or other */\n generalAggregateLimitAppliesPer: GeneralAggregateLimitAppliesPerType;\n /** Description of other general aggregate limit application if type is OTHER */\n generalAggregateLimitAppliesPerOther?: Maybe;\n /** Type of liability coverage - either claims made or occurrence based */\n liabilityCoverageType: LiabilityCoverageType;\n /** Coverage limit for damage to rented premises per occurrence */\n limitDamageToPremisesEachOccurrence: Scalars['Float']['output'];\n /** Coverage limit for each occurrence */\n limitEachOccurrence: Scalars['Float']['output'];\n /** General aggregate coverage limit */\n limitGeneralAggregate: Scalars['Float']['output'];\n /** Coverage limit for medical expenses per person */\n limitMedicalExpensePerOccurrence: Scalars['Float']['output'];\n /** Coverage limit for medical expenses per person */\n limitMedicalExpensePerPerson: Scalars['Float']['output'];\n /** Amount of any other coverage limit */\n limitOtherAmount: Scalars['Float']['output'];\n /** Name of any other coverage limit */\n limitOtherName: Scalars['String']['output'];\n /** Coverage limit for personal and advertising injury */\n limitPersonalAndAdvertisingInjury: Scalars['Float']['output'];\n /** Coverage limit for products and completed operations */\n limitProductsAndCompletedOperations: Scalars['Float']['output'];\n /** The liability policy this COI configuration is associated with, if any */\n policy?: Maybe;\n /** Date the policy becomes effective */\n policyEffectiveDate: Scalars['Time']['output'];\n /** Date the policy expires */\n policyExpirationDate: Scalars['Time']['output'];\n /** Policy number for the liability coverage */\n policyNumber: Scalars['String']['output'];\n /** Whether subrogation is waived */\n subrogationWaiver: Scalars['Boolean']['output'];\n};\n\n/** CertificateLimit represents a limit associated with an insurance certificate. */\nexport type CertificateLimit = {\n __typename?: 'CertificateLimit';\n /** The amount of the limit */\n amount: Scalars['Float']['output'];\n /** The name of the limit */\n name: Scalars['String']['output'];\n};\n\n/** Configuration for an agency's Certificate of Insurance (COI) settings */\nexport type CertificateOfLiabilityAgencyConfiguration = {\n __typename?: 'CertificateOfLiabilityAgencyConfiguration';\n /** The name of the authorized representative */\n authorizedRepName: Scalars['String']['output'];\n /** Base64-encoded signature image data used for signing COIs */\n authorizedRepSignatureBase64Data: Scalars['String']['output'];\n /** Email address of the agency contact person for COI-related inquiries */\n contactEmail: Scalars['String']['output'];\n /** Name of the agency contact person for COI-related inquiries */\n contactName: Scalars['String']['output'];\n /** Phone number of the agency contact person for COI-related inquiries */\n contactPhone: Scalars['String']['output'];\n /** The producer entity information that appears on COIs issued by this agency */\n producer: CertificateEntity;\n};\n\n/** Input configuration for an agency's Certificate of Insurance (COI) settings */\nexport type CertificateOfLiabilityAgencyConfigurationInput = {\n /** The name of the authorized representative */\n authorizedRepName: Scalars['String']['input'];\n /** Base64-encoded signature image data used for signing COIs */\n authorizedRepSignatureBase64Data?: InputMaybe;\n /** Email address of the agency contact person for COI-related inquiries */\n contactEmail: Scalars['String']['input'];\n /** Name of the agency contact person for COI-related inquiries */\n contactName: Scalars['String']['input'];\n /** Phone number of the agency contact person for COI-related inquiries */\n contactPhone: Scalars['String']['input'];\n /** The producer entity information that appears on COIs issued by this agency */\n producer: CertificateEntityInput;\n};\n\n/** Configuration for a business's Certificate of Insurance (COI) */\nexport type CertificateOfLiabilityInsurance = {\n __typename?: 'CertificateOfLiabilityInsurance';\n /** Configuration for the agency that produced the COI */\n agency: CertificateOfLiabilityAgencyConfiguration;\n /** Configuration for the business's auto liability policy's Certificate of Insurance (COI) */\n autoLiability?: Maybe;\n /** The certificate number for the COI */\n certificateNumber: Scalars['String']['output'];\n /** The date the COI was created */\n createdAt: Scalars['Time']['output'];\n /** Description of the business's operations, used for generating COIs */\n descriptionOfOperations: Scalars['String']['output'];\n /** The URL that the COI can be downloaded at */\n downloadUrl: Scalars['String']['output'];\n /** The holder entity information that appears on COIs issued by this business */\n holder: CertificateEntity;\n /** The unique identifier for the certificate */\n id: Scalars['ID']['output'];\n /** The insured entity information that appears on COIs issued by this business */\n insured: CertificateEntity;\n /** Configuration for the business's liability policy's Certificate of Insurance (COI) */\n liability?: Maybe;\n /** Configuration for the business's other policy's Certificate of Insurance (COI) */\n other?: Maybe;\n /** Configuration for the business's umbrella or excess liability policy's Certificate of Insurance (COI) */\n umbrellaOrExcessLiability?: Maybe;\n /** The date the COI was last updated */\n updatedAt: Scalars['Time']['output'];\n /** The URL that the COI can be viewed at */\n viewUrl: Scalars['String']['output'];\n /** Configuration for the business's workers' compensation policy's Certificate of Insurance (COI) */\n workersCompensation?: Maybe;\n};\n\n/**\n * Configuration for any other type of policy's Certificate of Insurance (COI).\n * Contains details about the coverage type, limits, and policy information.\n */\nexport type CertificateOtherSection = {\n __typename?: 'CertificateOtherSection';\n /** Whether additional insured coverage is included */\n additionalInsured: Scalars['Boolean']['output'];\n /** NAIC code of the carrier */\n carrierNaic: Scalars['String']['output'];\n /** Name of the carrier */\n carrierName: Scalars['String']['output'];\n /** Description of the type of coverage */\n coverageType: Scalars['String']['output'];\n /** List of coverage limits and their amounts */\n limits: Array;\n /** The other policy this COI configuration is associated with, if any */\n policy?: Maybe;\n /** Date the policy becomes effective */\n policyEffectiveDate: Scalars['Time']['output'];\n /** Date the policy expires */\n policyExpirationDate: Scalars['Time']['output'];\n /** Policy number for the coverage */\n policyNumber: Scalars['String']['output'];\n /** Whether subrogation is waived */\n subrogationWaiver: Scalars['Boolean']['output'];\n};\n\nexport enum CertificateType {\n /** Certificate of Liability Insurance */\n Liability = 'LIABILITY',\n /** Certificate of Property Insurance */\n Property = 'PROPERTY'\n}\n\n/**\n * Configuration for a business's umbrella or excess liability policy's Certificate of Insurance (COI).\n * Contains details about umbrella/excess coverage, limits, and policy information.\n */\nexport type CertificateUmbrellaOrExcessLiabilitySection = {\n __typename?: 'CertificateUmbrellaOrExcessLiabilitySection';\n /** Whether additional insured coverage is included */\n additionalInsured: Scalars['Boolean']['output'];\n /** NAIC code of the carrier */\n carrierNaic: Scalars['String']['output'];\n /** Name of the carrier */\n carrierName: Scalars['String']['output'];\n /** Deductible amount for the coverage */\n deductible: Scalars['Float']['output'];\n /** Whether this is excess liability coverage */\n excessLiability: Scalars['Boolean']['output'];\n /** Type of liability coverage - either claims made or occurrence based */\n liabilityCoverageType: LiabilityCoverageType;\n /** Coverage limit for each occurrence */\n limitEachOccurrence: Scalars['Float']['output'];\n /** General aggregate coverage limit */\n limitGeneralAggregate: Scalars['Float']['output'];\n /** Amount of any other coverage limit */\n limitOtherAmount: Scalars['Float']['output'];\n /** Name of any other coverage limit */\n limitOtherName: Scalars['String']['output'];\n /** The umbrella or excess liability policy this COI configuration is associated with, if any */\n policy?: Maybe;\n /** Date the policy becomes effective */\n policyEffectiveDate: Scalars['Time']['output'];\n /** Date the policy expires */\n policyExpirationDate: Scalars['Time']['output'];\n /** Policy number for the umbrella/excess coverage */\n policyNumber: Scalars['String']['output'];\n /** Retention limit for the coverage */\n retentionLimit: Scalars['Float']['output'];\n /** Whether subrogation is waived */\n subrogationWaiver: Scalars['Boolean']['output'];\n /** Whether this is umbrella liability coverage */\n umbrellaLiability: Scalars['Boolean']['output'];\n};\n\n/**\n * Configuration for a business's workers' compensation policy's Certificate of Insurance (COI).\n * Contains details about workers' comp coverage, limits, and policy information.\n */\nexport type CertificateWorkersCompensationSection = {\n __typename?: 'CertificateWorkersCompensationSection';\n /** NAIC code of the carrier */\n carrierNaic: Scalars['String']['output'];\n /** Name of the carrier */\n carrierName: Scalars['String']['output'];\n /** Name of any party excluded from coverage */\n excludedPartyName?: Maybe;\n /** Coverage limit per accident */\n limitPerAccident: Scalars['Float']['output'];\n /** Coverage limit per employee */\n limitPerEmployee: Scalars['Float']['output'];\n /** Coverage limit per policy */\n limitPerPolicy: Scalars['Float']['output'];\n /** Whether the coverage limits are provided per statute */\n limitsStatutory: Scalars['Boolean']['output'];\n /** The workers' compensation policy this COI configuration is associated with, if any */\n policy?: Maybe;\n /** Date the policy becomes effective */\n policyEffectiveDate: Scalars['Time']['output'];\n /** Date the policy expires */\n policyExpirationDate: Scalars['Time']['output'];\n /** Policy number for the workers' compensation coverage */\n policyNumber: Scalars['String']['output'];\n /** Whether subrogation is waived */\n subrogationWaiver: Scalars['Boolean']['output'];\n};\n\n/**\n * A client represents a customer of an agency. They can have multiple businesses,\n * business applications, policies and service requests associated with them.\n */\nexport type Client = {\n __typename?: 'Client';\n /** The agency that manages this client. Only accessible by agency users. */\n agency: Agency;\n /** Insurance applications submitted by this client. */\n businessApplications: Array;\n /** Active insurance policies held by this client. */\n businessPolicies: Array;\n /** Businesses owned or operated by this client. */\n businesses: Array;\n /** When the client record was created. */\n createdAt: Scalars['Time']['output'];\n /** Primary email address for contacting the client. */\n email: Scalars['String']['output'];\n /** Unique identifier for the client. */\n id: Scalars['ID']['output'];\n /** Full name of the client. */\n name: Scalars['String']['output'];\n /** Primary phone number for contacting the client. */\n phone: Scalars['String']['output'];\n /** Service requests submitted by this client. */\n serviceRequests: Array;\n /** When the client record was last updated. */\n updatedAt: Scalars['Time']['output'];\n};\n\n/** Input for creating a certificate of insurance on the client side */\nexport type ClientCreateCertificateInput = {\n /**\n * If the holder is an additional insured, and is one of the allowed blanket or named insureds,\n * then this is the ID of the additional insured.\n */\n additionalInsuredId?: InputMaybe;\n /** The holder of the certificate. */\n holder: CertificateHolderInput;\n /** Whether the holder is an additional insured. */\n isAdditionalInsured: Scalars['Boolean']['input'];\n /** Whether the holder is an additional insured, but not an allowed blanket or named insured. */\n isOtherAdditionalInsured?: InputMaybe;\n /** Any additional notes for the agency to review when creating the certificate. */\n notes: Scalars['String']['input'];\n /**\n * If the holder is an additional insured, but not an allowed blanket or named insured,\n * then this is the relationship of the additional insured to the holder.\n */\n otherAdditionalInsuredRelationship?: InputMaybe;\n};\n\n/** Result of creating a certificate of insurance on the client side */\nexport type ClientCreateCertificateResult = {\n __typename?: 'ClientCreateCertificateResult';\n /** The certificate of insurance that was created, if successful. */\n certificate?: Maybe;\n /** The result code of the client create certificate result */\n code: ClientCreateCertificateResultCode;\n /** If the certificate was not created, the service request that was created for the agency to review. */\n serviceRequest?: Maybe;\n};\n\n/** The result code of the client create certificate result */\nexport enum ClientCreateCertificateResultCode {\n /** There was an error creating the certificate, and a service request was created for the agency to review. */\n Error = 'ERROR',\n /** A policy may need to be endorsed prior to certificate creation, and a service request was created for the agency to handle. */\n RequiresEndorsement = 'REQUIRES_ENDORSEMENT',\n /** The certificate request needs to be reviewed prior to creation, and a service request was created for the agency to review. */\n RequiresReview = 'REQUIRES_REVIEW',\n /** The certificate was successfully created. */\n Success = 'SUCCESS'\n}\n\n/** Represents an action required for compliance */\nexport type ComplianceAction = {\n __typename?: 'ComplianceAction';\n /** The person assigned to complete this action */\n assignee?: Maybe;\n /** The person who completed this action, if applicable */\n completedBy?: Maybe;\n /** The date when this action was completed, if applicable */\n completionDate?: Maybe;\n /** List of requirements for completing this action */\n completionRequirements: Array;\n /** List of compliance items associated with this action */\n complianceItems: Array;\n /** Detailed description of the compliance action */\n description: Scalars['String']['output'];\n /** The date by which this action should be completed */\n dueDate: Scalars['Time']['output'];\n /** Unique identifier for the compliance action */\n id: Scalars['ID']['output'];\n /** Current status of the compliance action */\n status: ComplianceActionStatus;\n /** Title of the compliance action */\n title: Scalars['String']['output'];\n};\n\n/** Represents a person assigned to or who completed a compliance action */\nexport type ComplianceActionAssignee = {\n __typename?: 'ComplianceActionAssignee';\n /** Email address of the assignee */\n email: Scalars['String']['output'];\n /** Unique identifier for the assignee */\n id: Scalars['ID']['output'];\n /** Full name of the assignee */\n name: Scalars['String']['output'];\n};\n\n/** Represents a requirement for completing a compliance action */\nexport type ComplianceActionCompletionRequirement = {\n __typename?: 'ComplianceActionCompletionRequirement';\n /** Detailed description of the completion requirement */\n description: Scalars['String']['output'];\n /** Unique identifier for the completion requirement */\n id: Scalars['ID']['output'];\n /** Title of the completion requirement */\n title: Scalars['String']['output'];\n};\n\n/** Represents the status of a compliance action */\nexport enum ComplianceActionStatus {\n /** The action has been completed */\n Closed = 'CLOSED',\n /** The action is still pending completion */\n Open = 'OPEN'\n}\n\n/** Represents a group of compliance items */\nexport type ComplianceGroup = {\n __typename?: 'ComplianceGroup';\n /** Detailed description of the compliance group */\n description: Scalars['String']['output'];\n /** List of compliance items within this group */\n items: Array;\n /** Unique identifier for the compliance group */\n slug: Scalars['ID']['output'];\n /** Title of the compliance group */\n title: Scalars['String']['output'];\n};\n\n/** Represents a specific compliance item */\nexport type ComplianceItem = {\n __typename?: 'ComplianceItem';\n /** List of actions associated with this compliance item */\n actions: Array;\n /** Detailed description of the compliance item */\n description: Scalars['String']['output'];\n /** Unique identifier for the compliance item */\n id: Scalars['ID']['output'];\n /** List of reference materials related to this compliance item */\n referenceMaterials: Array;\n /** List of requirements for this compliance item */\n requirements: Array;\n /** Slug identifier for the compliance item */\n slug: Scalars['String']['output'];\n /** List of standards associated with this compliance item */\n standards: Array;\n /** Title of the compliance item */\n title: Scalars['String']['output'];\n};\n\n/** Represents reference material for compliance */\nexport type ComplianceReferenceMaterial = {\n __typename?: 'ComplianceReferenceMaterial';\n /** Detailed description of the reference material */\n description: Scalars['String']['output'];\n /** Title of the reference material */\n title: Scalars['String']['output'];\n /** URL to access the reference material */\n url: Scalars['String']['output'];\n};\n\n/** Represents a specific requirement for compliance */\nexport type ComplianceRequirement = {\n __typename?: 'ComplianceRequirement';\n /** Detailed description of the compliance requirement */\n description: Scalars['String']['output'];\n /** Title of the compliance requirement */\n title: Scalars['String']['output'];\n};\n\n/** Represents a compliance standard */\nexport type ComplianceStandard = {\n __typename?: 'ComplianceStandard';\n /** Detailed description of the compliance standard */\n description: Scalars['String']['output'];\n /** Title of the compliance standard */\n title: Scalars['String']['output'];\n /** URL for more information about the standard */\n url: Scalars['String']['output'];\n};\n\n/** Represents information about the associated CoverForce application. */\nexport type CoverforceApplication = {\n __typename?: 'CoverforceApplication';\n /** The ID of the policy that is binding, if any was selected */\n bindingPolicyId?: Maybe;\n /** The ID of the quote that is binding, if any was selected */\n bindingQuoteId?: Maybe;\n /** The ID of the associated CoverForce application. */\n id: Scalars['ID']['output'];\n /** The fingerprint of the application last submitted for quotes. */\n lastApplicationFingerprint: Scalars['String']['output'];\n /** The timestamp that the Coverforce application was last submitted for quotes */\n lastQuotesRefreshedAt?: Maybe;\n /** The type of insurance the CoverForce application is for. */\n type: InsuranceType;\n};\n\n/** Input for creating a new account contact */\nexport type CreateAccountContactInput = {\n /** The contact's email address */\n email: Scalars['String']['input'];\n /** The contact's name */\n name: Scalars['String']['input'];\n /** The contact's phone number */\n phone: Scalars['String']['input'];\n};\n\n/** Input for creating a new agency account */\nexport type CreateAccountInput = {\n /** If provided, ID of an existing contact to associate with the account */\n associateContactId?: InputMaybe;\n /** Business account details */\n business?: InputMaybe;\n /** Contact details for the account, if a new contact should be created */\n contact?: InputMaybe;\n /** Individual account details */\n individual?: InputMaybe;\n /** The type of account - either a business or individual account. */\n type: AccountType;\n};\n\n/** Input for creating a new agency */\nexport type CreateAgencyInput = {\n /** Agency details */\n agency: AgencyInput;\n /** Users to create for the agency */\n users: Array;\n};\n\nexport type CreateApplicationInput = {\n /** The legal name of the business applying for insurance. */\n businessName: Scalars['String']['input'];\n /** The email address of the contact person for the business application. */\n email: Scalars['String']['input'];\n /** The name of the contact person for the business application. */\n fullName: Scalars['String']['input'];\n /** The phone number of the contact person for the business application. */\n phone: Scalars['String']['input'];\n};\n\n/** Input for creating a new business record */\nexport type CreateBusinessAccountInput = {\n /** Doing Business As (DBA) name, if different from legal name */\n dba: Scalars['String']['input'];\n /** Primary email address for contacting the business */\n email: Scalars['String']['input'];\n /** Mailing address for the business */\n mailingAddress: AddressInput;\n /** ID of the business category this business belongs to */\n naics: Scalars['String']['input'];\n /** Legal name of the business */\n name: Scalars['String']['input'];\n /** Primary phone number for contacting the business */\n phone: Scalars['String']['input'];\n /** Website URL for the business */\n website: Scalars['String']['input'];\n};\n\n/** Input for creating a new business record */\nexport type CreateBusinessInput = {\n /** Doing Business As (DBA) name, if different from legal name */\n dba: Scalars['String']['input'];\n /** Mailing address for the business */\n mailingAddress: AddressInput;\n /** ID of the business category this business belongs to */\n naics: Scalars['String']['input'];\n /** Legal name of the business */\n name: Scalars['String']['input'];\n /** Website URL for the business */\n website: Scalars['String']['input'];\n};\n\n/** Input for creating multiple business policies */\nexport type CreateBusinessPoliciesInput = {\n /** ID of the account to create policies for */\n accountId: Scalars['String']['input'];\n /** List of policies to create */\n policies: Array;\n};\n\n/** Input for creating a single business policy */\nexport type CreateBusinessPolicyInput = {\n /** Type of agency billing */\n agencyBillingType?: InputMaybe;\n /** Additional fees collected by the agency as revenue. */\n agencyFees: Scalars['Float']['input'];\n /** Reference ID for existing Ascend quote */\n ascendExistingQuoteRefId?: InputMaybe;\n /** Mode for creating Ascend program */\n ascendProgramCreationMode?: InputMaybe;\n /** ID of the Ascend program */\n ascendProgramId?: InputMaybe;\n /** Type of billing for the policy */\n billingType: BusinessPolicyBillingType;\n /** Fees collected by the wholesale broker */\n brokerFees: Scalars['Float']['input'];\n /** ID of the broker, if applicable */\n brokerId?: InputMaybe;\n /** ID of the insurance carrier */\n carrierId: Scalars['String']['input'];\n /** Estimated commission percentage */\n estimatedCommission: Scalars['Float']['input'];\n /** When the policy expires */\n expiresAt?: InputMaybe;\n /** Unique identifier for the policy, used only for Ascend program referencing (an ID is actually generated by the server) */\n id: Scalars['String']['input'];\n /** When the policy goes into effect */\n inforceAt?: InputMaybe;\n /** When the policy was issued */\n issuedAt?: InputMaybe;\n /** Insurance market the policy is written in */\n market: InsuranceMarket;\n /** Minimum earned premium for the policy */\n minimumEarnedPremium: Scalars['Float']['input'];\n /** Other fees incurred on this policy, not collected by the agency as revenue */\n otherFees: Scalars['Float']['input'];\n /** Payment interval of the policy. If billed via ASCEND, leave this blank */\n paymentIntervalType?: InputMaybe;\n /** Fees collected by the carrier to administer the policy or program */\n policyFees: Scalars['Float']['input'];\n /** Policy number once issued */\n policyNumber?: InputMaybe;\n /** The actual premium of the policy */\n premium: Scalars['Float']['input'];\n /** Quote number from carrier */\n quoteNumber: Scalars['String']['input'];\n /** ID of the agency user who sourced the policy */\n sourceAgencyUserId: Scalars['String']['input'];\n /** ID of the campaign, if applicable */\n sourceCampaignId?: InputMaybe;\n /** ID of the lead that generated this policy */\n sourceLeadId?: InputMaybe;\n /** Additional notes about the policy source */\n sourceNotes: Scalars['String']['input'];\n /** Type of process used to source the policy */\n sourceProcessType: BusinessPolicySourceProcessType;\n /** ID of the referral source, if applicable */\n sourceReferralSourceId?: InputMaybe;\n /** Sub-type of the source */\n sourceSubType?: InputMaybe;\n /** Type of source for the policy */\n sourceType: BusinessPolicySourceType;\n /** Current state of the policy */\n state: PolicyState;\n /** Taxes levied on the policy premium and any taxable fees */\n taxes: Scalars['Float']['input'];\n /** Total amount to charge for the policy, including premium and all taxes and fees */\n total: Scalars['Float']['input'];\n /** Type of insurance policy */\n type: InsuranceType;\n};\n\n/** Input for creating a certificate of insurance */\nexport type CreateCertificateInput = {\n accountId: Scalars['ID']['input'];\n /** Whether additional insured coverage is included */\n additionalInsured: Scalars['Boolean']['input'];\n /** Description of the operations covered by the certificate */\n descriptionOfOperations: Scalars['String']['input'];\n /** The holder of the certificate */\n holder: CertificateHolderInput;\n};\n\n/** Options for creating a certificate of insurance on the client side */\nexport type CreateCertificateOptions = {\n __typename?: 'CreateCertificateOptions';\n /** The allowed blanket additional insureds for this certificate */\n allowedBlanketAdditionalInsureds: Array;\n /** The allowed named additional insureds for this certificate */\n allowedNamedAdditionalInsureds: Array;\n};\n\n/** Details for a request to create a Certificate of Insurance */\nexport type CreateCertificateRequest = {\n __typename?: 'CreateCertificateRequest';\n /** Whether the certificate holder should be listed as additional insured */\n additionalInsured: Scalars['Boolean']['output'];\n /** Relationship between policyholder and additional insured, if applicable */\n additionalInsuredRelationship?: Maybe;\n /** Additional details about the relationship, if applicable */\n additionalInsuredRelationshipDescription?: Maybe;\n /** Address of the certificate holder */\n address: Address;\n /** Name of the certificate holder */\n name: Scalars['String']['output'];\n};\n\n/** Input type for creating a Certificate of Insurance request */\nexport type CreateCertificateRequestInput = {\n /** Whether the certificate holder should be listed as additional insured */\n additionalInsured: Scalars['Boolean']['input'];\n /** Relationship between policyholder and additional insured, if applicable */\n additionalInsuredRelationship?: InputMaybe;\n /** Additional details about the relationship, if applicable */\n additionalInsuredRelationshipDescription?: InputMaybe;\n /** Address of the certificate holder */\n address: AddressInput;\n /** Name of the certificate holder */\n name: Scalars['String']['input'];\n};\n\n/** Input for creating a new client record */\nexport type CreateClientInput = {\n /** The initial business details for the client */\n business?: InputMaybe;\n /** Primary email address for contacting the client */\n email: Scalars['String']['input'];\n /** Full name of the client */\n name: Scalars['String']['input'];\n /** Primary phone number for contacting the client */\n phone: Scalars['String']['input'];\n};\n\n/** Input for creating a new business record */\nexport type CreateIndividualAccountInput = {\n /** Primary email address for contacting the individual */\n email: Scalars['String']['input'];\n /** Mailing address for the individual */\n mailingAddress: AddressInput;\n /** Full name of the individual */\n name: Scalars['String']['input'];\n /** Primary phone number for contacting the individual */\n phone: Scalars['String']['input'];\n};\n\n/** Input type for creating a new service request */\nexport type CreateServiceRequestInput = {\n /** The ID of the account to associate this service request with */\n accountId: Scalars['String']['input'];\n /** Details specific to additional insured requests */\n addAdditionalInsured?: InputMaybe;\n /** Details specific to policy cancellation requests */\n cancelPolicy?: InputMaybe;\n /** Details specific to Certificate of Insurance requests */\n createCertificate?: InputMaybe;\n /** Additional details about the request */\n details: Scalars['String']['input'];\n /** Details specific to document requests */\n documentRequest?: InputMaybe;\n /** Details specific to question requests */\n question?: InputMaybe;\n /** Type of service request */\n type: ServiceRequestType;\n};\n\n/**\n * A document that has been generated by the agency. This contains the raw data that populates a document\n * and is generated dynamically when the download URL is visited.\n */\nexport type Document = {\n __typename?: 'Document';\n createdAt: Scalars['Time']['output'];\n data: DocumentData;\n downloadUrl: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n type: DocumentType;\n updatedAt: Scalars['Time']['output'];\n};\n\n/**\n * Data used to generated the document. The fields in here must map to the fields\n * required by the document type.\n */\nexport type DocumentData = {\n __typename?: 'DocumentData';\n acord25?: Maybe;\n acord125?: Maybe;\n acord126?: Maybe;\n acord140?: Maybe;\n};\n\n/** Details for a request for policy-related documents */\nexport type DocumentRequest = {\n __typename?: 'DocumentRequest';\n /** Type of document being requested */\n type: DocumentRequestType;\n};\n\n/** Input type for requesting policy-related documents */\nexport type DocumentRequestInput = {\n /** Type of document being requested */\n type?: InputMaybe;\n};\n\n/** Types of documents that can be requested */\nexport enum DocumentRequestType {\n /** Insurance binder document */\n Binder = 'BINDER',\n /** Certificate of Insurance */\n Certificate = 'CERTIFICATE',\n /** Policy endorsement document */\n Endorsement = 'ENDORSEMENT',\n /** Other document types */\n Other = 'OTHER',\n /** Full policy documentation */\n PolicyDocument = 'POLICY_DOCUMENT'\n}\n\n/** The type of document depending on which different fields in `Document` are populated */\nexport enum DocumentType {\n Acord_25 = 'ACORD_25',\n Acord_125 = 'ACORD_125',\n Acord_126 = 'ACORD_126',\n Acord_130 = 'ACORD_130',\n Acord_140 = 'ACORD_140'\n}\n\n/** Represents an email message in a thread */\nexport type Email = {\n __typename?: 'Email';\n /** Body content of the email */\n body: Scalars['String']['output'];\n /** Carbon copy recipients of the email */\n cc: Array;\n /** Timestamp when this record was created */\n createdAt: Scalars['Time']['output'];\n /** Sender of the email */\n from: EmailParticipant;\n /** Hash of the email content for deduplication */\n hash: Scalars['String']['output'];\n /** Unique identifier for the email */\n id: Scalars['ID']['output'];\n /** Message-ID this email is replying to, if any */\n inReplyToMessageId?: Maybe;\n /** Unique Message-ID header value from the email */\n messageId: Scalars['String']['output'];\n /** Role of the sender (agent, Cara, or participant) */\n senderRole: EmailSenderRole;\n /** Timestamp when the email was sent */\n sentAt: Scalars['Time']['output'];\n /** Subject line of the email */\n subject: Scalars['String']['output'];\n /** ID of the thread this email belongs to */\n threadId: Scalars['String']['output'];\n /** Primary recipients of the email */\n to: Array;\n /** Timestamp when this record was last updated */\n updatedAt: Scalars['Time']['output'];\n};\n\n/** Represents a participant (sender or recipient) of an email */\nexport type EmailParticipant = {\n __typename?: 'EmailParticipant';\n /** Email address of the participant */\n email: Scalars['String']['output'];\n /** Display name of the participant */\n name: Scalars['String']['output'];\n};\n\n/** Role of an email sender in the context of the system */\nexport enum EmailSenderRole {\n /** Message sent by an agency agent */\n Agent = 'AGENT',\n /** Message sent by the Cara AI assistant */\n Cara = 'CARA',\n /** Message sent by a known client */\n Client = 'CLIENT',\n /** Message sent by any other participant */\n Participant = 'PARTICIPANT'\n}\n\n/** Represents an email thread */\nexport type EmailThread = {\n __typename?: 'EmailThread';\n /** The account associated with this email, if any */\n account?: Maybe;\n /** The agency associated with this email */\n agency: Agency;\n /** Attachments in the email thread */\n attachments: Array;\n /** Emails in the thread from Cara */\n caraEmails: Array;\n /** Timestamp when this record was created */\n createdAt: Scalars['Time']['output'];\n /** The email address of the participant who initiated the thread */\n fromEmail: Scalars['String']['output'];\n /** The name of the participant who initiated the thread */\n fromName: Scalars['String']['output'];\n /** Unique identifier for the thread */\n id: Scalars['ID']['output'];\n /** Emails in the thread from participants, clients, and agents */\n participantEmails: Array;\n /** Service requests associated with this thread */\n serviceRequests: Array;\n /** State of the thread */\n state: EmailThreadState;\n /** The subject of the thread */\n subject: Scalars['String']['output'];\n /** The summary of the thread */\n summary: Scalars['String']['output'];\n /** Tool calls made by Cara in the context of this thread */\n toolCalls: Array;\n /** Timestamp when this record was last updated */\n updatedAt: Scalars['Time']['output'];\n /** The role of the participant that the email thread is waiting for in order to proceed */\n waitingFor?: Maybe;\n};\n\n/** Represents the state of an email thread */\nexport enum EmailThreadState {\n /** The thread is active and waiting for a response */\n Active = 'ACTIVE',\n /** The invocation has ended */\n Ended = 'ENDED'\n}\n\n/** Details for a request to endorse a policy */\nexport type EndorsePolicyRequest = {\n __typename?: 'EndorsePolicyRequest';\n /** ID of the policy to be endorsed */\n policyId: Scalars['String']['output'];\n};\n\n/** Input type for endorsing a policy request */\nexport type EndorsePolicyRequestInput = {\n /** ID of the policy to be endorsed */\n policyId: Scalars['String']['input'];\n};\n\n/**\n * A file describes a document that is attached to an object, with\n * metadata and URLs to fetch it.\n */\nexport type File = {\n __typename?: 'File';\n /** The timestamp this file was created */\n createdAt: Scalars['Time']['output'];\n /** The timestamp this file was deleted */\n deletedAt?: Maybe;\n /** The ID of the entity that this file is associated with */\n entityRefId: Scalars['String']['output'];\n /** The type of entity that this file is associated with */\n entityRefType: FileEntityRefType;\n /** The SHA256 hash of the file bytes */\n hash: Scalars['String']['output'];\n /** The unique identifier of the file */\n id: Scalars['ID']['output'];\n /** The file MIME type */\n mimeType: Scalars['String']['output'];\n /** The file name, for display and download purposes */\n name: Scalars['String']['output'];\n /** The notes associated with the file */\n notes: Scalars['String']['output'];\n /** The size of the file in bytes */\n size: Scalars['Int']['output'];\n /** The type of the file */\n type: FileType;\n /** The timestamp this file was updated */\n updatedAt: Scalars['Time']['output'];\n /** The public URL to fetch the file, if the file is visible to the user */\n url?: Maybe;\n /** Whether the file is visible to the user */\n visible: Scalars['Boolean']['output'];\n};\n\n/** FileEntityRefType describes the type of entity that a file is associated with. */\nexport enum FileEntityRefType {\n /** The file is associated with an account */\n Account = 'ACCOUNT',\n /** The file is associated with a Cara workspace */\n CaraWorkspace = 'CARA_WORKSPACE',\n /** The file is associated with an email thread */\n EmailThread = 'EMAIL_THREAD',\n /** The file is associated with a policy */\n Policy = 'POLICY',\n /** The file is associated with a service request */\n ServiceRequest = 'SERVICE_REQUEST'\n}\n\n/** File role describes a type of file related to an object */\nexport enum FileType {\n /** The file is a form generated as part of an application */\n ApplicationForm = 'APPLICATION_FORM',\n /** The file is a binder, a pre-coverage confirmation document */\n Binder = 'BINDER',\n /** The file is a certificate of insurance */\n Certificate = 'CERTIFICATE',\n /** The file is an endorsement, affixed to the policy document */\n Endorsement = 'ENDORSEMENT',\n /** The file is an invoice, generally for internal tracking purposes */\n Invoice = 'INVOICE',\n /** The file is a lost policy release, issued when a policy is canceled by the customer */\n LostPolicyRelease = 'LOST_POLICY_RELEASE',\n /** The file is a notice of cancellation, issued when a policy is being canceled or nonrenewed by the carrier */\n NoticeOfCancellation = 'NOTICE_OF_CANCELLATION',\n /** The file is of another type */\n Other = 'OTHER',\n /** The file is a policy document */\n PolicyDocument = 'POLICY_DOCUMENT',\n /** The file is a quote document */\n QuoteDocument = 'QUOTE_DOCUMENT'\n}\n\n/** How the general aggregate limit applies to a liability policy */\nexport enum GeneralAggregateLimitAppliesPerType {\n /** Limit applies in some other way */\n Other = 'OTHER',\n /** Limit applies per location */\n PerLocation = 'PER_LOCATION',\n /** Limit applies per policy */\n PerPolicy = 'PER_POLICY',\n /** Limit applies per project */\n PerProject = 'PER_PROJECT'\n}\n\n/** Account details specific to an individual account holder */\nexport type IndividualAccount = AccountDetails & {\n __typename?: 'IndividualAccount';\n /** Primary email address for contacting the individual */\n email: Scalars['String']['output'];\n /** Mailing address for the individual */\n mailingAddress: Address;\n /** The full name of the individual */\n name: Scalars['String']['output'];\n /** Primary phone number for contacting the individual */\n phone: Scalars['String']['output'];\n};\n\n/** Represents an insurance carrier or broker that can provide policies */\nexport type InsuranceCarrier = {\n __typename?: 'InsuranceCarrier';\n /** If available, the ID of this carrier in Ascend */\n ascendId?: Maybe;\n /** Human readable short identifier of this carrier */\n id: Scalars['String']['output'];\n /** True if this insurance entity is a broker which we use to access a carrier */\n isBroker: Scalars['Boolean']['output'];\n /** True if this insurance entity is a carrier with binding authority */\n isCarrier: Scalars['Boolean']['output'];\n /** Legal name of this carrier */\n name: Scalars['String']['output'];\n /** The types of insurance policies supported by this carrier */\n supportedPolicies?: Maybe>;\n};\n\n/** Describes the market the insurance policy was written in. */\nexport enum InsuranceMarket {\n /** The admitted market */\n Admitted = 'ADMITTED',\n /** The Excess and Surplus (E&S) market */\n ExcessAndSurplus = 'EXCESS_AND_SURPLUS'\n}\n\n/** Insurance type for business insurance */\nexport enum InsuranceType {\n /** Insurance coverage for accidents and health-related incidents */\n AccidentAndHealth = 'ACCIDENT_AND_HEALTH',\n /** Comprehensive coverage package for business owners */\n BusinessOwners = 'BUSINESS_OWNERS',\n /** Coverage for vehicles used in commercial operations */\n CommercialAuto = 'COMMERCIAL_AUTO',\n /** Protection against cyber risks and data breaches */\n Cyber = 'CYBER',\n /** Coverage for directors and officers against liability claims */\n DirectorsAndOfficers = 'DIRECTORS_AND_OFFICERS',\n /** Protection against employment-related claims */\n EmploymentPracticesLiability = 'EMPLOYMENT_PRACTICES_LIABILITY',\n /** Coverage for professional mistakes and oversights */\n ErrorsAndOmission = 'ERRORS_AND_OMISSION',\n /** Additional liability coverage beyond standard policies */\n Excess = 'EXCESS',\n /** Basic liability coverage for business operations */\n GeneralLiability = 'GENERAL_LIABILITY',\n /** Specialized coverage for jewelry businesses */\n JewelersBlock = 'JEWELERS_BLOCK',\n /** Other types of insurance coverage not listed */\n Other = 'OTHER',\n /** Combined package of multiple insurance coverages */\n Package = 'PACKAGE',\n /** Coverage for product-related liability claims */\n ProductLiability = 'PRODUCT_LIABILITY',\n /** Coverage for professional services liability */\n ProfessionalLiability = 'PROFESSIONAL_LIABILITY',\n /** Coverage for business property and assets */\n Property = 'PROPERTY',\n /** Insurance for rental properties or equipment */\n Rental = 'RENTAL',\n /** Coverage for goods in transit and transportation risks */\n ShippingAndTransportation = 'SHIPPING_AND_TRANSPORTATION',\n /** Umbrella liability coverage */\n Umbrella = 'UMBRELLA',\n /** Coverage for employee work-related injuries */\n WorkersCompensation = 'WORKERS_COMPENSATION'\n}\n\n/** Integration represents a connection to an external system */\nexport type Integration = {\n __typename?: 'Integration';\n /** Authorization credentials for the integration */\n authorization?: Maybe;\n /** Timestamp of when the integration was created */\n createdAt: Scalars['Time']['output'];\n /** Timestamp of when the integration was deleted, if applicable */\n deletedAt?: Maybe;\n /** Unique identifier for the integration */\n id: Scalars['ID']['output'];\n /** Timestamp of when the integration last synced data */\n lastSyncedAt?: Maybe;\n /** Current state of the integration */\n state: IntegrationState;\n /** Type of integration */\n type: IntegrationType;\n /** Timestamp of when the integration was last updated */\n updatedAt: Scalars['Time']['output'];\n};\n\n/** IntegrationAuthorization contains credentials for authenticating with the integration */\nexport type IntegrationAuthorization = {\n __typename?: 'IntegrationAuthorization';\n /** Basic authentication credentials */\n basicAuth?: Maybe;\n};\n\n/** IntegrationState defines the current state of an integration */\nexport enum IntegrationState {\n /** Integration is active and functioning */\n Active = 'ACTIVE',\n /** Integration has been created but not yet configured */\n Created = 'CREATED',\n /** Integration has been disabled */\n Disabled = 'DISABLED',\n /** Integration is in process of being configured */\n Pending = 'PENDING'\n}\n\n/** IntegrationType defines the type of integration, including AMS, CRM, and more. */\nexport enum IntegrationType {\n /** Applied Epic agency management system integration */\n AmsAppliedEpic = 'AMS_APPLIED_EPIC',\n /** Hawksoft agency management system integration */\n AmsHawksoft = 'AMS_HAWKSOFT'\n}\n\n/** Type of liability coverage for a policy */\nexport enum LiabilityCoverageType {\n /** Claims-made coverage applies to claims made during the policy period */\n ClaimsMade = 'CLAIMS_MADE',\n /** Occurrence coverage applies to incidents that occur during the policy period */\n Occurrence = 'OCCURRENCE'\n}\n\n/** Details of a bank transaction linked to a payout */\nexport type LinkedBankTransaction = {\n __typename?: 'LinkedBankTransaction';\n /** The amount of the transaction in dollars */\n amount: Scalars['Float']['output'];\n /** The ID of the counterparty in the bank account's system */\n counterPartyId: Scalars['String']['output'];\n /** The name of the counterparty */\n counterPartyName: Scalars['String']['output'];\n /** The date the transaction was created */\n createdAt: Scalars['Time']['output'];\n /** The link to the transaction in the partner bank's system */\n dashboardLink: Scalars['String']['output'];\n /** The bank description of the transaction */\n description: Scalars['String']['output'];\n /** The ID of the transaction in the bank account */\n id: Scalars['String']['output'];\n /** The memo line of the transaction */\n memo: Scalars['String']['output'];\n /** The status of the transaction in the bank account */\n status: AchPaymentStatus;\n};\n\nexport type Mutation = {\n __typename?: 'Mutation';\n /** Account user sign in to the Oyster platform */\n accountUserSignIn?: Maybe;\n /** Account user sign out of the Oyster platform */\n accountUserSignOut: Scalars['Boolean']['output'];\n /**\n * Adds a new business location to an existing business application.\n *\n * Arguments:\n * applicationId: The unique identifier of the business application.\n * location: The input data required to add a new business location.\n *\n * Returns:\n * The updated BusinessApplication object with the new location added.\n */\n addBusinessLocation: BusinessApplication;\n /** Update a Cara workspace */\n addCaraWorkspaceMessage: CaraWorkspace;\n /** Associates an existing contact with an account */\n addContactAssociation: AccountContact;\n /** Add a message to the policy AI conversation */\n addPolicyExplorerConversationMessage: Array;\n /** Add a comment to a service request */\n addServiceRequestComment: ServiceRequest;\n /** Agency sign in to the Oyster platform */\n agencySignIn?: Maybe;\n /** Agency sign out of the Oyster platform */\n agencySignOut: Scalars['Boolean']['output'];\n /**\n * Binds a quote to a business application.\n *\n * Arguments:\n * applicationId: The unique identifier of the business application.\n * quoteId: The unique identifier of the quote to bind.\n * paymentPlanId: The ID of the payment plan to use.\n * paymentMethod: The payment method to use.\n *\n * Returns:\n * The updated BusinessApplication object with the quote bound.\n */\n bindQuote: BusinessApplication;\n /** Cancel the specified business insurance policy */\n cancelBusinessPolicy: BusinessPolicy;\n /** Create a certificate of insurance on the client side */\n clientCreateCertificate?: Maybe;\n /** Creates a new account */\n createAccount: Account;\n /** Creates a new agency */\n createAgency: Agency;\n /** Adds an agency user to an agency */\n createAgencyUser: AgencyUser;\n /**\n * Creates a new business application.\n *\n * Arguments:\n * application: The input data required to create a new business application.\n *\n * Returns:\n * The created BusinessApplication object.\n */\n createBusinessApplication: BusinessApplication;\n /** Create business insurance policies according to specification */\n createBusinessPolicies: Array;\n /** Create a new Cara workspace */\n createCaraWorkspace: CaraWorkspace;\n /** Create a certificate of insurance */\n createCertificate?: Maybe;\n /** Creates a new client */\n createClient: Client;\n /** Creates a new account contact */\n createContact: AccountContact;\n /** Create a service request */\n createServiceRequest: ServiceRequest;\n /** Deletes the specified business insurance policy */\n deleteBusinessPolicy?: Maybe;\n /** Delete a file. Returns the deleted file, if successful. */\n deleteFile?: Maybe;\n /**\n * Starts the quote process for a business application if it's not already quoting\n *\n * Arguments:\n * applicationId: The unique identifier of the business application.\n *\n * Returns:\n * The updated BusinessApplication object.\n */\n quoteBusinessApplication: BusinessApplication;\n /** Reinstate the specified business insurance policy */\n reinstateBusinessPolicy: BusinessPolicy;\n /**\n * Removes a business location from an existing business application.\n *\n * Arguments:\n * applicationId: The unique identifier of the business application.\n * locationId: The unique identifier of the business location to remove.\n *\n * Returns:\n * The updated BusinessApplication object with the location removed.\n */\n removeBusinessLocation: BusinessApplication;\n /** Removes an association between an account and a contact */\n removeContactAssociation: AccountContact;\n /** Renew the specified business insurance policy */\n renewBusinessPolicy: BusinessPolicy;\n /** Resolve a service request */\n resolveServiceRequest: ServiceRequest;\n /** Add a message to the policy AI conversation */\n riskManagementAddPolicyConversationMessage: Array;\n /** Mark an action item as complete */\n riskManagementMarkActionItemComplete: ComplianceAction;\n /** Update the assignee of an action item */\n riskManagementSetActionItemAssignee: ComplianceAction;\n /** Update the due date of an action item */\n riskManagementSetActionItemDueDate: ComplianceAction;\n /** Set up the risk management data for a merchant */\n riskManagementSetup: RiskManagementData;\n /**\n * Submits and finalizes the business application if not already submitted. This\n * indicates that a customer has finished submitting their information and is\n * ready to be reviewed by an agent.\n *\n * Arguments:\n * applicationId: The unique identifier of the business application.\n *\n * Returns:\n * The updated BusinessApplication object.\n */\n submitBusinessApplication: BusinessApplication;\n /** Updates an existing account */\n updateAccount: Account;\n /**\n * Updates an existing business application.\n *\n * Arguments:\n * id: The unique identifier of the business application to update.\n * application: The input data required to update the business application.\n *\n * Returns:\n * The updated BusinessApplication object.\n */\n updateBusinessApplication: BusinessApplication;\n /**\n * Updates an existing business location in a business application.\n *\n * Arguments:\n * applicationId: The unique identifier of the business application.\n * locationId: The unique identifier of the business location to update.\n * location: The input data required to update the business location.\n *\n * Returns:\n * The updated BusinessApplication object with the updated location.\n */\n updateBusinessLocation: BusinessApplication;\n /** Update the specified business insurance policy */\n updateBusinessPolicy: BusinessPolicy;\n /** Updates an existing client */\n updateClient: Client;\n /** Updates an existing account contact */\n updateContact: AccountContact;\n /** Update a service request */\n updateServiceRequest: ServiceRequest;\n /** Upload a file associated with an account */\n uploadAccountFile: File;\n /** Upload a file associated with a policy */\n uploadPolicyFile: File;\n};\n\nexport type MutationAccountUserSignInArgs = {\n code?: InputMaybe;\n email: Scalars['String']['input'];\n};\n\nexport type MutationAddBusinessLocationArgs = {\n applicationId: Scalars['ID']['input'];\n location: BusinessLocationInput;\n};\n\nexport type MutationAddCaraWorkspaceMessageArgs = {\n id: Scalars['ID']['input'];\n input: CaraWorkspaceMessageInput;\n};\n\nexport type MutationAddContactAssociationArgs = {\n accountId: Scalars['String']['input'];\n contactId: Scalars['String']['input'];\n};\n\nexport type MutationAddPolicyExplorerConversationMessageArgs = {\n message: Scalars['String']['input'];\n policyId: Scalars['ID']['input'];\n};\n\nexport type MutationAddServiceRequestCommentArgs = {\n id: Scalars['ID']['input'];\n input: AddServiceRequestCommentInput;\n};\n\nexport type MutationAgencySignInArgs = {\n code?: InputMaybe;\n email: Scalars['String']['input'];\n};\n\nexport type MutationBindQuoteArgs = {\n applicationId: Scalars['ID']['input'];\n paymentMethod?: InputMaybe;\n paymentPlanId?: InputMaybe;\n quoteId: Scalars['ID']['input'];\n};\n\nexport type MutationCancelBusinessPolicyArgs = {\n id: Scalars['ID']['input'];\n req: CancelBusinessPolicyInput;\n};\n\nexport type MutationClientCreateCertificateArgs = {\n accountId: Scalars['ID']['input'];\n input: ClientCreateCertificateInput;\n};\n\nexport type MutationCreateAccountArgs = {\n input: CreateAccountInput;\n};\n\nexport type MutationCreateAgencyArgs = {\n input: CreateAgencyInput;\n};\n\nexport type MutationCreateAgencyUserArgs = {\n agencyId: Scalars['ID']['input'];\n input: AgencyUserInput;\n};\n\nexport type MutationCreateBusinessApplicationArgs = {\n application: CreateApplicationInput;\n};\n\nexport type MutationCreateBusinessPoliciesArgs = {\n req: CreateBusinessPoliciesInput;\n};\n\nexport type MutationCreateCaraWorkspaceArgs = {\n input: CaraWorkspaceMessageInput;\n};\n\nexport type MutationCreateCertificateArgs = {\n input: CreateCertificateInput;\n};\n\nexport type MutationCreateClientArgs = {\n input: CreateClientInput;\n};\n\nexport type MutationCreateContactArgs = {\n input: CreateAccountContactInput;\n};\n\nexport type MutationCreateServiceRequestArgs = {\n input: CreateServiceRequestInput;\n};\n\nexport type MutationDeleteBusinessPolicyArgs = {\n id: Scalars['ID']['input'];\n};\n\nexport type MutationDeleteFileArgs = {\n fileId: Scalars['ID']['input'];\n};\n\nexport type MutationQuoteBusinessApplicationArgs = {\n id: Scalars['ID']['input'];\n};\n\nexport type MutationReinstateBusinessPolicyArgs = {\n id: Scalars['ID']['input'];\n req: ReinstateBusinessPolicyInput;\n};\n\nexport type MutationRemoveBusinessLocationArgs = {\n applicationId: Scalars['ID']['input'];\n locationId: Scalars['ID']['input'];\n};\n\nexport type MutationRemoveContactAssociationArgs = {\n accountId: Scalars['String']['input'];\n contactId: Scalars['String']['input'];\n};\n\nexport type MutationRenewBusinessPolicyArgs = {\n id: Scalars['ID']['input'];\n req: RenewBusinessPolicyInput;\n};\n\nexport type MutationResolveServiceRequestArgs = {\n id: Scalars['ID']['input'];\n input: ResolveServiceRequestInput;\n};\n\nexport type MutationRiskManagementAddPolicyConversationMessageArgs = {\n message: Scalars['String']['input'];\n policyId: Scalars['ID']['input'];\n};\n\nexport type MutationRiskManagementMarkActionItemCompleteArgs = {\n id: Scalars['ID']['input'];\n};\n\nexport type MutationRiskManagementSetActionItemAssigneeArgs = {\n id: Scalars['ID']['input'];\n userId: Scalars['ID']['input'];\n};\n\nexport type MutationRiskManagementSetActionItemDueDateArgs = {\n dueDate: Scalars['Time']['input'];\n id: Scalars['ID']['input'];\n};\n\nexport type MutationRiskManagementSetupArgs = {\n input: RiskManagementSetupInput;\n};\n\nexport type MutationSubmitBusinessApplicationArgs = {\n id: Scalars['ID']['input'];\n};\n\nexport type MutationUpdateAccountArgs = {\n id: Scalars['ID']['input'];\n input: UpdateAccountInput;\n};\n\nexport type MutationUpdateBusinessApplicationArgs = {\n application: UpdateApplicationInput;\n id: Scalars['ID']['input'];\n};\n\nexport type MutationUpdateBusinessLocationArgs = {\n applicationId: Scalars['ID']['input'];\n location: BusinessLocationInput;\n locationId: Scalars['ID']['input'];\n};\n\nexport type MutationUpdateBusinessPolicyArgs = {\n id: Scalars['ID']['input'];\n req: UpdateBusinessPolicyInput;\n};\n\nexport type MutationUpdateClientArgs = {\n id: Scalars['ID']['input'];\n input: UpdateClientInput;\n};\n\nexport type MutationUpdateContactArgs = {\n id: Scalars['ID']['input'];\n input: CreateAccountContactInput;\n};\n\nexport type MutationUpdateServiceRequestArgs = {\n id: Scalars['ID']['input'];\n input: UpdateServiceRequestInput;\n};\n\nexport type MutationUploadAccountFileArgs = {\n accountId: Scalars['ID']['input'];\n file: UploadFileInput;\n};\n\nexport type MutationUploadPolicyFileArgs = {\n file: UploadFileInput;\n policyId: Scalars['ID']['input'];\n};\n\n/** A named additional insured for the certificate */\nexport type NamedAdditionalInsuredCertificateOption = {\n __typename?: 'NamedAdditionalInsuredCertificateOption';\n /** The address of the named additional insured */\n address: Address;\n /** The ID of the named additional insured */\n id: Scalars['ID']['output'];\n /** The name of the named additional insured */\n name: Scalars['String']['output'];\n /** The policy this named additional insured is associated with */\n policy: BusinessPolicy;\n};\n\nexport type PastPolicyLoss = {\n __typename?: 'PastPolicyLoss';\n /** The date when the claim was made. */\n claimDate?: Maybe;\n /** The status of the claim. */\n claimStatus?: Maybe;\n /** The date when the loss occurred. */\n lossDate?: Maybe;\n /** A description of the loss. */\n lossDescription: Scalars['String']['output'];\n /** The 2-letter state code where the loss occurred. */\n lossState: Scalars['String']['output'];\n /** The type of loss that occurred. */\n lossType?: Maybe;\n /** The date when the policy became effective. */\n policyEffectiveDate?: Maybe;\n /** The date when the policy expired. */\n policyExpirationDate?: Maybe;\n /** The type of insurance policy. */\n policyType?: Maybe;\n /** The total amount paid for the claim. */\n totalPaidAmount: Scalars['Float']['output'];\n /** The total amount reserved for the claim. */\n totalReservedAmount: Scalars['Float']['output'];\n};\n\nexport enum PastPolicyLossClaimStatus {\n /** The claim has been closed. */\n Closed = 'CLOSED',\n /** The claim is currently open. */\n Open = 'OPEN',\n Unknown = 'UNKNOWN'\n}\n\nexport type PastPolicyLossInput = {\n /** The date when the claim was made. */\n claimDate: Scalars['String']['input'];\n /** The status of the claim. */\n claimStatus?: InputMaybe;\n /** The date when the loss occurred. */\n lossDate: Scalars['String']['input'];\n /** A description of the loss. */\n lossDescription: Scalars['String']['input'];\n /** The 2-letter state code where the loss occurred. */\n lossState: Scalars['String']['input'];\n /** The type of loss that occurred. */\n lossType?: InputMaybe;\n /** The date when the policy became effective. */\n policyEffectiveDate: Scalars['String']['input'];\n /** The date when the policy expired. */\n policyExpirationDate: Scalars['String']['input'];\n /** The type of insurance policy. */\n policyType?: InputMaybe;\n /** The total amount paid for the claim. */\n totalPaidAmount: Scalars['Float']['input'];\n /** The total amount reserved for the claim. */\n totalReservedAmount: Scalars['Float']['input'];\n};\n\nexport enum PastPolicyLossType {\n BodilyInjuryOther = 'BODILY_INJURY_OTHER',\n BusinessInterruption = 'BUSINESS_INTERRUPTION',\n ComputerFraud = 'COMPUTER_FRAUD',\n ContingentBusinessInterruption = 'CONTINGENT_BUSINESS_INTERRUPTION',\n CyberIncident = 'CYBER_INCIDENT',\n DigitalData = 'DIGITAL_DATA',\n EmployeePractices = 'EMPLOYEE_PRACTICES',\n ErrorsAndOmissions = 'ERRORS_AND_OMISSIONS',\n Fire = 'FIRE',\n FoodSpoilage = 'FOOD_SPOILAGE',\n FundTransferFraud = 'FUND_TRANSFER_FRAUD',\n GeneralLiabilityProducts = 'GENERAL_LIABILITY_PRODUCTS',\n GlPropertyDamage = 'GL_PROPERTY_DAMAGE',\n Hail = 'HAIL',\n Indemnity = 'INDEMNITY',\n InlandMarine = 'INLAND_MARINE',\n LiabilityMedicalPayments = 'LIABILITY_MEDICAL_PAYMENTS',\n MediaLiability = 'MEDIA_LIABILITY',\n Medical = 'MEDICAL',\n MedicalAndIndemnity = 'MEDICAL_AND_INDEMNITY',\n NetworkExtortion = 'NETWORK_EXTORTION',\n Other = 'OTHER',\n PaymentCard = 'PAYMENT_CARD',\n PersonalInjury = 'PERSONAL_INJURY',\n PrivacyAndNetworkSecurity = 'PRIVACY_AND_NETWORK_SECURITY',\n ProfessionalLiability = 'PROFESSIONAL_LIABILITY',\n PropertyDamageCollapse = 'PROPERTY_DAMAGE_COLLAPSE',\n PropertyDamageOther = 'PROPERTY_DAMAGE_OTHER',\n RegulatoryProceeding = 'REGULATORY_PROCEEDING',\n SlipFallInside = 'SLIP_FALL_INSIDE',\n SlipFallOutside = 'SLIP_FALL_OUTSIDE',\n SocialEngineeringFraud = 'SOCIAL_ENGINEERING_FRAUD',\n TechnologyErrorsAndOmissions = 'TECHNOLOGY_ERRORS_AND_OMISSIONS',\n Theft = 'THEFT',\n Unknown = 'UNKNOWN',\n Vandalism = 'VANDALISM',\n WaterNonWeatherRelated = 'WATER_NON_WEATHER_RELATED',\n Windstorm = 'WINDSTORM'\n}\n\n/** PaymentIntervalType enumerates the interval of a fee occurrence */\nexport enum PaymentIntervalType {\n /** Describes an annual payment */\n Annual = 'ANNUAL',\n /** Describes a monthly payment */\n Monthly = 'MONTHLY',\n /** Describes a non-recurring payment */\n None = 'NONE',\n /** Describes a quarterly payment */\n Quarterly = 'QUARTERLY'\n}\n\n/** How the customer chose to pay */\nexport enum PaymentOptionType {\n AnnualPayInFull = 'ANNUAL_PAY_IN_FULL',\n MonthlyFinanced = 'MONTHLY_FINANCED'\n}\n\n/** Enum representing the frequency of installments for a payment plan */\nexport enum PaymentPlanInstallmentFrequency {\n /** Monthly installments */\n Monthly = 'MONTHLY',\n /** No recurring installments */\n None = 'NONE',\n /** Quarterly installments */\n Quarterly = 'QUARTERLY'\n}\n\n/** Enum representing the different payment methods available for a payment plan */\nexport enum PaymentPlanPaymentMethodType {\n /** Payment via credit card */\n CreditCard = 'CREDIT_CARD',\n /** Payment via direct debit */\n DirectDebit = 'DIRECT_DEBIT',\n /** Payment via electronic fund transfer */\n ElectronicFundTransfer = 'ELECTRONIC_FUND_TRANSFER'\n}\n\n/** Represents the policy AI conversation for a policy */\nexport type PolicyConversationMessage = {\n __typename?: 'PolicyConversationMessage';\n /** List of attachments for the message */\n attachments: Array;\n /** The content of the message */\n content: Scalars['String']['output'];\n /** The ID of the message */\n id: Scalars['ID']['output'];\n /** The role of the message */\n role: PolicyConversationMessageRole;\n /** The timestamp of the message */\n timestamp: Scalars['Time']['output'];\n};\n\n/** Represents an attachment for a policy AI conversation message */\nexport type PolicyConversationMessageAttachment = {\n __typename?: 'PolicyConversationMessageAttachment';\n /** The content of the attachment */\n content: Scalars['String']['output'];\n /** The type of the attachment */\n type: PolicyConversationMessageAttachmentType;\n};\n\n/** Represents the type of an attachment for a policy AI conversation message */\nexport enum PolicyConversationMessageAttachmentType {\n /** A quote from a document */\n Quote = 'QUOTE'\n}\n\n/** Represents the role of a policy AI conversation message */\nexport enum PolicyConversationMessageRole {\n /** The message is from the AI */\n Ai = 'AI',\n /** The message is from the user */\n User = 'USER'\n}\n\n/** Represents the policy AI conversation for a policy */\nexport type PolicyExplorerConversationMessage = {\n __typename?: 'PolicyExplorerConversationMessage';\n /** List of attachments for the message */\n attachments: Array;\n /** The content of the message */\n content: Scalars['String']['output'];\n /** The ID of the message */\n id: Scalars['ID']['output'];\n /** The role of the message */\n role: PolicyExplorerConversationMessageRole;\n /** The timestamp of the message */\n timestamp: Scalars['Time']['output'];\n};\n\n/** Represents an attachment for a policy AI conversation message */\nexport type PolicyExplorerConversationMessageAttachment = {\n __typename?: 'PolicyExplorerConversationMessageAttachment';\n /** The content of the attachment */\n content: Scalars['String']['output'];\n /** The type of the attachment */\n type: PolicyExplorerConversationMessageAttachmentType;\n};\n\n/** Represents the type of an attachment for a policy AI conversation message */\nexport enum PolicyExplorerConversationMessageAttachmentType {\n /** A quote from a document */\n Quote = 'QUOTE'\n}\n\n/** Represents the role of a policy AI conversation message */\nexport enum PolicyExplorerConversationMessageRole {\n /** The message is from the AI */\n Ai = 'AI',\n /** The message is from the user */\n User = 'USER'\n}\n\n/** The enumeration of states for business policy */\nexport enum PolicyState {\n /** The policy is in the process of being bound or finalized */\n Binding = 'BINDING',\n /** The policy has been terminated or canceled before its expiration date */\n Canceled = 'CANCELED',\n /** The policy has reached its expiration date and is no longer active */\n Expired = 'EXPIRED',\n /** The policy is currently active and in force */\n Inforce = 'INFORCE',\n /** The policy is in a pending state, awaiting further action or information */\n Pending = 'PENDING',\n /** The policy has been submitted for review or approval */\n Submitted = 'SUBMITTED',\n /** The state of the policy is unknown or not determined */\n Unknown = 'UNKNOWN'\n}\n\nexport type Query = {\n __typename?: 'Query';\n /**\n * Returns a single account by ID. This endpoint verifies that the caller is\n * associated with the requested account.\n */\n account?: Maybe;\n /** Get the current client account user */\n accountUser?: Maybe;\n /**\n * Returns a list of all accounts. This endpoint returns only accounts that the\n * caller is associated with (either as an agency user or as a client user).\n */\n accounts: Array;\n /** Get an agency by its unique identifier */\n agency?: Maybe;\n /** Get the current agency user */\n agencyUser?: Maybe;\n /** Get all agency users for the current account */\n agencyUsers: Array;\n /** Retrieve a business application by ID */\n businessApplication: BusinessApplication;\n /** Retrieve all business applications */\n businessApplications: Array;\n /** Returns a list of all business categories. Only accessible by agency users. */\n businessCategories: Array;\n businessPolicies: Array;\n /** Get a single business policy by ID */\n businessPolicy?: Maybe;\n /** Get a call by its ID */\n call: Call;\n /** Get a list of calls */\n calls: Array;\n /** Get a Cara workspace by its ID */\n caraWorkspace: CaraWorkspace;\n /** Get Cara workspaces for the agency */\n caraWorkspaces: Array;\n carriers: Array;\n /** Get a certificate of insurance by its certificate number */\n certificate?: Maybe;\n /** Returns a single client by ID. Only accessible by agency users. */\n client?: Maybe;\n /** Returns a list of all clients. Only accessible by agency users. */\n clients: Array;\n /** Returns a single account contact by ID. Only accessible by agency users. */\n contact?: Maybe;\n /** Returns a list of all account contacts. Only accessible by agency users. */\n contacts: Array;\n /**\n * Returns the available limits for a particular application and state.\n *\n * Arguments:\n * applicationId: The unique identifier of the business application.\n * state: The state for which to retrieve the available limits.\n *\n * Returns:\n * A list of AvailableCoverageLimit objects representing the available coverage limits.\n */\n coverageLimits: Array;\n /** Get the options for creating a certificate of insurance */\n createCertificateOptions?: Maybe;\n /** Get a thread by its ID */\n emailThread: EmailThread;\n /** Get a list of threads */\n emailThreads: Array;\n /** Get the policy AI conversation for a policy ID */\n policyConversation: Array;\n /** Get the policy AI conversation for a policy ID */\n policyExplorerConversation: Array;\n /** Get the risk management data for a merchant */\n riskManagement?: Maybe;\n /** Get a service request by ID, if the current user is associated with the service request */\n serviceRequest?: Maybe;\n /**\n * Get all service requests associated with any accounts that belong to the agency of the\n * currently logged in agency user, or the account ID if specified and if the user has\n * permission to view them.\n */\n serviceRequests: Array;\n};\n\nexport type QueryAccountArgs = {\n id: Scalars['ID']['input'];\n};\n\nexport type QueryBusinessApplicationArgs = {\n id: Scalars['ID']['input'];\n};\n\nexport type QueryBusinessPolicyArgs = {\n id: Scalars['ID']['input'];\n};\n\nexport type QueryCallArgs = {\n id: Scalars['ID']['input'];\n};\n\nexport type QueryCaraWorkspaceArgs = {\n id: Scalars['ID']['input'];\n};\n\nexport type QueryCertificateArgs = {\n id: Scalars['ID']['input'];\n};\n\nexport type QueryClientArgs = {\n id: Scalars['ID']['input'];\n};\n\nexport type QueryContactArgs = {\n id: Scalars['ID']['input'];\n};\n\nexport type QueryCoverageLimitsArgs = {\n applicationId: Scalars['ID']['input'];\n state: Scalars['String']['input'];\n};\n\nexport type QueryCreateCertificateOptionsArgs = {\n accountId: Scalars['ID']['input'];\n};\n\nexport type QueryEmailThreadArgs = {\n id: Scalars['ID']['input'];\n};\n\nexport type QueryPolicyConversationArgs = {\n policyId: Scalars['ID']['input'];\n};\n\nexport type QueryPolicyExplorerConversationArgs = {\n policyId: Scalars['ID']['input'];\n};\n\nexport type QueryServiceRequestArgs = {\n id: Scalars['ID']['input'];\n};\n\nexport type QueryServiceRequestsArgs = {\n accountId?: InputMaybe;\n};\n\n/** Details for a request for questions about policies, account, or billing, etc. */\nexport type QuestionRequest = {\n __typename?: 'QuestionRequest';\n /** ID of the policy related to the question, if applicable */\n policyId?: Maybe;\n /** Question from the customer */\n question: Scalars['String']['output'];\n /** Type of question */\n type: QuestionRequestType;\n};\n\n/** Input type for requesting questions */\nexport type QuestionRequestInput = {\n /** ID of the policy related to the question, if applicable */\n policyId?: InputMaybe;\n /** Question from the customer */\n question: Scalars['String']['input'];\n /** Type of question */\n type?: InputMaybe;\n};\n\n/** Types of questions that can be requested */\nexport enum QuestionRequestType {\n /** Question about account management */\n Account = 'ACCOUNT',\n /** Question about billing and payments */\n Billing = 'BILLING',\n /** Other questions */\n Other = 'OTHER',\n /** Question about policies */\n Policy = 'POLICY'\n}\n\n/** Input for reinstating a business policy */\nexport type ReinstateBusinessPolicyInput = {\n /** When the reinstatement becomes effective */\n effectiveAt: Scalars['Time']['input'];\n /** A description of why the policy is being reinstated */\n reasonDescription: Scalars['String']['input'];\n};\n\n/** Input for renewing a business policy */\nexport type RenewBusinessPolicyInput = {\n /** The agency billing type, if applicable */\n agencyBillingType?: InputMaybe;\n /** Additional fees collected by the agency as revenue. */\n agencyFees: Scalars['Float']['input'];\n /** How to create the Ascend program */\n ascendProgramCreationMode?: InputMaybe;\n /** ID of specific Ascend program to use */\n ascendProgramId?: InputMaybe;\n /** The billing type for the policy */\n billingType: BusinessPolicyBillingType;\n /** Fees collected by the wholesale broker */\n brokerFees: Scalars['Float']['input'];\n /** The estimated commission the agency earns on this policy */\n estimatedCommission: Scalars['Float']['input'];\n /** When the policy expires */\n expiresAt?: InputMaybe;\n /** When the policy goes into force */\n inforceAt?: InputMaybe;\n /** When the policy was issued */\n issuedAt?: InputMaybe;\n /** Other fees incurred on this policy, not collected by the agency as revenue */\n otherFees: Scalars['Float']['input'];\n /** Fees collected by the carrier to administer the policy or program */\n policyFees: Scalars['Float']['input'];\n /** The policy number, if available */\n policyNumber?: InputMaybe;\n /** The actual premium of the policy */\n premium: Scalars['Float']['input'];\n /** The quote number associated with the renewal */\n quoteNumber: Scalars['String']['input'];\n /** The state of the policy */\n state: PolicyState;\n /** Taxes levied on the policy premium and any taxable fees */\n taxes: Scalars['Float']['input'];\n /** Total amount to charge for the policy, including premium and all taxes and fees */\n total: Scalars['Float']['input'];\n};\n\n/** Input type for resolving a service request */\nexport type ResolveServiceRequestInput = {\n /** Files attached to the resolution */\n files: Array;\n /** Internal notes about the resolution */\n notes: Scalars['String']['input'];\n};\n\n/** Represents the risk management data for a merchant */\nexport type RiskManagementData = {\n __typename?: 'RiskManagementData';\n /** List of action items related to the merchant's risk management */\n actionItems: Array;\n /** List of compliance groups associated with the merchant */\n compliance: Array;\n};\n\nexport type RiskManagementSetupInput = {\n /** Description of any upcoming changes to the business */\n changeDescription: Scalars['String']['input'];\n /** List of compliance frameworks that the merchant is subject to */\n complianceFrameworks: Scalars['String']['input'];\n /** Description of the business */\n description: Scalars['String']['input'];\n};\n\n/** Role mapped to auth model values */\nexport enum Role {\n Admin = 'ADMIN',\n AgencyClient = 'AGENCY_CLIENT',\n AgencyUser = 'AGENCY_USER',\n Anonymous = 'ANONYMOUS',\n Bpo = 'BPO',\n User = 'USER'\n}\n\n/** Represents a service request submitted by a merchant */\nexport type ServiceRequest = {\n __typename?: 'ServiceRequest';\n /** The account associated with the service request */\n account?: Maybe;\n /** Details specific to additional insured requests */\n addAdditionalInsured?: Maybe;\n /** The agency user that is assigned to this service request */\n assignee?: Maybe;\n /** The business policy associated with the service request, if any */\n businessPolicy?: Maybe;\n /** The calls that this service request was created from, if any */\n calls: Array;\n /** Details specific to policy cancellation requests */\n cancelPolicy?: Maybe;\n /** The email of the client that this service request is associated with, if not associated with an account */\n clientEmail?: Maybe;\n /** The name of the client that this service request is associated with, if not associated with an account */\n clientName?: Maybe;\n /** The phone number of the client that this service request is associated with, if not associated with an account */\n clientPhone?: Maybe;\n /** When the request was closed, if applicable */\n closedAt?: Maybe;\n /** The comments associated with this service request */\n comments: Array;\n /** Details specific to Certificate of Insurance requests */\n createCertificate?: Maybe;\n /** When the request was created */\n createdAt: Scalars['Time']['output'];\n /** Additional details about the request */\n details: Scalars['String']['output'];\n /** Details specific to document requests */\n documentRequest?: Maybe;\n /** The date and time that this service request is due, if any */\n dueAt?: Maybe;\n /** The email thread that this service request was created from, if any */\n emailThreads: Array;\n /** Details specific to policy endorsement requests */\n endorsePolicy?: Maybe;\n /** Unique identifier for the service request */\n id: Scalars['ID']['output'];\n /** Details specific to question requests */\n question?: Maybe;\n /** Resolution of the service request, if applicable */\n resolution?: Maybe;\n /** Files attached to the service request's resolution */\n resolutionFiles: Array;\n /** Current state of the request */\n state: ServiceRequestState;\n /** Type of service request */\n type: ServiceRequestType;\n /** When the request was last updated */\n updatedAt: Scalars['Time']['output'];\n /** The version of this policy */\n version: Scalars['Int64']['output'];\n /** The previous versions of this policy. The first version in this list will be this version (i.e. identical to the current policy), followed by the version before that, and so-forth. */\n versionHistory?: Maybe>;\n};\n\nexport type ServiceRequestComment = {\n __typename?: 'ServiceRequestComment';\n /** The agency user that created the comment */\n agencyUser: AgencyUser;\n /** The content of the comment */\n content: Scalars['String']['output'];\n /** The date and time that the comment was created */\n createdAt: Scalars['Time']['output'];\n /** The ID of the comment */\n id: Scalars['ID']['output'];\n /** The date and time that the comment was last updated */\n updatedAt: Scalars['Time']['output'];\n};\n\n/** Describes the resolution of a service request */\nexport type ServiceRequestResolution = {\n __typename?: 'ServiceRequestResolution';\n /** Internal notes about the resolution */\n notes: Scalars['String']['output'];\n};\n\n/** Current state of a service request */\nexport enum ServiceRequestState {\n /** Request has been completed */\n Closed = 'CLOSED',\n /** Request is still being processed */\n Open = 'OPEN'\n}\n\n/** Type of service request that can be created */\nexport enum ServiceRequestType {\n /** Request to add an additional insured to a policy */\n AddAdditionalInsured = 'ADD_ADDITIONAL_INSURED',\n /** Request to cancel an existing policy */\n CancelPolicy = 'CANCEL_POLICY',\n /** Request to create a Certificate of Insurance */\n CreateCertificate = 'CREATE_CERTIFICATE',\n /** Request for policy-related documents */\n DocumentRequest = 'DOCUMENT_REQUEST',\n /** Request to modify/endorse an existing policy */\n EndorsePolicy = 'ENDORSE_POLICY',\n /** Other miscellaneous requests */\n Other = 'OTHER',\n /** Question about policies, account, or billing, etc. */\n Question = 'QUESTION',\n /** Request to get a new quote for insurance */\n QuoteRequest = 'QUOTE_REQUEST'\n}\n\n/** Describes the reason why an application was updated */\nexport enum ServiceRequestUpdateReasonCode {\n /** Placeholder reason codes until the use case becomes more clear */\n Unknown = 'UNKNOWN'\n}\n\n/** Describes the type of update that occured to a policy */\nexport enum ServiceRequestUpdateType {\n /** A comment was added to the service request */\n AddServiceRequestComment = 'ADD_SERVICE_REQUEST_COMMENT',\n /** The service request was assigned to an agency user */\n AssignServiceRequest = 'ASSIGN_SERVICE_REQUEST',\n /** The service request was closed */\n CloseServiceRequest = 'CLOSE_SERVICE_REQUEST',\n /** The service request was created */\n CreateServiceRequest = 'CREATE_SERVICE_REQUEST',\n /** The service request was enriched */\n EnrichServiceRequest = 'ENRICH_SERVICE_REQUEST',\n /** The service request was updated */\n UpdateServiceRequest = 'UPDATE_SERVICE_REQUEST',\n /** The due date of the service request was updated */\n UpdateServiceRequestDueAt = 'UPDATE_SERVICE_REQUEST_DUE_AT'\n}\n\n/** Describes a particular version of a service request */\nexport type ServiceRequestVersion = {\n __typename?: 'ServiceRequestVersion';\n /** The date this version was created */\n createdAt: Scalars['Time']['output'];\n /** Produces a human-readable string that can be used to diff against another service request version. */\n diffableJson: Scalars['String']['output'];\n /** The version number of the previous service request version, if there is any. If this field is null, then this version is the only version */\n previousVersion?: Maybe;\n /** The full service request object that includes all of the updates made in this version and all previous versions */\n serviceRequest: ServiceRequest;\n /** The ID of the entity that initiated the update, depending on the type */\n updateInitiatorId: Scalars['String']['output'];\n /** The type of the entity that initiated the update */\n updateInitiatorType: UpdateInitiatorType;\n /** Indicates whether this update is 'private' in the sense that it should not be displayed to the policyholder */\n updatePrivate: Scalars['Boolean']['output'];\n /** A human-readable description of the reason why this update was made */\n updateReason?: Maybe;\n /** A programmatic representation of the reason why this update was made */\n updateReasonCode?: Maybe;\n /** The types of updates made between this version and the previous version */\n updateTypes: Array;\n /** The version number of this service request version */\n version: Scalars['Int64']['output'];\n};\n\n/** The Stripe invoice information used to bill a policy */\nexport type StripeInvoice = {\n __typename?: 'StripeInvoice';\n id: Scalars['String']['output'];\n};\n\nexport type Subscription = {\n __typename?: 'Subscription';\n /** Subscribe to Cara workspace updates */\n watchCaraWorkspace: CaraWorkspace;\n};\n\nexport type SubscriptionWatchCaraWorkspaceArgs = {\n id: Scalars['ID']['input'];\n};\n\n/** Represents a tool call that was made in the context of an email conversation */\nexport type ToolCall = {\n __typename?: 'ToolCall';\n /** The arguments passed to the tool in JSON format */\n argumentsJson: Scalars['String']['output'];\n /** The ID of the tool call */\n id: Scalars['String']['output'];\n /** The name of the tool being called */\n name: Scalars['String']['output'];\n /** The result of the tool call */\n result: Scalars['String']['output'];\n /** Timestamp when this tool call was made */\n timestamp: Scalars['Time']['output'];\n};\n\n/** Represents an answer to an underwriting question. */\nexport type UnderwritingAnswer = {\n __typename?: 'UnderwritingAnswer';\n /** The answer to the question. */\n answer: Scalars['String']['output'];\n /** The ID of the location associated with the answer. */\n locationId?: Maybe;\n /** The ID of the question associated with the answer. */\n questionId: Scalars['ID']['output'];\n};\n\nexport type UnderwritingAnswerInput = {\n answer: Scalars['String']['input'];\n locationId?: InputMaybe;\n questionId: Scalars['String']['input'];\n};\n\n/** Represents an answer option for an underwriting question. */\nexport type UnderwritingAnswerOption = {\n __typename?: 'UnderwritingAnswerOption';\n /** The display text of the answer option. */\n displayText: Scalars['String']['output'];\n /** The value of the answer option. */\n value: Scalars['String']['output'];\n};\n\n/** Represents an underwriting question. */\nexport type UnderwritingQuestion = {\n __typename?: 'UnderwritingQuestion';\n /** The possible answer options for the question. */\n answerOptions?: Maybe>;\n /** Carriers that require an answer to this question\" */\n carriers: Array;\n /** The default answer to the question, if any. */\n defaultAnswer?: Maybe;\n /** Question IDs that are dependent on this question. */\n dependentQuestions: Array;\n /** Indicates whether the question has a parent question. */\n hasParentQuestion: Scalars['Boolean']['output'];\n /** The unique identifier of the underwriting question. */\n id: Scalars['ID']['output'];\n /** The ID of the location associated with the question. */\n locationId?: Maybe;\n /** The text of the underwriting question. */\n question: Scalars['String']['output'];\n /** The tooltip providing additional information about the question. */\n tooltip: Scalars['String']['output'];\n /** The type of the underwriting question. */\n type: UnderwritingQuestionType;\n};\n\n/** Represents a dependency between underwriting questions. */\nexport type UnderwritingQuestionDependency = {\n __typename?: 'UnderwritingQuestionDependency';\n /** The condition that must be met for the dependent questions to be shown. */\n condition?: Maybe;\n /** The IDs of the questions that are dependent on the parent question. */\n dependentQuestionIds: Array;\n /** The type of the dependency. */\n type: UnderwritingQuestionDependencyType;\n};\n\nexport enum UnderwritingQuestionDependencyType {\n /** Indicates that a question should be shown if the condition matches */\n Conditional = 'CONDITIONAL',\n /** Indicates that a question should always be shown */\n Direct = 'DIRECT'\n}\n\n/** Represents the type of an underwriting question. */\nexport enum UnderwritingQuestionType {\n /** A date question. */\n Date = 'DATE',\n /** An email question. */\n Email = 'EMAIL',\n /** A multi-select dropdown question. */\n Multiselectdropdown = 'MULTISELECTDROPDOWN',\n /** A number question. */\n Number = 'NUMBER',\n /** A phone number question. */\n Phonenumber = 'PHONENUMBER',\n /** A radio button question. */\n Radio = 'RADIO',\n /** A single-select dropdown question. */\n Singleselectdropdown = 'SINGLESELECTDROPDOWN',\n /** A text question. */\n Text = 'TEXT',\n /** A year question. */\n Year = 'YEAR'\n}\n\n/** Represents an underwriting statement. */\nexport type UnderwritingStatement = {\n __typename?: 'UnderwritingStatement';\n /** The carrier that the underwriting statement is associated with. */\n carrier: BusinessApplicationCarrier;\n /** Formatted markdown string with the underwriting statement. */\n markdown: Scalars['String']['output'];\n};\n\n/** Represents the type of an underwriting statement. */\nexport enum UnderwritingStatementType {\n /** A payment statement. */\n Payment = 'PAYMENT',\n /** An underwriting statement. */\n Underwriting = 'UNDERWRITING'\n}\n\n/** Input for updating an existing account record */\nexport type UpdateAccountInput = {\n /** Business account details to update, if the account is a business */\n business?: InputMaybe;\n /** Individual account details to update, if the account is an individual */\n individual?: InputMaybe;\n};\n\nexport type UpdateApplicationInput = {\n /** The annual revenue of the business. */\n annualRevenue?: InputMaybe;\n /** The \"Doing Business As\" name of the business. */\n businessDba?: InputMaybe;\n /** The legal name of the business. */\n businessName?: InputMaybe;\n /** The information for the the contact person on the business application. */\n contact?: InputMaybe;\n /** Information about the employees at the business location. */\n employeeInfo?: InputMaybe;\n /** The Federal Employer Identification Number (FEIN) of the business. */\n fein?: InputMaybe;\n /** The desired effective date for the insurance policy. */\n insuranceEffectiveAt?: InputMaybe;\n /** The insurance types the business is interested in. */\n insuranceTypes?: InputMaybe>;\n /** The legal entity type of the business. */\n legalEntityType?: InputMaybe;\n /** The mailing address of the business. */\n mailingAddress?: InputMaybe;\n /** The NAICS classification code for the business. */\n naicsCode?: InputMaybe;\n /** The owners of the business. */\n owners?: InputMaybe>;\n /** The past policy losses of the business. */\n pastPolicyLosses?: InputMaybe>;\n /** The carriers that this business wants quotes from */\n selectedCarriers?: InputMaybe>;\n /** The selected insurance limits for the business. */\n selectedLimits?: InputMaybe;\n /** The underwriting answers for the business. */\n underwritingAnswers?: InputMaybe>;\n /** The year the business was founded. */\n yearOfFounding?: InputMaybe;\n /** The years of management experience of the business. */\n yearsOfManagementExperience?: InputMaybe;\n};\n\n/** Input for updating an existing business record */\nexport type UpdateBusinessInput = {\n /** New 'Doing Business As' (DBA) name for the business */\n dba?: InputMaybe;\n /** New mailing address for the business */\n mailingAddress?: InputMaybe;\n /** New NAICS code for the business */\n naics?: InputMaybe;\n /** New legal name for the business */\n name?: InputMaybe;\n /** New website URL for the business */\n website?: InputMaybe;\n};\n\n/** Input for updating an existing business policy */\nexport type UpdateBusinessPolicyInput = {\n /** Additional fees collected by the agency as revenue. */\n agencyFees?: InputMaybe;\n /** ID of the Ascend billable */\n ascendBillableId?: InputMaybe;\n /** ID of the Ascend program */\n ascendProgramId?: InputMaybe;\n /** Fees collected by the wholesale broker */\n brokerFees?: InputMaybe;\n /** ID of the broker */\n brokerId?: InputMaybe;\n /** ID of the insurance carrier */\n carrierId?: InputMaybe;\n /** Estimated commission percentage */\n estimatedCommission?: InputMaybe;\n /** When the policy expires */\n expiresAt?: InputMaybe;\n /** When the policy goes into effect */\n inforceAt?: InputMaybe;\n /** When the policy was issued */\n issuedAt?: InputMaybe;\n /** Insurance market the policy is written in */\n market?: InputMaybe;\n /** Minimum earned premium for the policy */\n minimumEarnedPremium?: InputMaybe;\n /** Other fees incurred on this policy, not collected by the agency as revenue */\n otherFees?: InputMaybe;\n /** Fees collected by the carrier to administer the policy or program */\n policyFees?: InputMaybe;\n /** Policy number once issued */\n policyNumber?: InputMaybe;\n /** The actual premium of the policy */\n premium?: InputMaybe;\n /** Quote number from carrier */\n quoteNumber?: InputMaybe;\n /** ID of the agency user who sourced the policy */\n sourceAgencyUserId?: InputMaybe;\n /** ID of the campaign, if applicable */\n sourceCampaignId?: InputMaybe;\n /** ID of the lead that generated this policy */\n sourceLeadId?: InputMaybe;\n /** Additional notes about the policy source */\n sourceNotes?: InputMaybe;\n /** Type of process used to source the policy */\n sourceProcessType?: InputMaybe;\n /** ID of the referral source, if applicable */\n sourceReferralSourceId?: InputMaybe;\n /** Sub-type of the source */\n sourceSubType?: InputMaybe;\n /** Type of source for the policy */\n sourceType?: InputMaybe;\n /** Current state of the policy */\n state?: InputMaybe;\n /** Taxes levied on the policy premium and any taxable fees */\n taxes?: InputMaybe;\n /** Total amount to charge for the policy, including premium and all taxes and fees */\n total?: InputMaybe;\n /** Type of insurance policy */\n type?: InputMaybe;\n /** Reason for updating the policy */\n updateReason: Scalars['String']['input'];\n};\n\n/** Input for updating an existing client record */\nexport type UpdateClientInput = {\n /** The updated business details for the client */\n business?: InputMaybe;\n /** New email address for the client */\n email?: InputMaybe;\n /** New name for the client */\n name?: InputMaybe;\n /** New phone number for the client */\n phone?: InputMaybe;\n};\n\n/** Describes the type of entity that initiated an update */\nexport enum UpdateInitiatorType {\n /** Agency client indicates an authenticated agency client */\n AgencyClient = 'AGENCY_CLIENT',\n /** Agency user indicates an authenticated agency user */\n AgencyUser = 'AGENCY_USER',\n /** Anonymous indicates an unauthenticated external user */\n Anonymous = 'ANONYMOUS',\n /** Cronjob indicates a scheduled automated job */\n Cronjob = 'CRONJOB',\n /** Oyster indicates an internal employee at Oyster */\n Oyster = 'OYSTER',\n /** Workflow indicates a Temporal workflow */\n Workflow = 'WORKFLOW'\n}\n\n/** Input type for updating a service request */\nexport type UpdateServiceRequestInput = {\n /** The ID of the agency user that is assigned to this service request */\n assigneeId?: InputMaybe;\n /** The date and time that this service request is due */\n dueAt?: InputMaybe;\n};\n\n/** UploadFileInput represents a file upload request */\nexport type UploadFileInput = {\n /** The file to upload */\n file: Scalars['Upload']['input'];\n /** The notes associated with the file */\n notes: Scalars['String']['input'];\n /** The type of the file */\n type: FileType;\n /** Whether the file is visible to the user */\n visible: Scalars['Boolean']['input'];\n};\n\nexport type AccountFieldsFragment = {\n __typename?: 'Account';\n createdAt: Date;\n id: string;\n type: AccountType;\n account:\n | {\n __typename?: 'BusinessAccount';\n dba: string;\n naics: string;\n website: string;\n email: string;\n name: string;\n phone: string;\n mailingAddress: {\n __typename?: 'Address';\n line1: string;\n line2?: string | null | undefined;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | {\n __typename?: 'IndividualAccount';\n email: string;\n name: string;\n phone: string;\n mailingAddress: {\n __typename?: 'Address';\n line1: string;\n line2?: string | null | undefined;\n city: string;\n zone: string;\n postalCode: string;\n };\n };\n};\n\nexport type AccountBusinessApplicationFieldsFragment = {\n __typename?: 'Account';\n businessApplications: Array<{\n __typename?: 'BusinessApplication';\n annualRevenue: number;\n businessDba: string;\n businessName: string;\n fein: string;\n id: string;\n insuranceEffectiveAt?: Date | null | undefined;\n insuranceTypes: Array;\n legalEntityType?: BusinessLegalEntityType | null | undefined;\n naicsCode: string;\n selectedCarriers: Array;\n state: BusinessApplicationState;\n yearOfFounding: string;\n yearsOfManagementExperience: number;\n contact: { __typename?: 'BusinessContact'; fullName: string; email: string; phone: string };\n employeeInfo: {\n __typename?: 'BusinessEmployeeInfo';\n numFullTimeEmployees: number;\n numPartTimeEmployees: number;\n totalEmployeePayroll: number;\n };\n locations: Array<{\n __typename?: 'BusinessLocation';\n id: string;\n isPrimary: boolean;\n address: {\n __typename?: 'Address';\n line1: string;\n line2?: string | null | undefined;\n city: string;\n zone: string;\n postalCode: string;\n };\n buildingInfo: {\n __typename?: 'BusinessLocationBuildingInfo';\n annualSales: number;\n areaOccupiedByBusiness: number;\n buildingCoverage: number;\n burglarAlarmType?: BurglarAlarmType | null | undefined;\n constructionType?: BuildingConstructionType | null | undefined;\n ownershipType?: BuildingOwnershipType | null | undefined;\n personalPropertyCoverage: number;\n sprinkleredPercentage: number;\n totalArea: number;\n totalStories: number;\n yearBuilt: string;\n };\n employeeInfo: {\n __typename?: 'BusinessEmployeeInfo';\n numPartTimeEmployees: number;\n numFullTimeEmployees: number;\n totalEmployeePayroll: number;\n jobCode: string;\n };\n }>;\n mailingAddress: {\n __typename?: 'Address';\n line1: string;\n line2?: string | null | undefined;\n city: string;\n zone: string;\n postalCode: string;\n };\n owners: Array<{\n __typename?: 'BusinessOwner';\n fullName: string;\n annualPayroll: number;\n dateOfBirth?: Date | null | undefined;\n jobCode?: string | null | undefined;\n }>;\n pastPolicyLosses: Array<{\n __typename?: 'PastPolicyLoss';\n claimDate?: Date | null | undefined;\n claimStatus?: PastPolicyLossClaimStatus | null | undefined;\n lossDate?: Date | null | undefined;\n lossDescription: string;\n lossState: string;\n lossType?: PastPolicyLossType | null | undefined;\n policyEffectiveDate?: Date | null | undefined;\n policyExpirationDate?: Date | null | undefined;\n policyType?: InsuranceType | null | undefined;\n totalPaidAmount: number;\n totalReservedAmount: number;\n }>;\n selectedLimits: {\n __typename?: 'BusinessApplicationInsuranceLimits';\n coverageState: string;\n wcPerAccidentLimit?: number | null | undefined;\n wcPerDiseaseEmployeeLimit?: number | null | undefined;\n wcPerDiseasePolicyLimit?: number | null | undefined;\n glPerOccurrenceLimit?: number | null | undefined;\n glAggregateLimit?: number | null | undefined;\n bopPerOccurrenceLimit?: number | null | undefined;\n bopAggregateLimit?: number | null | undefined;\n cyberRetentionLimit?: number | null | undefined;\n cyberAggregateLimit?: number | null | undefined;\n };\n underwritingAnswers: Array<{\n __typename?: 'UnderwritingAnswer';\n answer: string;\n locationId?: string | null | undefined;\n questionId: string;\n }>;\n underwritingQuestions: Array<{\n __typename?: 'UnderwritingQuestion';\n id: string;\n carriers: Array;\n defaultAnswer?: string | null | undefined;\n hasParentQuestion: boolean;\n locationId?: string | null | undefined;\n question: string;\n tooltip: string;\n type: UnderwritingQuestionType;\n answerOptions?:\n | Array<{ __typename?: 'UnderwritingAnswerOption'; displayText: string; value: string }>\n | null\n | undefined;\n dependentQuestions: Array<{\n __typename?: 'UnderwritingQuestionDependency';\n condition?: string | null | undefined;\n dependentQuestionIds: Array;\n type: UnderwritingQuestionDependencyType;\n }>;\n }>;\n underwritingStatements: Array<{\n __typename?: 'UnderwritingStatement';\n carrier: BusinessApplicationCarrier;\n markdown: string;\n }>;\n }>;\n};\n\nexport type AccountBusinessPolicyFieldsFragment = {\n __typename?: 'Account';\n businessPolicies: Array<{\n __typename?: 'BusinessPolicy';\n expiresAt?: Date | null | undefined;\n id: string;\n inforceAt?: Date | null | undefined;\n issuedAt?: Date | null | undefined;\n policyNumber: string;\n state: PolicyState;\n type: InsuranceType;\n account: {\n __typename?: 'Account';\n id: string;\n account:\n | { __typename?: 'BusinessAccount'; email: string; name: string }\n | { __typename?: 'IndividualAccount'; email: string; name: string };\n };\n carrier: { __typename?: 'InsuranceCarrier'; id: string; name: string };\n }>;\n};\n\nexport type AccountCertificateOfLiabilityInsuranceFieldsFragment = {\n __typename?: 'Account';\n certificatesOfLiabilityInsurance: Array<{\n __typename?: 'CertificateOfLiabilityInsurance';\n id: string;\n certificateNumber: string;\n viewUrl: string;\n downloadUrl: string;\n createdAt: Date;\n holder: {\n __typename?: 'CertificateEntity';\n name: string;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n };\n }>;\n};\n\nexport type AccountContactFieldsFragment = {\n __typename?: 'Account';\n contacts: Array<{\n __typename?: 'AccountContact';\n email: string;\n id: string;\n name: string;\n phone: string;\n }>;\n};\n\nexport type AccountServiceRequestFieldsFragment = {\n __typename?: 'Account';\n serviceRequests: Array<{\n __typename?: 'ServiceRequest';\n id: string;\n type: ServiceRequestType;\n state: ServiceRequestState;\n clientEmail?: string | null | undefined;\n clientName?: string | null | undefined;\n clientPhone?: string | null | undefined;\n details: string;\n dueAt?: Date | null | undefined;\n createdAt: Date;\n updatedAt: Date;\n account?:\n | {\n __typename?: 'Account';\n type: AccountType;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n assignee?: { __typename?: 'AgencyUser'; id: string; name: string } | null | undefined;\n addAdditionalInsured?:\n | {\n __typename?: 'AddAdditionalInsuredRequest';\n name: string;\n relationship: string;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n businessPolicy?:\n | {\n __typename?: 'BusinessPolicy';\n id: string;\n type: InsuranceType;\n carrier: { __typename?: 'InsuranceCarrier'; name: string };\n }\n | null\n | undefined;\n cancelPolicy?:\n | { __typename?: 'CancelPolicyRequest'; policyId: string; reason: string }\n | null\n | undefined;\n createCertificate?:\n | {\n __typename?: 'CreateCertificateRequest';\n name: string;\n additionalInsured: boolean;\n additionalInsuredRelationship?: string | null | undefined;\n additionalInsuredRelationshipDescription?: string | null | undefined;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n documentRequest?:\n | { __typename?: 'DocumentRequest'; type: DocumentRequestType }\n | null\n | undefined;\n endorsePolicy?: { __typename?: 'EndorsePolicyRequest'; policyId: string } | null | undefined;\n question?:\n | {\n __typename?: 'QuestionRequest';\n policyId?: string | null | undefined;\n question: string;\n type: QuestionRequestType;\n }\n | null\n | undefined;\n resolution?: { __typename?: 'ServiceRequestResolution'; notes: string } | null | undefined;\n }>;\n};\n\nexport type GetAccountsQueryVariables = Exact<{ [key: string]: never }>;\n\nexport type GetAccountsQuery = {\n __typename?: 'Query';\n accounts: Array<{\n __typename?: 'Account';\n createdAt: Date;\n id: string;\n type: AccountType;\n account:\n | {\n __typename?: 'BusinessAccount';\n dba: string;\n naics: string;\n website: string;\n email: string;\n name: string;\n phone: string;\n mailingAddress: {\n __typename?: 'Address';\n line1: string;\n line2?: string | null | undefined;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | {\n __typename?: 'IndividualAccount';\n email: string;\n name: string;\n phone: string;\n mailingAddress: {\n __typename?: 'Address';\n line1: string;\n line2?: string | null | undefined;\n city: string;\n zone: string;\n postalCode: string;\n };\n };\n }>;\n};\n\nexport type GetAccountQueryVariables = Exact<{\n id: Scalars['ID']['input'];\n}>;\n\nexport type GetAccountQuery = {\n __typename?: 'Query';\n account?:\n | {\n __typename?: 'Account';\n createdAt: Date;\n id: string;\n type: AccountType;\n account:\n | {\n __typename?: 'BusinessAccount';\n dba: string;\n naics: string;\n website: string;\n email: string;\n name: string;\n phone: string;\n mailingAddress: {\n __typename?: 'Address';\n line1: string;\n line2?: string | null | undefined;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | {\n __typename?: 'IndividualAccount';\n email: string;\n name: string;\n phone: string;\n mailingAddress: {\n __typename?: 'Address';\n line1: string;\n line2?: string | null | undefined;\n city: string;\n zone: string;\n postalCode: string;\n };\n };\n businessApplications: Array<{\n __typename?: 'BusinessApplication';\n annualRevenue: number;\n businessDba: string;\n businessName: string;\n fein: string;\n id: string;\n insuranceEffectiveAt?: Date | null | undefined;\n insuranceTypes: Array;\n legalEntityType?: BusinessLegalEntityType | null | undefined;\n naicsCode: string;\n selectedCarriers: Array;\n state: BusinessApplicationState;\n yearOfFounding: string;\n yearsOfManagementExperience: number;\n contact: {\n __typename?: 'BusinessContact';\n fullName: string;\n email: string;\n phone: string;\n };\n employeeInfo: {\n __typename?: 'BusinessEmployeeInfo';\n numFullTimeEmployees: number;\n numPartTimeEmployees: number;\n totalEmployeePayroll: number;\n };\n locations: Array<{\n __typename?: 'BusinessLocation';\n id: string;\n isPrimary: boolean;\n address: {\n __typename?: 'Address';\n line1: string;\n line2?: string | null | undefined;\n city: string;\n zone: string;\n postalCode: string;\n };\n buildingInfo: {\n __typename?: 'BusinessLocationBuildingInfo';\n annualSales: number;\n areaOccupiedByBusiness: number;\n buildingCoverage: number;\n burglarAlarmType?: BurglarAlarmType | null | undefined;\n constructionType?: BuildingConstructionType | null | undefined;\n ownershipType?: BuildingOwnershipType | null | undefined;\n personalPropertyCoverage: number;\n sprinkleredPercentage: number;\n totalArea: number;\n totalStories: number;\n yearBuilt: string;\n };\n employeeInfo: {\n __typename?: 'BusinessEmployeeInfo';\n numPartTimeEmployees: number;\n numFullTimeEmployees: number;\n totalEmployeePayroll: number;\n jobCode: string;\n };\n }>;\n mailingAddress: {\n __typename?: 'Address';\n line1: string;\n line2?: string | null | undefined;\n city: string;\n zone: string;\n postalCode: string;\n };\n owners: Array<{\n __typename?: 'BusinessOwner';\n fullName: string;\n annualPayroll: number;\n dateOfBirth?: Date | null | undefined;\n jobCode?: string | null | undefined;\n }>;\n pastPolicyLosses: Array<{\n __typename?: 'PastPolicyLoss';\n claimDate?: Date | null | undefined;\n claimStatus?: PastPolicyLossClaimStatus | null | undefined;\n lossDate?: Date | null | undefined;\n lossDescription: string;\n lossState: string;\n lossType?: PastPolicyLossType | null | undefined;\n policyEffectiveDate?: Date | null | undefined;\n policyExpirationDate?: Date | null | undefined;\n policyType?: InsuranceType | null | undefined;\n totalPaidAmount: number;\n totalReservedAmount: number;\n }>;\n selectedLimits: {\n __typename?: 'BusinessApplicationInsuranceLimits';\n coverageState: string;\n wcPerAccidentLimit?: number | null | undefined;\n wcPerDiseaseEmployeeLimit?: number | null | undefined;\n wcPerDiseasePolicyLimit?: number | null | undefined;\n glPerOccurrenceLimit?: number | null | undefined;\n glAggregateLimit?: number | null | undefined;\n bopPerOccurrenceLimit?: number | null | undefined;\n bopAggregateLimit?: number | null | undefined;\n cyberRetentionLimit?: number | null | undefined;\n cyberAggregateLimit?: number | null | undefined;\n };\n underwritingAnswers: Array<{\n __typename?: 'UnderwritingAnswer';\n answer: string;\n locationId?: string | null | undefined;\n questionId: string;\n }>;\n underwritingQuestions: Array<{\n __typename?: 'UnderwritingQuestion';\n id: string;\n carriers: Array;\n defaultAnswer?: string | null | undefined;\n hasParentQuestion: boolean;\n locationId?: string | null | undefined;\n question: string;\n tooltip: string;\n type: UnderwritingQuestionType;\n answerOptions?:\n | Array<{\n __typename?: 'UnderwritingAnswerOption';\n displayText: string;\n value: string;\n }>\n | null\n | undefined;\n dependentQuestions: Array<{\n __typename?: 'UnderwritingQuestionDependency';\n condition?: string | null | undefined;\n dependentQuestionIds: Array;\n type: UnderwritingQuestionDependencyType;\n }>;\n }>;\n underwritingStatements: Array<{\n __typename?: 'UnderwritingStatement';\n carrier: BusinessApplicationCarrier;\n markdown: string;\n }>;\n }>;\n businessPolicies: Array<{\n __typename?: 'BusinessPolicy';\n expiresAt?: Date | null | undefined;\n id: string;\n inforceAt?: Date | null | undefined;\n issuedAt?: Date | null | undefined;\n policyNumber: string;\n state: PolicyState;\n type: InsuranceType;\n account: {\n __typename?: 'Account';\n id: string;\n account:\n | { __typename?: 'BusinessAccount'; email: string; name: string }\n | { __typename?: 'IndividualAccount'; email: string; name: string };\n };\n carrier: { __typename?: 'InsuranceCarrier'; id: string; name: string };\n }>;\n certificatesOfLiabilityInsurance: Array<{\n __typename?: 'CertificateOfLiabilityInsurance';\n id: string;\n certificateNumber: string;\n viewUrl: string;\n downloadUrl: string;\n createdAt: Date;\n holder: {\n __typename?: 'CertificateEntity';\n name: string;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n };\n }>;\n contacts: Array<{\n __typename?: 'AccountContact';\n email: string;\n id: string;\n name: string;\n phone: string;\n }>;\n serviceRequests: Array<{\n __typename?: 'ServiceRequest';\n id: string;\n type: ServiceRequestType;\n state: ServiceRequestState;\n clientEmail?: string | null | undefined;\n clientName?: string | null | undefined;\n clientPhone?: string | null | undefined;\n details: string;\n dueAt?: Date | null | undefined;\n createdAt: Date;\n updatedAt: Date;\n account?:\n | {\n __typename?: 'Account';\n type: AccountType;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n assignee?: { __typename?: 'AgencyUser'; id: string; name: string } | null | undefined;\n addAdditionalInsured?:\n | {\n __typename?: 'AddAdditionalInsuredRequest';\n name: string;\n relationship: string;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n businessPolicy?:\n | {\n __typename?: 'BusinessPolicy';\n id: string;\n type: InsuranceType;\n carrier: { __typename?: 'InsuranceCarrier'; name: string };\n }\n | null\n | undefined;\n cancelPolicy?:\n | { __typename?: 'CancelPolicyRequest'; policyId: string; reason: string }\n | null\n | undefined;\n createCertificate?:\n | {\n __typename?: 'CreateCertificateRequest';\n name: string;\n additionalInsured: boolean;\n additionalInsuredRelationship?: string | null | undefined;\n additionalInsuredRelationshipDescription?: string | null | undefined;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n documentRequest?:\n | { __typename?: 'DocumentRequest'; type: DocumentRequestType }\n | null\n | undefined;\n endorsePolicy?:\n | { __typename?: 'EndorsePolicyRequest'; policyId: string }\n | null\n | undefined;\n question?:\n | {\n __typename?: 'QuestionRequest';\n policyId?: string | null | undefined;\n question: string;\n type: QuestionRequestType;\n }\n | null\n | undefined;\n resolution?:\n | { __typename?: 'ServiceRequestResolution'; notes: string }\n | null\n | undefined;\n }>;\n }\n | null\n | undefined;\n};\n\nexport type ContactFieldsFragment = {\n __typename?: 'AccountContact';\n email: string;\n id: string;\n name: string;\n phone: string;\n};\n\nexport type GetContactsQueryVariables = Exact<{ [key: string]: never }>;\n\nexport type GetContactsQuery = {\n __typename?: 'Query';\n contacts: Array<{\n __typename?: 'AccountContact';\n email: string;\n id: string;\n name: string;\n phone: string;\n }>;\n};\n\nexport type CreateAccountMutationVariables = Exact<{\n input: CreateAccountInput;\n}>;\n\nexport type CreateAccountMutation = {\n __typename?: 'Mutation';\n createAccount: {\n __typename?: 'Account';\n createdAt: Date;\n id: string;\n type: AccountType;\n account:\n | {\n __typename?: 'BusinessAccount';\n dba: string;\n naics: string;\n website: string;\n email: string;\n name: string;\n phone: string;\n mailingAddress: {\n __typename?: 'Address';\n line1: string;\n line2?: string | null | undefined;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | {\n __typename?: 'IndividualAccount';\n email: string;\n name: string;\n phone: string;\n mailingAddress: {\n __typename?: 'Address';\n line1: string;\n line2?: string | null | undefined;\n city: string;\n zone: string;\n postalCode: string;\n };\n };\n };\n};\n\nexport type UpdateAccountMutationVariables = Exact<{\n id: Scalars['ID']['input'];\n input: UpdateAccountInput;\n}>;\n\nexport type UpdateAccountMutation = {\n __typename?: 'Mutation';\n updateAccount: {\n __typename?: 'Account';\n createdAt: Date;\n id: string;\n type: AccountType;\n account:\n | {\n __typename?: 'BusinessAccount';\n dba: string;\n naics: string;\n website: string;\n email: string;\n name: string;\n phone: string;\n mailingAddress: {\n __typename?: 'Address';\n line1: string;\n line2?: string | null | undefined;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | {\n __typename?: 'IndividualAccount';\n email: string;\n name: string;\n phone: string;\n mailingAddress: {\n __typename?: 'Address';\n line1: string;\n line2?: string | null | undefined;\n city: string;\n zone: string;\n postalCode: string;\n };\n };\n };\n};\n\nexport type AgencyUserFieldsFragment = {\n __typename?: 'AgencyUser';\n id: string;\n email: string;\n name: string;\n};\n\nexport type GetAgencyUserQueryVariables = Exact<{ [key: string]: never }>;\n\nexport type GetAgencyUserQuery = {\n __typename?: 'Query';\n agencyUser?:\n | {\n __typename?: 'AgencyUser';\n id: string;\n email: string;\n name: string;\n agency: { __typename?: 'Agency'; id: string; name: string };\n }\n | null\n | undefined;\n};\n\nexport type GetAgencyUsersQueryVariables = Exact<{ [key: string]: never }>;\n\nexport type GetAgencyUsersQuery = {\n __typename?: 'Query';\n agencyUsers: Array<{ __typename?: 'AgencyUser'; id: string; email: string; name: string }>;\n};\n\nexport type AgencySignInFieldsFragment = {\n __typename?: 'AgencySignInResponse';\n agencyUser: {\n __typename?: 'AgencyUser';\n id: string;\n email: string;\n name: string;\n agency: { __typename?: 'Agency'; id: string; name: string };\n };\n};\n\nexport type SignInMutationVariables = Exact<{\n email: Scalars['String']['input'];\n}>;\n\nexport type SignInMutation = {\n __typename?: 'Mutation';\n agencySignIn?:\n | {\n __typename?: 'AgencySignInResponse';\n agencyUser: {\n __typename?: 'AgencyUser';\n id: string;\n email: string;\n name: string;\n agency: { __typename?: 'Agency'; id: string; name: string };\n };\n }\n | null\n | undefined;\n};\n\nexport type SignInCompleteMutationVariables = Exact<{\n email: Scalars['String']['input'];\n code: Scalars['String']['input'];\n}>;\n\nexport type SignInCompleteMutation = {\n __typename?: 'Mutation';\n agencySignIn?:\n | {\n __typename?: 'AgencySignInResponse';\n agencyUser: {\n __typename?: 'AgencyUser';\n id: string;\n email: string;\n name: string;\n agency: { __typename?: 'Agency'; id: string; name: string };\n };\n }\n | null\n | undefined;\n};\n\nexport type BusinessApplicationFieldsFragment = {\n __typename?: 'BusinessApplication';\n annualRevenue: number;\n businessDba: string;\n businessName: string;\n fein: string;\n id: string;\n insuranceEffectiveAt?: Date | null | undefined;\n insuranceTypes: Array;\n legalEntityType?: BusinessLegalEntityType | null | undefined;\n naicsCode: string;\n selectedCarriers: Array;\n state: BusinessApplicationState;\n yearOfFounding: string;\n yearsOfManagementExperience: number;\n contact: { __typename?: 'BusinessContact'; fullName: string; email: string; phone: string };\n employeeInfo: {\n __typename?: 'BusinessEmployeeInfo';\n numFullTimeEmployees: number;\n numPartTimeEmployees: number;\n totalEmployeePayroll: number;\n };\n locations: Array<{\n __typename?: 'BusinessLocation';\n id: string;\n isPrimary: boolean;\n address: {\n __typename?: 'Address';\n line1: string;\n line2?: string | null | undefined;\n city: string;\n zone: string;\n postalCode: string;\n };\n buildingInfo: {\n __typename?: 'BusinessLocationBuildingInfo';\n annualSales: number;\n areaOccupiedByBusiness: number;\n buildingCoverage: number;\n burglarAlarmType?: BurglarAlarmType | null | undefined;\n constructionType?: BuildingConstructionType | null | undefined;\n ownershipType?: BuildingOwnershipType | null | undefined;\n personalPropertyCoverage: number;\n sprinkleredPercentage: number;\n totalArea: number;\n totalStories: number;\n yearBuilt: string;\n };\n employeeInfo: {\n __typename?: 'BusinessEmployeeInfo';\n numPartTimeEmployees: number;\n numFullTimeEmployees: number;\n totalEmployeePayroll: number;\n jobCode: string;\n };\n }>;\n mailingAddress: {\n __typename?: 'Address';\n line1: string;\n line2?: string | null | undefined;\n city: string;\n zone: string;\n postalCode: string;\n };\n owners: Array<{\n __typename?: 'BusinessOwner';\n fullName: string;\n annualPayroll: number;\n dateOfBirth?: Date | null | undefined;\n jobCode?: string | null | undefined;\n }>;\n pastPolicyLosses: Array<{\n __typename?: 'PastPolicyLoss';\n claimDate?: Date | null | undefined;\n claimStatus?: PastPolicyLossClaimStatus | null | undefined;\n lossDate?: Date | null | undefined;\n lossDescription: string;\n lossState: string;\n lossType?: PastPolicyLossType | null | undefined;\n policyEffectiveDate?: Date | null | undefined;\n policyExpirationDate?: Date | null | undefined;\n policyType?: InsuranceType | null | undefined;\n totalPaidAmount: number;\n totalReservedAmount: number;\n }>;\n selectedLimits: {\n __typename?: 'BusinessApplicationInsuranceLimits';\n coverageState: string;\n wcPerAccidentLimit?: number | null | undefined;\n wcPerDiseaseEmployeeLimit?: number | null | undefined;\n wcPerDiseasePolicyLimit?: number | null | undefined;\n glPerOccurrenceLimit?: number | null | undefined;\n glAggregateLimit?: number | null | undefined;\n bopPerOccurrenceLimit?: number | null | undefined;\n bopAggregateLimit?: number | null | undefined;\n cyberRetentionLimit?: number | null | undefined;\n cyberAggregateLimit?: number | null | undefined;\n };\n underwritingAnswers: Array<{\n __typename?: 'UnderwritingAnswer';\n answer: string;\n locationId?: string | null | undefined;\n questionId: string;\n }>;\n underwritingQuestions: Array<{\n __typename?: 'UnderwritingQuestion';\n id: string;\n carriers: Array;\n defaultAnswer?: string | null | undefined;\n hasParentQuestion: boolean;\n locationId?: string | null | undefined;\n question: string;\n tooltip: string;\n type: UnderwritingQuestionType;\n answerOptions?:\n | Array<{ __typename?: 'UnderwritingAnswerOption'; displayText: string; value: string }>\n | null\n | undefined;\n dependentQuestions: Array<{\n __typename?: 'UnderwritingQuestionDependency';\n condition?: string | null | undefined;\n dependentQuestionIds: Array;\n type: UnderwritingQuestionDependencyType;\n }>;\n }>;\n underwritingStatements: Array<{\n __typename?: 'UnderwritingStatement';\n carrier: BusinessApplicationCarrier;\n markdown: string;\n }>;\n};\n\nexport type BusinessPolicyDetailFieldsFragment = {\n __typename?: 'BusinessPolicy';\n market: InsuranceMarket;\n quoteNumber: string;\n account: {\n __typename?: 'Account';\n contacts: Array<{\n __typename?: 'AccountContact';\n email: string;\n id: string;\n name: string;\n phone: string;\n }>;\n };\n broker?: { __typename?: 'InsuranceCarrier'; id: string; name: string } | null | undefined;\n details?:\n | {\n __typename?: 'BusinessPolicyExtractedDetails';\n deductible?: number | null | undefined;\n policyNumber?: string | null | undefined;\n summary?: string | null | undefined;\n blanketAdditionalInsureds: Array<{\n __typename?: 'BusinessPolicyBlanketAdditionalInsured';\n type: string;\n description: string;\n }>;\n carrier?:\n | {\n __typename?: 'BusinessPolicyEntity';\n name: string;\n address: {\n __typename?: 'Address';\n line1: string;\n line2?: string | null | undefined;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n coverageDescriptions: Array<{\n __typename?: 'BusinessPolicyCoverageOrExclusionDescription';\n description: string;\n policyQuotes: Array;\n title: string;\n }>;\n exclusionDescriptions: Array<{\n __typename?: 'BusinessPolicyCoverageOrExclusionDescription';\n description: string;\n policyQuotes: Array;\n title: string;\n }>;\n extraLimits: Array<{\n __typename?: 'BusinessPolicyExtraInsuranceLimit';\n limit: number;\n name: string;\n }>;\n insured?:\n | {\n __typename?: 'BusinessPolicyEntity';\n name: string;\n address: {\n __typename?: 'Address';\n line1: string;\n line2?: string | null | undefined;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n limits: {\n __typename?: 'BusinessPolicyInsuranceLimits';\n cyberAggregateLimit?: number | null | undefined;\n cyberRetentionLimit?: number | null | undefined;\n glAggregateLimit?: number | null | undefined;\n glMedicalPerOccurrenceLimit?: number | null | undefined;\n glMedicalPerPersonLimit?: number | null | undefined;\n glPerOccurrenceLimit?: number | null | undefined;\n glPersonalAndAdvertisingInjuryLimit?: number | null | undefined;\n glProductsAndCompletedOperationsLimit?: number | null | undefined;\n glRentedPremisesDamageLimit?: number | null | undefined;\n propertyBuildingLimit?: number | null | undefined;\n propertyContentsLimit?: number | null | undefined;\n umbrellaOrExcessAggregateLimit?: number | null | undefined;\n umbrellaOrExcessPerOccurrenceLimit?: number | null | undefined;\n wcPerAccidentLimit?: number | null | undefined;\n wcPerDiseaseEmployeeLimit?: number | null | undefined;\n wcPerDiseasePolicyLimit?: number | null | undefined;\n };\n locations: Array<{\n __typename?: 'BusinessPolicyLocation';\n address: {\n __typename?: 'Address';\n line1: string;\n line2?: string | null | undefined;\n city: string;\n zone: string;\n postalCode: string;\n };\n limits: {\n __typename?: 'BusinessPolicyInsuranceLimits';\n cyberAggregateLimit?: number | null | undefined;\n cyberRetentionLimit?: number | null | undefined;\n glAggregateLimit?: number | null | undefined;\n glMedicalPerOccurrenceLimit?: number | null | undefined;\n glMedicalPerPersonLimit?: number | null | undefined;\n glPerOccurrenceLimit?: number | null | undefined;\n glPersonalAndAdvertisingInjuryLimit?: number | null | undefined;\n glProductsAndCompletedOperationsLimit?: number | null | undefined;\n glRentedPremisesDamageLimit?: number | null | undefined;\n propertyBuildingLimit?: number | null | undefined;\n propertyContentsLimit?: number | null | undefined;\n umbrellaOrExcessAggregateLimit?: number | null | undefined;\n umbrellaOrExcessPerOccurrenceLimit?: number | null | undefined;\n wcPerAccidentLimit?: number | null | undefined;\n wcPerDiseaseEmployeeLimit?: number | null | undefined;\n wcPerDiseasePolicyLimit?: number | null | undefined;\n };\n }>;\n namedAdditionalInsureds: Array<{\n __typename?: 'BusinessPolicyNamedAdditionalInsured';\n name: string;\n address: {\n __typename?: 'Address';\n line1: string;\n line2?: string | null | undefined;\n city: string;\n zone: string;\n postalCode: string;\n };\n }>;\n }\n | null\n | undefined;\n pricing: {\n __typename?: 'BusinessPolicyPricing';\n billingType: BusinessPolicyBillingType;\n premium: number;\n agencyFees: number;\n brokerFees: number;\n policyFees: number;\n otherFees: number;\n taxes: number;\n total: number;\n intervalType?: PaymentIntervalType | null | undefined;\n estimatedCommission: number;\n };\n source: {\n __typename?: 'BusinessPolicySource';\n type: BusinessPolicySourceType;\n subType?: BusinessPolicySourceSubType | null | undefined;\n processType: BusinessPolicySourceProcessType;\n notes: string;\n leadId?: string | null | undefined;\n campaignId?: string | null | undefined;\n referralSourceId?: string | null | undefined;\n agencyUser?: { __typename?: 'AgencyUser'; id: string } | null | undefined;\n };\n};\n\nexport type BusinessPolicyFileFieldsFragment = {\n __typename?: 'BusinessPolicy';\n files: Array<{\n __typename?: 'File';\n createdAt: Date;\n id: string;\n mimeType: string;\n name: string;\n notes: string;\n type: FileType;\n url?: string | null | undefined;\n }>;\n};\n\nexport type BusinessPolicyFieldsFragment = {\n __typename?: 'BusinessPolicy';\n expiresAt?: Date | null | undefined;\n id: string;\n inforceAt?: Date | null | undefined;\n issuedAt?: Date | null | undefined;\n policyNumber: string;\n state: PolicyState;\n type: InsuranceType;\n account: {\n __typename?: 'Account';\n id: string;\n account:\n | { __typename?: 'BusinessAccount'; email: string; name: string }\n | { __typename?: 'IndividualAccount'; email: string; name: string };\n };\n carrier: { __typename?: 'InsuranceCarrier'; id: string; name: string };\n};\n\nexport type InsuranceCarrierFieldsFragment = {\n __typename?: 'InsuranceCarrier';\n id: string;\n name: string;\n isCarrier: boolean;\n isBroker: boolean;\n};\n\nexport type GetInsuranceCarriersQueryVariables = Exact<{ [key: string]: never }>;\n\nexport type GetInsuranceCarriersQuery = {\n __typename?: 'Query';\n carriers: Array<{\n __typename?: 'InsuranceCarrier';\n id: string;\n name: string;\n isCarrier: boolean;\n isBroker: boolean;\n }>;\n};\n\nexport type GetBusinessPoliciesQueryVariables = Exact<{ [key: string]: never }>;\n\nexport type GetBusinessPoliciesQuery = {\n __typename?: 'Query';\n businessPolicies: Array<{\n __typename?: 'BusinessPolicy';\n expiresAt?: Date | null | undefined;\n id: string;\n inforceAt?: Date | null | undefined;\n issuedAt?: Date | null | undefined;\n policyNumber: string;\n state: PolicyState;\n type: InsuranceType;\n account: {\n __typename?: 'Account';\n id: string;\n account:\n | { __typename?: 'BusinessAccount'; email: string; name: string }\n | { __typename?: 'IndividualAccount'; email: string; name: string };\n };\n carrier: { __typename?: 'InsuranceCarrier'; id: string; name: string };\n }>;\n};\n\nexport type GetBusinessPolicyQueryVariables = Exact<{\n id: Scalars['ID']['input'];\n}>;\n\nexport type GetBusinessPolicyQuery = {\n __typename?: 'Query';\n businessPolicy?:\n | {\n __typename?: 'BusinessPolicy';\n expiresAt?: Date | null | undefined;\n id: string;\n inforceAt?: Date | null | undefined;\n issuedAt?: Date | null | undefined;\n policyNumber: string;\n state: PolicyState;\n type: InsuranceType;\n market: InsuranceMarket;\n quoteNumber: string;\n account: {\n __typename?: 'Account';\n id: string;\n account:\n | { __typename?: 'BusinessAccount'; email: string; name: string }\n | { __typename?: 'IndividualAccount'; email: string; name: string };\n contacts: Array<{\n __typename?: 'AccountContact';\n email: string;\n id: string;\n name: string;\n phone: string;\n }>;\n };\n carrier: { __typename?: 'InsuranceCarrier'; id: string; name: string };\n broker?: { __typename?: 'InsuranceCarrier'; id: string; name: string } | null | undefined;\n details?:\n | {\n __typename?: 'BusinessPolicyExtractedDetails';\n deductible?: number | null | undefined;\n policyNumber?: string | null | undefined;\n summary?: string | null | undefined;\n blanketAdditionalInsureds: Array<{\n __typename?: 'BusinessPolicyBlanketAdditionalInsured';\n type: string;\n description: string;\n }>;\n carrier?:\n | {\n __typename?: 'BusinessPolicyEntity';\n name: string;\n address: {\n __typename?: 'Address';\n line1: string;\n line2?: string | null | undefined;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n coverageDescriptions: Array<{\n __typename?: 'BusinessPolicyCoverageOrExclusionDescription';\n description: string;\n policyQuotes: Array;\n title: string;\n }>;\n exclusionDescriptions: Array<{\n __typename?: 'BusinessPolicyCoverageOrExclusionDescription';\n description: string;\n policyQuotes: Array;\n title: string;\n }>;\n extraLimits: Array<{\n __typename?: 'BusinessPolicyExtraInsuranceLimit';\n limit: number;\n name: string;\n }>;\n insured?:\n | {\n __typename?: 'BusinessPolicyEntity';\n name: string;\n address: {\n __typename?: 'Address';\n line1: string;\n line2?: string | null | undefined;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n limits: {\n __typename?: 'BusinessPolicyInsuranceLimits';\n cyberAggregateLimit?: number | null | undefined;\n cyberRetentionLimit?: number | null | undefined;\n glAggregateLimit?: number | null | undefined;\n glMedicalPerOccurrenceLimit?: number | null | undefined;\n glMedicalPerPersonLimit?: number | null | undefined;\n glPerOccurrenceLimit?: number | null | undefined;\n glPersonalAndAdvertisingInjuryLimit?: number | null | undefined;\n glProductsAndCompletedOperationsLimit?: number | null | undefined;\n glRentedPremisesDamageLimit?: number | null | undefined;\n propertyBuildingLimit?: number | null | undefined;\n propertyContentsLimit?: number | null | undefined;\n umbrellaOrExcessAggregateLimit?: number | null | undefined;\n umbrellaOrExcessPerOccurrenceLimit?: number | null | undefined;\n wcPerAccidentLimit?: number | null | undefined;\n wcPerDiseaseEmployeeLimit?: number | null | undefined;\n wcPerDiseasePolicyLimit?: number | null | undefined;\n };\n locations: Array<{\n __typename?: 'BusinessPolicyLocation';\n address: {\n __typename?: 'Address';\n line1: string;\n line2?: string | null | undefined;\n city: string;\n zone: string;\n postalCode: string;\n };\n limits: {\n __typename?: 'BusinessPolicyInsuranceLimits';\n cyberAggregateLimit?: number | null | undefined;\n cyberRetentionLimit?: number | null | undefined;\n glAggregateLimit?: number | null | undefined;\n glMedicalPerOccurrenceLimit?: number | null | undefined;\n glMedicalPerPersonLimit?: number | null | undefined;\n glPerOccurrenceLimit?: number | null | undefined;\n glPersonalAndAdvertisingInjuryLimit?: number | null | undefined;\n glProductsAndCompletedOperationsLimit?: number | null | undefined;\n glRentedPremisesDamageLimit?: number | null | undefined;\n propertyBuildingLimit?: number | null | undefined;\n propertyContentsLimit?: number | null | undefined;\n umbrellaOrExcessAggregateLimit?: number | null | undefined;\n umbrellaOrExcessPerOccurrenceLimit?: number | null | undefined;\n wcPerAccidentLimit?: number | null | undefined;\n wcPerDiseaseEmployeeLimit?: number | null | undefined;\n wcPerDiseasePolicyLimit?: number | null | undefined;\n };\n }>;\n namedAdditionalInsureds: Array<{\n __typename?: 'BusinessPolicyNamedAdditionalInsured';\n name: string;\n address: {\n __typename?: 'Address';\n line1: string;\n line2?: string | null | undefined;\n city: string;\n zone: string;\n postalCode: string;\n };\n }>;\n }\n | null\n | undefined;\n pricing: {\n __typename?: 'BusinessPolicyPricing';\n billingType: BusinessPolicyBillingType;\n premium: number;\n agencyFees: number;\n brokerFees: number;\n policyFees: number;\n otherFees: number;\n taxes: number;\n total: number;\n intervalType?: PaymentIntervalType | null | undefined;\n estimatedCommission: number;\n };\n source: {\n __typename?: 'BusinessPolicySource';\n type: BusinessPolicySourceType;\n subType?: BusinessPolicySourceSubType | null | undefined;\n processType: BusinessPolicySourceProcessType;\n notes: string;\n leadId?: string | null | undefined;\n campaignId?: string | null | undefined;\n referralSourceId?: string | null | undefined;\n agencyUser?: { __typename?: 'AgencyUser'; id: string } | null | undefined;\n };\n files: Array<{\n __typename?: 'File';\n createdAt: Date;\n id: string;\n mimeType: string;\n name: string;\n notes: string;\n type: FileType;\n url?: string | null | undefined;\n }>;\n }\n | null\n | undefined;\n};\n\nexport type CreateBusinessPoliciesMutationVariables = Exact<{\n input: CreateBusinessPoliciesInput;\n}>;\n\nexport type CreateBusinessPoliciesMutation = {\n __typename?: 'Mutation';\n createBusinessPolicies: Array<{\n __typename?: 'BusinessPolicy';\n expiresAt?: Date | null | undefined;\n id: string;\n inforceAt?: Date | null | undefined;\n issuedAt?: Date | null | undefined;\n policyNumber: string;\n state: PolicyState;\n type: InsuranceType;\n account: {\n __typename?: 'Account';\n id: string;\n account:\n | { __typename?: 'BusinessAccount'; email: string; name: string }\n | { __typename?: 'IndividualAccount'; email: string; name: string };\n };\n carrier: { __typename?: 'InsuranceCarrier'; id: string; name: string };\n }>;\n};\n\nexport type UpdateBusinessPolicyMutationVariables = Exact<{\n id: Scalars['ID']['input'];\n input: UpdateBusinessPolicyInput;\n}>;\n\nexport type UpdateBusinessPolicyMutation = {\n __typename?: 'Mutation';\n updateBusinessPolicy: {\n __typename?: 'BusinessPolicy';\n expiresAt?: Date | null | undefined;\n id: string;\n inforceAt?: Date | null | undefined;\n issuedAt?: Date | null | undefined;\n policyNumber: string;\n state: PolicyState;\n type: InsuranceType;\n account: {\n __typename?: 'Account';\n id: string;\n account:\n | { __typename?: 'BusinessAccount'; email: string; name: string }\n | { __typename?: 'IndividualAccount'; email: string; name: string };\n };\n carrier: { __typename?: 'InsuranceCarrier'; id: string; name: string };\n };\n};\n\nexport type UploadPolicyFileMutationVariables = Exact<{\n policyId: Scalars['ID']['input'];\n file: UploadFileInput;\n}>;\n\nexport type UploadPolicyFileMutation = {\n __typename?: 'Mutation';\n uploadPolicyFile: {\n __typename?: 'File';\n createdAt: Date;\n id: string;\n mimeType: string;\n name: string;\n notes: string;\n type: FileType;\n url?: string | null | undefined;\n };\n};\n\nexport type CallFieldsFragment = {\n __typename?: 'Call';\n id: string;\n disconnectionReason?: CallDisconnectionReason | null | undefined;\n endedAt?: Date | null | undefined;\n fromName?: string | null | undefined;\n fromNumber: string;\n startedAt: Date;\n status: CallStatus;\n account?:\n | {\n __typename?: 'Account';\n id: string;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n};\n\nexport type CallTranscriptFieldsFragment = {\n __typename?: 'Call';\n recordingUrl?: string | null | undefined;\n sentiment?: CallSentiment | null | undefined;\n successful?: boolean | null | undefined;\n summary?: string | null | undefined;\n serviceRequests: Array<{\n __typename?: 'ServiceRequest';\n id: string;\n type: ServiceRequestType;\n state: ServiceRequestState;\n clientEmail?: string | null | undefined;\n clientName?: string | null | undefined;\n clientPhone?: string | null | undefined;\n details: string;\n dueAt?: Date | null | undefined;\n createdAt: Date;\n updatedAt: Date;\n account?:\n | {\n __typename?: 'Account';\n type: AccountType;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n assignee?: { __typename?: 'AgencyUser'; id: string; name: string } | null | undefined;\n addAdditionalInsured?:\n | {\n __typename?: 'AddAdditionalInsuredRequest';\n name: string;\n relationship: string;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n businessPolicy?:\n | {\n __typename?: 'BusinessPolicy';\n id: string;\n type: InsuranceType;\n carrier: { __typename?: 'InsuranceCarrier'; name: string };\n }\n | null\n | undefined;\n cancelPolicy?:\n | { __typename?: 'CancelPolicyRequest'; policyId: string; reason: string }\n | null\n | undefined;\n createCertificate?:\n | {\n __typename?: 'CreateCertificateRequest';\n name: string;\n additionalInsured: boolean;\n additionalInsuredRelationship?: string | null | undefined;\n additionalInsuredRelationshipDescription?: string | null | undefined;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n documentRequest?:\n | { __typename?: 'DocumentRequest'; type: DocumentRequestType }\n | null\n | undefined;\n endorsePolicy?: { __typename?: 'EndorsePolicyRequest'; policyId: string } | null | undefined;\n question?:\n | {\n __typename?: 'QuestionRequest';\n policyId?: string | null | undefined;\n question: string;\n type: QuestionRequestType;\n }\n | null\n | undefined;\n resolution?: { __typename?: 'ServiceRequestResolution'; notes: string } | null | undefined;\n }>;\n transcript: Array<{\n __typename?: 'CallTranscriptObject';\n role: CallTranscriptRole;\n content: string;\n toolCallId?: string | null | undefined;\n toolName?: string | null | undefined;\n toolArgumentsJson?: string | null | undefined;\n }>;\n};\n\nexport type GetCallsQueryVariables = Exact<{ [key: string]: never }>;\n\nexport type GetCallsQuery = {\n __typename?: 'Query';\n calls: Array<{\n __typename?: 'Call';\n id: string;\n disconnectionReason?: CallDisconnectionReason | null | undefined;\n endedAt?: Date | null | undefined;\n fromName?: string | null | undefined;\n fromNumber: string;\n startedAt: Date;\n status: CallStatus;\n account?:\n | {\n __typename?: 'Account';\n id: string;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n }>;\n};\n\nexport type GetCallQueryVariables = Exact<{\n id: Scalars['ID']['input'];\n}>;\n\nexport type GetCallQuery = {\n __typename?: 'Query';\n call: {\n __typename?: 'Call';\n id: string;\n disconnectionReason?: CallDisconnectionReason | null | undefined;\n endedAt?: Date | null | undefined;\n fromName?: string | null | undefined;\n fromNumber: string;\n startedAt: Date;\n status: CallStatus;\n recordingUrl?: string | null | undefined;\n sentiment?: CallSentiment | null | undefined;\n successful?: boolean | null | undefined;\n summary?: string | null | undefined;\n account?:\n | {\n __typename?: 'Account';\n id: string;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n serviceRequests: Array<{\n __typename?: 'ServiceRequest';\n id: string;\n type: ServiceRequestType;\n state: ServiceRequestState;\n clientEmail?: string | null | undefined;\n clientName?: string | null | undefined;\n clientPhone?: string | null | undefined;\n details: string;\n dueAt?: Date | null | undefined;\n createdAt: Date;\n updatedAt: Date;\n account?:\n | {\n __typename?: 'Account';\n type: AccountType;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n assignee?: { __typename?: 'AgencyUser'; id: string; name: string } | null | undefined;\n addAdditionalInsured?:\n | {\n __typename?: 'AddAdditionalInsuredRequest';\n name: string;\n relationship: string;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n businessPolicy?:\n | {\n __typename?: 'BusinessPolicy';\n id: string;\n type: InsuranceType;\n carrier: { __typename?: 'InsuranceCarrier'; name: string };\n }\n | null\n | undefined;\n cancelPolicy?:\n | { __typename?: 'CancelPolicyRequest'; policyId: string; reason: string }\n | null\n | undefined;\n createCertificate?:\n | {\n __typename?: 'CreateCertificateRequest';\n name: string;\n additionalInsured: boolean;\n additionalInsuredRelationship?: string | null | undefined;\n additionalInsuredRelationshipDescription?: string | null | undefined;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n documentRequest?:\n | { __typename?: 'DocumentRequest'; type: DocumentRequestType }\n | null\n | undefined;\n endorsePolicy?: { __typename?: 'EndorsePolicyRequest'; policyId: string } | null | undefined;\n question?:\n | {\n __typename?: 'QuestionRequest';\n policyId?: string | null | undefined;\n question: string;\n type: QuestionRequestType;\n }\n | null\n | undefined;\n resolution?: { __typename?: 'ServiceRequestResolution'; notes: string } | null | undefined;\n }>;\n transcript: Array<{\n __typename?: 'CallTranscriptObject';\n role: CallTranscriptRole;\n content: string;\n toolCallId?: string | null | undefined;\n toolName?: string | null | undefined;\n toolArgumentsJson?: string | null | undefined;\n }>;\n };\n};\n\nexport type DocumentDataFieldsFragment = {\n __typename?: 'DocumentData';\n acord25?:\n | { __typename?: 'Acord25Data'; holder: { __typename?: 'CertificateEntity'; name: string } }\n | null\n | undefined;\n acord125?:\n | {\n __typename?: 'Acord125Data';\n applicant1: { __typename?: 'Acord125Applicant'; name: string };\n }\n | null\n | undefined;\n acord126?: { __typename?: 'Acord126Data'; namedInsured: string } | null | undefined;\n acord140?: { __typename?: 'Acord140Data'; namedInsured: string } | null | undefined;\n};\n\nexport type CaraWorkspaceOverviewFieldsFragment = {\n __typename?: 'CaraWorkspace';\n createdAt: Date;\n id: string;\n preset?: CaraWorkspacePreset | null | undefined;\n state: CaraWorkspaceState;\n title: string;\n updatedAt: Date;\n agencyUser: { __typename?: 'AgencyUser'; email: string; id: string; name: string };\n};\n\nexport type CaraWorkspaceFieldsFragment = {\n __typename?: 'CaraWorkspace';\n createdAt: Date;\n id: string;\n preset?: CaraWorkspacePreset | null | undefined;\n state: CaraWorkspaceState;\n title: string;\n updatedAt: Date;\n artifacts: Array<{\n __typename?: 'CaraWorkspaceArtifact';\n createdAt: Date;\n id: string;\n type: CaraWorkspaceArtifactType;\n certificateOfLiabilityInsurance?:\n | {\n __typename?: 'CertificateOfLiabilityInsurance';\n downloadUrl: string;\n id: string;\n holder: { __typename?: 'CertificateEntity'; name: string };\n }\n | null\n | undefined;\n document?:\n | {\n __typename?: 'Document';\n id: string;\n type: DocumentType;\n downloadUrl: string;\n data: {\n __typename?: 'DocumentData';\n acord25?:\n | {\n __typename?: 'Acord25Data';\n holder: { __typename?: 'CertificateEntity'; name: string };\n }\n | null\n | undefined;\n acord125?:\n | {\n __typename?: 'Acord125Data';\n applicant1: { __typename?: 'Acord125Applicant'; name: string };\n }\n | null\n | undefined;\n acord126?: { __typename?: 'Acord126Data'; namedInsured: string } | null | undefined;\n acord140?: { __typename?: 'Acord140Data'; namedInsured: string } | null | undefined;\n };\n }\n | null\n | undefined;\n email?:\n | {\n __typename?: 'Email';\n body: string;\n subject: string;\n from: { __typename?: 'EmailParticipant'; name: string; email: string };\n to: Array<{ __typename?: 'EmailParticipant'; name: string; email: string }>;\n }\n | null\n | undefined;\n }>;\n files: Array<{ __typename?: 'File'; id: string; name: string; url?: string | null | undefined }>;\n planStages: Array<{\n __typename?: 'CaraWorkspacePlanStage';\n createdAt: Date;\n endedAt?: Date | null | undefined;\n id: string;\n initiatedByMessageId: string;\n result: string;\n startedAt?: Date | null | undefined;\n state: CaraWorkspacePlanStageState;\n type: CaraWorkspacePlanStageType;\n events: Array<{\n __typename?: 'CaraWorkspacePlanStageEvent';\n content?: string | null | undefined;\n endedAt?: Date | null | undefined;\n id: string;\n startedAt: Date;\n title?: string | null | undefined;\n type: CaraWorkspacePlanStageEventType;\n }>;\n processAttachmentsDetails?:\n | {\n __typename?: 'CaraWorkspacePlanStageProcessAttachmentDetails';\n currentFileProgress: number;\n }\n | null\n | undefined;\n }>;\n messages: Array<{\n __typename?: 'CaraWorkspaceMessage';\n content: string;\n id: string;\n role: CaraWorkspaceMessageRole;\n timestamp: Date;\n files: Array<{\n __typename?: 'File';\n id: string;\n name: string;\n url?: string | null | undefined;\n }>;\n }>;\n serviceRequest?:\n | {\n __typename?: 'ServiceRequest';\n id: string;\n type: ServiceRequestType;\n state: ServiceRequestState;\n clientEmail?: string | null | undefined;\n clientName?: string | null | undefined;\n clientPhone?: string | null | undefined;\n details: string;\n dueAt?: Date | null | undefined;\n createdAt: Date;\n updatedAt: Date;\n account?:\n | {\n __typename?: 'Account';\n type: AccountType;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n assignee?: { __typename?: 'AgencyUser'; id: string; name: string } | null | undefined;\n addAdditionalInsured?:\n | {\n __typename?: 'AddAdditionalInsuredRequest';\n name: string;\n relationship: string;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n businessPolicy?:\n | {\n __typename?: 'BusinessPolicy';\n id: string;\n type: InsuranceType;\n carrier: { __typename?: 'InsuranceCarrier'; name: string };\n }\n | null\n | undefined;\n cancelPolicy?:\n | { __typename?: 'CancelPolicyRequest'; policyId: string; reason: string }\n | null\n | undefined;\n createCertificate?:\n | {\n __typename?: 'CreateCertificateRequest';\n name: string;\n additionalInsured: boolean;\n additionalInsuredRelationship?: string | null | undefined;\n additionalInsuredRelationshipDescription?: string | null | undefined;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n documentRequest?:\n | { __typename?: 'DocumentRequest'; type: DocumentRequestType }\n | null\n | undefined;\n endorsePolicy?:\n | { __typename?: 'EndorsePolicyRequest'; policyId: string }\n | null\n | undefined;\n question?:\n | {\n __typename?: 'QuestionRequest';\n policyId?: string | null | undefined;\n question: string;\n type: QuestionRequestType;\n }\n | null\n | undefined;\n resolution?: { __typename?: 'ServiceRequestResolution'; notes: string } | null | undefined;\n }\n | null\n | undefined;\n agencyUser: { __typename?: 'AgencyUser'; email: string; id: string; name: string };\n};\n\nexport type GetCaraWorkspaceQueryVariables = Exact<{\n id: Scalars['ID']['input'];\n}>;\n\nexport type GetCaraWorkspaceQuery = {\n __typename?: 'Query';\n caraWorkspace: {\n __typename?: 'CaraWorkspace';\n createdAt: Date;\n id: string;\n preset?: CaraWorkspacePreset | null | undefined;\n state: CaraWorkspaceState;\n title: string;\n updatedAt: Date;\n artifacts: Array<{\n __typename?: 'CaraWorkspaceArtifact';\n createdAt: Date;\n id: string;\n type: CaraWorkspaceArtifactType;\n certificateOfLiabilityInsurance?:\n | {\n __typename?: 'CertificateOfLiabilityInsurance';\n downloadUrl: string;\n id: string;\n holder: { __typename?: 'CertificateEntity'; name: string };\n }\n | null\n | undefined;\n document?:\n | {\n __typename?: 'Document';\n id: string;\n type: DocumentType;\n downloadUrl: string;\n data: {\n __typename?: 'DocumentData';\n acord25?:\n | {\n __typename?: 'Acord25Data';\n holder: { __typename?: 'CertificateEntity'; name: string };\n }\n | null\n | undefined;\n acord125?:\n | {\n __typename?: 'Acord125Data';\n applicant1: { __typename?: 'Acord125Applicant'; name: string };\n }\n | null\n | undefined;\n acord126?: { __typename?: 'Acord126Data'; namedInsured: string } | null | undefined;\n acord140?: { __typename?: 'Acord140Data'; namedInsured: string } | null | undefined;\n };\n }\n | null\n | undefined;\n email?:\n | {\n __typename?: 'Email';\n body: string;\n subject: string;\n from: { __typename?: 'EmailParticipant'; name: string; email: string };\n to: Array<{ __typename?: 'EmailParticipant'; name: string; email: string }>;\n }\n | null\n | undefined;\n }>;\n files: Array<{\n __typename?: 'File';\n id: string;\n name: string;\n url?: string | null | undefined;\n }>;\n planStages: Array<{\n __typename?: 'CaraWorkspacePlanStage';\n createdAt: Date;\n endedAt?: Date | null | undefined;\n id: string;\n initiatedByMessageId: string;\n result: string;\n startedAt?: Date | null | undefined;\n state: CaraWorkspacePlanStageState;\n type: CaraWorkspacePlanStageType;\n events: Array<{\n __typename?: 'CaraWorkspacePlanStageEvent';\n content?: string | null | undefined;\n endedAt?: Date | null | undefined;\n id: string;\n startedAt: Date;\n title?: string | null | undefined;\n type: CaraWorkspacePlanStageEventType;\n }>;\n processAttachmentsDetails?:\n | {\n __typename?: 'CaraWorkspacePlanStageProcessAttachmentDetails';\n currentFileProgress: number;\n }\n | null\n | undefined;\n }>;\n messages: Array<{\n __typename?: 'CaraWorkspaceMessage';\n content: string;\n id: string;\n role: CaraWorkspaceMessageRole;\n timestamp: Date;\n files: Array<{\n __typename?: 'File';\n id: string;\n name: string;\n url?: string | null | undefined;\n }>;\n }>;\n serviceRequest?:\n | {\n __typename?: 'ServiceRequest';\n id: string;\n type: ServiceRequestType;\n state: ServiceRequestState;\n clientEmail?: string | null | undefined;\n clientName?: string | null | undefined;\n clientPhone?: string | null | undefined;\n details: string;\n dueAt?: Date | null | undefined;\n createdAt: Date;\n updatedAt: Date;\n account?:\n | {\n __typename?: 'Account';\n type: AccountType;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n assignee?: { __typename?: 'AgencyUser'; id: string; name: string } | null | undefined;\n addAdditionalInsured?:\n | {\n __typename?: 'AddAdditionalInsuredRequest';\n name: string;\n relationship: string;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n businessPolicy?:\n | {\n __typename?: 'BusinessPolicy';\n id: string;\n type: InsuranceType;\n carrier: { __typename?: 'InsuranceCarrier'; name: string };\n }\n | null\n | undefined;\n cancelPolicy?:\n | { __typename?: 'CancelPolicyRequest'; policyId: string; reason: string }\n | null\n | undefined;\n createCertificate?:\n | {\n __typename?: 'CreateCertificateRequest';\n name: string;\n additionalInsured: boolean;\n additionalInsuredRelationship?: string | null | undefined;\n additionalInsuredRelationshipDescription?: string | null | undefined;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n documentRequest?:\n | { __typename?: 'DocumentRequest'; type: DocumentRequestType }\n | null\n | undefined;\n endorsePolicy?:\n | { __typename?: 'EndorsePolicyRequest'; policyId: string }\n | null\n | undefined;\n question?:\n | {\n __typename?: 'QuestionRequest';\n policyId?: string | null | undefined;\n question: string;\n type: QuestionRequestType;\n }\n | null\n | undefined;\n resolution?:\n | { __typename?: 'ServiceRequestResolution'; notes: string }\n | null\n | undefined;\n }\n | null\n | undefined;\n agencyUser: { __typename?: 'AgencyUser'; email: string; id: string; name: string };\n };\n};\n\nexport type GetCaraWorkspacesQueryVariables = Exact<{ [key: string]: never }>;\n\nexport type GetCaraWorkspacesQuery = {\n __typename?: 'Query';\n caraWorkspaces: Array<{\n __typename?: 'CaraWorkspace';\n createdAt: Date;\n id: string;\n preset?: CaraWorkspacePreset | null | undefined;\n state: CaraWorkspaceState;\n title: string;\n updatedAt: Date;\n agencyUser: { __typename?: 'AgencyUser'; email: string; id: string; name: string };\n }>;\n};\n\nexport type CreateCaraWorkspaceMutationVariables = Exact<{\n input: CaraWorkspaceMessageInput;\n}>;\n\nexport type CreateCaraWorkspaceMutation = {\n __typename?: 'Mutation';\n createCaraWorkspace: { __typename?: 'CaraWorkspace'; id: string };\n};\n\nexport type AddCaraWorkspaceMessageMutationVariables = Exact<{\n id: Scalars['ID']['input'];\n input: CaraWorkspaceMessageInput;\n}>;\n\nexport type AddCaraWorkspaceMessageMutation = {\n __typename?: 'Mutation';\n addCaraWorkspaceMessage: {\n __typename?: 'CaraWorkspace';\n createdAt: Date;\n id: string;\n preset?: CaraWorkspacePreset | null | undefined;\n state: CaraWorkspaceState;\n title: string;\n updatedAt: Date;\n artifacts: Array<{\n __typename?: 'CaraWorkspaceArtifact';\n createdAt: Date;\n id: string;\n type: CaraWorkspaceArtifactType;\n certificateOfLiabilityInsurance?:\n | {\n __typename?: 'CertificateOfLiabilityInsurance';\n downloadUrl: string;\n id: string;\n holder: { __typename?: 'CertificateEntity'; name: string };\n }\n | null\n | undefined;\n document?:\n | {\n __typename?: 'Document';\n id: string;\n type: DocumentType;\n downloadUrl: string;\n data: {\n __typename?: 'DocumentData';\n acord25?:\n | {\n __typename?: 'Acord25Data';\n holder: { __typename?: 'CertificateEntity'; name: string };\n }\n | null\n | undefined;\n acord125?:\n | {\n __typename?: 'Acord125Data';\n applicant1: { __typename?: 'Acord125Applicant'; name: string };\n }\n | null\n | undefined;\n acord126?: { __typename?: 'Acord126Data'; namedInsured: string } | null | undefined;\n acord140?: { __typename?: 'Acord140Data'; namedInsured: string } | null | undefined;\n };\n }\n | null\n | undefined;\n email?:\n | {\n __typename?: 'Email';\n body: string;\n subject: string;\n from: { __typename?: 'EmailParticipant'; name: string; email: string };\n to: Array<{ __typename?: 'EmailParticipant'; name: string; email: string }>;\n }\n | null\n | undefined;\n }>;\n files: Array<{\n __typename?: 'File';\n id: string;\n name: string;\n url?: string | null | undefined;\n }>;\n planStages: Array<{\n __typename?: 'CaraWorkspacePlanStage';\n createdAt: Date;\n endedAt?: Date | null | undefined;\n id: string;\n initiatedByMessageId: string;\n result: string;\n startedAt?: Date | null | undefined;\n state: CaraWorkspacePlanStageState;\n type: CaraWorkspacePlanStageType;\n events: Array<{\n __typename?: 'CaraWorkspacePlanStageEvent';\n content?: string | null | undefined;\n endedAt?: Date | null | undefined;\n id: string;\n startedAt: Date;\n title?: string | null | undefined;\n type: CaraWorkspacePlanStageEventType;\n }>;\n processAttachmentsDetails?:\n | {\n __typename?: 'CaraWorkspacePlanStageProcessAttachmentDetails';\n currentFileProgress: number;\n }\n | null\n | undefined;\n }>;\n messages: Array<{\n __typename?: 'CaraWorkspaceMessage';\n content: string;\n id: string;\n role: CaraWorkspaceMessageRole;\n timestamp: Date;\n files: Array<{\n __typename?: 'File';\n id: string;\n name: string;\n url?: string | null | undefined;\n }>;\n }>;\n serviceRequest?:\n | {\n __typename?: 'ServiceRequest';\n id: string;\n type: ServiceRequestType;\n state: ServiceRequestState;\n clientEmail?: string | null | undefined;\n clientName?: string | null | undefined;\n clientPhone?: string | null | undefined;\n details: string;\n dueAt?: Date | null | undefined;\n createdAt: Date;\n updatedAt: Date;\n account?:\n | {\n __typename?: 'Account';\n type: AccountType;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n assignee?: { __typename?: 'AgencyUser'; id: string; name: string } | null | undefined;\n addAdditionalInsured?:\n | {\n __typename?: 'AddAdditionalInsuredRequest';\n name: string;\n relationship: string;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n businessPolicy?:\n | {\n __typename?: 'BusinessPolicy';\n id: string;\n type: InsuranceType;\n carrier: { __typename?: 'InsuranceCarrier'; name: string };\n }\n | null\n | undefined;\n cancelPolicy?:\n | { __typename?: 'CancelPolicyRequest'; policyId: string; reason: string }\n | null\n | undefined;\n createCertificate?:\n | {\n __typename?: 'CreateCertificateRequest';\n name: string;\n additionalInsured: boolean;\n additionalInsuredRelationship?: string | null | undefined;\n additionalInsuredRelationshipDescription?: string | null | undefined;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n documentRequest?:\n | { __typename?: 'DocumentRequest'; type: DocumentRequestType }\n | null\n | undefined;\n endorsePolicy?:\n | { __typename?: 'EndorsePolicyRequest'; policyId: string }\n | null\n | undefined;\n question?:\n | {\n __typename?: 'QuestionRequest';\n policyId?: string | null | undefined;\n question: string;\n type: QuestionRequestType;\n }\n | null\n | undefined;\n resolution?:\n | { __typename?: 'ServiceRequestResolution'; notes: string }\n | null\n | undefined;\n }\n | null\n | undefined;\n agencyUser: { __typename?: 'AgencyUser'; email: string; id: string; name: string };\n };\n};\n\nexport type WatchCaraWorkspaceSubscriptionVariables = Exact<{\n id: Scalars['ID']['input'];\n}>;\n\nexport type WatchCaraWorkspaceSubscription = {\n __typename?: 'Subscription';\n watchCaraWorkspace: {\n __typename?: 'CaraWorkspace';\n createdAt: Date;\n id: string;\n preset?: CaraWorkspacePreset | null | undefined;\n state: CaraWorkspaceState;\n title: string;\n updatedAt: Date;\n artifacts: Array<{\n __typename?: 'CaraWorkspaceArtifact';\n createdAt: Date;\n id: string;\n type: CaraWorkspaceArtifactType;\n certificateOfLiabilityInsurance?:\n | {\n __typename?: 'CertificateOfLiabilityInsurance';\n downloadUrl: string;\n id: string;\n holder: { __typename?: 'CertificateEntity'; name: string };\n }\n | null\n | undefined;\n document?:\n | {\n __typename?: 'Document';\n id: string;\n type: DocumentType;\n downloadUrl: string;\n data: {\n __typename?: 'DocumentData';\n acord25?:\n | {\n __typename?: 'Acord25Data';\n holder: { __typename?: 'CertificateEntity'; name: string };\n }\n | null\n | undefined;\n acord125?:\n | {\n __typename?: 'Acord125Data';\n applicant1: { __typename?: 'Acord125Applicant'; name: string };\n }\n | null\n | undefined;\n acord126?: { __typename?: 'Acord126Data'; namedInsured: string } | null | undefined;\n acord140?: { __typename?: 'Acord140Data'; namedInsured: string } | null | undefined;\n };\n }\n | null\n | undefined;\n email?:\n | {\n __typename?: 'Email';\n body: string;\n subject: string;\n from: { __typename?: 'EmailParticipant'; name: string; email: string };\n to: Array<{ __typename?: 'EmailParticipant'; name: string; email: string }>;\n }\n | null\n | undefined;\n }>;\n files: Array<{\n __typename?: 'File';\n id: string;\n name: string;\n url?: string | null | undefined;\n }>;\n planStages: Array<{\n __typename?: 'CaraWorkspacePlanStage';\n createdAt: Date;\n endedAt?: Date | null | undefined;\n id: string;\n initiatedByMessageId: string;\n result: string;\n startedAt?: Date | null | undefined;\n state: CaraWorkspacePlanStageState;\n type: CaraWorkspacePlanStageType;\n events: Array<{\n __typename?: 'CaraWorkspacePlanStageEvent';\n content?: string | null | undefined;\n endedAt?: Date | null | undefined;\n id: string;\n startedAt: Date;\n title?: string | null | undefined;\n type: CaraWorkspacePlanStageEventType;\n }>;\n processAttachmentsDetails?:\n | {\n __typename?: 'CaraWorkspacePlanStageProcessAttachmentDetails';\n currentFileProgress: number;\n }\n | null\n | undefined;\n }>;\n messages: Array<{\n __typename?: 'CaraWorkspaceMessage';\n content: string;\n id: string;\n role: CaraWorkspaceMessageRole;\n timestamp: Date;\n files: Array<{\n __typename?: 'File';\n id: string;\n name: string;\n url?: string | null | undefined;\n }>;\n }>;\n serviceRequest?:\n | {\n __typename?: 'ServiceRequest';\n id: string;\n type: ServiceRequestType;\n state: ServiceRequestState;\n clientEmail?: string | null | undefined;\n clientName?: string | null | undefined;\n clientPhone?: string | null | undefined;\n details: string;\n dueAt?: Date | null | undefined;\n createdAt: Date;\n updatedAt: Date;\n account?:\n | {\n __typename?: 'Account';\n type: AccountType;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n assignee?: { __typename?: 'AgencyUser'; id: string; name: string } | null | undefined;\n addAdditionalInsured?:\n | {\n __typename?: 'AddAdditionalInsuredRequest';\n name: string;\n relationship: string;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n businessPolicy?:\n | {\n __typename?: 'BusinessPolicy';\n id: string;\n type: InsuranceType;\n carrier: { __typename?: 'InsuranceCarrier'; name: string };\n }\n | null\n | undefined;\n cancelPolicy?:\n | { __typename?: 'CancelPolicyRequest'; policyId: string; reason: string }\n | null\n | undefined;\n createCertificate?:\n | {\n __typename?: 'CreateCertificateRequest';\n name: string;\n additionalInsured: boolean;\n additionalInsuredRelationship?: string | null | undefined;\n additionalInsuredRelationshipDescription?: string | null | undefined;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n documentRequest?:\n | { __typename?: 'DocumentRequest'; type: DocumentRequestType }\n | null\n | undefined;\n endorsePolicy?:\n | { __typename?: 'EndorsePolicyRequest'; policyId: string }\n | null\n | undefined;\n question?:\n | {\n __typename?: 'QuestionRequest';\n policyId?: string | null | undefined;\n question: string;\n type: QuestionRequestType;\n }\n | null\n | undefined;\n resolution?:\n | { __typename?: 'ServiceRequestResolution'; notes: string }\n | null\n | undefined;\n }\n | null\n | undefined;\n agencyUser: { __typename?: 'AgencyUser'; email: string; id: string; name: string };\n };\n};\n\nexport type CertificateOfLiabilityInsuranceFieldsFragment = {\n __typename?: 'CertificateOfLiabilityInsurance';\n id: string;\n certificateNumber: string;\n viewUrl: string;\n downloadUrl: string;\n createdAt: Date;\n holder: {\n __typename?: 'CertificateEntity';\n name: string;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n };\n};\n\nexport type GetCertificateQueryVariables = Exact<{\n id: Scalars['ID']['input'];\n}>;\n\nexport type GetCertificateQuery = {\n __typename?: 'Query';\n certificate?:\n | {\n __typename?: 'CertificateOfLiabilityInsurance';\n id: string;\n certificateNumber: string;\n viewUrl: string;\n downloadUrl: string;\n createdAt: Date;\n holder: {\n __typename?: 'CertificateEntity';\n name: string;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n };\n }\n | null\n | undefined;\n};\n\nexport type CreateCertificateMutationVariables = Exact<{\n input: CreateCertificateInput;\n}>;\n\nexport type CreateCertificateMutation = {\n __typename?: 'Mutation';\n createCertificate?:\n | {\n __typename?: 'CertificateOfLiabilityInsurance';\n id: string;\n certificateNumber: string;\n viewUrl: string;\n downloadUrl: string;\n createdAt: Date;\n holder: {\n __typename?: 'CertificateEntity';\n name: string;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n };\n }\n | null\n | undefined;\n};\n\nexport type EmailFieldsFragment = {\n __typename?: 'Email';\n body: string;\n id: string;\n senderRole: EmailSenderRole;\n sentAt: Date;\n subject: string;\n from: { __typename?: 'EmailParticipant'; name: string; email: string };\n to: Array<{ __typename?: 'EmailParticipant'; name: string; email: string }>;\n};\n\nexport type EmailThreadFieldsFragment = {\n __typename?: 'EmailThread';\n fromEmail: string;\n fromName: string;\n id: string;\n state: EmailThreadState;\n subject: string;\n waitingFor?: EmailSenderRole | null | undefined;\n createdAt: Date;\n updatedAt: Date;\n account?:\n | {\n __typename?: 'Account';\n id: string;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n};\n\nexport type EmailThreadConversationFieldsFragment = {\n __typename?: 'EmailThread';\n summary: string;\n attachments: Array<{\n __typename?: 'File';\n id: string;\n name: string;\n url?: string | null | undefined;\n }>;\n caraEmails: Array<{\n __typename?: 'Email';\n body: string;\n id: string;\n senderRole: EmailSenderRole;\n sentAt: Date;\n subject: string;\n from: { __typename?: 'EmailParticipant'; name: string; email: string };\n to: Array<{ __typename?: 'EmailParticipant'; name: string; email: string }>;\n }>;\n participantEmails: Array<{\n __typename?: 'Email';\n body: string;\n id: string;\n senderRole: EmailSenderRole;\n sentAt: Date;\n subject: string;\n from: { __typename?: 'EmailParticipant'; name: string; email: string };\n to: Array<{ __typename?: 'EmailParticipant'; name: string; email: string }>;\n }>;\n serviceRequests: Array<{\n __typename?: 'ServiceRequest';\n id: string;\n type: ServiceRequestType;\n state: ServiceRequestState;\n clientEmail?: string | null | undefined;\n clientName?: string | null | undefined;\n clientPhone?: string | null | undefined;\n details: string;\n dueAt?: Date | null | undefined;\n createdAt: Date;\n updatedAt: Date;\n account?:\n | {\n __typename?: 'Account';\n type: AccountType;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n assignee?: { __typename?: 'AgencyUser'; id: string; name: string } | null | undefined;\n addAdditionalInsured?:\n | {\n __typename?: 'AddAdditionalInsuredRequest';\n name: string;\n relationship: string;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n businessPolicy?:\n | {\n __typename?: 'BusinessPolicy';\n id: string;\n type: InsuranceType;\n carrier: { __typename?: 'InsuranceCarrier'; name: string };\n }\n | null\n | undefined;\n cancelPolicy?:\n | { __typename?: 'CancelPolicyRequest'; policyId: string; reason: string }\n | null\n | undefined;\n createCertificate?:\n | {\n __typename?: 'CreateCertificateRequest';\n name: string;\n additionalInsured: boolean;\n additionalInsuredRelationship?: string | null | undefined;\n additionalInsuredRelationshipDescription?: string | null | undefined;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n documentRequest?:\n | { __typename?: 'DocumentRequest'; type: DocumentRequestType }\n | null\n | undefined;\n endorsePolicy?: { __typename?: 'EndorsePolicyRequest'; policyId: string } | null | undefined;\n question?:\n | {\n __typename?: 'QuestionRequest';\n policyId?: string | null | undefined;\n question: string;\n type: QuestionRequestType;\n }\n | null\n | undefined;\n resolution?: { __typename?: 'ServiceRequestResolution'; notes: string } | null | undefined;\n }>;\n toolCalls: Array<{\n __typename?: 'ToolCall';\n argumentsJson: string;\n id: string;\n name: string;\n result: string;\n timestamp: Date;\n }>;\n};\n\nexport type GetEmailThreadsQueryVariables = Exact<{ [key: string]: never }>;\n\nexport type GetEmailThreadsQuery = {\n __typename?: 'Query';\n emailThreads: Array<{\n __typename?: 'EmailThread';\n fromEmail: string;\n fromName: string;\n id: string;\n state: EmailThreadState;\n subject: string;\n waitingFor?: EmailSenderRole | null | undefined;\n createdAt: Date;\n updatedAt: Date;\n account?:\n | {\n __typename?: 'Account';\n id: string;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n }>;\n};\n\nexport type GetEmailThreadQueryVariables = Exact<{\n id: Scalars['ID']['input'];\n}>;\n\nexport type GetEmailThreadQuery = {\n __typename?: 'Query';\n emailThread: {\n __typename?: 'EmailThread';\n fromEmail: string;\n fromName: string;\n id: string;\n state: EmailThreadState;\n subject: string;\n waitingFor?: EmailSenderRole | null | undefined;\n createdAt: Date;\n updatedAt: Date;\n summary: string;\n account?:\n | {\n __typename?: 'Account';\n id: string;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n attachments: Array<{\n __typename?: 'File';\n id: string;\n name: string;\n url?: string | null | undefined;\n }>;\n caraEmails: Array<{\n __typename?: 'Email';\n body: string;\n id: string;\n senderRole: EmailSenderRole;\n sentAt: Date;\n subject: string;\n from: { __typename?: 'EmailParticipant'; name: string; email: string };\n to: Array<{ __typename?: 'EmailParticipant'; name: string; email: string }>;\n }>;\n participantEmails: Array<{\n __typename?: 'Email';\n body: string;\n id: string;\n senderRole: EmailSenderRole;\n sentAt: Date;\n subject: string;\n from: { __typename?: 'EmailParticipant'; name: string; email: string };\n to: Array<{ __typename?: 'EmailParticipant'; name: string; email: string }>;\n }>;\n serviceRequests: Array<{\n __typename?: 'ServiceRequest';\n id: string;\n type: ServiceRequestType;\n state: ServiceRequestState;\n clientEmail?: string | null | undefined;\n clientName?: string | null | undefined;\n clientPhone?: string | null | undefined;\n details: string;\n dueAt?: Date | null | undefined;\n createdAt: Date;\n updatedAt: Date;\n account?:\n | {\n __typename?: 'Account';\n type: AccountType;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n assignee?: { __typename?: 'AgencyUser'; id: string; name: string } | null | undefined;\n addAdditionalInsured?:\n | {\n __typename?: 'AddAdditionalInsuredRequest';\n name: string;\n relationship: string;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n businessPolicy?:\n | {\n __typename?: 'BusinessPolicy';\n id: string;\n type: InsuranceType;\n carrier: { __typename?: 'InsuranceCarrier'; name: string };\n }\n | null\n | undefined;\n cancelPolicy?:\n | { __typename?: 'CancelPolicyRequest'; policyId: string; reason: string }\n | null\n | undefined;\n createCertificate?:\n | {\n __typename?: 'CreateCertificateRequest';\n name: string;\n additionalInsured: boolean;\n additionalInsuredRelationship?: string | null | undefined;\n additionalInsuredRelationshipDescription?: string | null | undefined;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n documentRequest?:\n | { __typename?: 'DocumentRequest'; type: DocumentRequestType }\n | null\n | undefined;\n endorsePolicy?: { __typename?: 'EndorsePolicyRequest'; policyId: string } | null | undefined;\n question?:\n | {\n __typename?: 'QuestionRequest';\n policyId?: string | null | undefined;\n question: string;\n type: QuestionRequestType;\n }\n | null\n | undefined;\n resolution?: { __typename?: 'ServiceRequestResolution'; notes: string } | null | undefined;\n }>;\n toolCalls: Array<{\n __typename?: 'ToolCall';\n argumentsJson: string;\n id: string;\n name: string;\n result: string;\n timestamp: Date;\n }>;\n };\n};\n\nexport type FileFieldsFragment = {\n __typename?: 'File';\n createdAt: Date;\n id: string;\n mimeType: string;\n name: string;\n notes: string;\n type: FileType;\n url?: string | null | undefined;\n};\n\nexport type DeleteFileMutationVariables = Exact<{\n fileId: Scalars['ID']['input'];\n}>;\n\nexport type DeleteFileMutation = {\n __typename?: 'Mutation';\n deleteFile?:\n | {\n __typename?: 'File';\n createdAt: Date;\n id: string;\n mimeType: string;\n name: string;\n notes: string;\n type: FileType;\n url?: string | null | undefined;\n }\n | null\n | undefined;\n};\n\nexport type PolicyExplorerConversationMessageFieldsFragment = {\n __typename?: 'PolicyExplorerConversationMessage';\n content: string;\n id: string;\n role: PolicyExplorerConversationMessageRole;\n timestamp: Date;\n attachments: Array<{\n __typename?: 'PolicyExplorerConversationMessageAttachment';\n content: string;\n type: PolicyExplorerConversationMessageAttachmentType;\n }>;\n};\n\nexport type GetPolicyExplorerConversationQueryVariables = Exact<{\n policyId: Scalars['ID']['input'];\n}>;\n\nexport type GetPolicyExplorerConversationQuery = {\n __typename?: 'Query';\n policyExplorerConversation: Array<{\n __typename?: 'PolicyExplorerConversationMessage';\n content: string;\n id: string;\n role: PolicyExplorerConversationMessageRole;\n timestamp: Date;\n attachments: Array<{\n __typename?: 'PolicyExplorerConversationMessageAttachment';\n content: string;\n type: PolicyExplorerConversationMessageAttachmentType;\n }>;\n }>;\n};\n\nexport type AddPolicyExplorerConversationMessageMutationVariables = Exact<{\n policyId: Scalars['ID']['input'];\n message: Scalars['String']['input'];\n}>;\n\nexport type AddPolicyExplorerConversationMessageMutation = {\n __typename?: 'Mutation';\n addPolicyExplorerConversationMessage: Array<{\n __typename?: 'PolicyExplorerConversationMessage';\n content: string;\n id: string;\n role: PolicyExplorerConversationMessageRole;\n timestamp: Date;\n attachments: Array<{\n __typename?: 'PolicyExplorerConversationMessageAttachment';\n content: string;\n type: PolicyExplorerConversationMessageAttachmentType;\n }>;\n }>;\n};\n\nexport type ServiceRequestFieldsFragment = {\n __typename?: 'ServiceRequest';\n id: string;\n type: ServiceRequestType;\n state: ServiceRequestState;\n clientEmail?: string | null | undefined;\n clientName?: string | null | undefined;\n clientPhone?: string | null | undefined;\n details: string;\n dueAt?: Date | null | undefined;\n createdAt: Date;\n updatedAt: Date;\n account?:\n | {\n __typename?: 'Account';\n type: AccountType;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n assignee?: { __typename?: 'AgencyUser'; id: string; name: string } | null | undefined;\n addAdditionalInsured?:\n | {\n __typename?: 'AddAdditionalInsuredRequest';\n name: string;\n relationship: string;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n businessPolicy?:\n | {\n __typename?: 'BusinessPolicy';\n id: string;\n type: InsuranceType;\n carrier: { __typename?: 'InsuranceCarrier'; name: string };\n }\n | null\n | undefined;\n cancelPolicy?:\n | { __typename?: 'CancelPolicyRequest'; policyId: string; reason: string }\n | null\n | undefined;\n createCertificate?:\n | {\n __typename?: 'CreateCertificateRequest';\n name: string;\n additionalInsured: boolean;\n additionalInsuredRelationship?: string | null | undefined;\n additionalInsuredRelationshipDescription?: string | null | undefined;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n documentRequest?:\n | { __typename?: 'DocumentRequest'; type: DocumentRequestType }\n | null\n | undefined;\n endorsePolicy?: { __typename?: 'EndorsePolicyRequest'; policyId: string } | null | undefined;\n question?:\n | {\n __typename?: 'QuestionRequest';\n policyId?: string | null | undefined;\n question: string;\n type: QuestionRequestType;\n }\n | null\n | undefined;\n resolution?: { __typename?: 'ServiceRequestResolution'; notes: string } | null | undefined;\n};\n\nexport type ServiceRequestCallFieldsFragment = {\n __typename?: 'ServiceRequest';\n calls: Array<{\n __typename?: 'Call';\n id: string;\n disconnectionReason?: CallDisconnectionReason | null | undefined;\n endedAt?: Date | null | undefined;\n fromName?: string | null | undefined;\n fromNumber: string;\n startedAt: Date;\n status: CallStatus;\n recordingUrl?: string | null | undefined;\n sentiment?: CallSentiment | null | undefined;\n successful?: boolean | null | undefined;\n summary?: string | null | undefined;\n account?:\n | {\n __typename?: 'Account';\n id: string;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n serviceRequests: Array<{\n __typename?: 'ServiceRequest';\n id: string;\n type: ServiceRequestType;\n state: ServiceRequestState;\n clientEmail?: string | null | undefined;\n clientName?: string | null | undefined;\n clientPhone?: string | null | undefined;\n details: string;\n dueAt?: Date | null | undefined;\n createdAt: Date;\n updatedAt: Date;\n account?:\n | {\n __typename?: 'Account';\n type: AccountType;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n assignee?: { __typename?: 'AgencyUser'; id: string; name: string } | null | undefined;\n addAdditionalInsured?:\n | {\n __typename?: 'AddAdditionalInsuredRequest';\n name: string;\n relationship: string;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n businessPolicy?:\n | {\n __typename?: 'BusinessPolicy';\n id: string;\n type: InsuranceType;\n carrier: { __typename?: 'InsuranceCarrier'; name: string };\n }\n | null\n | undefined;\n cancelPolicy?:\n | { __typename?: 'CancelPolicyRequest'; policyId: string; reason: string }\n | null\n | undefined;\n createCertificate?:\n | {\n __typename?: 'CreateCertificateRequest';\n name: string;\n additionalInsured: boolean;\n additionalInsuredRelationship?: string | null | undefined;\n additionalInsuredRelationshipDescription?: string | null | undefined;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n documentRequest?:\n | { __typename?: 'DocumentRequest'; type: DocumentRequestType }\n | null\n | undefined;\n endorsePolicy?: { __typename?: 'EndorsePolicyRequest'; policyId: string } | null | undefined;\n question?:\n | {\n __typename?: 'QuestionRequest';\n policyId?: string | null | undefined;\n question: string;\n type: QuestionRequestType;\n }\n | null\n | undefined;\n resolution?: { __typename?: 'ServiceRequestResolution'; notes: string } | null | undefined;\n }>;\n transcript: Array<{\n __typename?: 'CallTranscriptObject';\n role: CallTranscriptRole;\n content: string;\n toolCallId?: string | null | undefined;\n toolName?: string | null | undefined;\n toolArgumentsJson?: string | null | undefined;\n }>;\n }>;\n comments: Array<{\n __typename?: 'ServiceRequestComment';\n id: string;\n content: string;\n createdAt: Date;\n agencyUser: { __typename?: 'AgencyUser'; name: string };\n }>;\n emailThreads: Array<{\n __typename?: 'EmailThread';\n fromEmail: string;\n fromName: string;\n id: string;\n state: EmailThreadState;\n subject: string;\n waitingFor?: EmailSenderRole | null | undefined;\n createdAt: Date;\n updatedAt: Date;\n summary: string;\n account?:\n | {\n __typename?: 'Account';\n id: string;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n attachments: Array<{\n __typename?: 'File';\n id: string;\n name: string;\n url?: string | null | undefined;\n }>;\n caraEmails: Array<{\n __typename?: 'Email';\n body: string;\n id: string;\n senderRole: EmailSenderRole;\n sentAt: Date;\n subject: string;\n from: { __typename?: 'EmailParticipant'; name: string; email: string };\n to: Array<{ __typename?: 'EmailParticipant'; name: string; email: string }>;\n }>;\n participantEmails: Array<{\n __typename?: 'Email';\n body: string;\n id: string;\n senderRole: EmailSenderRole;\n sentAt: Date;\n subject: string;\n from: { __typename?: 'EmailParticipant'; name: string; email: string };\n to: Array<{ __typename?: 'EmailParticipant'; name: string; email: string }>;\n }>;\n serviceRequests: Array<{\n __typename?: 'ServiceRequest';\n id: string;\n type: ServiceRequestType;\n state: ServiceRequestState;\n clientEmail?: string | null | undefined;\n clientName?: string | null | undefined;\n clientPhone?: string | null | undefined;\n details: string;\n dueAt?: Date | null | undefined;\n createdAt: Date;\n updatedAt: Date;\n account?:\n | {\n __typename?: 'Account';\n type: AccountType;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n assignee?: { __typename?: 'AgencyUser'; id: string; name: string } | null | undefined;\n addAdditionalInsured?:\n | {\n __typename?: 'AddAdditionalInsuredRequest';\n name: string;\n relationship: string;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n businessPolicy?:\n | {\n __typename?: 'BusinessPolicy';\n id: string;\n type: InsuranceType;\n carrier: { __typename?: 'InsuranceCarrier'; name: string };\n }\n | null\n | undefined;\n cancelPolicy?:\n | { __typename?: 'CancelPolicyRequest'; policyId: string; reason: string }\n | null\n | undefined;\n createCertificate?:\n | {\n __typename?: 'CreateCertificateRequest';\n name: string;\n additionalInsured: boolean;\n additionalInsuredRelationship?: string | null | undefined;\n additionalInsuredRelationshipDescription?: string | null | undefined;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n documentRequest?:\n | { __typename?: 'DocumentRequest'; type: DocumentRequestType }\n | null\n | undefined;\n endorsePolicy?: { __typename?: 'EndorsePolicyRequest'; policyId: string } | null | undefined;\n question?:\n | {\n __typename?: 'QuestionRequest';\n policyId?: string | null | undefined;\n question: string;\n type: QuestionRequestType;\n }\n | null\n | undefined;\n resolution?: { __typename?: 'ServiceRequestResolution'; notes: string } | null | undefined;\n }>;\n toolCalls: Array<{\n __typename?: 'ToolCall';\n argumentsJson: string;\n id: string;\n name: string;\n result: string;\n timestamp: Date;\n }>;\n }>;\n versionHistory?:\n | Array<{\n __typename?: 'ServiceRequestVersion';\n createdAt: Date;\n version: number;\n updateTypes: Array;\n updateInitiatorType: UpdateInitiatorType;\n updateInitiatorId: string;\n serviceRequest: {\n __typename?: 'ServiceRequest';\n dueAt?: Date | null | undefined;\n assignee?: { __typename?: 'AgencyUser'; id: string; name: string } | null | undefined;\n resolution?:\n | { __typename?: 'ServiceRequestResolution'; notes: string }\n | null\n | undefined;\n };\n }>\n | null\n | undefined;\n};\n\nexport type GetServiceRequestsQueryVariables = Exact<{ [key: string]: never }>;\n\nexport type GetServiceRequestsQuery = {\n __typename?: 'Query';\n serviceRequests: Array<{\n __typename?: 'ServiceRequest';\n id: string;\n type: ServiceRequestType;\n state: ServiceRequestState;\n clientEmail?: string | null | undefined;\n clientName?: string | null | undefined;\n clientPhone?: string | null | undefined;\n details: string;\n dueAt?: Date | null | undefined;\n createdAt: Date;\n updatedAt: Date;\n account?:\n | {\n __typename?: 'Account';\n type: AccountType;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n assignee?: { __typename?: 'AgencyUser'; id: string; name: string } | null | undefined;\n addAdditionalInsured?:\n | {\n __typename?: 'AddAdditionalInsuredRequest';\n name: string;\n relationship: string;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n businessPolicy?:\n | {\n __typename?: 'BusinessPolicy';\n id: string;\n type: InsuranceType;\n carrier: { __typename?: 'InsuranceCarrier'; name: string };\n }\n | null\n | undefined;\n cancelPolicy?:\n | { __typename?: 'CancelPolicyRequest'; policyId: string; reason: string }\n | null\n | undefined;\n createCertificate?:\n | {\n __typename?: 'CreateCertificateRequest';\n name: string;\n additionalInsured: boolean;\n additionalInsuredRelationship?: string | null | undefined;\n additionalInsuredRelationshipDescription?: string | null | undefined;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n documentRequest?:\n | { __typename?: 'DocumentRequest'; type: DocumentRequestType }\n | null\n | undefined;\n endorsePolicy?: { __typename?: 'EndorsePolicyRequest'; policyId: string } | null | undefined;\n question?:\n | {\n __typename?: 'QuestionRequest';\n policyId?: string | null | undefined;\n question: string;\n type: QuestionRequestType;\n }\n | null\n | undefined;\n resolution?: { __typename?: 'ServiceRequestResolution'; notes: string } | null | undefined;\n }>;\n};\n\nexport type GetServiceRequestQueryVariables = Exact<{\n id: Scalars['ID']['input'];\n}>;\n\nexport type GetServiceRequestQuery = {\n __typename?: 'Query';\n serviceRequest?:\n | {\n __typename?: 'ServiceRequest';\n id: string;\n type: ServiceRequestType;\n state: ServiceRequestState;\n clientEmail?: string | null | undefined;\n clientName?: string | null | undefined;\n clientPhone?: string | null | undefined;\n details: string;\n dueAt?: Date | null | undefined;\n createdAt: Date;\n updatedAt: Date;\n account?:\n | {\n __typename?: 'Account';\n type: AccountType;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n assignee?: { __typename?: 'AgencyUser'; id: string; name: string } | null | undefined;\n addAdditionalInsured?:\n | {\n __typename?: 'AddAdditionalInsuredRequest';\n name: string;\n relationship: string;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n businessPolicy?:\n | {\n __typename?: 'BusinessPolicy';\n id: string;\n type: InsuranceType;\n carrier: { __typename?: 'InsuranceCarrier'; name: string };\n }\n | null\n | undefined;\n cancelPolicy?:\n | { __typename?: 'CancelPolicyRequest'; policyId: string; reason: string }\n | null\n | undefined;\n createCertificate?:\n | {\n __typename?: 'CreateCertificateRequest';\n name: string;\n additionalInsured: boolean;\n additionalInsuredRelationship?: string | null | undefined;\n additionalInsuredRelationshipDescription?: string | null | undefined;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n documentRequest?:\n | { __typename?: 'DocumentRequest'; type: DocumentRequestType }\n | null\n | undefined;\n endorsePolicy?:\n | { __typename?: 'EndorsePolicyRequest'; policyId: string }\n | null\n | undefined;\n question?:\n | {\n __typename?: 'QuestionRequest';\n policyId?: string | null | undefined;\n question: string;\n type: QuestionRequestType;\n }\n | null\n | undefined;\n resolution?: { __typename?: 'ServiceRequestResolution'; notes: string } | null | undefined;\n calls: Array<{\n __typename?: 'Call';\n id: string;\n disconnectionReason?: CallDisconnectionReason | null | undefined;\n endedAt?: Date | null | undefined;\n fromName?: string | null | undefined;\n fromNumber: string;\n startedAt: Date;\n status: CallStatus;\n recordingUrl?: string | null | undefined;\n sentiment?: CallSentiment | null | undefined;\n successful?: boolean | null | undefined;\n summary?: string | null | undefined;\n account?:\n | {\n __typename?: 'Account';\n id: string;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n serviceRequests: Array<{\n __typename?: 'ServiceRequest';\n id: string;\n type: ServiceRequestType;\n state: ServiceRequestState;\n clientEmail?: string | null | undefined;\n clientName?: string | null | undefined;\n clientPhone?: string | null | undefined;\n details: string;\n dueAt?: Date | null | undefined;\n createdAt: Date;\n updatedAt: Date;\n account?:\n | {\n __typename?: 'Account';\n type: AccountType;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n assignee?: { __typename?: 'AgencyUser'; id: string; name: string } | null | undefined;\n addAdditionalInsured?:\n | {\n __typename?: 'AddAdditionalInsuredRequest';\n name: string;\n relationship: string;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n businessPolicy?:\n | {\n __typename?: 'BusinessPolicy';\n id: string;\n type: InsuranceType;\n carrier: { __typename?: 'InsuranceCarrier'; name: string };\n }\n | null\n | undefined;\n cancelPolicy?:\n | { __typename?: 'CancelPolicyRequest'; policyId: string; reason: string }\n | null\n | undefined;\n createCertificate?:\n | {\n __typename?: 'CreateCertificateRequest';\n name: string;\n additionalInsured: boolean;\n additionalInsuredRelationship?: string | null | undefined;\n additionalInsuredRelationshipDescription?: string | null | undefined;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n documentRequest?:\n | { __typename?: 'DocumentRequest'; type: DocumentRequestType }\n | null\n | undefined;\n endorsePolicy?:\n | { __typename?: 'EndorsePolicyRequest'; policyId: string }\n | null\n | undefined;\n question?:\n | {\n __typename?: 'QuestionRequest';\n policyId?: string | null | undefined;\n question: string;\n type: QuestionRequestType;\n }\n | null\n | undefined;\n resolution?:\n | { __typename?: 'ServiceRequestResolution'; notes: string }\n | null\n | undefined;\n }>;\n transcript: Array<{\n __typename?: 'CallTranscriptObject';\n role: CallTranscriptRole;\n content: string;\n toolCallId?: string | null | undefined;\n toolName?: string | null | undefined;\n toolArgumentsJson?: string | null | undefined;\n }>;\n }>;\n comments: Array<{\n __typename?: 'ServiceRequestComment';\n id: string;\n content: string;\n createdAt: Date;\n agencyUser: { __typename?: 'AgencyUser'; name: string };\n }>;\n emailThreads: Array<{\n __typename?: 'EmailThread';\n fromEmail: string;\n fromName: string;\n id: string;\n state: EmailThreadState;\n subject: string;\n waitingFor?: EmailSenderRole | null | undefined;\n createdAt: Date;\n updatedAt: Date;\n summary: string;\n account?:\n | {\n __typename?: 'Account';\n id: string;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n attachments: Array<{\n __typename?: 'File';\n id: string;\n name: string;\n url?: string | null | undefined;\n }>;\n caraEmails: Array<{\n __typename?: 'Email';\n body: string;\n id: string;\n senderRole: EmailSenderRole;\n sentAt: Date;\n subject: string;\n from: { __typename?: 'EmailParticipant'; name: string; email: string };\n to: Array<{ __typename?: 'EmailParticipant'; name: string; email: string }>;\n }>;\n participantEmails: Array<{\n __typename?: 'Email';\n body: string;\n id: string;\n senderRole: EmailSenderRole;\n sentAt: Date;\n subject: string;\n from: { __typename?: 'EmailParticipant'; name: string; email: string };\n to: Array<{ __typename?: 'EmailParticipant'; name: string; email: string }>;\n }>;\n serviceRequests: Array<{\n __typename?: 'ServiceRequest';\n id: string;\n type: ServiceRequestType;\n state: ServiceRequestState;\n clientEmail?: string | null | undefined;\n clientName?: string | null | undefined;\n clientPhone?: string | null | undefined;\n details: string;\n dueAt?: Date | null | undefined;\n createdAt: Date;\n updatedAt: Date;\n account?:\n | {\n __typename?: 'Account';\n type: AccountType;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n assignee?: { __typename?: 'AgencyUser'; id: string; name: string } | null | undefined;\n addAdditionalInsured?:\n | {\n __typename?: 'AddAdditionalInsuredRequest';\n name: string;\n relationship: string;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n businessPolicy?:\n | {\n __typename?: 'BusinessPolicy';\n id: string;\n type: InsuranceType;\n carrier: { __typename?: 'InsuranceCarrier'; name: string };\n }\n | null\n | undefined;\n cancelPolicy?:\n | { __typename?: 'CancelPolicyRequest'; policyId: string; reason: string }\n | null\n | undefined;\n createCertificate?:\n | {\n __typename?: 'CreateCertificateRequest';\n name: string;\n additionalInsured: boolean;\n additionalInsuredRelationship?: string | null | undefined;\n additionalInsuredRelationshipDescription?: string | null | undefined;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n documentRequest?:\n | { __typename?: 'DocumentRequest'; type: DocumentRequestType }\n | null\n | undefined;\n endorsePolicy?:\n | { __typename?: 'EndorsePolicyRequest'; policyId: string }\n | null\n | undefined;\n question?:\n | {\n __typename?: 'QuestionRequest';\n policyId?: string | null | undefined;\n question: string;\n type: QuestionRequestType;\n }\n | null\n | undefined;\n resolution?:\n | { __typename?: 'ServiceRequestResolution'; notes: string }\n | null\n | undefined;\n }>;\n toolCalls: Array<{\n __typename?: 'ToolCall';\n argumentsJson: string;\n id: string;\n name: string;\n result: string;\n timestamp: Date;\n }>;\n }>;\n versionHistory?:\n | Array<{\n __typename?: 'ServiceRequestVersion';\n createdAt: Date;\n version: number;\n updateTypes: Array;\n updateInitiatorType: UpdateInitiatorType;\n updateInitiatorId: string;\n serviceRequest: {\n __typename?: 'ServiceRequest';\n dueAt?: Date | null | undefined;\n assignee?:\n | { __typename?: 'AgencyUser'; id: string; name: string }\n | null\n | undefined;\n resolution?:\n | { __typename?: 'ServiceRequestResolution'; notes: string }\n | null\n | undefined;\n };\n }>\n | null\n | undefined;\n }\n | null\n | undefined;\n};\n\nexport type ResolveServiceRequestMutationVariables = Exact<{\n id: Scalars['ID']['input'];\n input: ResolveServiceRequestInput;\n}>;\n\nexport type ResolveServiceRequestMutation = {\n __typename?: 'Mutation';\n resolveServiceRequest: {\n __typename?: 'ServiceRequest';\n id: string;\n type: ServiceRequestType;\n state: ServiceRequestState;\n clientEmail?: string | null | undefined;\n clientName?: string | null | undefined;\n clientPhone?: string | null | undefined;\n details: string;\n dueAt?: Date | null | undefined;\n createdAt: Date;\n updatedAt: Date;\n account?:\n | {\n __typename?: 'Account';\n type: AccountType;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n assignee?: { __typename?: 'AgencyUser'; id: string; name: string } | null | undefined;\n addAdditionalInsured?:\n | {\n __typename?: 'AddAdditionalInsuredRequest';\n name: string;\n relationship: string;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n businessPolicy?:\n | {\n __typename?: 'BusinessPolicy';\n id: string;\n type: InsuranceType;\n carrier: { __typename?: 'InsuranceCarrier'; name: string };\n }\n | null\n | undefined;\n cancelPolicy?:\n | { __typename?: 'CancelPolicyRequest'; policyId: string; reason: string }\n | null\n | undefined;\n createCertificate?:\n | {\n __typename?: 'CreateCertificateRequest';\n name: string;\n additionalInsured: boolean;\n additionalInsuredRelationship?: string | null | undefined;\n additionalInsuredRelationshipDescription?: string | null | undefined;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n documentRequest?:\n | { __typename?: 'DocumentRequest'; type: DocumentRequestType }\n | null\n | undefined;\n endorsePolicy?: { __typename?: 'EndorsePolicyRequest'; policyId: string } | null | undefined;\n question?:\n | {\n __typename?: 'QuestionRequest';\n policyId?: string | null | undefined;\n question: string;\n type: QuestionRequestType;\n }\n | null\n | undefined;\n resolution?: { __typename?: 'ServiceRequestResolution'; notes: string } | null | undefined;\n };\n};\n\nexport type UpdateServiceRequestMutationVariables = Exact<{\n id: Scalars['ID']['input'];\n input: UpdateServiceRequestInput;\n}>;\n\nexport type UpdateServiceRequestMutation = {\n __typename?: 'Mutation';\n updateServiceRequest: {\n __typename?: 'ServiceRequest';\n id: string;\n type: ServiceRequestType;\n state: ServiceRequestState;\n clientEmail?: string | null | undefined;\n clientName?: string | null | undefined;\n clientPhone?: string | null | undefined;\n details: string;\n dueAt?: Date | null | undefined;\n createdAt: Date;\n updatedAt: Date;\n account?:\n | {\n __typename?: 'Account';\n type: AccountType;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n assignee?: { __typename?: 'AgencyUser'; id: string; name: string } | null | undefined;\n addAdditionalInsured?:\n | {\n __typename?: 'AddAdditionalInsuredRequest';\n name: string;\n relationship: string;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n businessPolicy?:\n | {\n __typename?: 'BusinessPolicy';\n id: string;\n type: InsuranceType;\n carrier: { __typename?: 'InsuranceCarrier'; name: string };\n }\n | null\n | undefined;\n cancelPolicy?:\n | { __typename?: 'CancelPolicyRequest'; policyId: string; reason: string }\n | null\n | undefined;\n createCertificate?:\n | {\n __typename?: 'CreateCertificateRequest';\n name: string;\n additionalInsured: boolean;\n additionalInsuredRelationship?: string | null | undefined;\n additionalInsuredRelationshipDescription?: string | null | undefined;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n documentRequest?:\n | { __typename?: 'DocumentRequest'; type: DocumentRequestType }\n | null\n | undefined;\n endorsePolicy?: { __typename?: 'EndorsePolicyRequest'; policyId: string } | null | undefined;\n question?:\n | {\n __typename?: 'QuestionRequest';\n policyId?: string | null | undefined;\n question: string;\n type: QuestionRequestType;\n }\n | null\n | undefined;\n resolution?: { __typename?: 'ServiceRequestResolution'; notes: string } | null | undefined;\n };\n};\n\nexport type AddServiceRequestCommentMutationVariables = Exact<{\n id: Scalars['ID']['input'];\n input: AddServiceRequestCommentInput;\n}>;\n\nexport type AddServiceRequestCommentMutation = {\n __typename?: 'Mutation';\n addServiceRequestComment: {\n __typename?: 'ServiceRequest';\n id: string;\n type: ServiceRequestType;\n state: ServiceRequestState;\n clientEmail?: string | null | undefined;\n clientName?: string | null | undefined;\n clientPhone?: string | null | undefined;\n details: string;\n dueAt?: Date | null | undefined;\n createdAt: Date;\n updatedAt: Date;\n account?:\n | {\n __typename?: 'Account';\n type: AccountType;\n account:\n | { __typename?: 'BusinessAccount'; name: string }\n | { __typename?: 'IndividualAccount'; name: string };\n }\n | null\n | undefined;\n assignee?: { __typename?: 'AgencyUser'; id: string; name: string } | null | undefined;\n addAdditionalInsured?:\n | {\n __typename?: 'AddAdditionalInsuredRequest';\n name: string;\n relationship: string;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n businessPolicy?:\n | {\n __typename?: 'BusinessPolicy';\n id: string;\n type: InsuranceType;\n carrier: { __typename?: 'InsuranceCarrier'; name: string };\n }\n | null\n | undefined;\n cancelPolicy?:\n | { __typename?: 'CancelPolicyRequest'; policyId: string; reason: string }\n | null\n | undefined;\n createCertificate?:\n | {\n __typename?: 'CreateCertificateRequest';\n name: string;\n additionalInsured: boolean;\n additionalInsuredRelationship?: string | null | undefined;\n additionalInsuredRelationshipDescription?: string | null | undefined;\n address: {\n __typename?: 'Address';\n line1: string;\n city: string;\n zone: string;\n postalCode: string;\n };\n }\n | null\n | undefined;\n documentRequest?:\n | { __typename?: 'DocumentRequest'; type: DocumentRequestType }\n | null\n | undefined;\n endorsePolicy?: { __typename?: 'EndorsePolicyRequest'; policyId: string } | null | undefined;\n question?:\n | {\n __typename?: 'QuestionRequest';\n policyId?: string | null | undefined;\n question: string;\n type: QuestionRequestType;\n }\n | null\n | undefined;\n resolution?: { __typename?: 'ServiceRequestResolution'; notes: string } | null | undefined;\n };\n};\n\nexport const AccountFieldsFragmentDoc = gql`\n fragment AccountFields on Account {\n account {\n email\n mailingAddress {\n line1\n line2\n city\n zone\n postalCode\n }\n name\n phone\n ... on BusinessAccount {\n dba\n naics\n website\n }\n }\n createdAt\n id\n type\n }\n`;\nexport const BusinessApplicationFieldsFragmentDoc = gql`\n fragment BusinessApplicationFields on BusinessApplication {\n annualRevenue\n businessDba\n businessName\n contact {\n fullName\n email\n phone\n }\n employeeInfo {\n numFullTimeEmployees\n numPartTimeEmployees\n totalEmployeePayroll\n }\n fein\n id\n insuranceEffectiveAt\n insuranceTypes\n legalEntityType\n locations {\n id\n address {\n line1\n line2\n city\n zone\n postalCode\n }\n buildingInfo {\n annualSales\n areaOccupiedByBusiness\n buildingCoverage\n burglarAlarmType\n constructionType\n ownershipType\n personalPropertyCoverage\n sprinkleredPercentage\n totalArea\n totalStories\n yearBuilt\n }\n employeeInfo {\n numPartTimeEmployees\n numFullTimeEmployees\n totalEmployeePayroll\n jobCode\n }\n isPrimary\n }\n mailingAddress {\n line1\n line2\n city\n zone\n postalCode\n }\n naicsCode\n owners {\n fullName\n annualPayroll\n dateOfBirth\n jobCode\n }\n pastPolicyLosses {\n claimDate\n claimStatus\n lossDate\n lossDescription\n lossState\n lossType\n policyEffectiveDate\n policyExpirationDate\n policyType\n totalPaidAmount\n totalReservedAmount\n }\n selectedCarriers\n selectedLimits {\n coverageState\n wcPerAccidentLimit\n wcPerDiseaseEmployeeLimit\n wcPerDiseasePolicyLimit\n glPerOccurrenceLimit\n glAggregateLimit\n bopPerOccurrenceLimit\n bopAggregateLimit\n cyberRetentionLimit\n cyberAggregateLimit\n }\n state\n underwritingAnswers {\n answer\n locationId\n questionId\n }\n underwritingQuestions {\n id\n answerOptions {\n displayText\n value\n }\n carriers\n defaultAnswer\n dependentQuestions {\n condition\n dependentQuestionIds\n type\n }\n hasParentQuestion\n locationId\n question\n tooltip\n type\n }\n underwritingStatements {\n carrier\n markdown\n }\n yearOfFounding\n yearsOfManagementExperience\n }\n`;\nexport const AccountBusinessApplicationFieldsFragmentDoc = gql`\n fragment AccountBusinessApplicationFields on Account {\n businessApplications {\n ...BusinessApplicationFields\n }\n }\n ${BusinessApplicationFieldsFragmentDoc}\n`;\nexport const BusinessPolicyFieldsFragmentDoc = gql`\n fragment BusinessPolicyFields on BusinessPolicy {\n account {\n account {\n email\n name\n }\n id\n }\n carrier {\n id\n name\n }\n expiresAt\n id\n inforceAt\n issuedAt\n policyNumber\n state\n type\n }\n`;\nexport const AccountBusinessPolicyFieldsFragmentDoc = gql`\n fragment AccountBusinessPolicyFields on Account {\n businessPolicies {\n ...BusinessPolicyFields\n }\n }\n ${BusinessPolicyFieldsFragmentDoc}\n`;\nexport const CertificateOfLiabilityInsuranceFieldsFragmentDoc = gql`\n fragment CertificateOfLiabilityInsuranceFields on CertificateOfLiabilityInsurance {\n id\n certificateNumber\n holder {\n name\n address {\n line1\n city\n zone\n postalCode\n }\n }\n viewUrl\n downloadUrl\n createdAt\n }\n`;\nexport const AccountCertificateOfLiabilityInsuranceFieldsFragmentDoc = gql`\n fragment AccountCertificateOfLiabilityInsuranceFields on Account {\n certificatesOfLiabilityInsurance {\n ...CertificateOfLiabilityInsuranceFields\n }\n }\n ${CertificateOfLiabilityInsuranceFieldsFragmentDoc}\n`;\nexport const ContactFieldsFragmentDoc = gql`\n fragment ContactFields on AccountContact {\n email\n id\n name\n phone\n }\n`;\nexport const AccountContactFieldsFragmentDoc = gql`\n fragment AccountContactFields on Account {\n contacts {\n ...ContactFields\n }\n }\n ${ContactFieldsFragmentDoc}\n`;\nexport const ServiceRequestFieldsFragmentDoc = gql`\n fragment ServiceRequestFields on ServiceRequest {\n id\n type\n state\n clientEmail\n clientName\n clientPhone\n details\n account {\n type\n account {\n name\n }\n }\n assignee {\n id\n name\n }\n dueAt\n addAdditionalInsured {\n address {\n line1\n city\n zone\n postalCode\n }\n name\n relationship\n }\n businessPolicy {\n id\n type\n carrier {\n name\n }\n }\n cancelPolicy {\n policyId\n reason\n }\n createCertificate {\n name\n address {\n line1\n city\n zone\n postalCode\n }\n additionalInsured\n additionalInsuredRelationship\n additionalInsuredRelationshipDescription\n }\n documentRequest {\n type\n }\n endorsePolicy {\n policyId\n }\n question {\n policyId\n question\n type\n }\n resolution {\n notes\n }\n createdAt\n updatedAt\n }\n`;\nexport const AccountServiceRequestFieldsFragmentDoc = gql`\n fragment AccountServiceRequestFields on Account {\n serviceRequests {\n ...ServiceRequestFields\n }\n }\n ${ServiceRequestFieldsFragmentDoc}\n`;\nexport const AgencyUserFieldsFragmentDoc = gql`\n fragment AgencyUserFields on AgencyUser {\n id\n email\n name\n }\n`;\nexport const AgencySignInFieldsFragmentDoc = gql`\n fragment AgencySignInFields on AgencySignInResponse {\n agencyUser {\n id\n email\n name\n agency {\n id\n name\n }\n }\n }\n`;\nexport const BusinessPolicyDetailFieldsFragmentDoc = gql`\n fragment BusinessPolicyDetailFields on BusinessPolicy {\n account {\n contacts {\n ...ContactFields\n }\n }\n broker {\n id\n name\n }\n details {\n blanketAdditionalInsureds {\n type\n description\n }\n carrier {\n name\n address {\n line1\n line2\n city\n zone\n postalCode\n }\n }\n coverageDescriptions {\n description\n policyQuotes\n title\n }\n deductible\n exclusionDescriptions {\n description\n policyQuotes\n title\n }\n extraLimits {\n limit\n name\n }\n insured {\n name\n address {\n line1\n line2\n city\n zone\n postalCode\n }\n }\n limits {\n cyberAggregateLimit\n cyberRetentionLimit\n glAggregateLimit\n glMedicalPerOccurrenceLimit\n glMedicalPerPersonLimit\n glPerOccurrenceLimit\n glPersonalAndAdvertisingInjuryLimit\n glProductsAndCompletedOperationsLimit\n glRentedPremisesDamageLimit\n propertyBuildingLimit\n propertyContentsLimit\n umbrellaOrExcessAggregateLimit\n umbrellaOrExcessPerOccurrenceLimit\n wcPerAccidentLimit\n wcPerDiseaseEmployeeLimit\n wcPerDiseasePolicyLimit\n }\n locations {\n address {\n line1\n line2\n city\n zone\n postalCode\n }\n limits {\n cyberAggregateLimit\n cyberRetentionLimit\n glAggregateLimit\n glMedicalPerOccurrenceLimit\n glMedicalPerPersonLimit\n glPerOccurrenceLimit\n glPersonalAndAdvertisingInjuryLimit\n glProductsAndCompletedOperationsLimit\n glRentedPremisesDamageLimit\n propertyBuildingLimit\n propertyContentsLimit\n umbrellaOrExcessAggregateLimit\n umbrellaOrExcessPerOccurrenceLimit\n wcPerAccidentLimit\n wcPerDiseaseEmployeeLimit\n wcPerDiseasePolicyLimit\n }\n }\n namedAdditionalInsureds {\n name\n address {\n line1\n line2\n city\n zone\n postalCode\n }\n }\n policyNumber\n summary\n }\n market\n pricing {\n billingType\n premium\n agencyFees\n brokerFees\n policyFees\n otherFees\n taxes\n total\n intervalType\n estimatedCommission\n }\n quoteNumber\n source {\n type\n subType\n processType\n notes\n leadId\n campaignId\n referralSourceId\n agencyUser {\n id\n }\n }\n }\n ${ContactFieldsFragmentDoc}\n`;\nexport const FileFieldsFragmentDoc = gql`\n fragment FileFields on File {\n createdAt\n id\n mimeType\n name\n notes\n type\n url\n }\n`;\nexport const BusinessPolicyFileFieldsFragmentDoc = gql`\n fragment BusinessPolicyFileFields on BusinessPolicy {\n files {\n ...FileFields\n }\n }\n ${FileFieldsFragmentDoc}\n`;\nexport const InsuranceCarrierFieldsFragmentDoc = gql`\n fragment InsuranceCarrierFields on InsuranceCarrier {\n id\n name\n isCarrier\n isBroker\n }\n`;\nexport const CaraWorkspaceOverviewFieldsFragmentDoc = gql`\n fragment CaraWorkspaceOverviewFields on CaraWorkspace {\n agencyUser {\n email\n id\n name\n }\n createdAt\n id\n preset\n state\n title\n updatedAt\n }\n`;\nexport const DocumentDataFieldsFragmentDoc = gql`\n fragment DocumentDataFields on DocumentData {\n acord25 {\n holder {\n name\n }\n }\n acord125 {\n applicant1 {\n name\n }\n }\n acord126 {\n namedInsured\n }\n acord140 {\n namedInsured\n }\n }\n`;\nexport const CaraWorkspaceFieldsFragmentDoc = gql`\n fragment CaraWorkspaceFields on CaraWorkspace {\n ...CaraWorkspaceOverviewFields\n artifacts {\n createdAt\n certificateOfLiabilityInsurance {\n downloadUrl\n holder {\n name\n }\n id\n }\n document {\n id\n type\n downloadUrl\n data {\n ...DocumentDataFields\n }\n }\n email {\n body\n from {\n name\n email\n }\n subject\n to {\n name\n email\n }\n }\n id\n type\n }\n files {\n id\n name\n url\n }\n planStages {\n createdAt\n endedAt\n events {\n content\n endedAt\n id\n startedAt\n title\n type\n }\n id\n initiatedByMessageId\n processAttachmentsDetails {\n currentFileProgress\n }\n result\n startedAt\n state\n type\n }\n messages {\n content\n id\n role\n timestamp\n files {\n id\n name\n url\n }\n }\n serviceRequest {\n ...ServiceRequestFields\n }\n }\n ${CaraWorkspaceOverviewFieldsFragmentDoc}\n ${DocumentDataFieldsFragmentDoc}\n ${ServiceRequestFieldsFragmentDoc}\n`;\nexport const PolicyExplorerConversationMessageFieldsFragmentDoc = gql`\n fragment PolicyExplorerConversationMessageFields on PolicyExplorerConversationMessage {\n attachments {\n content\n type\n }\n content\n id\n role\n timestamp\n }\n`;\nexport const CallFieldsFragmentDoc = gql`\n fragment CallFields on Call {\n id\n account {\n id\n account {\n name\n }\n }\n disconnectionReason\n endedAt\n fromName\n fromNumber\n startedAt\n status\n }\n`;\nexport const CallTranscriptFieldsFragmentDoc = gql`\n fragment CallTranscriptFields on Call {\n recordingUrl\n sentiment\n serviceRequests {\n ...ServiceRequestFields\n }\n successful\n summary\n transcript {\n role\n content\n toolCallId\n toolName\n toolArgumentsJson\n }\n }\n ${ServiceRequestFieldsFragmentDoc}\n`;\nexport const EmailThreadFieldsFragmentDoc = gql`\n fragment EmailThreadFields on EmailThread {\n account {\n id\n account {\n name\n }\n }\n fromEmail\n fromName\n id\n state\n subject\n waitingFor\n createdAt\n updatedAt\n }\n`;\nexport const EmailFieldsFragmentDoc = gql`\n fragment EmailFields on Email {\n body\n from {\n name\n email\n }\n id\n senderRole\n sentAt\n subject\n to {\n name\n email\n }\n }\n`;\nexport const EmailThreadConversationFieldsFragmentDoc = gql`\n fragment EmailThreadConversationFields on EmailThread {\n attachments {\n id\n name\n url\n }\n caraEmails {\n ...EmailFields\n }\n participantEmails {\n ...EmailFields\n }\n serviceRequests {\n ...ServiceRequestFields\n }\n summary\n toolCalls {\n argumentsJson\n id\n name\n result\n timestamp\n }\n }\n ${EmailFieldsFragmentDoc}\n ${ServiceRequestFieldsFragmentDoc}\n`;\nexport const ServiceRequestCallFieldsFragmentDoc = gql`\n fragment ServiceRequestCallFields on ServiceRequest {\n calls {\n ...CallFields\n ...CallTranscriptFields\n }\n comments {\n id\n content\n agencyUser {\n name\n }\n createdAt\n }\n emailThreads {\n ...EmailThreadFields\n ...EmailThreadConversationFields\n }\n versionHistory {\n createdAt\n version\n updateTypes\n updateInitiatorType\n updateInitiatorId\n serviceRequest {\n assignee {\n id\n name\n }\n resolution {\n notes\n }\n dueAt\n }\n }\n }\n ${CallFieldsFragmentDoc}\n ${CallTranscriptFieldsFragmentDoc}\n ${EmailThreadFieldsFragmentDoc}\n ${EmailThreadConversationFieldsFragmentDoc}\n`;\nexport const GetAccountsDocument = gql`\n query GetAccounts {\n accounts {\n ...AccountFields\n }\n }\n ${AccountFieldsFragmentDoc}\n`;\n\n/**\n * __useGetAccountsQuery__\n *\n * To run a query within a React component, call `useGetAccountsQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetAccountsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetAccountsQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetAccountsQuery(\n baseOptions?: Apollo.QueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useQuery(GetAccountsDocument, options);\n}\nexport function useGetAccountsLazyQuery(\n baseOptions?: Apollo.LazyQueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useLazyQuery(\n GetAccountsDocument,\n options\n );\n}\nexport function useGetAccountsSuspenseQuery(\n baseOptions?: Apollo.SuspenseQueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useSuspenseQuery(\n GetAccountsDocument,\n options\n );\n}\nexport type GetAccountsQueryHookResult = ReturnType;\nexport type GetAccountsLazyQueryHookResult = ReturnType;\nexport type GetAccountsSuspenseQueryHookResult = ReturnType;\nexport type GetAccountsQueryResult = Apollo.QueryResult<\n GetAccountsQuery,\n GetAccountsQueryVariables\n>;\nexport const GetAccountDocument = gql`\n query GetAccount($id: ID!) {\n account(id: $id) {\n ...AccountFields\n ...AccountBusinessApplicationFields\n ...AccountBusinessPolicyFields\n ...AccountCertificateOfLiabilityInsuranceFields\n ...AccountContactFields\n ...AccountServiceRequestFields\n }\n }\n ${AccountFieldsFragmentDoc}\n ${AccountBusinessApplicationFieldsFragmentDoc}\n ${AccountBusinessPolicyFieldsFragmentDoc}\n ${AccountCertificateOfLiabilityInsuranceFieldsFragmentDoc}\n ${AccountContactFieldsFragmentDoc}\n ${AccountServiceRequestFieldsFragmentDoc}\n`;\n\n/**\n * __useGetAccountQuery__\n *\n * To run a query within a React component, call `useGetAccountQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetAccountQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetAccountQuery({\n * variables: {\n * id: // value for 'id'\n * },\n * });\n */\nexport function useGetAccountQuery(\n baseOptions: Apollo.QueryHookOptions &\n ({ variables: GetAccountQueryVariables; skip?: boolean } | { skip: boolean })\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useQuery(GetAccountDocument, options);\n}\nexport function useGetAccountLazyQuery(\n baseOptions?: Apollo.LazyQueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useLazyQuery(\n GetAccountDocument,\n options\n );\n}\nexport function useGetAccountSuspenseQuery(\n baseOptions?: Apollo.SuspenseQueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useSuspenseQuery(\n GetAccountDocument,\n options\n );\n}\nexport type GetAccountQueryHookResult = ReturnType;\nexport type GetAccountLazyQueryHookResult = ReturnType;\nexport type GetAccountSuspenseQueryHookResult = ReturnType;\nexport type GetAccountQueryResult = Apollo.QueryResult;\nexport const GetContactsDocument = gql`\n query GetContacts {\n contacts {\n ...ContactFields\n }\n }\n ${ContactFieldsFragmentDoc}\n`;\n\n/**\n * __useGetContactsQuery__\n *\n * To run a query within a React component, call `useGetContactsQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetContactsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetContactsQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetContactsQuery(\n baseOptions?: Apollo.QueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useQuery(GetContactsDocument, options);\n}\nexport function useGetContactsLazyQuery(\n baseOptions?: Apollo.LazyQueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useLazyQuery(\n GetContactsDocument,\n options\n );\n}\nexport function useGetContactsSuspenseQuery(\n baseOptions?: Apollo.SuspenseQueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useSuspenseQuery(\n GetContactsDocument,\n options\n );\n}\nexport type GetContactsQueryHookResult = ReturnType;\nexport type GetContactsLazyQueryHookResult = ReturnType;\nexport type GetContactsSuspenseQueryHookResult = ReturnType;\nexport type GetContactsQueryResult = Apollo.QueryResult<\n GetContactsQuery,\n GetContactsQueryVariables\n>;\nexport const CreateAccountDocument = gql`\n mutation CreateAccount($input: CreateAccountInput!) {\n createAccount(input: $input) {\n ...AccountFields\n }\n }\n ${AccountFieldsFragmentDoc}\n`;\nexport type CreateAccountMutationFn = Apollo.MutationFunction<\n CreateAccountMutation,\n CreateAccountMutationVariables\n>;\n\n/**\n * __useCreateAccountMutation__\n *\n * To run a mutation, you first call `useCreateAccountMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useCreateAccountMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [createAccountMutation, { data, loading, error }] = useCreateAccountMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useCreateAccountMutation(\n baseOptions?: Apollo.MutationHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useMutation(\n CreateAccountDocument,\n options\n );\n}\nexport type CreateAccountMutationHookResult = ReturnType;\nexport type CreateAccountMutationResult = Apollo.MutationResult;\nexport type CreateAccountMutationOptions = Apollo.BaseMutationOptions<\n CreateAccountMutation,\n CreateAccountMutationVariables\n>;\nexport const UpdateAccountDocument = gql`\n mutation UpdateAccount($id: ID!, $input: UpdateAccountInput!) {\n updateAccount(id: $id, input: $input) {\n ...AccountFields\n }\n }\n ${AccountFieldsFragmentDoc}\n`;\nexport type UpdateAccountMutationFn = Apollo.MutationFunction<\n UpdateAccountMutation,\n UpdateAccountMutationVariables\n>;\n\n/**\n * __useUpdateAccountMutation__\n *\n * To run a mutation, you first call `useUpdateAccountMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useUpdateAccountMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [updateAccountMutation, { data, loading, error }] = useUpdateAccountMutation({\n * variables: {\n * id: // value for 'id'\n * input: // value for 'input'\n * },\n * });\n */\nexport function useUpdateAccountMutation(\n baseOptions?: Apollo.MutationHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useMutation(\n UpdateAccountDocument,\n options\n );\n}\nexport type UpdateAccountMutationHookResult = ReturnType;\nexport type UpdateAccountMutationResult = Apollo.MutationResult;\nexport type UpdateAccountMutationOptions = Apollo.BaseMutationOptions<\n UpdateAccountMutation,\n UpdateAccountMutationVariables\n>;\nexport const GetAgencyUserDocument = gql`\n query GetAgencyUser {\n agencyUser {\n ...AgencyUserFields\n agency {\n id\n name\n }\n }\n }\n ${AgencyUserFieldsFragmentDoc}\n`;\n\n/**\n * __useGetAgencyUserQuery__\n *\n * To run a query within a React component, call `useGetAgencyUserQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetAgencyUserQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetAgencyUserQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetAgencyUserQuery(\n baseOptions?: Apollo.QueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useQuery(\n GetAgencyUserDocument,\n options\n );\n}\nexport function useGetAgencyUserLazyQuery(\n baseOptions?: Apollo.LazyQueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useLazyQuery(\n GetAgencyUserDocument,\n options\n );\n}\nexport function useGetAgencyUserSuspenseQuery(\n baseOptions?: Apollo.SuspenseQueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useSuspenseQuery(\n GetAgencyUserDocument,\n options\n );\n}\nexport type GetAgencyUserQueryHookResult = ReturnType;\nexport type GetAgencyUserLazyQueryHookResult = ReturnType;\nexport type GetAgencyUserSuspenseQueryHookResult = ReturnType;\nexport type GetAgencyUserQueryResult = Apollo.QueryResult<\n GetAgencyUserQuery,\n GetAgencyUserQueryVariables\n>;\nexport const GetAgencyUsersDocument = gql`\n query GetAgencyUsers {\n agencyUsers {\n ...AgencyUserFields\n }\n }\n ${AgencyUserFieldsFragmentDoc}\n`;\n\n/**\n * __useGetAgencyUsersQuery__\n *\n * To run a query within a React component, call `useGetAgencyUsersQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetAgencyUsersQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetAgencyUsersQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetAgencyUsersQuery(\n baseOptions?: Apollo.QueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useQuery(\n GetAgencyUsersDocument,\n options\n );\n}\nexport function useGetAgencyUsersLazyQuery(\n baseOptions?: Apollo.LazyQueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useLazyQuery(\n GetAgencyUsersDocument,\n options\n );\n}\nexport function useGetAgencyUsersSuspenseQuery(\n baseOptions?: Apollo.SuspenseQueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useSuspenseQuery(\n GetAgencyUsersDocument,\n options\n );\n}\nexport type GetAgencyUsersQueryHookResult = ReturnType;\nexport type GetAgencyUsersLazyQueryHookResult = ReturnType;\nexport type GetAgencyUsersSuspenseQueryHookResult = ReturnType<\n typeof useGetAgencyUsersSuspenseQuery\n>;\nexport type GetAgencyUsersQueryResult = Apollo.QueryResult<\n GetAgencyUsersQuery,\n GetAgencyUsersQueryVariables\n>;\nexport const SignInDocument = gql`\n mutation SignIn($email: String!) {\n agencySignIn(email: $email) {\n ...AgencySignInFields\n }\n }\n ${AgencySignInFieldsFragmentDoc}\n`;\nexport type SignInMutationFn = Apollo.MutationFunction;\n\n/**\n * __useSignInMutation__\n *\n * To run a mutation, you first call `useSignInMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useSignInMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [signInMutation, { data, loading, error }] = useSignInMutation({\n * variables: {\n * email: // value for 'email'\n * },\n * });\n */\nexport function useSignInMutation(\n baseOptions?: Apollo.MutationHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useMutation(SignInDocument, options);\n}\nexport type SignInMutationHookResult = ReturnType;\nexport type SignInMutationResult = Apollo.MutationResult;\nexport type SignInMutationOptions = Apollo.BaseMutationOptions<\n SignInMutation,\n SignInMutationVariables\n>;\nexport const SignInCompleteDocument = gql`\n mutation SignInComplete($email: String!, $code: String!) {\n agencySignIn(email: $email, code: $code) {\n ...AgencySignInFields\n }\n }\n ${AgencySignInFieldsFragmentDoc}\n`;\nexport type SignInCompleteMutationFn = Apollo.MutationFunction<\n SignInCompleteMutation,\n SignInCompleteMutationVariables\n>;\n\n/**\n * __useSignInCompleteMutation__\n *\n * To run a mutation, you first call `useSignInCompleteMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useSignInCompleteMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [signInCompleteMutation, { data, loading, error }] = useSignInCompleteMutation({\n * variables: {\n * email: // value for 'email'\n * code: // value for 'code'\n * },\n * });\n */\nexport function useSignInCompleteMutation(\n baseOptions?: Apollo.MutationHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useMutation(\n SignInCompleteDocument,\n options\n );\n}\nexport type SignInCompleteMutationHookResult = ReturnType;\nexport type SignInCompleteMutationResult = Apollo.MutationResult;\nexport type SignInCompleteMutationOptions = Apollo.BaseMutationOptions<\n SignInCompleteMutation,\n SignInCompleteMutationVariables\n>;\nexport const GetInsuranceCarriersDocument = gql`\n query GetInsuranceCarriers {\n carriers {\n ...InsuranceCarrierFields\n }\n }\n ${InsuranceCarrierFieldsFragmentDoc}\n`;\n\n/**\n * __useGetInsuranceCarriersQuery__\n *\n * To run a query within a React component, call `useGetInsuranceCarriersQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetInsuranceCarriersQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetInsuranceCarriersQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetInsuranceCarriersQuery(\n baseOptions?: Apollo.QueryHookOptions<\n GetInsuranceCarriersQuery,\n GetInsuranceCarriersQueryVariables\n >\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useQuery(\n GetInsuranceCarriersDocument,\n options\n );\n}\nexport function useGetInsuranceCarriersLazyQuery(\n baseOptions?: Apollo.LazyQueryHookOptions<\n GetInsuranceCarriersQuery,\n GetInsuranceCarriersQueryVariables\n >\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useLazyQuery(\n GetInsuranceCarriersDocument,\n options\n );\n}\nexport function useGetInsuranceCarriersSuspenseQuery(\n baseOptions?: Apollo.SuspenseQueryHookOptions<\n GetInsuranceCarriersQuery,\n GetInsuranceCarriersQueryVariables\n >\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useSuspenseQuery(\n GetInsuranceCarriersDocument,\n options\n );\n}\nexport type GetInsuranceCarriersQueryHookResult = ReturnType;\nexport type GetInsuranceCarriersLazyQueryHookResult = ReturnType<\n typeof useGetInsuranceCarriersLazyQuery\n>;\nexport type GetInsuranceCarriersSuspenseQueryHookResult = ReturnType<\n typeof useGetInsuranceCarriersSuspenseQuery\n>;\nexport type GetInsuranceCarriersQueryResult = Apollo.QueryResult<\n GetInsuranceCarriersQuery,\n GetInsuranceCarriersQueryVariables\n>;\nexport const GetBusinessPoliciesDocument = gql`\n query GetBusinessPolicies {\n businessPolicies {\n ...BusinessPolicyFields\n }\n }\n ${BusinessPolicyFieldsFragmentDoc}\n`;\n\n/**\n * __useGetBusinessPoliciesQuery__\n *\n * To run a query within a React component, call `useGetBusinessPoliciesQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetBusinessPoliciesQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetBusinessPoliciesQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetBusinessPoliciesQuery(\n baseOptions?: Apollo.QueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useQuery(\n GetBusinessPoliciesDocument,\n options\n );\n}\nexport function useGetBusinessPoliciesLazyQuery(\n baseOptions?: Apollo.LazyQueryHookOptions<\n GetBusinessPoliciesQuery,\n GetBusinessPoliciesQueryVariables\n >\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useLazyQuery(\n GetBusinessPoliciesDocument,\n options\n );\n}\nexport function useGetBusinessPoliciesSuspenseQuery(\n baseOptions?: Apollo.SuspenseQueryHookOptions<\n GetBusinessPoliciesQuery,\n GetBusinessPoliciesQueryVariables\n >\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useSuspenseQuery(\n GetBusinessPoliciesDocument,\n options\n );\n}\nexport type GetBusinessPoliciesQueryHookResult = ReturnType;\nexport type GetBusinessPoliciesLazyQueryHookResult = ReturnType<\n typeof useGetBusinessPoliciesLazyQuery\n>;\nexport type GetBusinessPoliciesSuspenseQueryHookResult = ReturnType<\n typeof useGetBusinessPoliciesSuspenseQuery\n>;\nexport type GetBusinessPoliciesQueryResult = Apollo.QueryResult<\n GetBusinessPoliciesQuery,\n GetBusinessPoliciesQueryVariables\n>;\nexport const GetBusinessPolicyDocument = gql`\n query GetBusinessPolicy($id: ID!) {\n businessPolicy(id: $id) {\n ...BusinessPolicyFields\n ...BusinessPolicyDetailFields\n ...BusinessPolicyFileFields\n }\n }\n ${BusinessPolicyFieldsFragmentDoc}\n ${BusinessPolicyDetailFieldsFragmentDoc}\n ${BusinessPolicyFileFieldsFragmentDoc}\n`;\n\n/**\n * __useGetBusinessPolicyQuery__\n *\n * To run a query within a React component, call `useGetBusinessPolicyQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetBusinessPolicyQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetBusinessPolicyQuery({\n * variables: {\n * id: // value for 'id'\n * },\n * });\n */\nexport function useGetBusinessPolicyQuery(\n baseOptions: Apollo.QueryHookOptions &\n ({ variables: GetBusinessPolicyQueryVariables; skip?: boolean } | { skip: boolean })\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useQuery(\n GetBusinessPolicyDocument,\n options\n );\n}\nexport function useGetBusinessPolicyLazyQuery(\n baseOptions?: Apollo.LazyQueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useLazyQuery(\n GetBusinessPolicyDocument,\n options\n );\n}\nexport function useGetBusinessPolicySuspenseQuery(\n baseOptions?: Apollo.SuspenseQueryHookOptions<\n GetBusinessPolicyQuery,\n GetBusinessPolicyQueryVariables\n >\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useSuspenseQuery(\n GetBusinessPolicyDocument,\n options\n );\n}\nexport type GetBusinessPolicyQueryHookResult = ReturnType;\nexport type GetBusinessPolicyLazyQueryHookResult = ReturnType;\nexport type GetBusinessPolicySuspenseQueryHookResult = ReturnType<\n typeof useGetBusinessPolicySuspenseQuery\n>;\nexport type GetBusinessPolicyQueryResult = Apollo.QueryResult<\n GetBusinessPolicyQuery,\n GetBusinessPolicyQueryVariables\n>;\nexport const CreateBusinessPoliciesDocument = gql`\n mutation CreateBusinessPolicies($input: CreateBusinessPoliciesInput!) {\n createBusinessPolicies(req: $input) {\n ...BusinessPolicyFields\n }\n }\n ${BusinessPolicyFieldsFragmentDoc}\n`;\nexport type CreateBusinessPoliciesMutationFn = Apollo.MutationFunction<\n CreateBusinessPoliciesMutation,\n CreateBusinessPoliciesMutationVariables\n>;\n\n/**\n * __useCreateBusinessPoliciesMutation__\n *\n * To run a mutation, you first call `useCreateBusinessPoliciesMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useCreateBusinessPoliciesMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [createBusinessPoliciesMutation, { data, loading, error }] = useCreateBusinessPoliciesMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useCreateBusinessPoliciesMutation(\n baseOptions?: Apollo.MutationHookOptions<\n CreateBusinessPoliciesMutation,\n CreateBusinessPoliciesMutationVariables\n >\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useMutation<\n CreateBusinessPoliciesMutation,\n CreateBusinessPoliciesMutationVariables\n >(CreateBusinessPoliciesDocument, options);\n}\nexport type CreateBusinessPoliciesMutationHookResult = ReturnType<\n typeof useCreateBusinessPoliciesMutation\n>;\nexport type CreateBusinessPoliciesMutationResult =\n Apollo.MutationResult;\nexport type CreateBusinessPoliciesMutationOptions = Apollo.BaseMutationOptions<\n CreateBusinessPoliciesMutation,\n CreateBusinessPoliciesMutationVariables\n>;\nexport const UpdateBusinessPolicyDocument = gql`\n mutation UpdateBusinessPolicy($id: ID!, $input: UpdateBusinessPolicyInput!) {\n updateBusinessPolicy(id: $id, req: $input) {\n ...BusinessPolicyFields\n }\n }\n ${BusinessPolicyFieldsFragmentDoc}\n`;\nexport type UpdateBusinessPolicyMutationFn = Apollo.MutationFunction<\n UpdateBusinessPolicyMutation,\n UpdateBusinessPolicyMutationVariables\n>;\n\n/**\n * __useUpdateBusinessPolicyMutation__\n *\n * To run a mutation, you first call `useUpdateBusinessPolicyMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useUpdateBusinessPolicyMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [updateBusinessPolicyMutation, { data, loading, error }] = useUpdateBusinessPolicyMutation({\n * variables: {\n * id: // value for 'id'\n * input: // value for 'input'\n * },\n * });\n */\nexport function useUpdateBusinessPolicyMutation(\n baseOptions?: Apollo.MutationHookOptions<\n UpdateBusinessPolicyMutation,\n UpdateBusinessPolicyMutationVariables\n >\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useMutation(\n UpdateBusinessPolicyDocument,\n options\n );\n}\nexport type UpdateBusinessPolicyMutationHookResult = ReturnType<\n typeof useUpdateBusinessPolicyMutation\n>;\nexport type UpdateBusinessPolicyMutationResult =\n Apollo.MutationResult;\nexport type UpdateBusinessPolicyMutationOptions = Apollo.BaseMutationOptions<\n UpdateBusinessPolicyMutation,\n UpdateBusinessPolicyMutationVariables\n>;\nexport const UploadPolicyFileDocument = gql`\n mutation UploadPolicyFile($policyId: ID!, $file: UploadFileInput!) {\n uploadPolicyFile(policyId: $policyId, file: $file) {\n ...FileFields\n }\n }\n ${FileFieldsFragmentDoc}\n`;\nexport type UploadPolicyFileMutationFn = Apollo.MutationFunction<\n UploadPolicyFileMutation,\n UploadPolicyFileMutationVariables\n>;\n\n/**\n * __useUploadPolicyFileMutation__\n *\n * To run a mutation, you first call `useUploadPolicyFileMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useUploadPolicyFileMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [uploadPolicyFileMutation, { data, loading, error }] = useUploadPolicyFileMutation({\n * variables: {\n * policyId: // value for 'policyId'\n * file: // value for 'file'\n * },\n * });\n */\nexport function useUploadPolicyFileMutation(\n baseOptions?: Apollo.MutationHookOptions<\n UploadPolicyFileMutation,\n UploadPolicyFileMutationVariables\n >\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useMutation(\n UploadPolicyFileDocument,\n options\n );\n}\nexport type UploadPolicyFileMutationHookResult = ReturnType;\nexport type UploadPolicyFileMutationResult = Apollo.MutationResult;\nexport type UploadPolicyFileMutationOptions = Apollo.BaseMutationOptions<\n UploadPolicyFileMutation,\n UploadPolicyFileMutationVariables\n>;\nexport const GetCallsDocument = gql`\n query GetCalls {\n calls {\n ...CallFields\n }\n }\n ${CallFieldsFragmentDoc}\n`;\n\n/**\n * __useGetCallsQuery__\n *\n * To run a query within a React component, call `useGetCallsQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetCallsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetCallsQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetCallsQuery(\n baseOptions?: Apollo.QueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useQuery(GetCallsDocument, options);\n}\nexport function useGetCallsLazyQuery(\n baseOptions?: Apollo.LazyQueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useLazyQuery(GetCallsDocument, options);\n}\nexport function useGetCallsSuspenseQuery(\n baseOptions?: Apollo.SuspenseQueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useSuspenseQuery(GetCallsDocument, options);\n}\nexport type GetCallsQueryHookResult = ReturnType;\nexport type GetCallsLazyQueryHookResult = ReturnType;\nexport type GetCallsSuspenseQueryHookResult = ReturnType;\nexport type GetCallsQueryResult = Apollo.QueryResult;\nexport const GetCallDocument = gql`\n query GetCall($id: ID!) {\n call(id: $id) {\n ...CallFields\n ...CallTranscriptFields\n }\n }\n ${CallFieldsFragmentDoc}\n ${CallTranscriptFieldsFragmentDoc}\n`;\n\n/**\n * __useGetCallQuery__\n *\n * To run a query within a React component, call `useGetCallQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetCallQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetCallQuery({\n * variables: {\n * id: // value for 'id'\n * },\n * });\n */\nexport function useGetCallQuery(\n baseOptions: Apollo.QueryHookOptions &\n ({ variables: GetCallQueryVariables; skip?: boolean } | { skip: boolean })\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useQuery(GetCallDocument, options);\n}\nexport function useGetCallLazyQuery(\n baseOptions?: Apollo.LazyQueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useLazyQuery(GetCallDocument, options);\n}\nexport function useGetCallSuspenseQuery(\n baseOptions?: Apollo.SuspenseQueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useSuspenseQuery(GetCallDocument, options);\n}\nexport type GetCallQueryHookResult = ReturnType;\nexport type GetCallLazyQueryHookResult = ReturnType;\nexport type GetCallSuspenseQueryHookResult = ReturnType;\nexport type GetCallQueryResult = Apollo.QueryResult;\nexport const GetCaraWorkspaceDocument = gql`\n query GetCaraWorkspace($id: ID!) {\n caraWorkspace(id: $id) {\n ...CaraWorkspaceFields\n }\n }\n ${CaraWorkspaceFieldsFragmentDoc}\n`;\n\n/**\n * __useGetCaraWorkspaceQuery__\n *\n * To run a query within a React component, call `useGetCaraWorkspaceQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetCaraWorkspaceQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetCaraWorkspaceQuery({\n * variables: {\n * id: // value for 'id'\n * },\n * });\n */\nexport function useGetCaraWorkspaceQuery(\n baseOptions: Apollo.QueryHookOptions &\n ({ variables: GetCaraWorkspaceQueryVariables; skip?: boolean } | { skip: boolean })\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useQuery(\n GetCaraWorkspaceDocument,\n options\n );\n}\nexport function useGetCaraWorkspaceLazyQuery(\n baseOptions?: Apollo.LazyQueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useLazyQuery(\n GetCaraWorkspaceDocument,\n options\n );\n}\nexport function useGetCaraWorkspaceSuspenseQuery(\n baseOptions?: Apollo.SuspenseQueryHookOptions<\n GetCaraWorkspaceQuery,\n GetCaraWorkspaceQueryVariables\n >\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useSuspenseQuery(\n GetCaraWorkspaceDocument,\n options\n );\n}\nexport type GetCaraWorkspaceQueryHookResult = ReturnType;\nexport type GetCaraWorkspaceLazyQueryHookResult = ReturnType;\nexport type GetCaraWorkspaceSuspenseQueryHookResult = ReturnType<\n typeof useGetCaraWorkspaceSuspenseQuery\n>;\nexport type GetCaraWorkspaceQueryResult = Apollo.QueryResult<\n GetCaraWorkspaceQuery,\n GetCaraWorkspaceQueryVariables\n>;\nexport const GetCaraWorkspacesDocument = gql`\n query GetCaraWorkspaces {\n caraWorkspaces {\n ...CaraWorkspaceOverviewFields\n }\n }\n ${CaraWorkspaceOverviewFieldsFragmentDoc}\n`;\n\n/**\n * __useGetCaraWorkspacesQuery__\n *\n * To run a query within a React component, call `useGetCaraWorkspacesQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetCaraWorkspacesQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetCaraWorkspacesQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetCaraWorkspacesQuery(\n baseOptions?: Apollo.QueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useQuery(\n GetCaraWorkspacesDocument,\n options\n );\n}\nexport function useGetCaraWorkspacesLazyQuery(\n baseOptions?: Apollo.LazyQueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useLazyQuery(\n GetCaraWorkspacesDocument,\n options\n );\n}\nexport function useGetCaraWorkspacesSuspenseQuery(\n baseOptions?: Apollo.SuspenseQueryHookOptions<\n GetCaraWorkspacesQuery,\n GetCaraWorkspacesQueryVariables\n >\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useSuspenseQuery(\n GetCaraWorkspacesDocument,\n options\n );\n}\nexport type GetCaraWorkspacesQueryHookResult = ReturnType;\nexport type GetCaraWorkspacesLazyQueryHookResult = ReturnType;\nexport type GetCaraWorkspacesSuspenseQueryHookResult = ReturnType<\n typeof useGetCaraWorkspacesSuspenseQuery\n>;\nexport type GetCaraWorkspacesQueryResult = Apollo.QueryResult<\n GetCaraWorkspacesQuery,\n GetCaraWorkspacesQueryVariables\n>;\nexport const CreateCaraWorkspaceDocument = gql`\n mutation CreateCaraWorkspace($input: CaraWorkspaceMessageInput!) {\n createCaraWorkspace(input: $input) {\n id\n }\n }\n`;\nexport type CreateCaraWorkspaceMutationFn = Apollo.MutationFunction<\n CreateCaraWorkspaceMutation,\n CreateCaraWorkspaceMutationVariables\n>;\n\n/**\n * __useCreateCaraWorkspaceMutation__\n *\n * To run a mutation, you first call `useCreateCaraWorkspaceMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useCreateCaraWorkspaceMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [createCaraWorkspaceMutation, { data, loading, error }] = useCreateCaraWorkspaceMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useCreateCaraWorkspaceMutation(\n baseOptions?: Apollo.MutationHookOptions<\n CreateCaraWorkspaceMutation,\n CreateCaraWorkspaceMutationVariables\n >\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useMutation(\n CreateCaraWorkspaceDocument,\n options\n );\n}\nexport type CreateCaraWorkspaceMutationHookResult = ReturnType<\n typeof useCreateCaraWorkspaceMutation\n>;\nexport type CreateCaraWorkspaceMutationResult = Apollo.MutationResult;\nexport type CreateCaraWorkspaceMutationOptions = Apollo.BaseMutationOptions<\n CreateCaraWorkspaceMutation,\n CreateCaraWorkspaceMutationVariables\n>;\nexport const AddCaraWorkspaceMessageDocument = gql`\n mutation AddCaraWorkspaceMessage($id: ID!, $input: CaraWorkspaceMessageInput!) {\n addCaraWorkspaceMessage(id: $id, input: $input) {\n ...CaraWorkspaceFields\n }\n }\n ${CaraWorkspaceFieldsFragmentDoc}\n`;\nexport type AddCaraWorkspaceMessageMutationFn = Apollo.MutationFunction<\n AddCaraWorkspaceMessageMutation,\n AddCaraWorkspaceMessageMutationVariables\n>;\n\n/**\n * __useAddCaraWorkspaceMessageMutation__\n *\n * To run a mutation, you first call `useAddCaraWorkspaceMessageMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useAddCaraWorkspaceMessageMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [addCaraWorkspaceMessageMutation, { data, loading, error }] = useAddCaraWorkspaceMessageMutation({\n * variables: {\n * id: // value for 'id'\n * input: // value for 'input'\n * },\n * });\n */\nexport function useAddCaraWorkspaceMessageMutation(\n baseOptions?: Apollo.MutationHookOptions<\n AddCaraWorkspaceMessageMutation,\n AddCaraWorkspaceMessageMutationVariables\n >\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useMutation<\n AddCaraWorkspaceMessageMutation,\n AddCaraWorkspaceMessageMutationVariables\n >(AddCaraWorkspaceMessageDocument, options);\n}\nexport type AddCaraWorkspaceMessageMutationHookResult = ReturnType<\n typeof useAddCaraWorkspaceMessageMutation\n>;\nexport type AddCaraWorkspaceMessageMutationResult =\n Apollo.MutationResult;\nexport type AddCaraWorkspaceMessageMutationOptions = Apollo.BaseMutationOptions<\n AddCaraWorkspaceMessageMutation,\n AddCaraWorkspaceMessageMutationVariables\n>;\nexport const WatchCaraWorkspaceDocument = gql`\n subscription WatchCaraWorkspace($id: ID!) {\n watchCaraWorkspace(id: $id) {\n ...CaraWorkspaceFields\n }\n }\n ${CaraWorkspaceFieldsFragmentDoc}\n`;\n\n/**\n * __useWatchCaraWorkspaceSubscription__\n *\n * To run a query within a React component, call `useWatchCaraWorkspaceSubscription` and pass it any options that fit your needs.\n * When your component renders, `useWatchCaraWorkspaceSubscription` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the subscription, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useWatchCaraWorkspaceSubscription({\n * variables: {\n * id: // value for 'id'\n * },\n * });\n */\nexport function useWatchCaraWorkspaceSubscription(\n baseOptions: Apollo.SubscriptionHookOptions<\n WatchCaraWorkspaceSubscription,\n WatchCaraWorkspaceSubscriptionVariables\n > &\n ({ variables: WatchCaraWorkspaceSubscriptionVariables; skip?: boolean } | { skip: boolean })\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useSubscription<\n WatchCaraWorkspaceSubscription,\n WatchCaraWorkspaceSubscriptionVariables\n >(WatchCaraWorkspaceDocument, options);\n}\nexport type WatchCaraWorkspaceSubscriptionHookResult = ReturnType<\n typeof useWatchCaraWorkspaceSubscription\n>;\nexport type WatchCaraWorkspaceSubscriptionResult =\n Apollo.SubscriptionResult;\nexport const GetCertificateDocument = gql`\n query GetCertificate($id: ID!) {\n certificate(id: $id) {\n ...CertificateOfLiabilityInsuranceFields\n }\n }\n ${CertificateOfLiabilityInsuranceFieldsFragmentDoc}\n`;\n\n/**\n * __useGetCertificateQuery__\n *\n * To run a query within a React component, call `useGetCertificateQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetCertificateQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetCertificateQuery({\n * variables: {\n * id: // value for 'id'\n * },\n * });\n */\nexport function useGetCertificateQuery(\n baseOptions: Apollo.QueryHookOptions &\n ({ variables: GetCertificateQueryVariables; skip?: boolean } | { skip: boolean })\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useQuery(\n GetCertificateDocument,\n options\n );\n}\nexport function useGetCertificateLazyQuery(\n baseOptions?: Apollo.LazyQueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useLazyQuery(\n GetCertificateDocument,\n options\n );\n}\nexport function useGetCertificateSuspenseQuery(\n baseOptions?: Apollo.SuspenseQueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useSuspenseQuery(\n GetCertificateDocument,\n options\n );\n}\nexport type GetCertificateQueryHookResult = ReturnType;\nexport type GetCertificateLazyQueryHookResult = ReturnType;\nexport type GetCertificateSuspenseQueryHookResult = ReturnType<\n typeof useGetCertificateSuspenseQuery\n>;\nexport type GetCertificateQueryResult = Apollo.QueryResult<\n GetCertificateQuery,\n GetCertificateQueryVariables\n>;\nexport const CreateCertificateDocument = gql`\n mutation CreateCertificate($input: CreateCertificateInput!) {\n createCertificate(input: $input) {\n ...CertificateOfLiabilityInsuranceFields\n }\n }\n ${CertificateOfLiabilityInsuranceFieldsFragmentDoc}\n`;\nexport type CreateCertificateMutationFn = Apollo.MutationFunction<\n CreateCertificateMutation,\n CreateCertificateMutationVariables\n>;\n\n/**\n * __useCreateCertificateMutation__\n *\n * To run a mutation, you first call `useCreateCertificateMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useCreateCertificateMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [createCertificateMutation, { data, loading, error }] = useCreateCertificateMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useCreateCertificateMutation(\n baseOptions?: Apollo.MutationHookOptions<\n CreateCertificateMutation,\n CreateCertificateMutationVariables\n >\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useMutation(\n CreateCertificateDocument,\n options\n );\n}\nexport type CreateCertificateMutationHookResult = ReturnType;\nexport type CreateCertificateMutationResult = Apollo.MutationResult;\nexport type CreateCertificateMutationOptions = Apollo.BaseMutationOptions<\n CreateCertificateMutation,\n CreateCertificateMutationVariables\n>;\nexport const GetEmailThreadsDocument = gql`\n query GetEmailThreads {\n emailThreads {\n ...EmailThreadFields\n }\n }\n ${EmailThreadFieldsFragmentDoc}\n`;\n\n/**\n * __useGetEmailThreadsQuery__\n *\n * To run a query within a React component, call `useGetEmailThreadsQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetEmailThreadsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetEmailThreadsQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetEmailThreadsQuery(\n baseOptions?: Apollo.QueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useQuery(\n GetEmailThreadsDocument,\n options\n );\n}\nexport function useGetEmailThreadsLazyQuery(\n baseOptions?: Apollo.LazyQueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useLazyQuery(\n GetEmailThreadsDocument,\n options\n );\n}\nexport function useGetEmailThreadsSuspenseQuery(\n baseOptions?: Apollo.SuspenseQueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useSuspenseQuery(\n GetEmailThreadsDocument,\n options\n );\n}\nexport type GetEmailThreadsQueryHookResult = ReturnType;\nexport type GetEmailThreadsLazyQueryHookResult = ReturnType;\nexport type GetEmailThreadsSuspenseQueryHookResult = ReturnType<\n typeof useGetEmailThreadsSuspenseQuery\n>;\nexport type GetEmailThreadsQueryResult = Apollo.QueryResult<\n GetEmailThreadsQuery,\n GetEmailThreadsQueryVariables\n>;\nexport const GetEmailThreadDocument = gql`\n query GetEmailThread($id: ID!) {\n emailThread(id: $id) {\n ...EmailThreadFields\n ...EmailThreadConversationFields\n }\n }\n ${EmailThreadFieldsFragmentDoc}\n ${EmailThreadConversationFieldsFragmentDoc}\n`;\n\n/**\n * __useGetEmailThreadQuery__\n *\n * To run a query within a React component, call `useGetEmailThreadQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetEmailThreadQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetEmailThreadQuery({\n * variables: {\n * id: // value for 'id'\n * },\n * });\n */\nexport function useGetEmailThreadQuery(\n baseOptions: Apollo.QueryHookOptions &\n ({ variables: GetEmailThreadQueryVariables; skip?: boolean } | { skip: boolean })\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useQuery(\n GetEmailThreadDocument,\n options\n );\n}\nexport function useGetEmailThreadLazyQuery(\n baseOptions?: Apollo.LazyQueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useLazyQuery(\n GetEmailThreadDocument,\n options\n );\n}\nexport function useGetEmailThreadSuspenseQuery(\n baseOptions?: Apollo.SuspenseQueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useSuspenseQuery(\n GetEmailThreadDocument,\n options\n );\n}\nexport type GetEmailThreadQueryHookResult = ReturnType;\nexport type GetEmailThreadLazyQueryHookResult = ReturnType;\nexport type GetEmailThreadSuspenseQueryHookResult = ReturnType<\n typeof useGetEmailThreadSuspenseQuery\n>;\nexport type GetEmailThreadQueryResult = Apollo.QueryResult<\n GetEmailThreadQuery,\n GetEmailThreadQueryVariables\n>;\nexport const DeleteFileDocument = gql`\n mutation DeleteFile($fileId: ID!) {\n deleteFile(fileId: $fileId) {\n ...FileFields\n }\n }\n ${FileFieldsFragmentDoc}\n`;\nexport type DeleteFileMutationFn = Apollo.MutationFunction<\n DeleteFileMutation,\n DeleteFileMutationVariables\n>;\n\n/**\n * __useDeleteFileMutation__\n *\n * To run a mutation, you first call `useDeleteFileMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useDeleteFileMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [deleteFileMutation, { data, loading, error }] = useDeleteFileMutation({\n * variables: {\n * fileId: // value for 'fileId'\n * },\n * });\n */\nexport function useDeleteFileMutation(\n baseOptions?: Apollo.MutationHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useMutation(\n DeleteFileDocument,\n options\n );\n}\nexport type DeleteFileMutationHookResult = ReturnType;\nexport type DeleteFileMutationResult = Apollo.MutationResult;\nexport type DeleteFileMutationOptions = Apollo.BaseMutationOptions<\n DeleteFileMutation,\n DeleteFileMutationVariables\n>;\nexport const GetPolicyExplorerConversationDocument = gql`\n query GetPolicyExplorerConversation($policyId: ID!) {\n policyExplorerConversation(policyId: $policyId) {\n ...PolicyExplorerConversationMessageFields\n }\n }\n ${PolicyExplorerConversationMessageFieldsFragmentDoc}\n`;\n\n/**\n * __useGetPolicyExplorerConversationQuery__\n *\n * To run a query within a React component, call `useGetPolicyExplorerConversationQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetPolicyExplorerConversationQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetPolicyExplorerConversationQuery({\n * variables: {\n * policyId: // value for 'policyId'\n * },\n * });\n */\nexport function useGetPolicyExplorerConversationQuery(\n baseOptions: Apollo.QueryHookOptions<\n GetPolicyExplorerConversationQuery,\n GetPolicyExplorerConversationQueryVariables\n > &\n ({ variables: GetPolicyExplorerConversationQueryVariables; skip?: boolean } | { skip: boolean })\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useQuery<\n GetPolicyExplorerConversationQuery,\n GetPolicyExplorerConversationQueryVariables\n >(GetPolicyExplorerConversationDocument, options);\n}\nexport function useGetPolicyExplorerConversationLazyQuery(\n baseOptions?: Apollo.LazyQueryHookOptions<\n GetPolicyExplorerConversationQuery,\n GetPolicyExplorerConversationQueryVariables\n >\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useLazyQuery<\n GetPolicyExplorerConversationQuery,\n GetPolicyExplorerConversationQueryVariables\n >(GetPolicyExplorerConversationDocument, options);\n}\nexport function useGetPolicyExplorerConversationSuspenseQuery(\n baseOptions?: Apollo.SuspenseQueryHookOptions<\n GetPolicyExplorerConversationQuery,\n GetPolicyExplorerConversationQueryVariables\n >\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useSuspenseQuery<\n GetPolicyExplorerConversationQuery,\n GetPolicyExplorerConversationQueryVariables\n >(GetPolicyExplorerConversationDocument, options);\n}\nexport type GetPolicyExplorerConversationQueryHookResult = ReturnType<\n typeof useGetPolicyExplorerConversationQuery\n>;\nexport type GetPolicyExplorerConversationLazyQueryHookResult = ReturnType<\n typeof useGetPolicyExplorerConversationLazyQuery\n>;\nexport type GetPolicyExplorerConversationSuspenseQueryHookResult = ReturnType<\n typeof useGetPolicyExplorerConversationSuspenseQuery\n>;\nexport type GetPolicyExplorerConversationQueryResult = Apollo.QueryResult<\n GetPolicyExplorerConversationQuery,\n GetPolicyExplorerConversationQueryVariables\n>;\nexport const AddPolicyExplorerConversationMessageDocument = gql`\n mutation AddPolicyExplorerConversationMessage($policyId: ID!, $message: String!) {\n addPolicyExplorerConversationMessage(policyId: $policyId, message: $message) {\n ...PolicyExplorerConversationMessageFields\n }\n }\n ${PolicyExplorerConversationMessageFieldsFragmentDoc}\n`;\nexport type AddPolicyExplorerConversationMessageMutationFn = Apollo.MutationFunction<\n AddPolicyExplorerConversationMessageMutation,\n AddPolicyExplorerConversationMessageMutationVariables\n>;\n\n/**\n * __useAddPolicyExplorerConversationMessageMutation__\n *\n * To run a mutation, you first call `useAddPolicyExplorerConversationMessageMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useAddPolicyExplorerConversationMessageMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [addPolicyExplorerConversationMessageMutation, { data, loading, error }] = useAddPolicyExplorerConversationMessageMutation({\n * variables: {\n * policyId: // value for 'policyId'\n * message: // value for 'message'\n * },\n * });\n */\nexport function useAddPolicyExplorerConversationMessageMutation(\n baseOptions?: Apollo.MutationHookOptions<\n AddPolicyExplorerConversationMessageMutation,\n AddPolicyExplorerConversationMessageMutationVariables\n >\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useMutation<\n AddPolicyExplorerConversationMessageMutation,\n AddPolicyExplorerConversationMessageMutationVariables\n >(AddPolicyExplorerConversationMessageDocument, options);\n}\nexport type AddPolicyExplorerConversationMessageMutationHookResult = ReturnType<\n typeof useAddPolicyExplorerConversationMessageMutation\n>;\nexport type AddPolicyExplorerConversationMessageMutationResult =\n Apollo.MutationResult;\nexport type AddPolicyExplorerConversationMessageMutationOptions = Apollo.BaseMutationOptions<\n AddPolicyExplorerConversationMessageMutation,\n AddPolicyExplorerConversationMessageMutationVariables\n>;\nexport const GetServiceRequestsDocument = gql`\n query GetServiceRequests {\n serviceRequests {\n ...ServiceRequestFields\n }\n }\n ${ServiceRequestFieldsFragmentDoc}\n`;\n\n/**\n * __useGetServiceRequestsQuery__\n *\n * To run a query within a React component, call `useGetServiceRequestsQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetServiceRequestsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetServiceRequestsQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetServiceRequestsQuery(\n baseOptions?: Apollo.QueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useQuery(\n GetServiceRequestsDocument,\n options\n );\n}\nexport function useGetServiceRequestsLazyQuery(\n baseOptions?: Apollo.LazyQueryHookOptions<\n GetServiceRequestsQuery,\n GetServiceRequestsQueryVariables\n >\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useLazyQuery(\n GetServiceRequestsDocument,\n options\n );\n}\nexport function useGetServiceRequestsSuspenseQuery(\n baseOptions?: Apollo.SuspenseQueryHookOptions<\n GetServiceRequestsQuery,\n GetServiceRequestsQueryVariables\n >\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useSuspenseQuery(\n GetServiceRequestsDocument,\n options\n );\n}\nexport type GetServiceRequestsQueryHookResult = ReturnType;\nexport type GetServiceRequestsLazyQueryHookResult = ReturnType<\n typeof useGetServiceRequestsLazyQuery\n>;\nexport type GetServiceRequestsSuspenseQueryHookResult = ReturnType<\n typeof useGetServiceRequestsSuspenseQuery\n>;\nexport type GetServiceRequestsQueryResult = Apollo.QueryResult<\n GetServiceRequestsQuery,\n GetServiceRequestsQueryVariables\n>;\nexport const GetServiceRequestDocument = gql`\n query GetServiceRequest($id: ID!) {\n serviceRequest(id: $id) {\n ...ServiceRequestFields\n ...ServiceRequestCallFields\n }\n }\n ${ServiceRequestFieldsFragmentDoc}\n ${ServiceRequestCallFieldsFragmentDoc}\n`;\n\n/**\n * __useGetServiceRequestQuery__\n *\n * To run a query within a React component, call `useGetServiceRequestQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetServiceRequestQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetServiceRequestQuery({\n * variables: {\n * id: // value for 'id'\n * },\n * });\n */\nexport function useGetServiceRequestQuery(\n baseOptions: Apollo.QueryHookOptions &\n ({ variables: GetServiceRequestQueryVariables; skip?: boolean } | { skip: boolean })\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useQuery(\n GetServiceRequestDocument,\n options\n );\n}\nexport function useGetServiceRequestLazyQuery(\n baseOptions?: Apollo.LazyQueryHookOptions\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useLazyQuery(\n GetServiceRequestDocument,\n options\n );\n}\nexport function useGetServiceRequestSuspenseQuery(\n baseOptions?: Apollo.SuspenseQueryHookOptions<\n GetServiceRequestQuery,\n GetServiceRequestQueryVariables\n >\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useSuspenseQuery(\n GetServiceRequestDocument,\n options\n );\n}\nexport type GetServiceRequestQueryHookResult = ReturnType;\nexport type GetServiceRequestLazyQueryHookResult = ReturnType;\nexport type GetServiceRequestSuspenseQueryHookResult = ReturnType<\n typeof useGetServiceRequestSuspenseQuery\n>;\nexport type GetServiceRequestQueryResult = Apollo.QueryResult<\n GetServiceRequestQuery,\n GetServiceRequestQueryVariables\n>;\nexport const ResolveServiceRequestDocument = gql`\n mutation ResolveServiceRequest($id: ID!, $input: ResolveServiceRequestInput!) {\n resolveServiceRequest(id: $id, input: $input) {\n ...ServiceRequestFields\n }\n }\n ${ServiceRequestFieldsFragmentDoc}\n`;\nexport type ResolveServiceRequestMutationFn = Apollo.MutationFunction<\n ResolveServiceRequestMutation,\n ResolveServiceRequestMutationVariables\n>;\n\n/**\n * __useResolveServiceRequestMutation__\n *\n * To run a mutation, you first call `useResolveServiceRequestMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useResolveServiceRequestMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [resolveServiceRequestMutation, { data, loading, error }] = useResolveServiceRequestMutation({\n * variables: {\n * id: // value for 'id'\n * input: // value for 'input'\n * },\n * });\n */\nexport function useResolveServiceRequestMutation(\n baseOptions?: Apollo.MutationHookOptions<\n ResolveServiceRequestMutation,\n ResolveServiceRequestMutationVariables\n >\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useMutation(\n ResolveServiceRequestDocument,\n options\n );\n}\nexport type ResolveServiceRequestMutationHookResult = ReturnType<\n typeof useResolveServiceRequestMutation\n>;\nexport type ResolveServiceRequestMutationResult =\n Apollo.MutationResult;\nexport type ResolveServiceRequestMutationOptions = Apollo.BaseMutationOptions<\n ResolveServiceRequestMutation,\n ResolveServiceRequestMutationVariables\n>;\nexport const UpdateServiceRequestDocument = gql`\n mutation UpdateServiceRequest($id: ID!, $input: UpdateServiceRequestInput!) {\n updateServiceRequest(id: $id, input: $input) {\n ...ServiceRequestFields\n }\n }\n ${ServiceRequestFieldsFragmentDoc}\n`;\nexport type UpdateServiceRequestMutationFn = Apollo.MutationFunction<\n UpdateServiceRequestMutation,\n UpdateServiceRequestMutationVariables\n>;\n\n/**\n * __useUpdateServiceRequestMutation__\n *\n * To run a mutation, you first call `useUpdateServiceRequestMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useUpdateServiceRequestMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [updateServiceRequestMutation, { data, loading, error }] = useUpdateServiceRequestMutation({\n * variables: {\n * id: // value for 'id'\n * input: // value for 'input'\n * },\n * });\n */\nexport function useUpdateServiceRequestMutation(\n baseOptions?: Apollo.MutationHookOptions<\n UpdateServiceRequestMutation,\n UpdateServiceRequestMutationVariables\n >\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useMutation(\n UpdateServiceRequestDocument,\n options\n );\n}\nexport type UpdateServiceRequestMutationHookResult = ReturnType<\n typeof useUpdateServiceRequestMutation\n>;\nexport type UpdateServiceRequestMutationResult =\n Apollo.MutationResult;\nexport type UpdateServiceRequestMutationOptions = Apollo.BaseMutationOptions<\n UpdateServiceRequestMutation,\n UpdateServiceRequestMutationVariables\n>;\nexport const AddServiceRequestCommentDocument = gql`\n mutation AddServiceRequestComment($id: ID!, $input: AddServiceRequestCommentInput!) {\n addServiceRequestComment(id: $id, input: $input) {\n ...ServiceRequestFields\n }\n }\n ${ServiceRequestFieldsFragmentDoc}\n`;\nexport type AddServiceRequestCommentMutationFn = Apollo.MutationFunction<\n AddServiceRequestCommentMutation,\n AddServiceRequestCommentMutationVariables\n>;\n\n/**\n * __useAddServiceRequestCommentMutation__\n *\n * To run a mutation, you first call `useAddServiceRequestCommentMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useAddServiceRequestCommentMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [addServiceRequestCommentMutation, { data, loading, error }] = useAddServiceRequestCommentMutation({\n * variables: {\n * id: // value for 'id'\n * input: // value for 'input'\n * },\n * });\n */\nexport function useAddServiceRequestCommentMutation(\n baseOptions?: Apollo.MutationHookOptions<\n AddServiceRequestCommentMutation,\n AddServiceRequestCommentMutationVariables\n >\n) {\n const options = { ...defaultOptions, ...baseOptions };\n return Apollo.useMutation<\n AddServiceRequestCommentMutation,\n AddServiceRequestCommentMutationVariables\n >(AddServiceRequestCommentDocument, options);\n}\nexport type AddServiceRequestCommentMutationHookResult = ReturnType<\n typeof useAddServiceRequestCommentMutation\n>;\nexport type AddServiceRequestCommentMutationResult =\n Apollo.MutationResult;\nexport type AddServiceRequestCommentMutationOptions = Apollo.BaseMutationOptions<\n AddServiceRequestCommentMutation,\n AddServiceRequestCommentMutationVariables\n>;\n","import React from 'react';\nimport clsx from 'clsx';\nimport { NavLink, useLocation, useMatch, useNavigate, useOutlet } from 'react-router-dom';\nimport { AnimatePresence } from 'motion/react';\n\ninterface PageNavigationRoute {\n index?: boolean;\n path: string;\n title: string;\n count?: number;\n hidden?: boolean;\n}\n\ninterface PageNavigationProps {\n routes: PageNavigationRoute[];\n}\n\nexport const PageNavigation = (props: React.PropsWithChildren) => {\n const outlet = useOutlet();\n const location = useLocation();\n const match = useMatch('/');\n const navigate = useNavigate();\n const routes = props.routes.filter((route) => !route.hidden);\n\n return (\n
\n
\n \n match?.pathname.includes(tab.path))?.path}\n onChange={(e) => navigate(e.currentTarget.value)}\n className=\"block w-full rounded-md border-neutral-300 py-2 pl-3 pr-10 text-base focus:border-primary-500 focus:outline-none focus:ring-primary-500 sm:text-sm\"\n >\n {routes.map((tab) => (\n \n ))}\n \n
\n
\n
\n \n
\n
\n
\n \n {outlet && React.cloneElement(outlet, { key: location.pathname })}\n \n
\n
\n );\n};\n","import React from 'react';\nimport clsx from 'clsx';\nimport { motion } from 'motion/react';\nimport * as Headless from '@headlessui/react';\nimport { Text } from './text';\n\nconst sizes = {\n xs: 'sm:max-w-xs',\n sm: 'sm:max-w-sm',\n md: 'sm:max-w-md',\n lg: 'sm:max-w-lg',\n xl: 'sm:max-w-xl',\n '2xl': 'sm:max-w-2xl',\n '3xl': 'sm:max-w-3xl',\n '4xl': 'sm:max-w-4xl',\n '5xl': 'sm:max-w-5xl'\n};\n\nexport function MountableDialog({\n size = 'lg',\n className,\n children,\n ...props\n}: { size?: keyof typeof sizes; className?: string; children: React.ReactNode } & Omit<\n Headless.DialogProps,\n 'className'\n>) {\n return (\n \n \n\n
\n
\n \n \n {children}\n \n \n
\n
\n
\n );\n}\n\nexport function Dialog({\n size = 'lg',\n className,\n children,\n ...props\n}: { size?: keyof typeof sizes; className?: string; children: React.ReactNode } & Omit<\n Headless.DialogProps,\n 'className'\n>) {\n return (\n \n \n\n
\n
\n \n {children}\n \n
\n
\n
\n );\n}\n\nexport function DialogTitle({\n className,\n ...props\n}: { className?: string } & Omit) {\n return (\n \n );\n}\n\nexport function DialogDescription({\n className,\n ...props\n}: { className?: string } & Omit, 'className'>) {\n return (\n \n );\n}\n\nexport function DialogBody({ className, ...props }: React.ComponentPropsWithoutRef<'div'>) {\n return
;\n}\n\nexport function DialogActions({ className, ...props }: React.ComponentPropsWithoutRef<'div'>) {\n return (\n \n );\n}\n","import * as Headless from '@headlessui/react';\nimport clsx from 'clsx';\nimport React, { forwardRef } from 'react';\n\nexport const Textarea = forwardRef(function Textarea(\n {\n className,\n resizable = true,\n ...props\n }: { className?: string; resizable?: boolean } & Omit,\n ref: React.ForwardedRef\n) {\n return (\n \n \n \n );\n});\n","import React from 'react';\nimport clsx from 'clsx';\nimport * as Headless from '@headlessui/react';\nimport { CloudArrowUpIcon, XMarkIcon } from '@heroicons/react/24/outline';\n\nconst getFilesFromEvent = (dataTransfer?: DataTransfer): File[] => {\n const files: File[] = [];\n\n if (dataTransfer && dataTransfer.items) {\n // Use DataTransferItemList interface to access the file(s)\n for (let i = 0; i < dataTransfer.items.length; i++) {\n // If dropped items aren't files, reject them\n if (dataTransfer.items[i].kind === 'file') {\n const file = dataTransfer.items[i].getAsFile();\n if (file) {\n files.push(file);\n }\n }\n }\n } else if (dataTransfer && dataTransfer.files) {\n // Use DataTransfer interface to access the file(s)\n for (let i = 0; i < dataTransfer.files.length || 0; i++) {\n const file = dataTransfer.files[i];\n if (file) {\n files.push(file);\n }\n }\n }\n\n return files;\n};\n\nexport const FileInput = ({\n className,\n onChange,\n invalid,\n multiple = false\n}: {\n className?: string;\n onChange: (files: File[]) => void;\n invalid?: boolean;\n multiple?: boolean;\n}) => {\n const [dragging, setDragging] = React.useState(false);\n const [attachments, setAttachments] = React.useState([]);\n const ref = React.useRef(null);\n\n const addFiles = (files: File[]) =>\n setAttachments((prev) => {\n const newAttachments = multiple ? [...prev, ...files] : [...files];\n onChange(newAttachments);\n return newAttachments;\n });\n\n const removeFile = (e: React.MouseEvent, index: number) => {\n e.stopPropagation();\n setAttachments((prev) => {\n const newAttachments = prev.filter((_, i) => i !== index);\n onChange(newAttachments);\n return newAttachments;\n });\n };\n\n const onDragEnter = (e: { dataTransfer?: DataTransfer; preventDefault: () => void }) => {\n e.preventDefault();\n setDragging(true);\n };\n\n const onDragLeave = (e: { dataTransfer?: DataTransfer; preventDefault: () => void }) => {\n e.preventDefault();\n setDragging(false);\n };\n\n const onDragOver = (e: { dataTransfer?: DataTransfer; preventDefault: () => void }) => {\n e.preventDefault();\n if (e.dataTransfer) {\n e.dataTransfer.dropEffect = 'copy';\n }\n };\n\n const onDrop = (e: { dataTransfer?: DataTransfer; preventDefault: () => void }) => {\n e.preventDefault();\n setDragging(false);\n\n const files = getFilesFromEvent(e.dataTransfer);\n if (files.length > 0) {\n addFiles(files);\n }\n };\n\n return (\n
\n addFiles(Array.from(e.currentTarget?.files || []))}\n multiple={multiple}\n className=\"hidden\"\n />\n ref?.current?.click()}\n className={clsx([\n 'ring-1 ring-inset rounded-lg p-4',\n 'flex flex-col items-center justify-center cursor-pointer',\n 'transition-all duration-100',\n invalid && 'ring-red-600',\n !invalid &&\n !dragging &&\n attachments.length === 0 &&\n 'ring-neutral-950/10 hover:ring-neutral-950/20',\n (dragging || attachments.length > 0) && 'ring-2 ring-primary-500',\n className\n ])}\n >\n
\n \n

Drag and drop files here

\n
\n {attachments.length > 0 && (\n
\n {attachments.map((attachment, i) => (\n \n

{attachment.name}

\n removeFile(e, i)}>\n \n \n
\n ))}\n
\n )}\n
\n
\n );\n};\n","import { InsuranceType } from './graphql';\n\nexport const getDisplayInsuranceType = (type: InsuranceType | undefined): string => {\n switch (type) {\n case InsuranceType.AccidentAndHealth:\n return 'Accident and Health';\n case InsuranceType.BusinessOwners:\n return 'Business Owners';\n case InsuranceType.CommercialAuto:\n return 'Auto';\n case InsuranceType.Cyber:\n return 'Cyber';\n case InsuranceType.DirectorsAndOfficers:\n return 'Directors and Officers';\n case InsuranceType.EmploymentPracticesLiability:\n return 'Employment Practices Liability';\n case InsuranceType.ErrorsAndOmission:\n return 'Errors and Omission Liability';\n case InsuranceType.Excess:\n return 'Excess';\n case InsuranceType.GeneralLiability:\n return 'General Liability';\n case InsuranceType.JewelersBlock:\n return 'Jewelers Block';\n case InsuranceType.Other:\n return 'Other';\n case InsuranceType.Package:\n return 'Package';\n case InsuranceType.ProductLiability:\n return 'Product Liability';\n case InsuranceType.ProfessionalLiability:\n return 'Professional Liability';\n case InsuranceType.Property:\n return 'Property';\n case InsuranceType.Rental:\n return 'Rental';\n case InsuranceType.ShippingAndTransportation:\n return 'Shipping and Transportation';\n case InsuranceType.Umbrella:\n return 'Umbrella';\n case InsuranceType.WorkersCompensation:\n return 'Workers Compensation';\n default:\n return 'Unknown';\n }\n};\n","import React from 'react';\nimport {\n Combobox as HeadlessCombobox,\n ComboboxButton,\n ComboboxInput,\n ComboboxOption,\n ComboboxOptions\n} from '@headlessui/react';\nimport { CheckIcon, ChevronUpDownIcon } from '@heroicons/react/20/solid';\nimport clsx from 'clsx';\nimport { ErrorMessage } from './fieldset';\nimport { Badge } from './badge';\n\ntype Option = { value: T; label: string; description?: string; badgeText?: string };\n\nexport function Combobox<\n T extends {\n toString(): string;\n }\n>(props: {\n value?: T;\n error?: string;\n disabled?: boolean;\n placeholder?: string;\n options: Option[];\n minQueryLength?: number;\n maxOptions?: number;\n onChange: (value: T | '') => void;\n}) {\n const [query, setQuery] = React.useState('');\n const [selectedOption, setSelectedOption] = React.useState(\n props.value ? (props.options.find((opt) => opt.value === props.value) ?? null) : null\n );\n\n const queryRegex = new RegExp(`(${query.trim().replace(/[.*+?^${}()|[\\]\\\\]/g, '\\\\$&')})`, 'gi');\n\n const minQueryLength = props.minQueryLength || 3;\n const maxOptions = props.maxOptions || 50;\n\n React.useEffect(() => {\n setSelectedOption(\n props.value ? (props.options.find((opt) => opt.value === props.value) ?? null) : null\n );\n }, [props.value, props.options]);\n\n const filteredOptions = props.options.filter((option) => {\n return (\n option.label.toString().toLowerCase().includes(query.trim().toLowerCase()) ||\n option.value.toString().toLowerCase().includes(query.trim().toLowerCase()) ||\n option.description?.toString().toLowerCase().includes(query.trim().toLowerCase())\n );\n });\n\n return (\n <>\n ) => {\n setQuery('');\n setSelectedOption(option);\n props.onChange(option?.value ?? '');\n }}\n data-invalid={props.error ? true : undefined}\n disabled={props.disabled}\n immediate={props.minQueryLength === 0}\n >\n \n {\n setQuery(event.target.value);\n setSelectedOption(null);\n props.onChange('');\n }}\n onBlur={() => setQuery('')}\n displayValue={(option: { label: string }) => option?.label}\n data-invalid={props.error ? true : undefined}\n disabled={props.disabled}\n placeholder={props.placeholder}\n />\n \n \n \n\n {(filteredOptions.length <= maxOptions || query.trim().length >= minQueryLength) &&\n filteredOptions.length > 0 && (\n \n {filteredOptions.map((option) => (\n \n
\n
\n
\n {option.label.split(queryRegex).map((part, i) =>\n part.toLowerCase() === query.trim().toLowerCase() ? (\n \n {part}\n \n ) : (\n {part}\n )\n )}\n
\n {option.badgeText && (\n
\n {option.badgeText}\n
\n )}\n
\n {option.description && (\n
\n {option.description.split(queryRegex).map((part, i) =>\n part.toLowerCase() === query.trim().toLowerCase() ? (\n \n {part}\n \n ) : (\n {part}\n )\n )}\n
\n )}\n
\n\n \n \n ))}\n
\n )}\n \n \n {!!props.error && {props.error}}\n \n );\n}\n","import React from 'react';\nimport {\n Form,\n Link,\n useActionData,\n useLoaderData,\n useNavigate,\n useNavigation,\n useRouteLoaderData,\n useSubmit\n} from 'react-router-dom';\n\nimport { Menu, MenuButton, MenuItem, MenuItems } from '@headlessui/react';\nimport {\n MagnifyingGlassIcon,\n CalendarIcon,\n BriefcaseIcon,\n ChevronDownIcon,\n UserIcon,\n TicketIcon,\n CheckIcon,\n BuildingOfficeIcon,\n TagIcon,\n UserCircleIcon,\n PaperClipIcon\n} from '@heroicons/react/24/outline';\nimport { CheckBadgeIcon } from '@heroicons/react/24/solid';\nimport { PageTitle } from '@oysterjs/uiv2/page';\nimport { Badge } from '@oysterjs/uiv2/badge';\nimport {\n Table,\n TableHead,\n TableBody,\n TableRow,\n TableHeader,\n TableCell\n} from '@oysterjs/uiv2/table';\nimport { Input, InputGroup } from '@oysterjs/uiv2/input';\nimport { Button } from '@oysterjs/uiv2/button';\nimport {\n Description,\n ErrorMessage,\n Field,\n FieldGroup,\n Fieldset,\n Label\n} from '@oysterjs/uiv2/fieldset';\nimport { Select } from '@oysterjs/uiv2/select';\nimport { Await } from '@oysterjs/uiv2/async';\nimport { PageNavigation } from '@oysterjs/uiv2/navigation';\nimport {\n AddServiceRequestCommentInput,\n AgencyUserFieldsFragment,\n CallTranscriptFieldsFragment,\n CallTranscriptRole,\n CaraWorkspaceMessageInput,\n CreateCaraWorkspaceMutation,\n CreateCaraWorkspaceDocument,\n EmailSenderRole,\n EmailThreadConversationFieldsFragment,\n ResolveServiceRequestInput,\n ResolveServiceRequestMutation,\n ServiceRequestCallFieldsFragment,\n ServiceRequestFieldsFragment,\n ServiceRequestState,\n ServiceRequestType,\n ServiceRequestUpdateType,\n UpdateInitiatorType,\n UpdateServiceRequestInput,\n UpdateServiceRequestMutation,\n CaraWorkspacePreset,\n DocumentType\n} from '../api/graphql';\nimport { Spinner } from '@oysterjs/uiv2/spinner';\nimport {\n Dialog,\n DialogActions,\n DialogBody,\n DialogDescription,\n DialogTitle\n} from '@oysterjs/uiv2/dialog';\nimport { MultiListbox, MultiListboxOption } from '@oysterjs/uiv2/multiselect';\nimport { useFormActions } from '@oysterjs/corev2/graphql/form';\nimport { ValidationError } from '@oysterjs/corev2/graphql';\nimport { Textarea } from '@oysterjs/uiv2/textarea';\nimport { FileInput } from '@oysterjs/uiv2/file';\nimport { client } from '../api/client';\nimport { ActionResult } from '@oysterjs/corev2/graphql/actions';\nimport { getDisplayInsuranceType } from '../api/map';\nimport { ApolloError } from '@apollo/client';\nimport { Combobox } from '@oysterjs/uiv2/combobox';\n\nconst titleCase = (s: string) =>\n s\n .split(/[\\s_]/g)\n .map((part) => part[0].toUpperCase() + part.substring(1).toLowerCase())\n .join(' ');\n\nconst getAssignee = (serviceRequest: ServiceRequestFieldsFragment) => {\n if (serviceRequest.assignee) {\n return (\n
\n \n {serviceRequest.assignee.name.split(' ').at(0)?.charAt(0)}\n {serviceRequest.assignee.name.split(' ').at(1)?.charAt(0)}\n
\n {serviceRequest.assignee.name}\n \n );\n }\n\n return (\n
\n
\n
\n );\n};\n\nconst searchJson = (s: ServiceRequestFieldsFragment, search: string) => {\n const values = [s.account?.account.name || '', s.state, s.type, s.assignee?.name || ''];\n return values.some((v) => v?.toString()?.toLowerCase().indexOf(search.toLowerCase()) !== -1);\n};\n\nexport const ServicingPage = () => {\n const [search, setSearch] = React.useState('');\n const [status, setStatus] = React.useState(ServiceRequestState.Open);\n const [assignee] = React.useState(null);\n\n const loader = useLoaderData() as\n | { data: Promise<{ serviceRequests?: ServiceRequestFieldsFragment[] }> }\n | undefined;\n\n return (\n \n
\n
\n
\n
\n
\n \n
\n \n \n \n \n setSearch(e.currentTarget.value)}\n />\n \n \n \n \n setStatus(e.currentTarget.value as ServiceRequestState)}\n >\n \n \n \n \n \n \n
\n
\n
\n
\n
\n
\n\n }>\n \n {({ serviceRequests }) => (\n
\n {!serviceRequests?.length && (\n
\n \n

\n No service requests found\n

\n

\n Your clients haven't made any service requests yet.\n

\n
\n )}\n {!!serviceRequests?.length && (\n \n \n \n Customer\n Status\n Request Type\n Assignee\n Due Date\n Opened At\n \n \n \n {serviceRequests\n .filter(\n (s) =>\n (!search || searchJson(s, search)) &&\n (!status || s.state === status) &&\n (!assignee || s.assignee?.id === assignee)\n )\n .map((serviceRequest) => (\n \n \n {serviceRequest.account?.account.name && (\n
\n
{serviceRequest.account.account.name}
\n
\n \n
\n
\n )}\n {!serviceRequest.account?.account.name &&\n !!serviceRequest.clientName && (\n
{serviceRequest.clientName}
\n )}\n\n {!serviceRequest.account?.account.name &&\n !serviceRequest.clientName &&\n !!serviceRequest.clientPhone && (\n
{serviceRequest.clientPhone}
\n )}\n {!serviceRequest.account?.account.name &&\n !serviceRequest.clientName &&\n !serviceRequest.clientPhone && (\n
\n )}\n
\n \n \n {serviceRequest.state}\n \n \n {titleCase(serviceRequest.type)}\n {getAssignee(serviceRequest)}\n \n {serviceRequest.dueAt &&\n new Intl.DateTimeFormat('en-US', {\n dateStyle: 'medium'\n }).format(new Date(serviceRequest.dueAt))}\n {!serviceRequest.dueAt && (\n
\n )}\n
\n \n {serviceRequest.createdAt &&\n new Intl.DateTimeFormat('en-US', {\n dateStyle: 'medium',\n timeStyle: 'short'\n }).format(new Date(serviceRequest.createdAt))}\n \n \n ))}\n
\n \n )}\n
\n )}\n
\n
\n
\n
\n );\n};\n\nexport const ServiceRequestsPageLoader = () => {\n return (\n
\n
\n \n

Loading service requests...

\n

This might take a moment.

\n
\n
\n );\n};\n\nexport const ServiceRequestPage = () => {\n const loader = useLoaderData() as\n | {\n data: Promise<{\n serviceRequest?: ServiceRequestFieldsFragment & ServiceRequestCallFieldsFragment;\n agencyUsers?: AgencyUserFieldsFragment[];\n }>;\n }\n | undefined;\n\n const [showResolveServiceRequestDialog, setShowResolveServiceRequestDialog] =\n React.useState(false);\n const [showUpdateServiceRequestDialog, setShowUpdateServiceRequestDialog] = React.useState(false);\n const [showOpenInCopilotDialog, setShowOpenInCopilotDialog] = React.useState(false);\n\n return (\n <>\n }>\n \n {({ serviceRequest, agencyUsers }) =>\n serviceRequest &&\n agencyUsers && (\n <>\n
\n
\n

\n Service Request\n

\n
\n
\n \n {serviceRequest.account?.account.name || serviceRequest.clientName || '—'}\n
\n
\n \n {titleCase(serviceRequest.type)}\n
\n
\n \n Created on{' '}\n {serviceRequest.createdAt &&\n new Intl.DateTimeFormat('en-US', {\n dateStyle: 'medium'\n }).format(new Date(serviceRequest.createdAt))}\n
\n
\n
\n
\n
\n \n setShowUpdateServiceRequestDialog(false)}\n serviceRequest={serviceRequest}\n agencyUsers={agencyUsers}\n />\n setShowOpenInCopilotDialog(false)}\n serviceRequest={serviceRequest}\n />\n \n )\n }\n
\n
\n setShowResolveServiceRequestDialog(false)}\n />\n \n );\n};\n\nconst ResolveServiceRequestDialogWrapper = (props: { open: boolean; onClose: () => void }) => {\n const action = useActionData() as ActionResult;\n const submit = useSubmit();\n const navigation = useNavigation();\n const [validationErrors, setValidationErrors] = React.useState([]);\n\n React.useEffect(() => {\n if (action?.validationErrors) {\n setValidationErrors(action.validationErrors);\n }\n }, [action?.validationErrors]);\n\n React.useEffect(() => {\n if (navigation.state === 'loading' && navigation.formAction === navigation.location.pathname) {\n props.onClose();\n }\n }, [navigation.state, navigation.formAction]);\n\n const handleSubmit = async (form: ResolveServiceRequestInput) => {\n if (!form) {\n return;\n }\n\n // Construct a multi-part form data request with the file\n const formData = new FormData();\n form.files.forEach((f) => formData.append('files', f));\n formData.append('notes', form.notes);\n\n submit(formData, { method: 'POST', action: 'resolve', encType: 'multipart/form-data' });\n };\n\n return (\n \n );\n};\n\nexport const ResolveServiceRequestDialog = (props: {\n open: boolean;\n onClose: () => void;\n loading: boolean;\n onSubmit: (form: ResolveServiceRequestInput) => Promise;\n validationErrors: ValidationError[];\n}) => {\n const [validationErrors, setValidationErrors] = React.useState(\n props.validationErrors\n );\n const [form, setForm] = React.useState({\n files: [],\n notes: ''\n });\n const { updateForm, getValidationError } = useFormActions(setForm, setValidationErrors);\n\n React.useEffect(() => {\n if (props.validationErrors) {\n setValidationErrors(props.validationErrors);\n }\n }, [props.validationErrors]);\n\n return (\n \n Resolve Service Request\n {\n e.preventDefault();\n props.onSubmit(form);\n }}\n >\n *+*]:pt-6 divide-y divide-neutral-200\">\n
\n \n \n \n These notes will not be visible to the client.\n {\n const notes = e.currentTarget.value;\n updateForm(['notes'], (prev) => ({ ...prev, notes }));\n }}\n invalid={!!getValidationError(validationErrors, ['notes'])}\n />\n {getValidationError(validationErrors, ['notes']) && (\n {getValidationError(validationErrors, ['notes'])}\n )}\n \n \n \n \n Drag and drop or click to select files from your computer. You can upload multiple\n files at once. These files will be visible to the client as part of the service\n request resolution.\n \n updateForm(['files'], (prev) => ({ ...prev, files: files }))}\n invalid={!!getValidationError(validationErrors, ['files'])}\n />\n {getValidationError(validationErrors, ['files']) && (\n {getValidationError(validationErrors, ['files'])}\n )}\n \n \n
\n
\n \n \n \n \n \n
\n );\n};\n\nconst OpenInCopilotDialog = (props: {\n open: boolean;\n onClose: () => void;\n serviceRequest: ServiceRequestFieldsFragment & ServiceRequestCallFieldsFragment;\n}) => {\n const navigate = useNavigate();\n const [loading, setLoading] = React.useState(false);\n const [validationErrors, setValidationErrors] = React.useState([]);\n const [preset, setPreset] = React.useState(\n props.serviceRequest.type === ServiceRequestType.Question\n ? CaraWorkspacePreset.DocumentExploration\n : props.serviceRequest.type === ServiceRequestType.QuoteRequest\n ? CaraWorkspacePreset.GenerateTemplate\n : props.serviceRequest.type === ServiceRequestType.CreateCertificate\n ? CaraWorkspacePreset.GenerateCertificateOfLiabilityInsurance\n : undefined\n );\n const [form, setForm] = React.useState({\n files: [],\n message: '',\n serviceRequestId: props.serviceRequest.id,\n documentIds: []\n });\n const { updateForm, getValidationError } = useFormActions(setForm, setValidationErrors);\n\n const updateFiles = (files: File[], label?: string) => {\n updateForm(['files'], (prev) => ({\n ...prev,\n files: files.map(\n (f) =>\n new File([f], label ? label + ' ' + f.name : f.name, {\n type: f.type,\n lastModified: f.lastModified\n })\n )\n }));\n };\n\n const updateMessage = (message: string) => {\n updateForm(['message'], (prev) => ({ ...prev, message }));\n };\n\n const updateDocumentIds = (documentIds: DocumentType[]) => {\n updateForm(['documentIds'], (prev) => ({\n ...prev,\n documentIds\n }));\n };\n\n const createWorkspace = async (\n query: string,\n attachments: File[],\n serviceRequestId: string,\n documentIds: DocumentType[]\n ) => {\n const res = await client.mutate({\n mutation: CreateCaraWorkspaceDocument,\n variables: {\n input: {\n message: query.trim(),\n files: attachments,\n serviceRequestId,\n documentIds\n }\n }\n });\n\n if (res.errors?.length) {\n throw new ApolloError({ graphQLErrors: res.errors });\n }\n\n const id = res.data?.createCaraWorkspace?.id;\n if (!id) {\n throw new Error('Failed to create workspace');\n }\n\n navigate(`/app/workspaces/${id}`);\n };\n\n const handleSubmit = async (e: React.FormEvent) => {\n if (!form) {\n return;\n }\n\n e.preventDefault();\n setLoading(true);\n\n try {\n await createWorkspace(\n form.message,\n form.files,\n props.serviceRequest.id,\n form.documentIds || []\n );\n } finally {\n setLoading(false);\n }\n };\n\n const presetOptions = [\n {\n preset: CaraWorkspacePreset.CertificateReview,\n title: 'Certificate Review',\n description: 'Review a certificate for any discrepancies and E&O exposure'\n },\n {\n preset: CaraWorkspacePreset.ContractReview,\n title: 'Contract Review',\n description:\n 'Review a contract for insurance requirements and compare it to quote or policy details'\n },\n {\n preset: CaraWorkspacePreset.CoverageComparison,\n title: 'Coverage Comparison',\n description: 'Compare coverage details between multiple quotes or policies'\n },\n {\n preset: CaraWorkspacePreset.DocumentExploration,\n title: 'Explore a Policy',\n description: 'Ask Cara to answer questions about a policy document',\n suggested: props.serviceRequest.type === ServiceRequestType.Question\n },\n {\n preset: CaraWorkspacePreset.GenerateTemplate,\n title: 'Fill Template',\n description: 'Cross-fill forms and templates from other documents and instructions',\n suggested: props.serviceRequest.type === ServiceRequestType.QuoteRequest\n },\n {\n preset: CaraWorkspacePreset.GenerateCertificateOfLiabilityInsurance,\n title: 'Generate Certificate',\n description: 'Generate a certificate of liability insurance (ACORD 25) for a customer',\n suggested: props.serviceRequest.type === ServiceRequestType.CreateCertificate\n },\n {\n preset: null,\n title: 'Custom',\n description:\n 'Do something else. Cara will perform better if your task fits one of the above options.',\n suggested: false\n }\n ].sort((a, b) => (a.suggested ? (b.suggested ? (a.title < b.title ? -1 : 1) : -1) : 1));\n\n return (\n \n Open in Copilot\n \n Ask Cara to help you resolve this service request. Specify what task you want Cara to do and\n include any additional instructios.\n \n
\n *+*]:pt-6 divide-y divide-neutral-200\">\n
\n \n \n \n Choose what you want Cara to do\n \n setPreset(preset === 'Custom' ? null : (preset as CaraWorkspacePreset))\n }\n options={presetOptions.map((p) => ({\n value: p.preset || 'Custom',\n label: p.title,\n description: p.description,\n badgeText: p.suggested ? 'Suggested' : undefined\n }))}\n error={getValidationError(validationErrors, ['preset'])}\n />\n \n \n {preset === CaraWorkspacePreset.CertificateReview && (\n \n \n \n \n Upload the certificate of insurance you want Cara to review.\n \n updateFiles(files, 'Certificate')}\n invalid={!!getValidationError(validationErrors, ['files'])}\n />\n \n \n \n \n Upload any quotes or policies you want Cara to compare to the certificate of\n insurance.\n \n updateFiles(files, 'Quote or Policy')}\n invalid={!!getValidationError(validationErrors, ['files'])}\n />\n \n \n \n \n \n Add any additional notes you want Cara to consider when reviewing the\n certificate of insurance.\n \n updateMessage(e.currentTarget.value)}\n invalid={!!getValidationError(validationErrors, ['message'])}\n />\n \n \n )}\n\n {preset === CaraWorkspacePreset.ContractReview && (\n \n \n \n \n Upload the contract you want Cara to review for insurance requirements.\n \n updateFiles(files, 'Contract')}\n invalid={!!getValidationError(validationErrors, ['files'])}\n />\n \n \n \n \n Upload any quotes or policies you want Cara to compare to the contract\n requirements.\n \n updateFiles(files, 'Quote or Policy')}\n invalid={!!getValidationError(validationErrors, ['files'])}\n />\n \n \n \n \n \n Add any additional notes you want Cara to consider when reviewing the contract.\n \n updateMessage(e.currentTarget.value)}\n invalid={!!getValidationError(validationErrors, ['message'])}\n />\n \n \n )}\n\n {preset === CaraWorkspacePreset.CoverageComparison && (\n \n \n \n \n Upload the first quote or policy you want Cara to compare to the second quote or\n policy.\n \n updateFiles(files, 'Option 1')}\n invalid={!!getValidationError(validationErrors, ['files'])}\n />\n \n \n \n \n Upload the second quote or policy you want Cara to compare to the first quote or\n policy.\n \n updateFiles(files, 'Option 2')}\n invalid={!!getValidationError(validationErrors, ['files'])}\n />\n \n \n \n \n Add any additional notes you want Cara to consider when comparing the quotes or\n policies.\n \n updateMessage(e.currentTarget.value)}\n invalid={!!getValidationError(validationErrors, ['message'])}\n />\n \n \n )}\n\n {preset === CaraWorkspacePreset.GenerateCertificateOfLiabilityInsurance && (\n \n \n \n \n Upload the binders or policies you want Cara to use while generating a\n certificate of liability insurance.\n \n updateFiles(files, 'Binder or Policy')}\n invalid={!!getValidationError(validationErrors, ['files'])}\n />\n \n \n \n \n \n Add any additional information you want Cara to consider when generating a\n certificate of liability insurance, such as the certificate holder's name and\n address, the description of operations, or any other requirements.\n \n updateMessage(e.currentTarget.value)}\n invalid={!!getValidationError(validationErrors, ['message'])}\n />\n \n \n )}\n\n {preset === CaraWorkspacePreset.GenerateTemplate && (\n \n \n \n \n Any files you'd like Cara to parse and use as input to cross-fill into\n templates.\n \n updateFiles(files, 'Input')}\n invalid={!!getValidationError(validationErrors, ['files'])}\n />\n \n \n \n \n Choose the templates you'd like Cara to fill out.\n updateDocumentIds(value)}\n value={form.documentIds}\n placeholder=\"Select templates\"\n >\n {Object.values(DocumentType)\n .filter((t) =>\n [\n DocumentType.Acord_125,\n DocumentType.Acord_126,\n DocumentType.Acord_140\n ].includes(t)\n )\n .map((type) => (\n \n {type.replace(/_/g, ' ')}\n \n ))}\n \n \n \n \n \n Add any additional information you want Cara to consider when filling out the\n template. This can be specific instructions or other free-form information that\n should be parsed and mapped to template fields\n \n updateMessage(e.currentTarget.value)}\n rows={5}\n />\n \n \n )}\n\n {preset === CaraWorkspacePreset.DocumentExploration && (\n \n \n \n \n Files you'd like Cara to use as context to answer questions\n \n updateFiles(files, 'Input')}\n invalid={!!getValidationError(validationErrors, ['files'])}\n />\n \n \n \n \n \n Any question or prompt you'd like Cara to answer about the documents.\n \n updateMessage(e.currentTarget.value)}\n rows={5}\n />\n \n \n )}\n\n {preset === null && (\n \n \n \n \n Any additional instructions to Cara to help resolve the service request, aside\n from the information already captured.\n \n updateMessage(e.currentTarget.value)}\n invalid={!!getValidationError(validationErrors, ['message'])}\n />\n {getValidationError(validationErrors, ['message']) && (\n {getValidationError(validationErrors, ['message'])}\n )}\n \n \n \n \n Drag and drop or click to select files from your computer. You can upload\n multiple files at once. These files will be visible to the client as part of the\n service request resolution.\n \n updateFiles(files)}\n invalid={!!getValidationError(validationErrors, ['files'])}\n />\n {getValidationError(validationErrors, ['files']) && (\n {getValidationError(validationErrors, ['files'])}\n )}\n \n \n \n )}\n
\n
\n \n \n \n \n
\n
\n );\n};\n\nconst AlreadyIncludedFiles = (props: {\n serviceRequest: ServiceRequestFieldsFragment & ServiceRequestCallFieldsFragment;\n}) => {\n const files = props.serviceRequest.emailThreads?.flatMap((thread) => thread.attachments);\n if (!files?.length) {\n return null;\n }\n\n return (\n \n \n \n These files will automatically be included in the Copilot workspace and do not need to be\n uploaded again.\n \n
\n {files.map((file) => (\n \n \n

{file.name}

\n \n ))}\n
\n
\n );\n};\n\nconst UpdateServiceRequestDialog = (props: {\n open: boolean;\n onClose: () => void;\n serviceRequest: ServiceRequestFieldsFragment;\n agencyUsers: AgencyUserFieldsFragment[];\n}) => {\n const action = useActionData() as ActionResult;\n const submit = useSubmit();\n const navigation = useNavigation();\n\n const [validationErrors, setValidationErrors] = React.useState([]);\n const [form, setForm] = React.useState({\n assigneeId: null,\n dueAt: null\n });\n const { updateForm, getValidationError } = useFormActions(setForm, setValidationErrors);\n\n React.useEffect(() => {\n if (action?.validationErrors) {\n setValidationErrors(action.validationErrors);\n }\n }, [action?.validationErrors]);\n\n React.useEffect(() => {\n if (navigation.state === 'loading' && navigation.formAction === navigation.location.pathname) {\n props.onClose();\n }\n }, [navigation.state, navigation.formAction]);\n\n const handleSubmit = (e: React.FormEvent) => {\n if (!form) {\n return;\n }\n\n e.preventDefault();\n\n submit(\n {\n assigneeId: form.assigneeId || null,\n dueAt: form.dueAt?.toISOString() || null\n },\n { method: 'POST', action: 'update', encType: 'application/json' }\n );\n };\n\n return (\n \n Update Service Request\n
\n *+*]:pt-6 divide-y divide-neutral-200\">\n
\n \n \n \n \n The team member that will be assigned to this service request.\n \n {\n const assigneeId = e.currentTarget.value;\n updateForm(['assigneeId'], (prev) => ({ ...prev, assigneeId }));\n }}\n invalid={!!getValidationError(validationErrors, ['assigneeId'])}\n >\n \n {props.agencyUsers.map((user) => (\n \n ))}\n \n {getValidationError(validationErrors, ['notes']) && (\n {getValidationError(validationErrors, ['notes'])}\n )}\n \n \n \n The date by which the service request must be resolved.\n {\n const dueAt = e.currentTarget.value;\n updateForm(['dueAt'], (prev) => ({\n ...prev,\n dueAt: new Date(dueAt)\n }));\n }}\n invalid={!!getValidationError(validationErrors, ['dueAt'])}\n />\n {getValidationError(validationErrors, ['dueAt']) && (\n {getValidationError(validationErrors, ['dueAt'])}\n )}\n \n \n
\n
\n \n \n Cancel\n \n \n \n
\n
\n );\n};\n\nexport const ServiceRequestOverviewPage = () => {\n const loader = useRouteLoaderData('servicing/:id') as\n | {\n data: Promise<{\n serviceRequest?: ServiceRequestFieldsFragment & ServiceRequestCallFieldsFragment;\n }>;\n }\n | undefined;\n\n return (\n \n \n {({ serviceRequest }) =>\n serviceRequest && (\n
\n \n
\n )\n }\n
\n
\n );\n};\n\nconst ServiceRequestDetailsPanel = (props: { serviceRequest: ServiceRequestFieldsFragment }) => {\n return (\n
\n
\n
\n
\n

\n {titleCase(props.serviceRequest.type)}\n

\n

Details about this service request.

\n
\n
\n
\n
\n {props.serviceRequest.type === ServiceRequestType.AddAdditionalInsured && (\n \n )}\n {props.serviceRequest.type === ServiceRequestType.CancelPolicy && (\n \n )}\n {props.serviceRequest.type === ServiceRequestType.CreateCertificate && (\n \n )}\n {props.serviceRequest.type === ServiceRequestType.DocumentRequest && (\n \n )}\n {props.serviceRequest.type === ServiceRequestType.EndorsePolicy && (\n \n )}\n {(props.serviceRequest.type === ServiceRequestType.Other ||\n props.serviceRequest.type === ServiceRequestType.QuoteRequest) && (\n \n )}\n {props.serviceRequest.type === ServiceRequestType.Question && (\n \n )}\n
\n
\n );\n};\n\nconst ServiceRequestCommonDetails = (props: { serviceRequest: ServiceRequestFieldsFragment }) => {\n return (\n <>\n {props.serviceRequest.clientName && (\n
\n
Client Name
\n
\n {props.serviceRequest.clientName}\n
\n
\n )}\n {props.serviceRequest.clientEmail && (\n
\n
Client Email
\n
\n {props.serviceRequest.clientEmail}\n
\n
\n )}\n {props.serviceRequest.clientPhone && (\n
\n
Client Phone
\n
\n {props.serviceRequest.clientPhone}\n
\n
\n )}\n \n );\n};\n\nconst ServiceRequestAddAdditionalInsuredDetails = (props: {\n serviceRequest: ServiceRequestFieldsFragment;\n}) => {\n return (\n
\n
\n \n
\n
Additional Insured
\n
\n {props.serviceRequest.addAdditionalInsured?.name}\n
\n
\n
\n
Address
\n
\n {props.serviceRequest.addAdditionalInsured?.address?.line1}\n
\n {props.serviceRequest.addAdditionalInsured?.address?.city},{' '}\n {props.serviceRequest.addAdditionalInsured?.address?.zone}{' '}\n {props.serviceRequest.addAdditionalInsured?.address?.postalCode}\n
\n
\n {props.serviceRequest.addAdditionalInsured?.relationship && (\n
\n
Relationship
\n
\n {props.serviceRequest.addAdditionalInsured?.relationship}\n
\n
\n )}\n {props.serviceRequest.details && (\n
\n
Additional Notes
\n
\n {props.serviceRequest.details}\n
\n
\n )}\n
\n
\n );\n};\n\nconst ServiceRequestCancelPolicyDetails = (props: {\n serviceRequest: ServiceRequestFieldsFragment;\n}) => {\n return (\n
\n
\n \n {props.serviceRequest.businessPolicy?.id && (\n
\n
Policy
\n
\n {getDisplayInsuranceType(props.serviceRequest.businessPolicy?.type)} (\n {props.serviceRequest.businessPolicy?.carrier?.name})\n
\n
\n )}\n
\n
Cancellation Details
\n
\n {props.serviceRequest.cancelPolicy?.reason}\n
\n
\n
\n
\n );\n};\n\nconst ServiceRequestCreateCertificateDetails = (props: {\n serviceRequest: ServiceRequestFieldsFragment;\n}) => {\n return (\n
\n
\n \n
\n
Certificate Holder
\n
\n {props.serviceRequest.createCertificate?.name}\n
\n
\n
\n
Address
\n
\n {props.serviceRequest.createCertificate?.address?.line1}\n
\n {props.serviceRequest.createCertificate?.address?.city},{' '}\n {props.serviceRequest.createCertificate?.address?.zone}{' '}\n {props.serviceRequest.createCertificate?.address?.postalCode}\n
\n
\n
\n
Additional Insured
\n
\n {props.serviceRequest.createCertificate?.additionalInsured ? 'Yes' : 'No'}\n
\n
\n {props.serviceRequest.createCertificate?.additionalInsured && (\n
\n
Relationship
\n
\n {props.serviceRequest.createCertificate?.additionalInsuredRelationship}\n {props.serviceRequest.createCertificate?.additionalInsuredRelationshipDescription}\n
\n
\n )}\n {props.serviceRequest.details && (\n
\n
Additional Notes
\n
\n {props.serviceRequest.details}\n
\n
\n )}\n
\n
\n );\n};\n\nconst ServiceRequestDocumentRequestDetails = (props: {\n serviceRequest: ServiceRequestFieldsFragment;\n}) => {\n return (\n
\n
\n \n {props.serviceRequest.businessPolicy?.id && (\n
\n
Policy
\n
\n {getDisplayInsuranceType(props.serviceRequest.businessPolicy?.type)} (\n {props.serviceRequest.businessPolicy?.carrier?.name})\n
\n
\n )}\n
\n
Document Type
\n
\n {titleCase(props.serviceRequest.documentRequest?.type || '')}\n
\n
\n {props.serviceRequest.details && (\n
\n
Request Details
\n
\n {props.serviceRequest.details}\n
\n
\n )}\n
\n
\n );\n};\n\nconst ServiceRequestEndorsePolicyDetails = (props: {\n serviceRequest: ServiceRequestFieldsFragment;\n}) => {\n return (\n
\n
\n \n {props.serviceRequest.businessPolicy?.id && (\n
\n
Policy
\n
\n {getDisplayInsuranceType(props.serviceRequest.businessPolicy?.type)} (\n {props.serviceRequest.businessPolicy?.carrier?.name})\n
\n
\n )}\n {props.serviceRequest.details && (\n
\n
Endorsement Details
\n
\n {props.serviceRequest.details}\n
\n
\n )}\n
\n
\n );\n};\n\nconst ServiceRequestOtherDetails = (props: { serviceRequest: ServiceRequestFieldsFragment }) => {\n return (\n
\n
\n \n {props.serviceRequest.businessPolicy?.id && (\n
\n
Policy
\n
\n {getDisplayInsuranceType(props.serviceRequest.businessPolicy?.type)} (\n {props.serviceRequest.businessPolicy?.carrier?.name})\n
\n
\n )}\n {props.serviceRequest.details && (\n
\n
Request Details
\n
\n
\n                {props.serviceRequest.details}\n              
\n
\n
\n )}\n
\n
\n );\n};\n\nconst ServiceRequestQuestionDetails = (props: { serviceRequest: ServiceRequestFieldsFragment }) => {\n return (\n
\n
\n \n {props.serviceRequest.businessPolicy?.id && (\n
\n
Policy
\n
\n {getDisplayInsuranceType(props.serviceRequest.businessPolicy?.type)} (\n {props.serviceRequest.businessPolicy?.carrier?.name})\n
\n
\n )}\n
\n
Question
\n
\n {props.serviceRequest.question?.question}\n
\n
\n {props.serviceRequest.details && (\n
\n
Endorsement Details
\n
\n {props.serviceRequest.details}\n
\n
\n )}\n
\n
\n );\n};\n\nexport const ServiceRequestConversationPage = () => {\n const loader = useRouteLoaderData('servicing/:id') as\n | {\n data: Promise<{\n serviceRequest?: ServiceRequestFieldsFragment & ServiceRequestCallFieldsFragment;\n }>;\n }\n | undefined;\n\n return (\n \n \n {({ serviceRequest }) =>\n serviceRequest && (\n <>\n
\n {parseConversation(serviceRequest.calls, serviceRequest.emailThreads).map(\n (message) =>\n [\n EmailSenderRole.Client,\n EmailSenderRole.Participant,\n EmailSenderRole.Agent\n ].includes(message.role) ? (\n
\n
\n
\n \n
\n
\n
\n

{message.content}

\n {/* 10:23 AM */}\n
\n
\n ) : (\n
\n
\n

{message.content}

\n {/* 10:24 AM */}\n
\n
\n
\n \n
\n
\n
\n )\n )}\n
\n \n )\n }\n
\n
\n );\n};\n\nconst parseConversation = (\n calls: CallTranscriptFieldsFragment[],\n emailThreads: EmailThreadConversationFieldsFragment[]\n) => {\n if (calls?.at(-1)) {\n return (\n calls\n .at(-1)\n ?.transcript.filter(\n (t) => t.role === CallTranscriptRole.Agent || t.role === CallTranscriptRole.User\n )\n .filter((t) => !!t.content)\n .map((t) => ({\n role: t.role === CallTranscriptRole.Agent ? EmailSenderRole.Cara : EmailSenderRole.Client,\n content: t.content\n })) || []\n );\n }\n if (emailThreads?.[0]) {\n return [...emailThreads[0].caraEmails, ...emailThreads[0].participantEmails]\n .sort((a, b) => new Date(a.sentAt).getTime() - new Date(b.sentAt).getTime())\n .map((e) => ({ role: e.senderRole, content: e.body }));\n }\n return [];\n};\n\nexport const ServiceRequestCommentsAndActivityPage = () => {\n const loader = useRouteLoaderData('servicing/:id') as\n | {\n data: Promise<{\n serviceRequest?: ServiceRequestFieldsFragment & ServiceRequestCallFieldsFragment;\n agencyUsers: AgencyUserFieldsFragment[];\n }>;\n }\n | undefined;\n\n return (\n \n \n {({ serviceRequest, agencyUsers }) =>\n serviceRequest &&\n agencyUsers && (\n \n )\n }\n \n \n );\n};\n\nconst CommentsAndActivityPage = (props: {\n serviceRequest: ServiceRequestFieldsFragment & ServiceRequestCallFieldsFragment;\n agencyUsers: AgencyUserFieldsFragment[];\n}) => {\n return (\n
\n
\n \n
\n
\n );\n};\n\nconst relativeDate = (date: Date) => {\n const rtf = new Intl.RelativeTimeFormat('en', { numeric: 'auto' });\n\n const now = new Date();\n const diffInSeconds = Math.floor((date.getTime() - now.getTime()) / 1000);\n\n const units = [\n { unit: 'year', seconds: 31536000 },\n { unit: 'month', seconds: 2592000 },\n { unit: 'day', seconds: 86400 },\n { unit: 'hour', seconds: 3600 },\n { unit: 'minute', seconds: 60 },\n { unit: 'second', seconds: 1 }\n ];\n\n for (const { unit, seconds } of units) {\n if (Math.abs(diffInSeconds) >= seconds) {\n return rtf.format(Math.round(diffInSeconds / seconds), unit as Intl.RelativeTimeFormatUnit);\n }\n }\n\n return rtf.format(0, 'second');\n};\n\ntype ActivityItem = {\n id: string;\n type: string;\n person: string;\n date: string;\n comment: string | undefined;\n assigned: string | undefined;\n dueDate: string | undefined;\n};\n\nconst CommentsAndActivity = (props: {\n serviceRequest: ServiceRequestFieldsFragment & ServiceRequestCallFieldsFragment;\n agencyUsers: AgencyUserFieldsFragment[];\n}) => {\n const submit = useSubmit();\n const navigation = useNavigation();\n\n const [, setValidationErrors] = React.useState([]);\n const [form, setForm] = React.useState({\n content: ''\n });\n const { updateForm } = useFormActions(setForm, setValidationErrors);\n\n const handleSubmit = (e: React.FormEvent) => {\n if (!form?.content) {\n return;\n }\n\n e.preventDefault();\n\n submit(form, { method: 'POST', action: 'comment', encType: 'application/json' });\n setForm({ content: '' });\n };\n\n const agencyUserMap = Object.fromEntries(props.agencyUsers.map((u) => [u.id, u]));\n const activity = [\n ...props.serviceRequest.comments,\n ...(props.serviceRequest.versionHistory?.filter((v) =>\n v.updateTypes.some((u) =>\n [\n ServiceRequestUpdateType.AssignServiceRequest,\n ServiceRequestUpdateType.CloseServiceRequest,\n ServiceRequestUpdateType.UpdateServiceRequestDueAt\n ].includes(u)\n )\n ) || [])\n ]\n .sort((a, b) => new Date(a.createdAt).getTime() - new Date(b.createdAt).getTime())\n .flatMap((a) => {\n if (a.__typename === 'ServiceRequestComment') {\n return {\n id: a.id,\n type: 'comment',\n person: a.agencyUser.name,\n comment: a.content,\n date: relativeDate(new Date(a.createdAt)),\n assigned: undefined,\n dueDate: undefined\n } as ActivityItem;\n }\n if (a.__typename === 'ServiceRequestVersion') {\n return a.updateTypes.map((u) => {\n switch (u) {\n case ServiceRequestUpdateType.AssignServiceRequest:\n return {\n id: a.version.toString(),\n type: 'assignment',\n person: agencyUserMap[a.updateInitiatorId]?.name || 'unknown',\n assigned:\n a.serviceRequest.assignee?.id === a.updateInitiatorId\n ? 'themselves'\n : a.serviceRequest.assignee?.name || 'no one',\n dueDate: undefined,\n date: relativeDate(new Date(a.createdAt))\n } as ActivityItem;\n\n case ServiceRequestUpdateType.CloseServiceRequest:\n return {\n id: a.version.toString(),\n type: 'resolved',\n person:\n a.updateInitiatorType === UpdateInitiatorType.AgencyUser\n ? agencyUserMap[a.updateInitiatorId]?.name || 'unknown'\n : 'Cara',\n comment: a.serviceRequest.resolution?.notes,\n assigned: undefined,\n dueDate: undefined,\n date: relativeDate(new Date(a.createdAt))\n } as ActivityItem;\n\n case ServiceRequestUpdateType.UpdateServiceRequestDueAt:\n return {\n id: a.version.toString(),\n type: 'set due date',\n person: agencyUserMap[a.updateInitiatorId]?.name || 'unknown',\n assigned: undefined,\n dueDate: a.serviceRequest.dueAt\n ? new Date(a.serviceRequest.dueAt).toLocaleDateString('en-US', {\n month: 'short',\n day: 'numeric'\n })\n : 'none',\n date: relativeDate(new Date(a.createdAt))\n } as ActivityItem;\n }\n });\n }\n\n return null;\n })\n .filter((v): v is ActivityItem => !!v);\n\n return (\n
\n
    \n {activity.map((activityItem, activityItemIdx) => (\n
  • \n
    \n {activityItemIdx !== activity.length - 1 ? (\n \n ) : null}\n
    \n {activityItem.type === 'comment' ? (\n <>\n
    \n
    \n {activityItem.person.charAt(0)}\n {activityItem.person.split(' ')[1].charAt(0)}\n
    \n
    \n
    \n
    \n
    \n \n {activityItem.person}\n \n
    \n

    \n Commented {activityItem.date}\n

    \n
    \n
    {activityItem.comment}
    \n
    \n \n ) : activityItem.type === 'assignment' ? (\n <>\n
    \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    \n {activityItem.person}{' '}\n assigned{' '}\n \n {activityItem.assigned}\n {' '}\n {activityItem.date}\n
    \n
    \n \n ) : activityItem.type === 'resolved' ? (\n <>\n
    \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    \n {activityItem.person}{' '}\n resolved{' '}\n \n {activityItem.assigned}\n {' '}\n {activityItem.date}\n
    \n
    {activityItem.comment}
    \n
    \n \n ) : activityItem.type === 'set due date' ? (\n <>\n
    \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    \n {activityItem.person}{' '}\n set the due date to{' '}\n {activityItem.dueDate}{' '}\n {activityItem.date}\n
    \n
    \n \n ) : null}\n
    \n
    \n
  • \n ))}\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n \n {\n const content = e.currentTarget.value;\n updateForm(['content'], (prev) => ({ ...prev, content }));\n }}\n />\n
\n\n \n Comment\n \n \n
\n
\n
\n );\n};\n","import React from 'react';\nimport clsx from 'clsx';\nimport { Form, Link, useLoaderData, useNavigate } from 'react-router-dom';\nimport { AnimatePresence, motion } from 'motion/react';\nimport Markdown from 'react-markdown';\nimport remarkGfm from 'remark-gfm';\nimport rehypeRaw from 'rehype-raw';\nimport rehypeSanitize from 'rehype-sanitize';\n\nimport * as Headless from '@headlessui/react';\nimport {\n ChevronDownIcon,\n ChevronLeftIcon,\n ChevronUpIcon,\n MagnifyingGlassIcon,\n PaperClipIcon,\n SparklesIcon,\n XMarkIcon\n} from '@heroicons/react/24/outline';\nimport { PaperAirplaneIcon } from '@heroicons/react/20/solid';\nimport { Spinner } from '@oysterjs/uiv2/spinner';\nimport { PageTitle } from '@oysterjs/uiv2/page';\nimport { Badge } from '@oysterjs/uiv2/badge';\nimport {\n Table,\n TableHead,\n TableBody,\n TableRow,\n TableHeader,\n TableCell\n} from '@oysterjs/uiv2/table';\nimport { Input, InputGroup } from '@oysterjs/uiv2/input';\nimport { Select } from '@oysterjs/uiv2/select';\nimport { MultiListbox, MultiListboxOption } from '@oysterjs/uiv2/multiselect';\nimport { Description, Field, FieldGroup, Fieldset, Label } from '@oysterjs/uiv2/fieldset';\n\nimport { client } from '../api/client';\nimport {\n AddCaraWorkspaceMessageDocument,\n AddCaraWorkspaceMessageMutation,\n CaraWorkspaceArtifactType,\n CaraWorkspaceFieldsFragment,\n CaraWorkspaceMessageRole,\n CaraWorkspaceOverviewFieldsFragment,\n CaraWorkspacePlanStageEventType,\n CaraWorkspacePlanStageState,\n CaraWorkspacePlanStageType,\n CaraWorkspacePreset,\n CaraWorkspaceState,\n CreateCaraWorkspaceDocument,\n CreateCaraWorkspaceMutation,\n DocumentType,\n GetCaraWorkspaceDocument,\n GetCaraWorkspaceQuery,\n ResolveServiceRequestDocument,\n ResolveServiceRequestInput,\n ResolveServiceRequestMutation,\n ResolveServiceRequestMutationVariables,\n ServiceRequestState,\n WatchCaraWorkspaceDocument,\n WatchCaraWorkspaceSubscription,\n WatchCaraWorkspaceSubscriptionVariables\n} from '../api/graphql';\nimport { ApolloError, useSubscription } from '@apollo/client';\nimport { Await } from '@oysterjs/uiv2/async';\nimport { Button } from '@oysterjs/uiv2/button';\nimport { ResolveServiceRequestDialog } from './servicing';\nimport {\n DialogTitle,\n DialogDescription,\n Dialog,\n DialogBody,\n DialogActions\n} from '@oysterjs/uiv2/dialog';\nimport { Textarea } from '@oysterjs/uiv2/textarea';\nimport { FileInput } from '@oysterjs/uiv2/file';\n\nconst getFilesFromEvent = (dataTransfer?: DataTransfer): File[] => {\n const files: File[] = [];\n\n if (dataTransfer && dataTransfer.items) {\n // Use DataTransferItemList interface to access the file(s)\n for (let i = 0; i < dataTransfer.items.length; i++) {\n // If dropped items aren't files, reject them\n if (dataTransfer.items[i].kind === 'file') {\n const file = dataTransfer.items[i].getAsFile();\n if (file) {\n files.push(file);\n }\n }\n }\n } else if (dataTransfer && dataTransfer.files) {\n // Use DataTransfer interface to access the file(s)\n for (let i = 0; i < dataTransfer.files.length || 0; i++) {\n const file = dataTransfer.files[i];\n if (file) {\n files.push(file);\n }\n }\n }\n\n return files;\n};\n\nconst CaraInput = (props: {\n onSubmit: (message: string, attachments: File[]) => Promise;\n inline?: boolean;\n loading?: boolean;\n}) => {\n const [isFocused, setIsFocused] = React.useState(false);\n const [query, setQuery] = React.useState('');\n\n const [submitLoading, setSubmitLoading] = React.useState(false);\n const loading = props.loading || submitLoading;\n\n const [, setDragging] = React.useState(false);\n const [attachments, setAttachments] = React.useState([]);\n\n const ref = React.useRef(null);\n const textAreaRef = React.useRef(null);\n\n const addFiles = (files: File[]) =>\n setAttachments((prev) => {\n const newAttachments = [...prev, ...files];\n return newAttachments;\n });\n\n const removeFile = (e: React.MouseEvent, index: number) => {\n e.stopPropagation();\n setAttachments((prev) => {\n const newAttachments = prev.filter((_, i) => i !== index);\n return newAttachments;\n });\n };\n\n const onDragEnter = (e: { dataTransfer?: DataTransfer; preventDefault: () => void }) => {\n e.preventDefault();\n setDragging(true);\n };\n\n const onDragLeave = (e: { dataTransfer?: DataTransfer; preventDefault: () => void }) => {\n e.preventDefault();\n setDragging(false);\n };\n\n const onDragOver = (e: { dataTransfer?: DataTransfer; preventDefault: () => void }) => {\n e.preventDefault();\n if (e.dataTransfer) {\n e.dataTransfer.dropEffect = 'copy';\n }\n };\n\n const onDrop = (e: { dataTransfer?: DataTransfer; preventDefault: () => void }) => {\n e.preventDefault();\n setDragging(false);\n\n const files = getFilesFromEvent(e.dataTransfer);\n if (files.length > 0) {\n addFiles(files);\n }\n };\n\n const onSubmit = async (e: React.MouseEvent) => {\n e.preventDefault();\n setSubmitLoading(true);\n try {\n await props.onSubmit(query.trim(), attachments);\n setQuery('');\n setAttachments([]);\n if (textAreaRef.current) {\n textAreaRef.current.blur();\n setTimeout(() => {\n window.scrollTo({ top: document.body.scrollHeight, behavior: 'smooth' });\n }, 200);\n }\n } finally {\n setSubmitLoading(false);\n }\n };\n\n return (\n \n setQuery(e.target.value)}\n onFocus={() => setIsFocused(true)}\n onBlur={() => setIsFocused(false)}\n rows={props.inline && !isFocused && !query ? 1 : 4}\n />\n addFiles(Array.from(e.currentTarget?.files || []))}\n multiple\n className=\"hidden\"\n />\n \n {(query?.length >= 1 || attachments.length >= 1) && (\n \n {attachments.length >= 1 && (\n
\n {attachments.map((attachment, i) => (\n \n \n

{attachment.name}

\n removeFile(e, i)}>\n \n \n
\n ))}\n \n )}\n
\n
\n ref?.current?.click()}\n >\n \n \n \n {!loading && }\n {loading && }\n \n
\n
\n \n )}\n
\n \n );\n};\n\nexport const CopilotStartPage = () => {\n const navigate = useNavigate();\n\n const [taskDialogShowing, setTaskDialogShowing] = React.useState(false);\n const [task, setTask] = React.useState<{\n preset: CaraWorkspacePreset;\n title: string;\n description: string;\n } | null>(null);\n\n const createWorkspace = async (\n query: string,\n attachments: File[],\n documentIds?: DocumentType[]\n ) => {\n const res = await client.mutate({\n mutation: CreateCaraWorkspaceDocument,\n variables: {\n input: {\n message: query.trim(),\n files: attachments,\n preset: task?.preset || undefined,\n documentIds: documentIds || []\n }\n }\n });\n\n if (res.errors?.length) {\n throw new ApolloError({ graphQLErrors: res.errors });\n }\n\n const id = res.data?.createCaraWorkspace?.id;\n if (!id) {\n throw new Error('Failed to create workspace');\n }\n\n navigate(`/app/workspaces/${id}`);\n };\n\n // Ask Cara to do something\n const taskRequests = [\n {\n preset: CaraWorkspacePreset.CertificateReview,\n title: 'Certificate Review',\n description: 'Review a certificate for any discrepancies and E&O exposure'\n },\n {\n preset: CaraWorkspacePreset.ContractReview,\n title: 'Contract Review',\n description:\n 'Review a contract for insurance requirements and compare it to quote or policy details'\n },\n {\n preset: CaraWorkspacePreset.CoverageComparison,\n title: 'Coverage Comparison',\n description: 'Compare coverage details between multiple quotes or policies'\n },\n {\n preset: CaraWorkspacePreset.DocumentExploration,\n title: 'Explore a Policy',\n description: 'Ask Cara to answer questions about a policy document'\n },\n {\n preset: CaraWorkspacePreset.GenerateTemplate,\n title: 'Fill Template',\n description: 'Cross-fill forms and templates from other documents and instructions'\n },\n {\n preset: CaraWorkspacePreset.GenerateCertificateOfLiabilityInsurance,\n title: 'Generate Certificate',\n description: 'Generate a certificate of liability insurance (ACORD 25) for a customer'\n }\n ];\n\n return (\n
\n

What can Cara do for you?

\n

\n Ask Cara to help with anything you need, from finding information to drafting emails and\n documents.\n

\n
\n \n
\n
\n
\n {taskRequests.map((task) => (\n {\n setTask(task);\n setTaskDialogShowing(true);\n }}\n className=\"px-4 py-2 bg-primary-100 text-primary-700 hover:bg-primary-200 hover:text-primary-800 transition-all duration-150 rounded-full text-sm font-medium inline-block\"\n >\n {task.title}\n \n ))}\n
\n
\n setTaskDialogShowing(false)} size=\"xl\">\n {task?.title}\n {task?.description}\n\n {task?.preset === CaraWorkspacePreset.CertificateReview && (\n setTaskDialogShowing(false)}\n />\n )}\n {task?.preset === CaraWorkspacePreset.ContractReview && (\n setTaskDialogShowing(false)}\n />\n )}\n {task?.preset === CaraWorkspacePreset.CoverageComparison && (\n setTaskDialogShowing(false)}\n />\n )}\n {task?.preset === CaraWorkspacePreset.GenerateCertificateOfLiabilityInsurance && (\n setTaskDialogShowing(false)}\n />\n )}\n {task?.preset === CaraWorkspacePreset.GenerateTemplate && (\n setTaskDialogShowing(false)}\n />\n )}\n {task?.preset === CaraWorkspacePreset.DocumentExploration && (\n setTaskDialogShowing(false)}\n />\n )}\n \n
\n );\n};\n\nconst CopilotCertificateReviewForm = (props: {\n onSubmit: (query: string, attachments: File[]) => Promise;\n onClose: () => void;\n}) => {\n const [loading, setLoading] = React.useState(false);\n\n const [message, setMessage] = React.useState('');\n const [certificateFiles, setCertificateFiles] = React.useState([]);\n const [quoteFiles, setQuoteFiles] = React.useState([]);\n\n const onSubmit = async () => {\n setLoading(true);\n await props.onSubmit(message, [\n ...certificateFiles.map(\n (f) =>\n new File([f], '[Certificate] ' + f.name, { type: f.type, lastModified: f.lastModified })\n ),\n ...quoteFiles.map(\n (f) =>\n new File([f], '[Quote or Policy] ' + f.name, {\n type: f.type,\n lastModified: f.lastModified\n })\n )\n ]);\n setLoading(false);\n };\n\n return (\n {\n e.preventDefault();\n onSubmit();\n }}\n >\n *+*]:pt-6 divide-y divide-neutral-200\">\n
\n \n \n \n \n Upload the certificate of insurance you want Cara to review.\n \n setCertificateFiles(files)} />\n \n \n \n \n Upload any quotes or policies you want Cara to compare to the certificate of\n insurance.\n \n setQuoteFiles(files)} />\n \n \n \n \n Add any additional notes you want Cara to consider when reviewing the certificate of\n insurance.\n \n setMessage(e.currentTarget.value)}\n rows={3}\n />\n \n \n
\n
\n \n \n \n \n \n );\n};\n\nconst CopilotContractReviewForm = (props: {\n onSubmit: (query: string, attachments: File[]) => Promise;\n onClose: () => void;\n}) => {\n const [loading, setLoading] = React.useState(false);\n\n const [message, setMessage] = React.useState('');\n const [contractFiles, setContractFiles] = React.useState([]);\n const [quoteFiles, setQuoteFiles] = React.useState([]);\n\n const onSubmit = async () => {\n setLoading(true);\n await props.onSubmit(message, [\n ...contractFiles.map(\n (f) => new File([f], '[Contract] ' + f.name, { type: f.type, lastModified: f.lastModified })\n ),\n ...quoteFiles.map(\n (f) =>\n new File([f], '[Quote or Policy] ' + f.name, {\n type: f.type,\n lastModified: f.lastModified\n })\n )\n ]);\n setLoading(false);\n };\n\n return (\n {\n e.preventDefault();\n onSubmit();\n }}\n >\n *+*]:pt-6 divide-y divide-neutral-200\">\n
\n \n \n \n \n Upload the contract you want Cara to review for insurance requirements.\n \n setContractFiles(files)} />\n \n \n \n \n Upload any quotes or policies you want Cara to compare to the contract requirements.\n \n setQuoteFiles(files)} />\n \n \n \n \n Add any additional notes you want Cara to consider when reviewing the contract.\n \n setMessage(e.currentTarget.value)}\n rows={3}\n />\n \n \n
\n
\n \n \n \n \n \n );\n};\n\nconst CopilotCoverageComparisonForm = (props: {\n onSubmit: (query: string, attachments: File[]) => Promise;\n onClose: () => void;\n}) => {\n const [loading, setLoading] = React.useState(false);\n\n const [message, setMessage] = React.useState('');\n const [firstQuoteFiles, setFirstQuoteFiles] = React.useState([]);\n const [secondQuoteFiles, setSecondQuoteFiles] = React.useState([]);\n\n const onSubmit = async () => {\n setLoading(true);\n await props.onSubmit(message, [\n ...firstQuoteFiles.map(\n (f) =>\n new File([f], '[Option 1] ' + f.name, {\n type: f.type,\n lastModified: f.lastModified\n })\n ),\n ...secondQuoteFiles.map(\n (f) =>\n new File([f], '[Option 2] ' + f.name, {\n type: f.type,\n lastModified: f.lastModified\n })\n )\n ]);\n setLoading(false);\n };\n\n return (\n {\n e.preventDefault();\n onSubmit();\n }}\n >\n *+*]:pt-6 divide-y divide-neutral-200\">\n
\n \n \n \n \n Upload any quotes or policies you want Cara that comprise the first option to\n compare.\n \n setFirstQuoteFiles(files)} />\n \n \n \n \n Upload any quotes or policies you want Cara to compare to the first option.\n \n setSecondQuoteFiles(files)} />\n \n \n \n \n Add any additional notes you want Cara to consider when comparing the quotes or\n policies.\n \n setMessage(e.currentTarget.value)}\n rows={3}\n />\n \n \n
\n
\n \n \n \n \n \n );\n};\n\nconst CopilotGenerateCertificateOfLiabilityInsuranceForm = (props: {\n onSubmit: (query: string, attachments: File[]) => Promise;\n onClose: () => void;\n}) => {\n const [loading, setLoading] = React.useState(false);\n\n const [message, setMessage] = React.useState('');\n const [quoteOrPolicyFiles, setQuoteOrPolicyFiles] = React.useState([]);\n\n const onSubmit = async () => {\n setLoading(true);\n await props.onSubmit(message, [\n ...quoteOrPolicyFiles.map(\n (f) =>\n new File([f], '[Binder or Policy] ' + f.name, {\n type: f.type,\n lastModified: f.lastModified\n })\n )\n ]);\n setLoading(false);\n };\n\n return (\n {\n e.preventDefault();\n onSubmit();\n }}\n >\n *+*]:pt-6 divide-y divide-neutral-200\">\n
\n \n \n \n \n Upload the binders or policies you want Cara to use while generating a certificate\n of liability insurance.\n \n setQuoteOrPolicyFiles(files)} />\n \n \n \n \n Add any additional information you want Cara to consider when generating a\n certificate of liability insurance, such as the certificate holder's name and\n address, the description of operations, or any other requirements.\n \n setMessage(e.currentTarget.value)}\n rows={4}\n />\n \n \n
\n
\n \n \n \n \n \n );\n};\n\nexport const CopilotGenerateTemplateForm = (props: {\n onSubmit: (query: string, attachments: File[], documentIds: DocumentType[]) => Promise;\n onClose: () => void;\n}) => {\n const [loading, setLoading] = React.useState(false);\n\n const [message, setMessage] = React.useState('');\n const [inputFiles, setInputFiles] = React.useState([]);\n const [documentIds, setDocumentIds] = React.useState([]);\n\n const onSubmit = async () => {\n setLoading(true);\n await props.onSubmit(\n message,\n [\n ...inputFiles.map(\n (f) =>\n new File([f], '[Input] ' + f.name, {\n type: f.type,\n lastModified: f.lastModified\n })\n )\n ],\n documentIds\n );\n setLoading(false);\n };\n\n return (\n {\n e.preventDefault();\n onSubmit();\n }}\n >\n *+*]:pt-6 divide-y divide-neutral-200\">\n
\n \n \n \n \n Any files you'd like Cara to parse and use as input to cross-file into templates.\n \n setInputFiles(files)} />\n \n \n \n Choose the templates you'd like Cara to fill out.\n setDocumentIds(value)}\n value={documentIds}\n placeholder=\"Select templates\"\n >\n {Object.values(DocumentType)\n .filter((t) =>\n [\n DocumentType.Acord_125,\n DocumentType.Acord_126,\n DocumentType.Acord_140\n ].includes(t)\n )\n .map((type) => (\n \n {type.replace(/_/g, ' ')}\n \n ))}\n \n \n \n \n \n Add any additional information you want Cara to consider when filling out the\n template. This can be specific instructions or other free-form information that\n should be parsed and mapped to template fields\n \n setMessage(e.currentTarget.value)}\n rows={5}\n />\n \n \n
\n
\n \n \n \n \n \n );\n};\n\nconst CopilotDocumentExplorationForm = (props: {\n onSubmit: (query: string, attachments: File[]) => Promise;\n onClose: () => void;\n}) => {\n const [loading, setLoading] = React.useState(false);\n\n const [message, setMessage] = React.useState('');\n const [inputFiles, setInputFiles] = React.useState([]);\n\n const onSubmit = async () => {\n setLoading(true);\n await props.onSubmit(message, [\n ...inputFiles.map(\n (f) =>\n new File([f], '[Policy] ' + f.name, {\n type: f.type,\n lastModified: f.lastModified\n })\n )\n ]);\n setLoading(false);\n };\n\n return (\n {\n e.preventDefault();\n onSubmit();\n }}\n >\n *+*]:pt-6 divide-y divide-neutral-200\">\n
\n \n \n \n Files you'd like Cara to use as context to answer questions\n setInputFiles(files)} />\n \n \n \n \n Any question or prompt you'd like Cara to answer about the documents.\n \n setMessage(e.currentTarget.value)}\n rows={5}\n />\n \n \n
\n
\n \n \n \n \n \n );\n};\n\nconst titleCase = (s: string) =>\n s\n .split(/[\\s_]/g)\n .map((part) => part[0].toUpperCase() + part.substring(1).toLowerCase())\n .join(' ');\n\nexport const CopilotWorkspacesPage = () => {\n const loader = useLoaderData() as\n | { data: Promise<{ caraWorkspaces?: CaraWorkspaceOverviewFieldsFragment[] }> }\n | undefined;\n\n return (\n \n
\n
\n
\n
\n
\n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
\n
\n
\n
\n\n }>\n \n {({ caraWorkspaces }) => (\n
\n {!caraWorkspaces?.length && (\n
\n \n

\n No workspaces found\n

\n

\n Create a copilot workspace to get started.\n

\n
\n )}\n {!!caraWorkspaces?.length && (\n \n \n \n Title\n User\n Status\n Last Updated\n \n \n \n {caraWorkspaces.map((workspace) => (\n \n \n {workspace.title ||
}\n
\n {workspace.agencyUser.name}\n \n \n {titleCase(workspace.state)}\n \n \n \n {workspace.updatedAt &&\n new Intl.DateTimeFormat('en-US', {\n dateStyle: 'medium',\n timeStyle: 'short'\n }).format(new Date(workspace.updatedAt))}\n \n
\n ))}\n
\n \n )}\n
\n )}\n
\n
\n
\n \n );\n};\n\nexport const CopilotWorkspacesPageLoader = () => {\n return (\n
\n
\n \n

Loading Cara workspaces...

\n

This might take a moment.

\n
\n
\n );\n};\n\nexport const CopilotWorkspacePage = () => {\n const loader = useLoaderData() as\n | {\n data: Promise<{\n caraWorkspace?: CaraWorkspaceFieldsFragment;\n }>;\n }\n | undefined;\n\n return (\n }>\n \n {(data) =>\n data?.caraWorkspace && \n }\n \n \n );\n};\n\nconst CopilotWorkspacePageInner = (props: { workspace: CaraWorkspaceFieldsFragment }) => {\n const [workspace, setWorkspace] = React.useState(props.workspace);\n const { data, error, restart } = useSubscription<\n WatchCaraWorkspaceSubscription,\n WatchCaraWorkspaceSubscriptionVariables\n >(WatchCaraWorkspaceDocument, {\n variables: { id: workspace.id },\n client: client,\n onComplete: () => setTimeout(() => restart(), 1000)\n });\n const [, setErrorCount] = React.useState(0);\n\n React.useEffect(() => {\n if (data?.watchCaraWorkspace) {\n setWorkspace(data.watchCaraWorkspace);\n }\n\n setErrorCount((prev) => {\n let next = 0;\n if (error) {\n next = prev + 1;\n setTimeout(() => restart(), Math.min(Math.pow(2, next) * 1000, 10000));\n }\n\n return next;\n });\n }, [data?.watchCaraWorkspace?.updatedAt, error]);\n\n const updateWorkspace = async () => {\n const res = await client.query({\n query: GetCaraWorkspaceDocument,\n variables: { id: workspace.id }\n });\n\n if (res.errors?.length) {\n throw new ApolloError({ graphQLErrors: res.errors });\n }\n\n if (!res.data?.caraWorkspace) {\n throw new Error('Workspace not found');\n }\n\n restart();\n setWorkspace(res.data?.caraWorkspace);\n return res.data?.caraWorkspace;\n };\n\n const addCaraWorkspaceMessage = async (query: string, attachments: File[]) => {\n if (!workspace) {\n return;\n }\n\n const res = await client.mutate({\n mutation: AddCaraWorkspaceMessageDocument,\n variables: {\n id: workspace.id,\n input: {\n message: query,\n files: attachments\n }\n }\n });\n\n if (res.errors?.length) {\n throw new ApolloError({ graphQLErrors: res.errors });\n }\n\n if (!res.data?.addCaraWorkspaceMessage) {\n throw new Error('Failed to add message to workspace');\n }\n\n setWorkspace(res.data?.addCaraWorkspaceMessage);\n };\n\n const [showResolveServiceRequest, setShowResolveServiceRequest] = React.useState(false);\n const [resolveServiceRequestLoading, setResolveServiceRequestLoading] = React.useState(false);\n\n const handleResolveServiceRequest = async (form: ResolveServiceRequestInput) => {\n setResolveServiceRequestLoading(true);\n try {\n await client.mutate({\n mutation: ResolveServiceRequestDocument,\n variables: {\n id: workspace.serviceRequest?.id || '',\n input: {\n notes: form.notes,\n files: form.files\n }\n }\n });\n await updateWorkspace();\n setShowResolveServiceRequest(false);\n setResolveServiceRequestLoading(false);\n } finally {\n setResolveServiceRequestLoading(false);\n }\n };\n\n return (\n
\n {!workspace && }\n {workspace && (\n
\n
\n
\n \n \n \n
{workspace.title}
\n
\n
\n
\n
\n
\n {formatWorkspace2(workspace)}\n \n
\n
\n \n \n \n
\n
\n
\n
\n \n \n
Back to workspaces
\n \n
\n

{workspace.title || '—'}

\n \n {titleCase(workspace.state)}\n \n
\n
\n {workspace.preset && (\n
\n
Preset
\n
\n {titleCase(workspace.preset)}\n
\n
\n )}\n {workspace.files.length > 0 && (\n
\n
Attachments
\n
\n {workspace.files.map((file) => (\n \n \n

\n {file.name}\n

\n \n ))}\n
\n
\n )}\n {workspace.serviceRequest && (\n
\n
\n Service Request: {titleCase(workspace.serviceRequest.type)}\n
\n
\n
\n {workspace.serviceRequest.details ||\n workspace.serviceRequest.question?.question ||\n workspace.serviceRequest.cancelPolicy?.reason}\n
\n
\n setShowResolveServiceRequest(true)}\n disabled={workspace.serviceRequest.state === ServiceRequestState.Closed}\n >\n {workspace.serviceRequest.state === ServiceRequestState.Closed\n ? 'Resolved'\n : 'Resolve'}\n \n \n View\n \n
\n
\n
\n )}\n
\n
\n
\n
\n
\n )}\n {workspace && (\n setShowResolveServiceRequest(false)}\n loading={resolveServiceRequestLoading}\n onSubmit={handleResolveServiceRequest}\n validationErrors={[]}\n />\n )}\n
\n );\n};\n\nconst InProgressIndicator = () => (\n
\n \n \n \n \n \n \n
\n);\n\nconst CompletedIndicator = () => (\n
\n \n \n \n
\n);\n\nconst formatWorkspace2 = (workspace: CaraWorkspaceFieldsFragment | null) => {\n if (!workspace) {\n return [];\n }\n\n // Sort messages and stages by timestamp\n const combined = [...workspace.messages, ...workspace.planStages].sort((a, b) => {\n const aDate =\n a.__typename === 'CaraWorkspaceMessage'\n ? new Date(a.timestamp)\n : a.__typename === 'CaraWorkspacePlanStage'\n ? new Date(a.events.at(-1)?.startedAt || a.startedAt || a.createdAt)\n : null;\n const bDate =\n b.__typename === 'CaraWorkspaceMessage'\n ? new Date(b.timestamp)\n : b.__typename === 'CaraWorkspacePlanStage'\n ? new Date(b.events.at(-1)?.startedAt || b.startedAt || b.createdAt)\n : null;\n\n return (aDate?.getTime() || 0) - (bDate?.getTime() || 0);\n });\n\n // Group them by role\n const groups: {\n role: CaraWorkspaceMessageRole;\n items: (\n | CaraWorkspaceFieldsFragment['messages'][0]\n | CaraWorkspaceFieldsFragment['planStages'][0]\n )[];\n }[] = [];\n\n combined.forEach((item) => {\n if (item.__typename === 'CaraWorkspaceMessage') {\n if (groups.at(-1)?.role === item.role) {\n groups.at(-1)?.items.push(item);\n } else {\n groups.push({ role: item.role, items: [item] });\n }\n } else {\n if (groups.at(-1)?.role === CaraWorkspaceMessageRole.Agent) {\n groups.at(-1)?.items.push(item);\n } else {\n groups.push({ role: CaraWorkspaceMessageRole.Agent, items: [item] });\n }\n }\n });\n\n // Assign artifacts to the latest plan stage that produced it\n const messageToArtifacts = new Map();\n workspace.artifacts.forEach((artifact) => {\n // Find the stage whose updatedAt is the closest to the artifact's updatedAt\n const stage = workspace.messages.reduce((prev, current) => {\n const currentDate = new Date(current.timestamp);\n const prevDate = new Date(prev.timestamp);\n const artifactDate = new Date(artifact.createdAt);\n\n return Math.abs(currentDate.getTime() - artifactDate.getTime()) <\n Math.abs(prevDate.getTime() - artifactDate.getTime())\n ? current\n : prev;\n }, workspace.messages[0]);\n\n messageToArtifacts.set(stage.id, [...(messageToArtifacts.get(stage.id) || []), artifact]);\n });\n\n // Determine UI quirks that need to be fixed.\n // 1. If the workspace is WORKING and there is no IN_PROGRESS thought, we need to show a \"thinking\" indicator\n // 2. Display artifacts with the result of the latest plan stage that generated it.\n const thinkingIndicator =\n workspace.state === CaraWorkspaceState.Working &&\n !workspace.planStages.some((stage) =>\n stage.events.some((e) => e.type === CaraWorkspacePlanStageEventType.Thought && !e.endedAt)\n );\n\n // Now render!\n return groups.map((group, i) => (\n
\n \n {group.role === CaraWorkspaceMessageRole.User ? 'You' : 'Cara'}\n \n
\n {group.items.map((item, j) => {\n if (\n item.__typename === 'CaraWorkspaceMessage' &&\n group.role === CaraWorkspaceMessageRole.User\n ) {\n return ;\n }\n\n if (\n item.__typename === 'CaraWorkspaceMessage' &&\n group.role === CaraWorkspaceMessageRole.Agent\n ) {\n return (\n
\n \n {thinkingIndicator && i === groups.length - 1 && j === group.items.length - 1 && (\n \n )}\n
\n );\n }\n\n if (item.__typename === 'CaraWorkspacePlanStage') {\n if (item.type === CaraWorkspacePlanStageType.ProcessAttachments) {\n const progress = item.processAttachmentsDetails?.currentFileProgress || 0;\n const title =\n item.state === CaraWorkspacePlanStageState.InProgress\n ? `Processing attachments... (${Math.round(progress * 1000) / 10}%)`\n : 'Processed attachments';\n\n return (\n
\n \n
\n );\n }\n\n if (item.type === CaraWorkspacePlanStageType.Task) {\n const thinkingEvents = item.events.filter(\n (e) => e.type === CaraWorkspacePlanStageEventType.Thought && !!e.title\n );\n if (thinkingEvents.length > 0 || thinkingIndicator) {\n return (\n
\n {thinkingEvents.map((e, k) => (\n \n ))}\n {thinkingEvents.length === 0 &&\n thinkingIndicator &&\n i === groups.length - 1 &&\n j === group.items.length - 1 && (\n \n )}\n
\n );\n }\n }\n }\n\n return null;\n })}\n
\n
\n ));\n};\n\nconst PlanStageThought = (props: { title: string; content: string; completed: boolean }) => {\n const [showContent, setShowContent] = React.useState(!props.completed);\n\n React.useEffect(() => {\n if (props.completed) {\n setShowContent(false);\n }\n }, [props.completed]);\n\n return (\n \n setShowContent(!showContent)}\n disabled={!props.content}\n >\n
\n {props.completed ? : }\n {props.title}\n
\n
\n {showContent ? (\n \n ) : (\n \n )}\n
\n \n \n
\n          {props.content}\n        
\n \n
\n );\n};\n\nconst UserMessage = (props: {\n content: string;\n attachments: CaraWorkspaceFieldsFragment['messages'][0]['files'];\n}) => (\n \n \n \n {props.content.replace(/
/g, ' ')}\n \n \n {props.attachments.length >= 1 && (\n
\n {props.attachments.map((attachment) => (\n \n \n

{attachment.name}

\n \n ))}\n
\n )}\n
\n);\n\nconst ResponseMessage = (props: {\n content: string;\n artifacts: CaraWorkspaceFieldsFragment['artifacts'][0][];\n}) => (\n \n \n \n {props.content.replace(/
/g, ' ').replace(/```/g, '')}\n \n \n {props.artifacts.length > 0 && (\n
\n {props.artifacts.map((artifact) => (\n \n ))}\n
\n )}\n
\n);\n\nconst ResponseArtifact = (props: { artifact: CaraWorkspaceFieldsFragment['artifacts'][0] }) => {\n // Depending on the artifact type we need to build certain UI. Support emails only for now\n if (props.artifact.type === CaraWorkspaceArtifactType.Email) {\n return (\n \n

{props.artifact.email?.subject}

\n

{props.artifact.email?.to?.[0]?.email}

\n
\n          {props.artifact.email?.body}\n        
\n
\n );\n }\n\n if (props.artifact.type === CaraWorkspaceArtifactType.Document) {\n return (\n \n
\n
\n \n
\n

\n {props.artifact.document?.type.replace('_', ' ')}\n

\n

\n {props.artifact.document?.data?.acord125?.applicant1.name ||\n props.artifact.document?.data?.acord126?.namedInsured ||\n props.artifact.document?.data?.acord140?.namedInsured ||\n props.artifact.document?.data?.acord25?.holder.name ||\n ''}\n

\n
\n
\n \n
\n
\n );\n }\n\n if (props.artifact.type === CaraWorkspaceArtifactType.CertificateOfLiabilityInsurance) {\n return (\n \n
\n
\n \n
\n

\n {props.artifact.certificateOfLiabilityInsurance?.holder.name}\n

\n

Certificate of Liability Insurance

\n
\n
\n \n View Certificate\n \n
\n
\n );\n }\n return null;\n};\n\nconst AnimateIn = (props: { className?: string; children: React.ReactNode }) => {\n return (\n \n {props.children}\n \n );\n};\n","import { CopilotStartPage } from './copilot';\n\nexport const HomePage = () => {\n return ;\n};\n","import {\n useLoaderData,\n useLocation,\n useNavigation,\n useOutlet,\n useActionData,\n useNavigate,\n useSubmit,\n Form,\n useRouteLoaderData,\n useAsyncValue\n} from 'react-router-dom';\n\nimport React from 'react';\nimport clsx from 'clsx';\nimport * as Headless from '@headlessui/react';\nimport {\n MagnifyingGlassIcon,\n CubeTransparentIcon,\n CalendarIcon,\n BriefcaseIcon,\n PencilIcon,\n UserIcon,\n CurrencyDollarIcon,\n DocumentPlusIcon,\n EyeIcon,\n TrashIcon,\n ArrowRightIcon\n} from '@heroicons/react/24/outline';\nimport { CheckCircleIcon, XCircleIcon } from '@heroicons/react/24/solid';\nimport { PageTitle } from '@oysterjs/uiv2/page';\nimport { Badge } from '@oysterjs/uiv2/badge';\nimport {\n Table,\n TableHead,\n TableBody,\n TableRow,\n TableHeader,\n TableCell\n} from '@oysterjs/uiv2/table';\n// import {\n// Pagination,\n// PaginationPrevious,\n// PaginationList,\n// PaginationPage,\n// PaginationGap,\nimport { useFormActions } from '@oysterjs/corev2/graphql/form';\n// PaginationNext\n// } from '@oysterjs/uiv2/pagination';\nimport { CurrencyInput, Input, InputGroup, PercentageInput } from '@oysterjs/uiv2/input';\nimport { Button } from '@oysterjs/uiv2/button';\nimport {\n Description,\n ErrorMessage,\n Field,\n FieldGroup,\n Fieldset,\n Label,\n Legend\n} from '@oysterjs/uiv2/fieldset';\nimport { PageNavigation } from '@oysterjs/uiv2/navigation';\nimport {\n AccountFieldsFragment,\n AddPolicyExplorerConversationMessageMutation,\n AgencyUserFieldsFragment,\n BusinessPolicyBillingType,\n BusinessPolicyDetailFieldsFragment,\n BusinessPolicyFieldsFragment,\n BusinessPolicyFileFieldsFragment,\n BusinessPolicySourceProcessType,\n BusinessPolicySourceSubType,\n BusinessPolicySourceType,\n CreateBusinessPoliciesInput,\n CreateBusinessPoliciesMutation,\n DeleteFileMutation,\n FileType,\n InsuranceCarrierFieldsFragment,\n InsuranceMarket,\n InsuranceType,\n PaymentIntervalType,\n PolicyExplorerConversationMessageFieldsFragment,\n PolicyExplorerConversationMessageRole,\n PolicyState,\n UpdateBusinessPolicyInput,\n UpdateBusinessPolicyMutation,\n UploadFileInput,\n UploadPolicyFileMutation\n} from '../api/graphql';\nimport { AnimatePresence } from 'motion/react';\nimport { Await, TransitionDiv } from '@oysterjs/uiv2/async';\nimport { ActionResult } from '@oysterjs/corev2/graphql/actions';\nimport { ValidationError } from '@oysterjs/corev2/graphql';\nimport {\n Dialog,\n DialogActions,\n DialogBody,\n DialogDescription,\n DialogTitle,\n MountableDialog\n} from '@oysterjs/uiv2/dialog';\nimport { Combobox } from '@oysterjs/uiv2/combobox';\nimport { getDisplayInsuranceType } from '../api/map';\nimport { Select } from '@oysterjs/uiv2/select';\nimport { DeepPartial } from '@oysterjs/corev2/graphql/types';\nimport { Textarea } from '@oysterjs/uiv2/textarea';\nimport { FileInput } from '@oysterjs/uiv2/file';\nimport { Spinner } from '@oysterjs/uiv2/spinner';\n\nexport const PoliciesPage = () => {\n const outlet = useOutlet();\n const location = useLocation();\n const loader = useLoaderData() as\n | { data: Promise<{ businessPolicies?: BusinessPolicyFieldsFragment[] }> }\n | undefined;\n\n return (\n \n
\n
\n
\n
\n
\n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n
\n }>\n \n {({ businessPolicies }) => (\n
\n {!businessPolicies?.length && (\n
\n \n

\n No policies found\n

\n

\n You haven't added any policies yet. Create a new policy to get started.\n

\n
\n )}\n {!!businessPolicies?.length && (\n \n \n \n Account\n Status\n Type\n Carrier\n \n \n \n {businessPolicies.map((policy) => (\n \n \n
{policy.account.account.name}
\n
{policy.account.account.email}
\n
\n \n \n {policy.state}\n \n \n {getDisplayInsuranceType(policy.type)}\n \n
{policy.carrier.name}
\n
{policy.policyNumber}
\n
\n
\n ))}\n
\n \n )}\n
\n )}\n
\n
\n
\n {/* \n \n \n 1\n 2\n \n 3\n \n 4\n \n 65\n 66\n \n \n */}\n\n \n {outlet && React.cloneElement(outlet, { key: location.pathname })}\n \n
\n );\n};\n\nexport const PoliciesPageLoader = () => {\n return (\n
\n
\n \n

Loading policies...

\n

This might take a moment.

\n
\n
\n );\n};\n\nconst activity = [\n {\n id: 1,\n type: 'created',\n person: { name: 'Chelsea Hagon' },\n date: '7d ago',\n dateTime: '2023-01-23T10:32'\n },\n {\n id: 2,\n type: 'edited',\n person: { name: 'Chelsea Hagon' },\n date: '6d ago',\n dateTime: '2023-01-23T11:03'\n },\n {\n id: 3,\n type: 'edited',\n person: { name: 'Chelsea Hagon' },\n date: '6d ago',\n dateTime: '2023-01-23T11:24'\n },\n {\n id: 5,\n type: 'edited',\n person: { name: 'Alex Curren' },\n date: '2d ago',\n dateTime: '2023-01-24T09:12'\n },\n {\n id: 6,\n type: 'canceled',\n person: { name: 'Alex Curren' },\n date: '1d ago',\n dateTime: '2023-01-24T09:20'\n }\n];\n\nexport const PolicyCreatePage = () => {\n const navigate = useNavigate();\n const loader = useRouteLoaderData('policies/new') as\n | {\n data: Promise<{\n accounts?: AccountFieldsFragment[];\n agencyUsers?: AgencyUserFieldsFragment[];\n carriers?: InsuranceCarrierFieldsFragment[];\n }>;\n }\n | undefined;\n\n return (\n navigate(-1)} size=\"2xl\">\n Create a new policy\n Create a new policy and associate it with an account.\n \n \n \n }\n >\n \n \n \n \n \n );\n};\n\nconst PolicyCreateForm = () => {\n const navigation = useNavigation();\n const navigate = useNavigate();\n const location = useLocation();\n const submit = useSubmit();\n const promise = useAsyncValue() as\n | {\n accounts?: AccountFieldsFragment[];\n agencyUsers?: AgencyUserFieldsFragment[];\n carriers?: InsuranceCarrierFieldsFragment[];\n }\n | undefined;\n\n const action = useActionData() as ActionResult;\n\n const [validationErrors, setValidationErrors] = React.useState([]);\n const [form, setForm] = React.useState>({\n accountId: new URLSearchParams(location.search).get('accountId') || '',\n policies: [\n {\n // Generate a random ID for the policy for reference purposes in the UI\n id: '' + Math.floor(999_999_999 + Math.random() * 1_000_000_000),\n // Set some default values to avoid GraphQL validation errors\n quoteNumber: '',\n sourceNotes: '',\n agencyFees: 0,\n brokerFees: 0,\n policyFees: 0,\n otherFees: 0,\n taxes: 0,\n // Set some default values for the form\n state: PolicyState.Binding,\n billingType: BusinessPolicyBillingType.Direct,\n paymentIntervalType: PaymentIntervalType.Annual,\n issuedAt: new Date(),\n inforceAt: new Date(),\n expiresAt: new Date(new Date().getTime() + 365 * 24 * 60 * 60 * 1000),\n // Set default values for fields not collected in the form yet\n sourceProcessType: BusinessPolicySourceProcessType.AgentLed,\n minimumEarnedPremium: 0\n }\n ]\n });\n const { updateForm, getValidationError } = useFormActions(setForm, setValidationErrors);\n\n React.useEffect(() => {\n updateForm(['policies', '0', 'total'], (prev) => ({\n ...prev,\n policies: [\n {\n ...(prev.policies?.[0] || {}),\n total:\n (prev.policies?.[0]?.premium || 0) +\n (prev.policies?.[0]?.taxes || 0) +\n (prev.policies?.[0]?.agencyFees || 0) +\n (prev.policies?.[0]?.brokerFees || 0) +\n (prev.policies?.[0]?.policyFees || 0) +\n (prev.policies?.[0]?.otherFees || 0)\n }\n ]\n }));\n }, [\n form.policies?.[0]?.premium,\n form.policies?.[0]?.taxes,\n form.policies?.[0]?.agencyFees,\n form.policies?.[0]?.brokerFees,\n form.policies?.[0]?.policyFees,\n form.policies?.[0]?.otherFees\n ]);\n\n React.useEffect(() => {\n if (action?.validationErrors) {\n setValidationErrors(action.validationErrors);\n }\n }, [action?.validationErrors]);\n\n const handleSubmit = (e: React.FormEvent) => {\n if (!form) {\n return;\n }\n\n e.preventDefault();\n\n // Disabled type checker because react-router-dom defines a custom type for what is considered\n // JSON-serializable, which does not include Date objects. This doesn't actually affect anything,\n // the type checker just complains.\n // eslint-disable-next-line\n // @ts-ignore\n submit(form, { method: 'POST', encType: 'application/json' });\n };\n\n return (\n
\n *+*]:pt-6 divide-y divide-neutral-200\">\n
\n Choose an account\n \n Search for and select the account to associate this policy with.\n \n \n \n \n updateForm(['accountId'], (prev) => ({ ...prev, accountId }))\n }\n options={\n promise?.accounts?.map((account) => ({\n value: account.id,\n label: account.account.name,\n description: account.account.email\n })) || []\n }\n error={getValidationError(validationErrors, ['accountId'])}\n />\n \n \n
\n {form.accountId && (\n <>\n
\n Policy Information\n Enter basic information about the policy\n \n
\n \n \n \n updateForm(['policies', '0', 'type'], (prev) => ({\n ...prev,\n policies: [\n {\n ...(prev.policies?.[0] || {}),\n type: type as InsuranceType\n }\n ]\n }))\n }\n options={Object.values(InsuranceType).map((type) => ({\n value: type,\n label: getDisplayInsuranceType(type)\n }))}\n error={getValidationError(validationErrors, ['policies', '0', 'type'])}\n />\n \n \n \n \n updateForm(['policies', '0', 'market'], (prev) => ({\n ...prev,\n policies: [\n {\n ...(prev.policies?.[0] || {}),\n market: market as InsuranceMarket\n }\n ]\n }))\n }\n options={[\n {\n value: InsuranceMarket.Admitted,\n label: 'Admitted'\n },\n {\n value: InsuranceMarket.ExcessAndSurplus,\n label: 'Excess and Surplus'\n }\n ]}\n error={getValidationError(validationErrors, ['policies', '0', 'market'])}\n />\n \n \n \n \n updateForm(['policies', '0', 'carrierId'], (prev) => ({\n ...prev,\n policies: [\n {\n ...(prev.policies?.[0] || {}),\n carrierId\n }\n ]\n }))\n }\n options={\n promise?.carriers\n ?.filter((carrier) => carrier.isCarrier)\n .map((carrier) => ({\n value: carrier.id,\n label: carrier.name\n })) || []\n }\n error={getValidationError(validationErrors, ['policies', '0', 'carrierId'])}\n />\n \n \n \n \n updateForm(['policies', '0', 'brokerId'], (prev) => ({\n ...prev,\n policies: [\n {\n ...(prev.policies?.[0] || {}),\n brokerId: brokerId ? brokerId : undefined\n }\n ]\n }))\n }\n options={\n promise?.carriers\n ?.filter((carrier) => carrier.isBroker)\n .map((broker) => ({\n value: broker.id,\n label: broker.name\n })) || []\n }\n error={getValidationError(validationErrors, ['policies', '0', 'brokerId'])}\n />\n \n \n \n {\n const quoteNumber = e.currentTarget.value;\n updateForm(['policies', '0', 'quoteNumber'], (prev) => ({\n ...prev,\n policies: [\n {\n ...(prev.policies?.[0] || {}),\n quoteNumber\n }\n ]\n }));\n }}\n invalid={\n !!getValidationError(validationErrors, ['policies', '0', 'quoteNumber'])\n }\n />\n {getValidationError(validationErrors, ['policies', '0', 'quoteNumber']) && (\n \n {getValidationError(validationErrors, ['policies', '0', 'quoteNumber'])}\n \n )}\n \n \n \n {\n const policyNumber = e.currentTarget.value;\n updateForm(['policies', '0', 'policyNumber'], (prev) => ({\n ...prev,\n policies: [\n {\n ...(prev.policies?.[0] || {}),\n policyNumber\n }\n ]\n }));\n }}\n invalid={\n !!getValidationError(validationErrors, ['policies', '0', 'policyNumber'])\n }\n />\n {getValidationError(validationErrors, ['policies', '0', 'policyNumber']) && (\n \n {getValidationError(validationErrors, ['policies', '0', 'policyNumber'])}\n \n )}\n \n
\n
\n
\n
\n Source Information\n \n Enter information about the source of this policy and the agent that is responsible\n for it.\n \n \n
\n \n \n \n updateForm(['policies', '0', 'sourceAgencyUserId'], (prev) => ({\n ...prev,\n policies: [\n {\n ...(prev.policies?.[0] || {}),\n sourceAgencyUserId\n }\n ]\n }))\n }\n options={\n promise?.agencyUsers?.map((agent) => ({\n value: agent.id,\n label: agent.name,\n description: agent.email\n })) || []\n }\n error={getValidationError(validationErrors, [\n 'policies',\n '0',\n 'sourceAgencyUserId'\n ])}\n />\n \n \n \n \n updateForm(['policies', '0', 'sourceType'], (prev) => ({\n ...prev,\n policies: [\n {\n ...(prev.policies?.[0] || {}),\n sourceType: sourceType\n ? (sourceType as BusinessPolicySourceType)\n : undefined,\n sourceSubType: undefined,\n sourceCampaignId: undefined,\n sourceLeadId: undefined,\n sourceNotes: ''\n }\n ]\n }))\n }\n options={[\n {\n value: BusinessPolicySourceType.Campaign,\n label: 'Campaign',\n description: 'Marketing or other campaign'\n },\n {\n value: BusinessPolicySourceType.CrossSell,\n label: 'Cross-Sell',\n description: 'Sold to an existing customer'\n },\n {\n value: BusinessPolicySourceType.Inbound,\n label: 'Inbound',\n description: 'Direct, inbound inquiry'\n },\n {\n value: BusinessPolicySourceType.Other,\n label: 'Other',\n description: 'Other source'\n },\n {\n value: BusinessPolicySourceType.PaidLead,\n label: 'Paid Lead',\n description: 'Paid customer acquisition'\n },\n {\n value: BusinessPolicySourceType.Referral,\n label: 'Referral',\n description: 'Partner, agency, customer, or other referral'\n }\n ]}\n error={getValidationError(validationErrors, ['policies', '0', 'sourceType'])}\n />\n \n {form.policies?.[0]?.sourceType === BusinessPolicySourceType.Campaign && (\n <>\n \n \n {\n const sourceCampaignId = e.currentTarget.value;\n updateForm(['policies', '0', 'sourceCampaignId'], (prev) => ({\n ...prev,\n policies: [{ ...(prev.policies?.[0] || {}), sourceCampaignId }]\n }));\n }}\n invalid={\n !!getValidationError(validationErrors, [\n 'policies',\n '0',\n 'sourceCampaignId'\n ])\n }\n />\n {getValidationError(validationErrors, [\n 'policies',\n '0',\n 'sourceCampaignId'\n ]) && (\n \n {getValidationError(validationErrors, [\n 'policies',\n '0',\n 'sourceCampaignId'\n ])}\n \n )}\n \n \n )}\n {form.policies?.[0]?.sourceType === BusinessPolicySourceType.Referral && (\n <>\n \n \n \n updateForm(['policies', '0', 'sourceSubType'], (prev) => ({\n ...prev,\n policies: [\n {\n ...(prev.policies?.[0] || {}),\n sourceSubType: sourceSubType\n ? (sourceSubType as BusinessPolicySourceSubType)\n : undefined\n }\n ]\n }))\n }\n options={[\n {\n value: BusinessPolicySourceSubType.Partner,\n label: 'Partner'\n },\n {\n value: BusinessPolicySourceSubType.Agency,\n label: 'Agency'\n },\n {\n value: BusinessPolicySourceSubType.Customer,\n label: 'Customer'\n },\n {\n value: BusinessPolicySourceSubType.OtherReferral,\n label: 'Other'\n }\n ]}\n error={getValidationError(validationErrors, [\n 'policies',\n '0',\n 'sourceSubType'\n ])}\n />\n \n \n \n {\n const sourceReferralSourceId = e.currentTarget.value;\n updateForm(['policies', '0', 'sourceReferralSourceId'], (prev) => ({\n ...prev,\n policies: [\n {\n ...(prev.policies?.[0] || {}),\n sourceReferralSourceId\n }\n ]\n }));\n }}\n invalid={\n !!getValidationError(validationErrors, [\n 'policies',\n '0',\n 'sourceReferralSourceId'\n ])\n }\n />\n {getValidationError(validationErrors, [\n 'policies',\n '0',\n 'sourceReferralSourceId'\n ]) && (\n \n {getValidationError(validationErrors, [\n 'policies',\n '0',\n 'sourceReferralSourceId'\n ])}\n \n )}\n \n \n )}\n {form.policies?.[0]?.sourceType === BusinessPolicySourceType.PaidLead && (\n <>\n \n \n \n updateForm(['policies', '0', 'sourceSubType'], (prev) => ({\n ...prev,\n policies: [\n {\n ...(prev.policies?.[0] || {}),\n sourceSubType: sourceSubType\n ? (sourceSubType as BusinessPolicySourceSubType)\n : undefined\n }\n ]\n }))\n }\n options={[\n {\n value: BusinessPolicySourceSubType.BoldPenguin,\n label: 'Bold Penguin'\n },\n {\n value: BusinessPolicySourceSubType.Tivly,\n label: 'Tivly'\n }\n ]}\n error={getValidationError(validationErrors, [\n 'policies',\n '0',\n 'sourceSubType'\n ])}\n />\n \n \n \n {\n const sourceLeadId = e.currentTarget.value;\n updateForm(['policies', '0', 'sourceLeadId'], (prev) => ({\n ...prev,\n policies: [\n {\n ...(prev.policies?.[0] || {}),\n sourceLeadId\n }\n ]\n }));\n }}\n invalid={\n !!getValidationError(validationErrors, [\n 'policies',\n '0',\n 'sourceLeadId'\n ])\n }\n />\n {getValidationError(validationErrors, [\n 'policies',\n '0',\n 'sourceLeadId'\n ]) && (\n \n {getValidationError(validationErrors, [\n 'policies',\n '0',\n 'sourceLeadId'\n ])}\n \n )}\n \n \n )}\n {form.policies?.[0]?.sourceType === BusinessPolicySourceType.Other && (\n \n \n {\n const sourceNotes = e.currentTarget.value;\n updateForm(['policies', '0', 'sourceNotes'], (prev) => ({\n ...prev,\n policies: [{ ...(prev.policies?.[0] || {}), sourceNotes }]\n }));\n }}\n invalid={\n !!getValidationError(validationErrors, ['policies', '0', 'sourceNotes'])\n }\n />\n {getValidationError(validationErrors, ['policies', '0', 'sourceNotes']) && (\n \n {getValidationError(validationErrors, ['policies', '0', 'sourceNotes'])}\n \n )}\n \n )}\n
\n
\n
\n
\n Coverage Information\n Specify the coverage details for this policy.\n \n
\n \n \n {\n const issuedAt = e.currentTarget.value;\n updateForm(['policies', '0', 'issuedAt'], (prev) => ({\n ...prev,\n policies: [\n {\n ...(prev.policies?.[0] || {}),\n issuedAt:\n issuedAt && !isNaN(new Date(issuedAt).getTime())\n ? new Date(issuedAt)\n : undefined\n }\n ]\n }));\n }}\n invalid={\n !!getValidationError(validationErrors, ['policies', '0', 'issuedAt'])\n }\n />\n {getValidationError(validationErrors, ['policies', '0', 'issuedAt']) && (\n \n {getValidationError(validationErrors, ['policies', '0', 'issuedAt'])}\n \n )}\n \n
\n
\n \n \n {\n const inforceAt = e.currentTarget.value;\n updateForm(['policies', '0', 'inforceAt'], (prev) => ({\n ...prev,\n policies: [\n {\n ...(prev.policies?.[0] || {}),\n inforceAt:\n inforceAt && !isNaN(new Date(inforceAt).getTime())\n ? new Date(inforceAt)\n : undefined\n }\n ]\n }));\n }}\n invalid={\n !!getValidationError(validationErrors, ['policies', '0', 'inforceAt'])\n }\n />\n {getValidationError(validationErrors, ['policies', '0', 'inforceAt']) && (\n \n {getValidationError(validationErrors, ['policies', '0', 'inforceAt'])}\n \n )}\n \n \n \n {\n const expiresAt = e.currentTarget.value;\n updateForm(['policies', '0', 'expiresAt'], (prev) => ({\n ...prev,\n policies: [\n {\n ...(prev.policies?.[0] || {}),\n expiresAt:\n expiresAt && !isNaN(new Date(expiresAt).getTime())\n ? new Date(expiresAt)\n : undefined\n }\n ]\n }));\n }}\n invalid={\n !!getValidationError(validationErrors, ['policies', '0', 'expiresAt'])\n }\n />\n {getValidationError(validationErrors, ['policies', '0', 'expiresAt']) && (\n \n {getValidationError(validationErrors, ['policies', '0', 'expiresAt'])}\n \n )}\n \n
\n
\n
\n
\n Billing Information\n Specify the payment details for this policy.\n \n
\n \n \n {\n const billingType = e.currentTarget.value;\n updateForm(['policies', '0', 'billingType'], (prev) => ({\n ...prev,\n policies: [\n {\n ...(prev.policies?.[0] || {}),\n billingType: billingType as BusinessPolicyBillingType\n }\n ]\n }));\n }}\n invalid={\n !!getValidationError(validationErrors, ['policies', '0', 'billingType'])\n }\n >\n \n \n \n \n {getValidationError(validationErrors, ['policies', '0', 'billingType']) && (\n \n {getValidationError(validationErrors, ['policies', '0', 'billingType'])}\n \n )}\n \n \n \n {\n const paymentIntervalType = e.currentTarget.value;\n updateForm(['policies', '0', 'paymentIntervalType'], (prev) => ({\n ...prev,\n policies: [\n {\n ...(prev.policies?.[0] || {}),\n paymentIntervalType: paymentIntervalType as PaymentIntervalType\n }\n ]\n }));\n }}\n invalid={\n !!getValidationError(validationErrors, [\n 'policies',\n '0',\n 'paymentIntervalType'\n ])\n }\n >\n \n \n \n \n \n {getValidationError(validationErrors, [\n 'policies',\n '0',\n 'paymentIntervalType'\n ]) && (\n \n {getValidationError(validationErrors, [\n 'policies',\n '0',\n 'paymentIntervalType'\n ])}\n \n )}\n \n
\n
\n
\n
\n Financial Information\n \n Enter the premium, commission, and any other taxes and fees that apply to this\n policy.\n \n \n
\n \n \n {\n updateForm(['policies', '0', 'premium'], (prev) => ({\n ...prev,\n policies: [\n {\n ...(prev.policies?.[0] || {}),\n premium: isNaN(premium) ? undefined : premium\n }\n ]\n }));\n }}\n invalid={!!getValidationError(validationErrors, ['policies', '0', 'premium'])}\n />\n {getValidationError(validationErrors, ['policies', '0', 'premium']) && (\n \n {getValidationError(validationErrors, ['policies', '0', 'premium'])}\n \n )}\n \n \n \n {\n updateForm(['policies', '0', 'estimatedCommission'], (prev) => ({\n ...prev,\n policies: [\n {\n ...(prev.policies?.[0] || {}),\n estimatedCommission: isNaN(commissionRate)\n ? undefined\n : commissionRate * (prev.policies?.[0]?.premium || 0)\n }\n ]\n }));\n }}\n invalid={\n !!getValidationError(validationErrors, [\n 'policies',\n '0',\n 'estimatedCommission'\n ])\n }\n />\n {getValidationError(validationErrors, [\n 'policies',\n '0',\n 'estimatedCommission'\n ]) && (\n \n {getValidationError(validationErrors, [\n 'policies',\n '0',\n 'estimatedCommission'\n ])}\n \n )}\n \n \n \n \n \n \n \n {\n updateForm(['policies', '0', 'agencyFees'], (prev) => ({\n ...prev,\n policies: [\n {\n ...(prev.policies?.[0] || {}),\n agencyFees: isNaN(agencyFees) ? undefined : agencyFees\n }\n ]\n }));\n }}\n invalid={\n !!getValidationError(validationErrors, ['policies', '0', 'agencyFees'])\n }\n />\n {getValidationError(validationErrors, ['policies', '0', 'agencyFees']) && (\n \n {getValidationError(validationErrors, ['policies', '0', 'agencyFees'])}\n \n )}\n \n \n \n {\n updateForm(['policies', '0', 'policyFees'], (prev) => ({\n ...prev,\n policies: [\n {\n ...(prev.policies?.[0] || {}),\n policyFees: isNaN(policyFees) ? undefined : policyFees\n }\n ]\n }));\n }}\n invalid={\n !!getValidationError(validationErrors, ['policies', '0', 'policyFees'])\n }\n />\n {getValidationError(validationErrors, ['policies', '0', 'policyFees']) && (\n \n {getValidationError(validationErrors, ['policies', '0', 'policyFees'])}\n \n )}\n \n \n \n {\n updateForm(['policies', '0', 'brokerFees'], (prev) => ({\n ...prev,\n policies: [\n {\n ...(prev.policies?.[0] || {}),\n brokerFees: isNaN(brokerFees) ? undefined : brokerFees\n }\n ]\n }));\n }}\n invalid={\n !!getValidationError(validationErrors, ['policies', '0', 'brokerFees'])\n }\n />\n {getValidationError(validationErrors, ['policies', '0', 'brokerFees']) && (\n \n {getValidationError(validationErrors, ['policies', '0', 'brokerFees'])}\n \n )}\n \n \n \n {\n updateForm(['policies', '0', 'otherFees'], (prev) => ({\n ...prev,\n policies: [\n {\n ...(prev.policies?.[0] || {}),\n otherFees: isNaN(otherFees) ? undefined : otherFees\n }\n ]\n }));\n }}\n invalid={\n !!getValidationError(validationErrors, ['policies', '0', 'otherFees'])\n }\n />\n {getValidationError(validationErrors, ['policies', '0', 'otherFees']) && (\n \n {getValidationError(validationErrors, ['policies', '0', 'otherFees'])}\n \n )}\n \n \n \n {\n updateForm(['policies', '0', 'taxes'], (prev) => ({\n ...prev,\n policies: [\n {\n ...(prev.policies?.[0] || {}),\n taxes: isNaN(taxes) ? undefined : taxes\n }\n ]\n }));\n }}\n invalid={!!getValidationError(validationErrors, ['policies', '0', 'taxes'])}\n />\n {getValidationError(validationErrors, ['policies', '0', 'taxes']) && (\n \n {getValidationError(validationErrors, ['policies', '0', 'taxes'])}\n \n )}\n \n \n \n \n \n
\n
\n
\n \n )}\n
\n \n navigate(-1)}\n >\n Close\n \n \n Create Policy\n \n \n
\n );\n};\n\nexport const PolicyEditPage = () => {\n const navigate = useNavigate();\n const loader = useLoaderData() as\n | {\n data: Promise<{\n agencyUsers?: AgencyUserFieldsFragment[];\n businessPolicy?: BusinessPolicyFieldsFragment;\n carriers?: InsuranceCarrierFieldsFragment[];\n }>;\n }\n | undefined;\n\n return (\n navigate(-1)} size=\"2xl\">\n Edit policy\n Edit the details of this policy.\n \n \n \n \n \n \n );\n};\n\nconst PolicyEditForm = () => {\n const navigation = useNavigation();\n const navigate = useNavigate();\n const submit = useSubmit();\n const action = useActionData() as ActionResult;\n const promise = useAsyncValue() as {\n agencyUsers?: AgencyUserFieldsFragment[];\n businessPolicy?: BusinessPolicyFieldsFragment & BusinessPolicyDetailFieldsFragment;\n carriers?: InsuranceCarrierFieldsFragment[];\n };\n\n const [validationErrors, setValidationErrors] = React.useState([]);\n const [form, setForm] = React.useState({\n updateReason: ''\n });\n const { updateForm, getValidationError } = useFormActions(setForm, setValidationErrors);\n\n React.useEffect(() => {\n updateForm(['total'], (prev) => ({\n ...prev,\n total:\n (prev.premium || 0) +\n (prev.taxes || 0) +\n (prev.agencyFees || 0) +\n (prev.brokerFees || 0) +\n (prev.policyFees || 0) +\n (prev.otherFees || 0)\n }));\n }, [form.premium, form.taxes, form.agencyFees, form.brokerFees, form.policyFees, form.otherFees]);\n\n React.useEffect(() => {\n if (action?.validationErrors) {\n setValidationErrors(action.validationErrors);\n }\n }, [action?.validationErrors]);\n\n React.useEffect(() => {\n if (promise?.businessPolicy) {\n setForm({\n // Set the form from the current business policy\n type: promise?.businessPolicy.type,\n state: promise?.businessPolicy.state,\n market: promise?.businessPolicy.market,\n carrierId: promise?.businessPolicy.carrier?.id,\n brokerId: promise?.businessPolicy.broker?.id,\n quoteNumber: promise?.businessPolicy.quoteNumber,\n policyNumber: promise?.businessPolicy.policyNumber,\n sourceType: promise?.businessPolicy.source.type,\n sourceSubType: promise?.businessPolicy.source.subType,\n sourceCampaignId: promise?.businessPolicy.source.campaignId,\n sourceAgencyUserId: promise?.businessPolicy.source.agencyUser?.id,\n sourceReferralSourceId: promise?.businessPolicy.source.referralSourceId,\n sourceNotes: promise?.businessPolicy.source.notes,\n issuedAt: promise?.businessPolicy.issuedAt,\n inforceAt: promise?.businessPolicy.inforceAt,\n expiresAt: promise?.businessPolicy.expiresAt,\n total: promise?.businessPolicy.pricing.total,\n premium: promise?.businessPolicy.pricing.premium,\n agencyFees: promise?.businessPolicy.pricing.agencyFees,\n brokerFees: promise?.businessPolicy.pricing.brokerFees,\n policyFees: promise?.businessPolicy.pricing.policyFees,\n otherFees: promise?.businessPolicy.pricing.otherFees,\n taxes: promise?.businessPolicy.pricing.taxes,\n estimatedCommission: promise?.businessPolicy.pricing.estimatedCommission,\n // Set default fields\n updateReason: ''\n });\n }\n }, [promise?.businessPolicy]);\n\n const handleSubmit = (e: React.FormEvent) => {\n if (!form) {\n return;\n }\n\n e.preventDefault();\n\n // Disabled type checker because react-router-dom defines a custom type for what is considered\n // JSON-serializable, which does not include Date objects. This doesn't actually affect anything,\n // the type checker just complains.\n // eslint-disable-next-line\n // @ts-ignore\n submit(form, { method: 'PUT', encType: 'application/json' });\n };\n\n return (\n
\n *+*]:pt-6 divide-y divide-neutral-200\">\n
\n Policy Information\n Enter basic information about the policy\n \n
\n \n \n \n updateForm(['type'], (prev) => ({\n ...prev,\n type: type ? (type as InsuranceType) : prev.type\n }))\n }\n options={Object.values(InsuranceType).map((type) => ({\n value: type,\n label: getDisplayInsuranceType(type)\n }))}\n error={getValidationError(validationErrors, ['type'])}\n />\n \n \n \n \n updateForm(['market'], (prev) => ({\n ...prev,\n market: market ? (market as InsuranceMarket) : prev.market\n }))\n }\n options={[\n {\n value: InsuranceMarket.Admitted,\n label: 'Admitted'\n },\n {\n value: InsuranceMarket.ExcessAndSurplus,\n label: 'Excess and Surplus'\n }\n ]}\n error={getValidationError(validationErrors, ['market'])}\n />\n \n \n \n \n updateForm(['carrierId'], (prev) => ({\n ...prev,\n carrierId: carrierId ? carrierId : prev.carrierId\n }))\n }\n options={\n promise?.carriers\n ?.filter((carrier) => carrier.isCarrier)\n .map((carrier) => ({\n value: carrier.id,\n label: carrier.name\n })) || []\n }\n error={getValidationError(validationErrors, ['carrierId'])}\n />\n \n \n \n \n updateForm(['brokerId'], (prev) => ({\n ...prev,\n brokerId: brokerId ? brokerId : null\n }))\n }\n options={\n promise?.carriers\n ?.filter((carrier) => carrier.isBroker)\n .map((broker) => ({\n value: broker.id,\n label: broker.name\n })) || []\n }\n error={getValidationError(validationErrors, ['brokerId'])}\n />\n \n \n \n {\n const quoteNumber = e.currentTarget.value;\n updateForm(['quoteNumber'], (prev) => ({\n ...prev,\n quoteNumber: quoteNumber\n }));\n }}\n onBlur={(e) => {\n const quoteNumber = e.currentTarget.value;\n updateForm(['quoteNumber'], (prev) => ({\n ...prev,\n quoteNumber: quoteNumber || promise?.businessPolicy?.quoteNumber\n }));\n }}\n invalid={!!getValidationError(validationErrors, ['quoteNumber'])}\n />\n {getValidationError(validationErrors, ['quoteNumber']) && (\n \n {getValidationError(validationErrors, ['quoteNumber'])}\n \n )}\n \n \n \n {\n const policyNumber = e.currentTarget.value;\n updateForm(['policyNumber'], (prev) => ({\n ...prev,\n policyNumber\n }));\n }}\n onBlur={(e) => {\n const policyNumber = e.currentTarget.value;\n updateForm(['policyNumber'], (prev) => ({\n ...prev,\n policyNumber: policyNumber || promise?.businessPolicy?.policyNumber\n }));\n }}\n invalid={!!getValidationError(validationErrors, ['policyNumber'])}\n />\n {getValidationError(validationErrors, ['policyNumber']) && (\n \n {getValidationError(validationErrors, ['policyNumber'])}\n \n )}\n \n
\n
\n
\n
\n Source Information\n \n Enter information about the source of this policy and the agent that is responsible for\n it.\n \n \n
\n \n \n \n updateForm(['sourceAgencyUserId'], (prev) => ({\n ...prev,\n sourceAgencyUserId\n }))\n }\n options={\n promise?.agencyUsers?.map((agent) => ({\n value: agent.id,\n label: agent.name,\n description: agent.email\n })) || []\n }\n error={getValidationError(validationErrors, ['sourceAgencyUserId'])}\n />\n \n \n \n \n updateForm(['sourceType'], (prev) => ({\n ...prev,\n sourceType: sourceType ? sourceType : undefined,\n sourceSubType: undefined,\n sourceCampaignId: undefined,\n sourceLeadId: undefined,\n sourceNotes: ''\n }))\n }\n options={[\n {\n value: BusinessPolicySourceType.Campaign,\n label: 'Campaign',\n description: 'Marketing or other campaign'\n },\n {\n value: BusinessPolicySourceType.CrossSell,\n label: 'Cross-Sell',\n description: 'Sold to an existing customer'\n },\n {\n value: BusinessPolicySourceType.Inbound,\n label: 'Inbound',\n description: 'Direct, inbound inquiry'\n },\n {\n value: BusinessPolicySourceType.Other,\n label: 'Other',\n description: 'Other source'\n },\n {\n value: BusinessPolicySourceType.PaidLead,\n label: 'Paid Lead',\n description: 'Paid customer acquisition'\n },\n {\n value: BusinessPolicySourceType.Referral,\n label: 'Referral',\n description: 'Partner, agency, customer, or other referral'\n }\n ]}\n error={getValidationError(validationErrors, ['sourceType'])}\n />\n \n {form.sourceType === BusinessPolicySourceType.Campaign && (\n <>\n \n \n {\n const sourceCampaignId = e.currentTarget.value;\n updateForm(['sourceCampaignId'], (prev) => ({\n ...prev,\n policies: [{ ...prev, sourceCampaignId }]\n }));\n }}\n invalid={!!getValidationError(validationErrors, ['sourceCampaignId'])}\n />\n {getValidationError(validationErrors, ['sourceCampaignId']) && (\n \n {getValidationError(validationErrors, ['sourceCampaignId'])}\n \n )}\n \n \n )}\n {form.sourceType === BusinessPolicySourceType.Referral && (\n <>\n \n \n \n updateForm(['sourceSubType'], (prev) => ({\n ...prev,\n sourceSubType: sourceSubType\n ? (sourceSubType as BusinessPolicySourceSubType)\n : undefined\n }))\n }\n options={[\n {\n value: BusinessPolicySourceSubType.Partner,\n label: 'Partner'\n },\n {\n value: BusinessPolicySourceSubType.Agency,\n label: 'Agency'\n },\n {\n value: BusinessPolicySourceSubType.Customer,\n label: 'Customer'\n },\n {\n value: BusinessPolicySourceSubType.OtherReferral,\n label: 'Other'\n }\n ]}\n error={getValidationError(validationErrors, ['sourceSubType'])}\n />\n \n \n \n {\n const sourceReferralSourceId = e.currentTarget.value;\n updateForm(['sourceReferralSourceId'], (prev) => ({\n ...prev,\n sourceReferralSourceId\n }));\n }}\n invalid={!!getValidationError(validationErrors, ['sourceReferralSourceId'])}\n />\n {getValidationError(validationErrors, ['sourceReferralSourceId']) && (\n \n {getValidationError(validationErrors, ['sourceReferralSourceId'])}\n \n )}\n \n \n )}\n {form.sourceType === BusinessPolicySourceType.PaidLead && (\n <>\n \n \n \n updateForm(['sourceSubType'], (prev) => ({\n ...prev,\n sourceSubType: sourceSubType\n ? (sourceSubType as BusinessPolicySourceSubType)\n : undefined\n }))\n }\n options={[\n {\n value: BusinessPolicySourceSubType.BoldPenguin,\n label: 'Bold Penguin'\n },\n {\n value: BusinessPolicySourceSubType.Tivly,\n label: 'Tivly'\n }\n ]}\n error={getValidationError(validationErrors, ['sourceSubType'])}\n />\n \n \n \n {\n const sourceLeadId = e.currentTarget.value;\n updateForm(['sourceLeadId'], (prev) => ({\n ...prev,\n sourceLeadId\n }));\n }}\n invalid={!!getValidationError(validationErrors, ['sourceLeadId'])}\n />\n {getValidationError(validationErrors, ['sourceLeadId']) && (\n \n {getValidationError(validationErrors, ['sourceLeadId'])}\n \n )}\n \n \n )}\n {form.sourceType === BusinessPolicySourceType.Other && (\n \n \n {\n const sourceNotes = e.currentTarget.value;\n updateForm(['sourceNotes'], (prev) => ({\n ...prev,\n sourceNotes\n }));\n }}\n invalid={!!getValidationError(validationErrors, ['sourceNotes'])}\n />\n {getValidationError(validationErrors, ['sourceNotes']) && (\n \n {getValidationError(validationErrors, ['sourceNotes'])}\n \n )}\n \n )}\n
\n
\n
\n
\n Coverage Information\n Specify the coverage details for this policy.\n \n
\n \n \n {\n const issuedAt = e.currentTarget.value;\n updateForm(['issuedAt'], (prev) => ({\n ...prev,\n issuedAt:\n issuedAt && !isNaN(new Date(issuedAt).getTime())\n ? new Date(issuedAt)\n : undefined\n }));\n }}\n invalid={!!getValidationError(validationErrors, ['issuedAt'])}\n />\n {getValidationError(validationErrors, ['issuedAt']) && (\n {getValidationError(validationErrors, ['issuedAt'])}\n )}\n \n
\n
\n \n \n {\n const inforceAt = e.currentTarget.value;\n updateForm(['inforceAt'], (prev) => ({\n ...prev,\n inforceAt:\n inforceAt && !isNaN(new Date(inforceAt).getTime())\n ? new Date(inforceAt)\n : undefined\n }));\n }}\n invalid={!!getValidationError(validationErrors, ['inforceAt'])}\n />\n {getValidationError(validationErrors, ['inforceAt']) && (\n {getValidationError(validationErrors, ['inforceAt'])}\n )}\n \n \n \n {\n const expiresAt = e.currentTarget.value;\n updateForm(['expiresAt'], (prev) => ({\n ...prev,\n expiresAt:\n expiresAt && !isNaN(new Date(expiresAt).getTime())\n ? new Date(expiresAt)\n : undefined\n }));\n }}\n invalid={!!getValidationError(validationErrors, ['expiresAt'])}\n />\n {getValidationError(validationErrors, ['expiresAt']) && (\n {getValidationError(validationErrors, ['expiresAt'])}\n )}\n \n
\n
\n
\n
\n Financial Information\n \n Enter the premium, commission, and any other taxes and fees that apply to this policy.\n \n \n
\n \n \n {\n updateForm(['premium'], (prev) => ({\n ...prev,\n premium: isNaN(premium) ? promise?.businessPolicy?.pricing.premium : premium\n }));\n }}\n invalid={!!getValidationError(validationErrors, ['premium'])}\n />\n {getValidationError(validationErrors, ['premium']) && (\n {getValidationError(validationErrors, ['premium'])}\n )}\n \n \n \n {\n updateForm(['estimatedCommission'], (prev) => ({\n ...prev,\n estimatedCommission: isNaN(commissionRate)\n ? promise?.businessPolicy?.pricing.estimatedCommission\n : commissionRate * (prev.premium || 0)\n }));\n }}\n invalid={!!getValidationError(validationErrors, ['estimatedCommission'])}\n />\n {getValidationError(validationErrors, ['estimatedCommission']) && (\n \n {getValidationError(validationErrors, ['estimatedCommission'])}\n \n )}\n \n \n \n \n \n \n \n {\n updateForm(['agencyFees'], (prev) => ({\n ...prev,\n agencyFees: isNaN(agencyFees)\n ? promise?.businessPolicy?.pricing.agencyFees\n : agencyFees\n }));\n }}\n invalid={!!getValidationError(validationErrors, ['agencyFees'])}\n />\n {getValidationError(validationErrors, ['agencyFees']) && (\n \n {getValidationError(validationErrors, ['agencyFees'])}\n \n )}\n \n \n \n {\n updateForm(['policyFees'], (prev) => ({\n ...prev,\n policyFees: isNaN(policyFees)\n ? promise?.businessPolicy?.pricing.policyFees\n : policyFees\n }));\n }}\n invalid={!!getValidationError(validationErrors, ['policyFees'])}\n />\n {getValidationError(validationErrors, ['policyFees']) && (\n \n {getValidationError(validationErrors, ['policyFees'])}\n \n )}\n \n \n \n {\n updateForm(['brokerFees'], (prev) => ({\n ...prev,\n brokerFees: isNaN(brokerFees)\n ? promise?.businessPolicy?.pricing.brokerFees\n : brokerFees\n }));\n }}\n invalid={!!getValidationError(validationErrors, ['brokerFees'])}\n />\n {getValidationError(validationErrors, ['brokerFees']) && (\n \n {getValidationError(validationErrors, ['brokerFees'])}\n \n )}\n \n \n \n {\n updateForm(['otherFees'], (prev) => ({\n ...prev,\n otherFees: isNaN(otherFees)\n ? promise?.businessPolicy?.pricing.otherFees\n : otherFees\n }));\n }}\n invalid={!!getValidationError(validationErrors, ['otherFees'])}\n />\n {getValidationError(validationErrors, ['otherFees']) && (\n {getValidationError(validationErrors, ['otherFees'])}\n )}\n \n \n \n {\n updateForm(['taxes'], (prev) => ({\n ...prev,\n taxes: isNaN(taxes) ? promise?.businessPolicy?.pricing.taxes : taxes\n }));\n }}\n invalid={!!getValidationError(validationErrors, ['taxes'])}\n />\n {getValidationError(validationErrors, ['taxes']) && (\n {getValidationError(validationErrors, ['taxes'])}\n )}\n \n \n \n \n \n
\n
\n
\n
\n \n navigate(-1)}\n >\n Close\n \n \n Update Policy\n \n \n
\n );\n};\n\nexport const PolicyPage = () => {\n const loader = useLoaderData() as\n | {\n data: Promise<{\n businessPolicy?: BusinessPolicyFieldsFragment & BusinessPolicyDetailFieldsFragment;\n }>;\n }\n | undefined;\n\n return (\n }>\n \n {({ businessPolicy }) => (\n <>\n
\n
\n

\n {getDisplayInsuranceType(businessPolicy?.type)}\n

\n
\n
\n \n {businessPolicy?.account.contacts[0].name}\n
\n
\n \n {businessPolicy?.account.account.name}\n
\n
\n \n {new Intl.NumberFormat('en-US', {\n style: 'currency',\n currency: 'USD',\n minimumFractionDigits: 0,\n maximumFractionDigits: 2\n }).format(businessPolicy?.pricing.premium || 0)}\n
\n
\n \n {businessPolicy?.expiresAt && (\n <>\n Expires on{' '}\n {new Intl.DateTimeFormat('en-US', { dateStyle: 'medium' }).format(\n new Date(businessPolicy?.expiresAt)\n )}\n \n )}\n {!businessPolicy?.expiresAt && 'N/A'}\n
\n
\n
\n
\n \n \n \n Edit\n \n \n\n {/* Dropdown */}\n {/*\n \n More\n \n \n\n \n \n \n Delete\n \n \n \n \n Cancel\n \n \n \n \n Reinstate\n \n \n \n \n Renew\n \n \n \n */}\n
\n
\n \n \n )}\n
\n
\n );\n};\n\nexport const PolicyOverviewPage = () => {\n const loader = useRouteLoaderData('policies/:id') as\n | {\n data: Promise<{\n businessPolicy?: BusinessPolicyFieldsFragment & BusinessPolicyDetailFieldsFragment;\n }>;\n }\n | undefined;\n\n return (\n \n \n {({ businessPolicy }) => {\n if (!businessPolicy) {\n return null;\n }\n\n const policyStats = [\n {\n name: 'Premium',\n value: new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' }).format(\n businessPolicy.pricing.premium\n )\n },\n {\n name: 'Status',\n value: titleCase(businessPolicy.state)\n },\n {\n name: 'Billing Mode',\n value: titleCase(businessPolicy.pricing.billingType)\n }\n ];\n\n return (\n
\n
\n
\n
\n

\n Policy information\n

\n

Basic information about this policy.

\n
\n
\n
\n
\n
\n {policyStats.map((stat) => (\n \n
{stat.name}
\n
\n {stat.value}\n
\n
\n ))}\n \n
\n
\n
Expiration Date
\n
\n {businessPolicy.expiresAt && (\n <>\n {new Intl.DateTimeFormat('en-US', { dateStyle: 'medium' }).format(\n new Date(businessPolicy.expiresAt)\n )}\n \n )}\n {!businessPolicy.expiresAt && 'N/A'}\n
\n
\n
\n
Carrier
\n
\n {businessPolicy.carrier.name}\n
\n
\n
\n
Wholesale Broker
\n
\n {businessPolicy.broker?.name || 'N/A'}\n
\n
\n
\n
\n \n );\n }}\n
\n
\n );\n};\n\nconst titleCase = (s: string) =>\n s\n .split(/[\\s_]/g)\n .map((part) => part[0].toUpperCase() + part.substring(1).toLowerCase())\n .join(' ');\n\nexport const PolicyDocumentsPage = () => {\n const navigation = useNavigation();\n const submit = useSubmit();\n const outlet = useOutlet();\n // const location = useLocation();\n const action = useActionData() as ActionResult;\n const loader = useRouteLoaderData('policies/:id') as\n | {\n data: Promise<{\n businessPolicy?: BusinessPolicyFieldsFragment & BusinessPolicyFileFieldsFragment;\n }>;\n }\n | undefined;\n\n const [deleteFileId, setDeleteFileId] = React.useState(null);\n\n React.useEffect(() => {\n if (\n navigation.state === 'loading' &&\n navigation.formAction === navigation.location.pathname &&\n !!action?.data?.deleteFile?.id\n ) {\n setDeleteFileId(null);\n }\n }, [navigation.state, action?.data?.deleteFile?.id]);\n\n const onDelete = () => {\n submit({ fileId: deleteFileId }, { method: 'DELETE', encType: 'application/json' });\n };\n\n return (\n \n \n {({ businessPolicy }) => (\n <>\n
\n
\n
\n
\n

\n Documents\n

\n

\n All documents associated with this policy.\n

\n
\n {!!businessPolicy?.files?.length && (\n
\n \n Upload Document\n \n
\n )}\n
\n
\n
\n
\n {!businessPolicy?.files?.length && (\n
\n \n

No documents

\n

\n Get started by uploading a document.\n

\n
\n \n Upload Document\n \n
\n
\n )}\n {!!businessPolicy?.files?.length && (\n
\n \n \n \n \n Name\n \n \n Type\n \n \n Upload Date\n \n \n Actions\n \n \n \n \n {businessPolicy?.files.map((file) => (\n \n \n \n \n \n \n ))}\n \n
\n
\n {file.name}\n
\n
\n \n {titleCase(file.type)}\n \n \n {!file.createdAt || isNaN(new Date(file.createdAt).getTime())\n ? 'N/A'\n : new Intl.DateTimeFormat('en-US').format(\n new Date(file.createdAt)\n )}\n \n
\n \n \n \n setDeleteFileId(file.id)}\n >\n \n \n
\n
\n
\n )}\n
\n
\n
\n\n \n {outlet && React.cloneElement(outlet, {})}\n \n\n setDeleteFileId(null)} size=\"md\">\n Delete Document\n \n Are you sure you want to delete{' '}\n \n {businessPolicy?.files?.find((f) => f.id === deleteFileId)?.name}\n \n ? This action is permanent and the file will no longer be visible to the client (if\n applicable).\n \n \n setDeleteFileId(null)}\n disabled={navigation.state === 'submitting'}\n >\n Cancel\n \n \n Delete\n \n \n \n \n )}\n
\n
\n );\n};\n\nexport const PolicyDocumentUploadPage = () => {\n const navigation = useNavigation();\n const navigate = useNavigate();\n const submit = useSubmit();\n const action = useActionData() as ActionResult;\n\n const [validationErrors, setValidationErrors] = React.useState([]);\n const [form, setForm] = React.useState>({});\n const { updateForm, getValidationError } = useFormActions(setForm, setValidationErrors);\n\n const visibleTypes = [\n FileType.Binder,\n FileType.Endorsement,\n FileType.LostPolicyRelease,\n FileType.PolicyDocument,\n FileType.QuoteDocument\n ];\n\n React.useEffect(() => {\n if (action?.validationErrors) {\n setValidationErrors(action.validationErrors);\n }\n }, [action?.validationErrors]);\n\n React.useEffect(() => {\n if (\n navigation.state === 'loading' &&\n navigation.formAction === navigation.location.pathname &&\n !!action?.data?.uploadPolicyFile?.id\n ) {\n navigate(-1);\n }\n }, [navigation.state, action?.data?.uploadPolicyFile?.id]);\n\n const handleSubmit = (e: React.FormEvent) => {\n if (!form) {\n return;\n }\n\n e.preventDefault();\n\n // Construct a multi-part form data request with the file\n const formData = new FormData();\n form.file && formData.append('file', form.file);\n form.type && formData.append('type', form.type);\n formData.append('notes', form.notes || '');\n formData.append('visible', form.visible ? 'true' : 'false');\n\n submit(formData, { method: 'POST', encType: 'multipart/form-data' });\n };\n\n return (\n navigate(-1)} size=\"xl\">\n Upload a new document\n Upload a new document to associate with this policy.\n
\n *+*]:pt-6 divide-y divide-neutral-200\">\n
\n \n \n \n \n updateForm(['type'], (prev) => ({\n ...prev,\n type: type ? (type as FileType) : undefined,\n visible: type ? visibleTypes.includes(type) : undefined\n }))\n }\n options={Object.values(FileType).map((type) => ({\n value: type,\n label: titleCase(type),\n badgeText: visibleTypes.includes(type) ? 'Visible to client' : undefined\n }))}\n error={getValidationError(validationErrors, ['type'])}\n />\n \n \n \n These notes will not be visible to the client.\n {\n const notes = e.currentTarget.value;\n updateForm(['notes'], (prev) => ({ ...prev, notes }));\n }}\n invalid={!!getValidationError(validationErrors, ['notes'])}\n />\n {getValidationError(validationErrors, ['notes']) && (\n {getValidationError(validationErrors, ['notes'])}\n )}\n \n \n \n \n Drag and drop or click to select files from your computer. Only one file can be\n uploaded at a time.\n \n \n updateForm(['file'], (prev) => ({ ...prev, file: files[0] }))\n }\n invalid={!!getValidationError(validationErrors, ['file'])}\n />\n {getValidationError(validationErrors, ['file']) && (\n {getValidationError(validationErrors, ['file'])}\n )}\n \n \n
\n
\n \n navigate(-1)}\n >\n Close\n \n \n Upload Document\n \n \n
\n
\n );\n};\n\nexport const PolicyHistoryPage = () => {\n return (\n
\n
    \n {activity.map((activityItem, activityItemIdx) => (\n
  • \n \n
    \n
    \n\n
    \n
    \n
    \n

    \n {activityItem.person.name}{' '}\n {activityItem.type} the policy.\n

    \n \n {activityItem.date}\n \n
  • \n ))}\n
\n
\n );\n};\n\nexport const PolicyExplorerPage = () => {\n const loader = useRouteLoaderData('policies/:id') as\n | {\n data: Promise<{\n businessPolicy: BusinessPolicyFieldsFragment & BusinessPolicyDetailFieldsFragment;\n }>;\n }\n | undefined;\n\n return (\n }>\n \n {({ businessPolicy }) => {\n if (!businessPolicy?.details) {\n return (\n
\n \n

Policy Explorer

\n

\n Explore this policy with AI. To start, upload a document. The policy explorer can\n take a few minutes to become available.\n

\n
\n );\n }\n\n return ;\n }}\n
\n
\n );\n};\n\nconst PolicyExplorer = (props: {\n policy: BusinessPolicyFieldsFragment & BusinessPolicyDetailFieldsFragment;\n}) => {\n const selectedPolicy = props.policy;\n const [showPolicyQuotes, setShowPolicyQuotes] = React.useState>({});\n\n const policyStats = [\n {\n name: 'Premium',\n value: new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' }).format(\n selectedPolicy.pricing.premium || 0\n )\n },\n {\n name: 'Policy Number',\n value: selectedPolicy.policyNumber || selectedPolicy.details?.policyNumber || 'N/A'\n },\n {\n name: 'Expiration',\n value: new Date(selectedPolicy.expiresAt || '').toLocaleDateString('en-US', {\n month: '2-digit',\n day: '2-digit',\n year: 'numeric'\n })\n }\n ];\n\n const policyLimits = [\n { name: 'aggregate', limit: selectedPolicy.details?.limits?.cyberAggregateLimit },\n { name: 'retention', limit: selectedPolicy.details?.limits?.cyberRetentionLimit },\n { name: 'aggregate', limit: selectedPolicy.details?.limits?.glAggregateLimit },\n {\n name: 'medical per occurrence',\n limit: selectedPolicy.details?.limits?.glMedicalPerOccurrenceLimit\n },\n {\n name: 'medical per person',\n limit: selectedPolicy.details?.limits?.glMedicalPerPersonLimit\n },\n { name: 'per occurrence', limit: selectedPolicy.details?.limits?.glPerOccurrenceLimit },\n {\n name: 'personal and advertising injury',\n limit: selectedPolicy.details?.limits?.glPersonalAndAdvertisingInjuryLimit\n },\n {\n name: 'products and completed operations',\n limit: selectedPolicy.details?.limits?.glProductsAndCompletedOperationsLimit\n },\n {\n name: 'rented premises damage',\n limit: selectedPolicy.details?.limits?.glRentedPremisesDamageLimit\n },\n { name: 'building', limit: selectedPolicy.details?.limits?.propertyBuildingLimit },\n { name: 'contents', limit: selectedPolicy.details?.limits?.propertyContentsLimit },\n { name: 'per accident', limit: selectedPolicy.details?.limits?.wcPerAccidentLimit },\n {\n name: 'per disease (employee)',\n limit: selectedPolicy.details?.limits?.wcPerDiseaseEmployeeLimit\n },\n {\n name: 'per disease (policy)',\n limit: selectedPolicy.details?.limits?.wcPerDiseasePolicyLimit\n },\n ...(selectedPolicy.details?.extraLimits || []),\n ...(selectedPolicy.details?.locations?.flatMap((location) => [\n {\n name: `building (${location.address.line1})`,\n limit: location.limits?.propertyBuildingLimit\n },\n {\n name: `contents (${location.address.line1})`,\n limit: location.limits?.propertyContentsLimit\n }\n ]) || [])\n ].filter((limit) => !!limit?.limit);\n\n return (\n <>\n
\n
\n
\n
\n
\n
\n

\n Policy overview\n

\n

Basic details about this policy.

\n
\n
\n
\n
\n
\n {policyStats.map((stat) => (\n \n
{stat.name}
\n
\n {stat.value}\n
\n
\n ))}\n \n
\n
\n
Insured Entity
\n
\n \n {selectedPolicy.details?.insured?.name || 'Unknown'}\n \n
\n {selectedPolicy.details?.insured?.address?.line1 || 'Unknown'}\n
\n \n {selectedPolicy.details?.insured?.address?.city || 'Unknown'},{' '}\n {selectedPolicy.details?.insured?.address?.zone || 'Unknown'}{' '}\n {selectedPolicy.details?.insured?.address?.postalCode || 'Unknown'}\n \n
\n
\n
\n
Carrier
\n
\n \n {selectedPolicy.details?.carrier?.name || 'Unknown'}\n \n
\n {selectedPolicy.details?.carrier?.address?.line1 || 'Unknown'}\n
\n \n {selectedPolicy.details?.carrier?.address?.city || 'Unknown'},{' '}\n {selectedPolicy.details?.carrier?.address?.zone || 'Unknown'}{' '}\n {selectedPolicy.details?.carrier?.address?.postalCode || 'Unknown'}\n \n
\n
\n
\n
Policy Summary
\n
\n {selectedPolicy.details?.summary || 'Unknown'}\n
\n
\n
\n
Limits
\n
\n {policyLimits.map((limit) => (\n
\n {new Intl.NumberFormat('en-US', {\n style: 'currency',\n minimumFractionDigits: 0,\n maximumFractionDigits: 2,\n currency: 'USD'\n }).format(limit.limit || 0)}{' '}\n {limit.name}\n
\n ))}\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n

\n What's covered\n

\n

Coverage included on this policy.

\n
\n
\n
\n
\n
\n
\n {selectedPolicy.details?.coverageDescriptions?.map((coverage) => (\n
\n
\n \n {coverage.title}\n
\n
\n {coverage.description}\n
\n {coverage.policyQuotes.length > 0 && !showPolicyQuotes[coverage.title] && (\n \n setShowPolicyQuotes({\n ...showPolicyQuotes,\n [coverage.title]: true\n })\n }\n className=\"text-xs font-medium text-primary-500 hover:text-primary-800 inline-flex items-center gap-1 ml-6\"\n >\n Show relevant quotes \n \n )}\n {coverage.policyQuotes.length > 0 && showPolicyQuotes[coverage.title] && (\n
\n {coverage.policyQuotes.map((quote) => (\n \n {quote}\n
\n ))}\n
\n )}\n
\n ))}\n \n

\n The coverage descriptions provided here may not be complete, and may have\n important exclusions or limitations. Please read the full policy document to\n confirm the information here.\n

\n
\n
\n
\n\n
\n
\n
\n
\n

\n What's not covered\n

\n

\n Exclusions and other limitations on this policy.\n

\n
\n
\n
\n
\n
\n
\n {selectedPolicy.details?.exclusionDescriptions?.map((exclusion) => (\n
\n
\n \n {exclusion.title}\n
\n
\n {exclusion.description}\n
\n {exclusion.policyQuotes.length > 0 && !showPolicyQuotes[exclusion.title] && (\n \n setShowPolicyQuotes({\n ...showPolicyQuotes,\n [exclusion.title]: true\n })\n }\n className=\"text-xs font-medium text-primary-500 hover:text-primary-800 inline-flex items-center gap-1 ml-6\"\n >\n Show relevant quotes \n \n )}\n {exclusion.policyQuotes.length > 0 && showPolicyQuotes[exclusion.title] && (\n
\n {exclusion.policyQuotes.map((quote) => (\n \n {quote}\n
\n ))}\n
\n )}\n
\n ))}\n \n

\n The exclusions provided here may not be complete, and may have important caveats\n or conditions. Please read the full policy document to confirm the information\n here.\n

\n
\n
\n \n \n\n
\n
\n
\n
\n
\n

\n Ask a question\n

\n

\n We'll find related information in this policy.\n

\n
\n
\n
\n
\n \n
\n
\n
\n \n \n );\n};\n\nconst PolicyExplorerChat = () => {\n const loader = useLoaderData() as\n | {\n data: Promise<{\n policyExplorerConversation?: PolicyExplorerConversationMessageFieldsFragment[];\n }>;\n }\n | undefined;\n\n return (\n }>\n \n {(data) => }\n \n \n );\n};\n\nconst PolicyChatFallback = () => (\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n);\n\nconst PolicyExplorerChatInner = (props: {\n messages: PolicyExplorerConversationMessageFieldsFragment[];\n}) => {\n const navigation = useNavigation();\n const submit = useSubmit();\n const action = useActionData() as ActionResult;\n\n // State for the chat\n const [editorText, setEditorText] = React.useState('');\n const [stagedMessage, setStagedMessage] = React.useState('');\n const [messages, setMessages] = React.useState(\n props.messages\n );\n const [showAttachments, setShowAttachments] = React.useState>({});\n\n React.useEffect(() => {\n setMessages(props.messages);\n }, [props.messages]);\n\n React.useEffect(() => {\n if (action?.data?.addPolicyExplorerConversationMessage?.length) {\n setMessages(action.data.addPolicyExplorerConversationMessage);\n }\n }, [action?.data?.addPolicyExplorerConversationMessage]);\n\n const handleSubmit = async (e: React.FormEvent) => {\n e.preventDefault();\n\n setEditorText('');\n setStagedMessage(editorText);\n submit({ message: editorText }, { method: 'POST', encType: 'application/json' });\n };\n\n return (\n
\n
\n
\n
\n
\n
\n                Ask a question about this policy.\n              
\n
\n
\n {messages.map((message) => (\n \n \n
{message.content}
\n {message.attachments.length > 0 && !showAttachments[message.id] && (\n \n setShowAttachments({\n ...showAttachments,\n [message.id]: true\n })\n }\n className=\"text-xs font-medium text-primary-500 hover:text-primary-800 inline-flex items-center gap-1 mt-2\"\n >\n Show relevant quotes \n \n )}\n {message.attachments.length > 0 && showAttachments[message.id] && (\n
\n {message.attachments?.map((attachment) => (\n \n {attachment.content}\n
\n ))}\n
\n )}\n
\n
\n ))}\n {navigation.state === 'submitting' && (\n <>\n
\n
\n
{stagedMessage}
\n
\n
\n \n \n )}\n
\n

\n Please note: This assistant will attempt to find information in your policy. However,\n it is not a licensed agent. Always check your policy documents or schedule a call with\n an Oyster agent for the most accurate information.\n

\n
\n
\n
\n
\n
\n
\n \n \n \n setEditorText(e.target.value)}\n />\n {action?.applicationError && (\n {action.applicationError.message}\n )}\n \n \n
\n\n \n Send Message\n \n \n
\n
\n );\n};\n\nconst AIChatProgress = () => {\n // Build a two-minute animation to keep the user engaged while the quote loads\n const steps = [\n { title: 'Loading policy documents...', maxDuration: 2000, maxWidth: 10 },\n { title: 'Reading carefully...', maxDuration: 6000, maxWidth: 45 },\n { title: 'Thinking...', maxDuration: 5000, maxWidth: 80 },\n { title: 'Thinking...', maxDuration: 8000, maxWidth: 90 },\n { title: 'Thinking...', maxDuration: 13000, maxWidth: 100 }\n ];\n\n const [stepIndex, setStepIndex] = React.useState(0);\n React.useEffect(() => {\n if (stepIndex === steps.length) {\n return;\n }\n\n const timeout = setTimeout(() => {\n setStepIndex((prev) => (prev >= steps.length - 1 ? prev : prev + 1));\n }, steps[stepIndex].maxDuration);\n\n return () => clearTimeout(timeout);\n }, [stepIndex]);\n\n return (\n
\n
\n
\n
\n
\n\n
\n {steps[stepIndex].title}\n
\n
\n
\n \n
\n
\n
\n
\n );\n};\n","import * as Headless from '@headlessui/react';\nimport clsx from 'clsx';\n\nexport function RadioGroup({\n className,\n ...props\n}: { className?: string } & Omit) {\n return (\n \n );\n}\n\nexport function RadioField({\n className,\n ...props\n}: { className?: string } & Omit) {\n return (\n [data-slot=control]]:col-start-1 [&>[data-slot=control]]:row-start-1 [&>[data-slot=control]]:justify-self-center',\n // Label layout\n '[&>[data-slot=label]]:col-start-2 [&>[data-slot=label]]:row-start-1 [&>[data-slot=label]]:justify-self-start',\n // Description layout\n '[&>[data-slot=description]]:col-start-2 [&>[data-slot=description]]:row-start-2',\n // With description\n '[&_[data-slot=label]]:has-[[data-slot=description]]:font-medium'\n )}\n />\n );\n}\n\nconst base = [\n // Basic layout\n 'relative isolate flex size-[1.1875rem] shrink-0 rounded-full sm:size-[1.0625rem]',\n // Background color + shadow applied to inset pseudo element, so shadow blends with border in light mode\n 'before:absolute before:inset-0 before:-z-10 before:rounded-full before:bg-white before:shadow',\n // Background color when checked\n 'before:group-data-[checked]:bg-[--radio-checked-bg]',\n // Background color is moved to control and shadow is removed in dark mode so hide `before` pseudo\n 'dark:before:hidden',\n // Background color applied to control in dark mode\n 'dark:bg-white/5 dark:group-data-[checked]:bg-[--radio-checked-bg]',\n // Border\n 'border border-neutral-950/15 group-data-[checked]:border-transparent group-data-[checked]:group-data-[hover]:border-transparent group-data-[hover]:border-neutral-950/30 group-data-[checked]:bg-[--radio-checked-border]',\n 'dark:border-white/15 dark:group-data-[checked]:border-white/5 dark:group-data-[checked]:group-data-[hover]:border-white/5 dark:group-data-[hover]:border-white/30',\n // Inner highlight shadow\n 'after:absolute after:inset-0 after:rounded-full after:shadow-[inset_0_1px_theme(colors.white/15%)]',\n 'dark:after:-inset-px dark:after:hidden dark:after:rounded-full dark:group-data-[checked]:after:block',\n // Indicator color (light mode)\n '[--radio-indicator:transparent] group-data-[checked]:[--radio-indicator:var(--radio-checked-indicator)] group-data-[checked]:group-data-[hover]:[--radio-indicator:var(--radio-checked-indicator)] group-data-[hover]:[--radio-indicator:theme(colors.neutral.900/10%)]',\n // Indicator color (dark mode)\n 'dark:group-data-[checked]:group-data-[hover]:[--radio-indicator:var(--radio-checked-indicator)] dark:group-data-[hover]:[--radio-indicator:theme(colors.neutral.700)]',\n // Focus ring\n 'group-data-[focus]:outline group-data-[focus]:outline-2 group-data-[focus]:outline-offset-2 group-data-[focus]:outline-primary-500',\n // Disabled state\n 'group-data-[disabled]:opacity-50',\n 'group-data-[disabled]:border-neutral-950/25 group-data-[disabled]:bg-neutral-950/5 group-data-[disabled]:[--radio-checked-indicator:theme(colors.neutral.950/50%)] group-data-[disabled]:before:bg-transparent',\n 'dark:group-data-[disabled]:border-white/20 dark:group-data-[disabled]:bg-white/[2.5%] dark:group-data-[disabled]:[--radio-checked-indicator:theme(colors.white/50%)] dark:group-data-[disabled]:group-data-[checked]:after:hidden'\n];\n\nconst colors = {\n 'dark/neutral': [\n '[--radio-checked-bg:theme(colors.neutral.900)] [--radio-checked-border:theme(colors.neutral.950/90%)] [--radio-checked-indicator:theme(colors.white)]',\n 'dark:[--radio-checked-bg:theme(colors.neutral.600)]'\n ],\n 'dark/white': [\n '[--radio-checked-bg:theme(colors.neutral.900)] [--radio-checked-border:theme(colors.neutral.950/90%)] [--radio-checked-indicator:theme(colors.white)]',\n 'dark:[--radio-checked-bg:theme(colors.white)] dark:[--radio-checked-border:theme(colors.neutral.950/15%)] dark:[--radio-checked-indicator:theme(colors.neutral.900)]'\n ],\n white:\n '[--radio-checked-bg:theme(colors.white)] [--radio-checked-border:theme(colors.neutral.950/15%)] [--radio-checked-indicator:theme(colors.neutral.900)]',\n dark: '[--radio-checked-bg:theme(colors.neutral.900)] [--radio-checked-border:theme(colors.neutral.950/90%)] [--radio-checked-indicator:theme(colors.white)]',\n neutral:\n '[--radio-checked-indicator:theme(colors.white)] [--radio-checked-bg:theme(colors.neutral.600)] [--radio-checked-border:theme(colors.neutral.700/90%)]',\n red: '[--radio-checked-indicator:theme(colors.white)] [--radio-checked-bg:theme(colors.red.600)] [--radio-checked-border:theme(colors.red.700/90%)]',\n orange:\n '[--radio-checked-indicator:theme(colors.white)] [--radio-checked-bg:theme(colors.orange.500)] [--radio-checked-border:theme(colors.orange.600/90%)]',\n amber:\n '[--radio-checked-bg:theme(colors.amber.400)] [--radio-checked-border:theme(colors.amber.500/80%)] [--radio-checked-indicator:theme(colors.amber.950)]',\n yellow:\n '[--radio-checked-bg:theme(colors.yellow.300)] [--radio-checked-border:theme(colors.yellow.400/80%)] [--radio-checked-indicator:theme(colors.yellow.950)]',\n lime: '[--radio-checked-bg:theme(colors.lime.300)] [--radio-checked-border:theme(colors.lime.400/80%)] [--radio-checked-indicator:theme(colors.lime.950)]',\n green:\n '[--radio-checked-indicator:theme(colors.white)] [--radio-checked-bg:theme(colors.green.600)] [--radio-checked-border:theme(colors.green.700/90%)]',\n emerald:\n '[--radio-checked-indicator:theme(colors.white)] [--radio-checked-bg:theme(colors.emerald.600)] [--radio-checked-border:theme(colors.emerald.700/90%)]',\n teal: '[--radio-checked-indicator:theme(colors.white)] [--radio-checked-bg:theme(colors.teal.600)] [--radio-checked-border:theme(colors.teal.700/90%)]',\n cyan: '[--radio-checked-bg:theme(colors.cyan.300)] [--radio-checked-border:theme(colors.cyan.400/80%)] [--radio-checked-indicator:theme(colors.cyan.950)]',\n sky: '[--radio-checked-indicator:theme(colors.white)] [--radio-checked-bg:theme(colors.sky.500)] [--radio-checked-border:theme(colors.sky.600/80%)]',\n primary:\n '[--radio-checked-indicator:theme(colors.white)] [--radio-checked-bg:theme(colors.primary.500)] [--radio-checked-border:theme(colors.primary.600/90%)]',\n indigo:\n '[--radio-checked-indicator:theme(colors.white)] [--radio-checked-bg:theme(colors.indigo.500)] [--radio-checked-border:theme(colors.indigo.600/90%)]',\n violet:\n '[--radio-checked-indicator:theme(colors.white)] [--radio-checked-bg:theme(colors.violet.500)] [--radio-checked-border:theme(colors.violet.600/90%)]',\n purple:\n '[--radio-checked-indicator:theme(colors.white)] [--radio-checked-bg:theme(colors.purple.500)] [--radio-checked-border:theme(colors.purple.600/90%)]',\n fuchsia:\n '[--radio-checked-indicator:theme(colors.white)] [--radio-checked-bg:theme(colors.fuchsia.500)] [--radio-checked-border:theme(colors.fuchsia.600/90%)]',\n pink: '[--radio-checked-indicator:theme(colors.white)] [--radio-checked-bg:theme(colors.pink.500)] [--radio-checked-border:theme(colors.pink.600/90%)]',\n rose: '[--radio-checked-indicator:theme(colors.white)] [--radio-checked-bg:theme(colors.rose.500)] [--radio-checked-border:theme(colors.rose.600/90%)]'\n};\n\ntype Color = keyof typeof colors;\n\nexport function Radio({\n color = 'dark/neutral',\n className,\n ...props\n}: { color?: Color; className?: string } & Omit) {\n return (\n \n \n \n \n \n );\n}\n","import { Description, ErrorMessage, Field, FieldGroup, Label } from '@oysterjs/uiv2/fieldset';\nimport { Input } from '@oysterjs/uiv2/input';\nimport { Select } from '@oysterjs/uiv2/select';\nimport { AddressAutofill } from '@mapbox/search-js-react';\nimport { getMapboxPublicKey } from '@oysterjs/corev2/config';\nimport { states } from '@oysterjs/corev2/states';\nimport { TransitionDiv } from './async';\n\ninterface Address {\n line1: string;\n line2?: string | null;\n city: string;\n zone: string;\n postalCode: string;\n}\n\nexport const AddressForm = (props: {\n onChange: (update: (prev: Address) => Address) => void;\n disabled?: boolean;\n addressTitle: string;\n addressDescription?: string;\n initialValue: Address;\n validationErrors?: {\n line1?: string;\n line2?: string;\n city?: string;\n zone?: string;\n postalCode?: string;\n };\n}) => {\n const onRetrieve = (res) => {\n const address = res?.features?.[0]?.properties;\n if (address) {\n props.onChange(() => ({\n line1: address.address_line1,\n line2: address.address_line2 || undefined,\n city: address.address_level2,\n zone: address.address_level1,\n postalCode: address.postcode\n }));\n }\n };\n\n const showSecondLine = !!props.initialValue.line2 || !!props.validationErrors?.line2;\n const showCityStateZip =\n !!props.initialValue.city ||\n !!props.initialValue.zone ||\n !!props.initialValue.postalCode ||\n !!props.validationErrors?.city ||\n !!props.validationErrors?.zone ||\n !!props.validationErrors?.postalCode;\n\n return (\n <>\n \n \n \n {props.addressDescription && {props.addressDescription}}\n
\n \n {\n const val = e.currentTarget.value;\n props.onChange((prev) => ({ ...prev, line1: val }));\n }}\n />\n \n
\n {props.validationErrors?.line1 && (\n {props.validationErrors?.line1}\n )}\n
\n
\n {showSecondLine && (\n \n \n \n {\n const val = e.currentTarget.value;\n props.onChange((prev) => ({ ...prev, line2: val }));\n }}\n />\n {props.validationErrors?.line2 && (\n {props.validationErrors?.line2}\n )}\n \n \n \n )}\n {showCityStateZip && (\n \n \n \n \n {\n const val = e.currentTarget.value;\n props.onChange((prev) => ({ ...prev, city: val }));\n }}\n />\n {props.validationErrors?.city && (\n {props.validationErrors?.city}\n )}\n \n \n \n {\n const val = e.currentTarget.value;\n props.onChange((prev) => ({ ...prev, zone: val }));\n }}\n >\n \n {states.map((state) => (\n \n ))}\n \n {props.validationErrors?.zone && (\n {props.validationErrors?.zone}\n )}\n \n \n \n {\n const val = e.currentTarget.value;\n props.onChange((prev) => ({ ...prev, postalCode: val }));\n }}\n />\n {props.validationErrors?.postalCode && (\n {props.validationErrors?.postalCode}\n )}\n \n \n \n )}\n \n );\n};\n","import * as Headless from '@headlessui/react';\nimport clsx from 'clsx';\nimport React from 'react';\n\nexport function CheckboxGroup({ className, ...props }: React.ComponentPropsWithoutRef<'div'>) {\n return (\n \n );\n}\n\nexport function CheckboxField({\n className,\n ...props\n}: { className?: string } & Omit) {\n return (\n [data-slot=control]]:col-start-1 [&>[data-slot=control]]:row-start-1 [&>[data-slot=control]]:justify-self-center',\n // Label layout\n '[&>[data-slot=label]]:col-start-2 [&>[data-slot=label]]:row-start-1 [&>[data-slot=label]]:justify-self-start',\n // Description layout\n '[&>[data-slot=description]]:col-start-2 [&>[data-slot=description]]:row-start-2',\n // With description\n '[&_[data-slot=label]]:has-[[data-slot=description]]:font-medium'\n )}\n />\n );\n}\n\nconst base = [\n // Basic layout\n 'relative isolate flex size-[1.125rem] items-center justify-center rounded-[0.3125rem] sm:size-4',\n // Background color + shadow applied to inset pseudo element, so shadow blends with border in light mode\n 'before:absolute before:inset-0 before:-z-10 before:rounded-[calc(0.3125rem-1px)] before:bg-white before:shadow',\n // Background color when checked\n 'before:group-data-[checked]:bg-[--checkbox-checked-bg]',\n // Background color is moved to control and shadow is removed in dark mode so hide `before` pseudo\n 'dark:before:hidden',\n // Background color applied to control in dark mode\n 'dark:bg-white/5 dark:group-data-[checked]:bg-[--checkbox-checked-bg]',\n // Border\n 'border border-zinc-950/15 group-data-[checked]:border-transparent group-data-[checked]:group-data-[hover]:border-transparent group-data-[hover]:border-zinc-950/30 group-data-[checked]:bg-[--checkbox-checked-border]',\n 'dark:border-white/15 dark:group-data-[checked]:border-white/5 dark:group-data-[checked]:group-data-[hover]:border-white/5 dark:group-data-[hover]:border-white/30',\n // Inner highlight shadow\n 'after:absolute after:inset-0 after:rounded-[calc(0.3125rem-1px)] after:shadow-[inset_0_1px_theme(colors.white/15%)]',\n 'dark:after:-inset-px dark:after:hidden dark:after:rounded-[0.3125rem] dark:group-data-[checked]:after:block',\n // Focus ring\n 'group-data-[focus]:outline group-data-[focus]:outline-2 group-data-[focus]:outline-offset-2 group-data-[focus]:outline-primary-500',\n // Disabled state\n 'group-data-[disabled]:opacity-50',\n 'group-data-[disabled]:border-zinc-950/25 group-data-[disabled]:bg-zinc-950/5 group-data-[disabled]:[--checkbox-check:theme(colors.zinc.950/50%)] group-data-[disabled]:before:bg-transparent',\n 'dark:group-data-[disabled]:border-white/20 dark:group-data-[disabled]:bg-white/[2.5%] dark:group-data-[disabled]:[--checkbox-check:theme(colors.white/50%)] dark:group-data-[disabled]:group-data-[checked]:after:hidden',\n // Forced colors mode\n 'forced-colors:[--checkbox-check:HighlightText] forced-colors:[--checkbox-checked-bg:Highlight] forced-colors:group-data-[disabled]:[--checkbox-check:Highlight]',\n 'dark:forced-colors:[--checkbox-check:HighlightText] dark:forced-colors:[--checkbox-checked-bg:Highlight] dark:forced-colors:group-data-[disabled]:[--checkbox-check:Highlight]'\n];\n\nconst colors = {\n 'dark/zinc': [\n '[--checkbox-check:theme(colors.white)] [--checkbox-checked-bg:theme(colors.zinc.900)] [--checkbox-checked-border:theme(colors.zinc.950/90%)]',\n 'dark:[--checkbox-checked-bg:theme(colors.zinc.600)]'\n ],\n 'dark/white': [\n '[--checkbox-check:theme(colors.white)] [--checkbox-checked-bg:theme(colors.zinc.900)] [--checkbox-checked-border:theme(colors.zinc.950/90%)]',\n 'dark:[--checkbox-check:theme(colors.zinc.900)] dark:[--checkbox-checked-bg:theme(colors.white)] dark:[--checkbox-checked-border:theme(colors.zinc.950/15%)]'\n ],\n white:\n '[--checkbox-check:theme(colors.zinc.900)] [--checkbox-checked-bg:theme(colors.white)] [--checkbox-checked-border:theme(colors.zinc.950/15%)]',\n dark: '[--checkbox-check:theme(colors.white)] [--checkbox-checked-bg:theme(colors.zinc.900)] [--checkbox-checked-border:theme(colors.zinc.950/90%)]',\n zinc: '[--checkbox-check:theme(colors.white)] [--checkbox-checked-bg:theme(colors.zinc.600)] [--checkbox-checked-border:theme(colors.zinc.700/90%)]',\n red: '[--checkbox-check:theme(colors.white)] [--checkbox-checked-bg:theme(colors.red.600)] [--checkbox-checked-border:theme(colors.red.700/90%)]',\n orange:\n '[--checkbox-check:theme(colors.white)] [--checkbox-checked-bg:theme(colors.orange.500)] [--checkbox-checked-border:theme(colors.orange.600/90%)]',\n amber:\n '[--checkbox-check:theme(colors.amber.950)] [--checkbox-checked-bg:theme(colors.amber.400)] [--checkbox-checked-border:theme(colors.amber.500/80%)]',\n yellow:\n '[--checkbox-check:theme(colors.yellow.950)] [--checkbox-checked-bg:theme(colors.yellow.300)] [--checkbox-checked-border:theme(colors.yellow.400/80%)]',\n lime: '[--checkbox-check:theme(colors.lime.950)] [--checkbox-checked-bg:theme(colors.lime.300)] [--checkbox-checked-border:theme(colors.lime.400/80%)]',\n green:\n '[--checkbox-check:theme(colors.white)] [--checkbox-checked-bg:theme(colors.green.600)] [--checkbox-checked-border:theme(colors.green.700/90%)]',\n emerald:\n '[--checkbox-check:theme(colors.white)] [--checkbox-checked-bg:theme(colors.emerald.600)] [--checkbox-checked-border:theme(colors.emerald.700/90%)]',\n teal: '[--checkbox-check:theme(colors.white)] [--checkbox-checked-bg:theme(colors.teal.600)] [--checkbox-checked-border:theme(colors.teal.700/90%)]',\n cyan: '[--checkbox-check:theme(colors.cyan.950)] [--checkbox-checked-bg:theme(colors.cyan.300)] [--checkbox-checked-border:theme(colors.cyan.400/80%)]',\n sky: '[--checkbox-check:theme(colors.white)] [--checkbox-checked-bg:theme(colors.sky.500)] [--checkbox-checked-border:theme(colors.sky.600/80%)]',\n primary:\n '[--checkbox-check:theme(colors.white)] [--checkbox-checked-bg:theme(colors.primary.600)] [--checkbox-checked-border:theme(colors.primary.700/90%)]',\n indigo:\n '[--checkbox-check:theme(colors.white)] [--checkbox-checked-bg:theme(colors.indigo.500)] [--checkbox-checked-border:theme(colors.indigo.600/90%)]',\n violet:\n '[--checkbox-check:theme(colors.white)] [--checkbox-checked-bg:theme(colors.violet.500)] [--checkbox-checked-border:theme(colors.violet.600/90%)]',\n purple:\n '[--checkbox-check:theme(colors.white)] [--checkbox-checked-bg:theme(colors.purple.500)] [--checkbox-checked-border:theme(colors.purple.600/90%)]',\n fuchsia:\n '[--checkbox-check:theme(colors.white)] [--checkbox-checked-bg:theme(colors.fuchsia.500)] [--checkbox-checked-border:theme(colors.fuchsia.600/90%)]',\n pink: '[--checkbox-check:theme(colors.white)] [--checkbox-checked-bg:theme(colors.pink.500)] [--checkbox-checked-border:theme(colors.pink.600/90%)]',\n rose: '[--checkbox-check:theme(colors.white)] [--checkbox-checked-bg:theme(colors.rose.500)] [--checkbox-checked-border:theme(colors.rose.600/90%)]'\n};\n\ntype Color = keyof typeof colors;\n\nexport function Checkbox({\n color = 'dark/zinc',\n className,\n ...props\n}: {\n color?: Color;\n className?: string;\n} & Omit) {\n return (\n \n \n \n {/* Checkmark icon */}\n \n {/* Indeterminate icon */}\n \n \n \n \n );\n}\n","import React from 'react';\nimport {\n Form,\n useSubmit,\n useActionData,\n useNavigation,\n useLoaderData,\n useNavigate,\n useRouteLoaderData,\n useLocation,\n useOutlet,\n NavLink\n} from 'react-router-dom';\n\nimport * as Headless from '@headlessui/react';\nimport {\n MagnifyingGlassIcon,\n DocumentPlusIcon,\n CalendarIcon,\n PencilIcon,\n UserPlusIcon,\n InboxIcon,\n UserIcon,\n BuildingOfficeIcon,\n EyeIcon,\n CloudArrowDownIcon\n} from '@heroicons/react/24/outline';\nimport { CheckCircleIcon } from '@heroicons/react/20/solid';\nimport {\n DialogTitle,\n DialogBody,\n DialogActions,\n DialogDescription,\n MountableDialog\n} from '@oysterjs/uiv2/dialog';\nimport { PageTitle } from '@oysterjs/uiv2/page';\nimport {\n Table,\n TableHead,\n TableBody,\n TableRow,\n TableHeader,\n TableCell\n} from '@oysterjs/uiv2/table';\n// import {\n// Pagination,\n// PaginationPrevious,\n// PaginationList,\n// PaginationPage,\n// PaginationGap,\n// PaginationNext\n// } from '@oysterjs/uiv2/pagination';\nimport { Input, InputGroup } from '@oysterjs/uiv2/input';\nimport { Radio, RadioField, RadioGroup } from '@oysterjs/uiv2/radio';\nimport { Button } from '@oysterjs/uiv2/button';\nimport {\n Description,\n ErrorMessage,\n Field,\n FieldGroup,\n Fieldset,\n Label,\n Legend\n} from '@oysterjs/uiv2/fieldset';\nimport { PageNavigation } from '@oysterjs/uiv2/navigation';\nimport {\n AccountBusinessPolicyFieldsFragment,\n AccountCertificateOfLiabilityInsuranceFieldsFragment,\n AccountContactFieldsFragment,\n AccountFieldsFragment,\n AccountServiceRequestFieldsFragment,\n AccountType,\n CertificateOfLiabilityInsuranceFieldsFragment,\n CreateAccountInput,\n CreateAccountMutation,\n CreateCertificateInput,\n CreateCertificateMutation,\n PolicyState,\n UpdateAccountInput,\n UpdateAccountMutation,\n useGetContactsLazyQuery\n} from '../api/graphql';\nimport { ValidationError } from '@oysterjs/corev2/graphql';\nimport { Await, TransitionDiv } from '@oysterjs/uiv2/async';\nimport { ActionResult } from '@oysterjs/corev2/graphql/actions';\nimport { useFormActions } from '@oysterjs/corev2/graphql/form';\nimport { AddressForm } from '@oysterjs/uiv2/address';\nimport { clsx } from 'clsx';\nimport { Combobox } from '@oysterjs/uiv2/combobox';\nimport { CheckboxField, Checkbox } from '@oysterjs/uiv2/checkbox';\nimport { getDisplayInsuranceType } from '../api/map';\nimport { Link } from 'react-router-dom';\nimport { AnimatePresence } from 'motion/react';\nimport { naics } from '@oysterjs/corev2/naics';\nimport { Badge } from '@oysterjs/uiv2/badge';\nimport { Textarea } from '@oysterjs/uiv2/textarea';\nimport { Spinner } from '@oysterjs/uiv2/spinner';\n\nexport const AccountsPage = () => {\n const outlet = useOutlet();\n const location = useLocation();\n\n const [filter, setFilter] = React.useState('');\n const loader = useLoaderData() as\n | { data: Promise<{ accounts?: AccountFieldsFragment[] }> }\n | undefined;\n\n return (\n \n
\n
\n
\n
\n
\n \n \n \n \n \n setFilter(e.currentTarget.value)}\n />\n \n \n \n
\n
\n \n
\n
\n }>\n \n {(data) =>\n data?.accounts && (\n
\n {!data.accounts?.length && (\n
\n \n

\n No accounts found\n

\n

\n You haven't added any accounts yet. Create a new account to get started.\n

\n
\n )}\n {!!data.accounts?.length && (\n \n \n \n Name\n Address\n \n \n \n {data.accounts\n ?.filter(\n (account) =>\n !filter ||\n JSON.stringify(account)\n .toLowerCase()\n .indexOf(filter.toLowerCase()) !== -1\n )\n .map((account) => (\n \n \n
\n {account.account.name}\n \n {account.type === AccountType.Business\n ? 'Business'\n : 'Individual'}\n \n
\n \n
\n {account.account.mailingAddress.line1}\n
\n ))}\n
\n \n )}\n
\n )\n }\n
\n
\n
\n {/* \n \n \n 1\n 2\n \n 3\n \n 4\n \n 65\n 66\n \n \n */}\n\n \n {outlet && React.cloneElement(outlet, { key: location.pathname })}\n \n
\n );\n};\n\nexport const AccountsPageLoader = () => {\n return (\n
\n
\n \n

Loading accounts...

\n

This might take a moment.

\n
\n
\n );\n};\n\nexport const AccountCreatePage = () => {\n const navigation = useNavigation();\n const navigate = useNavigate();\n const submit = useSubmit();\n const action = useActionData() as ActionResult;\n\n const [fetchContacts, { data: contacts, loading: contactsLoading, error: contactsError }] =\n useGetContactsLazyQuery();\n\n const [contactCreationMode, setContactCreationMode] = React.useState<'new' | 'existing'>('new');\n const [validationErrors, setValidationErrors] = React.useState([]);\n const [form, setForm] = React.useState();\n const { updateForm, updateFormMulti, getValidationError } = useFormActions(\n setForm,\n setValidationErrors\n );\n\n React.useEffect(() => {\n if (action?.validationErrors) {\n setValidationErrors(action.validationErrors);\n }\n }, [action?.validationErrors]);\n\n React.useEffect(() => {\n if (contactCreationMode === 'existing') {\n fetchContacts();\n }\n }, [contactCreationMode]);\n\n const handleSubmit = (e: React.FormEvent) => {\n if (!form) {\n return;\n }\n\n e.preventDefault();\n submit(form, { method: 'POST', encType: 'application/json' });\n };\n\n return (\n navigate(-1)} size=\"2xl\">\n Create a new account\n Create a new account and associate it with a contact.\n
\n *+*]:pt-6 divide-y divide-neutral-200\">\n
\n Account Type\n Select the type of account to create.\n \n \n \n updateForm(['type'], (prev) => ({\n ...prev,\n type: type as AccountType,\n contact:\n type === AccountType.Individual\n ? undefined\n : {\n name: '',\n email: '',\n phone: ''\n },\n business:\n prev?.business ||\n (type === AccountType.Business\n ? {\n name: '',\n dba: '',\n email: '',\n phone: '',\n naics: '',\n mailingAddress: {\n line1: '',\n city: '',\n zone: '',\n postalCode: ''\n },\n website: ''\n }\n : undefined),\n individual:\n prev?.individual ||\n (type === AccountType.Individual\n ? {\n name: '',\n email: '',\n phone: '',\n mailingAddress: {\n line1: '',\n city: '',\n zone: '',\n postalCode: ''\n }\n }\n : undefined)\n }))\n }\n >\n
\n \n \n \n \n \n Business Account\n \n \n An account for a business with commercial policies.\n \n \n \n \n \n \n \n \n \n \n \n Individual Account\n \n \n An account for an individual with personal policies.\n \n \n \n \n \n \n
\n \n
\n
\n
\n {form?.type === AccountType.Business && (\n <>\n
\n Business Details\n \n Specify the details of the business. This information creates the profile of the\n business. This information can be different from the account's contact information\n collected below.\n \n \n
\n \n \n The legal name of the business\n {\n const name = e.currentTarget.value;\n updateForm(['account', 'name'], (prev) =>\n !prev\n ? prev\n : {\n ...prev,\n business: prev.business ? { ...prev.business, name } : undefined\n }\n );\n }}\n invalid={!!getValidationError(validationErrors, ['account', 'name'])}\n />\n {getValidationError(validationErrors, ['account', 'name']) && (\n \n {getValidationError(validationErrors, ['account', 'name'])}\n \n )}\n \n \n \n The DBA of the business, if any\n {\n const dba = e.currentTarget.value;\n updateForm(['account', 'dba'], (prev) =>\n !prev\n ? prev\n : {\n ...prev,\n business: prev.business ? { ...prev.business, dba } : undefined\n }\n );\n }}\n invalid={!!getValidationError(validationErrors, ['account', 'dba'])}\n />\n {getValidationError(validationErrors, ['account', 'dba']) && (\n \n {getValidationError(validationErrors, ['account', 'dba'])}\n \n )}\n \n \n \n The email address of the business\n {\n const email = e.currentTarget.value;\n updateForm(['account', 'email'], (prev) =>\n !prev\n ? prev\n : {\n ...prev,\n business: prev.business ? { ...prev.business, email } : undefined\n }\n );\n }}\n invalid={!!getValidationError(validationErrors, ['account', 'email'])}\n />\n {getValidationError(validationErrors, ['account', 'email']) && (\n \n {getValidationError(validationErrors, ['account', 'email'])}\n \n )}\n \n \n \n The phone number of the business\n {\n const phone = e.currentTarget.value;\n updateForm(['account', 'phone'], (prev) =>\n !prev\n ? prev\n : {\n ...prev,\n business: prev.business ? { ...prev.business, phone } : undefined\n }\n );\n }}\n invalid={!!getValidationError(validationErrors, ['account', 'phone'])}\n />\n {getValidationError(validationErrors, ['account', 'phone']) && (\n \n {getValidationError(validationErrors, ['account', 'phone'])}\n \n )}\n \n
\n
\n \n updateFormMulti(\n [\n ['account', 'mailingAddress', 'line1'],\n ['account', 'mailingAddress', 'line2'],\n ['account', 'mailingAddress', 'city'],\n ['account', 'mailingAddress', 'zone'],\n ['account', 'mailingAddress', 'postalCode']\n ],\n (prev) =>\n !prev\n ? prev\n : {\n ...prev,\n business: prev.business\n ? {\n ...prev.business,\n mailingAddress: update(prev.business.mailingAddress)\n }\n : undefined\n }\n )\n }\n validationErrors={{\n line1: getValidationError(validationErrors, [\n 'account',\n 'mailingAddress',\n 'line1'\n ]),\n line2: getValidationError(validationErrors, [\n 'account',\n 'mailingAddress',\n 'line2'\n ]),\n city: getValidationError(validationErrors, [\n 'account',\n 'mailingAddress',\n 'city'\n ]),\n zone: getValidationError(validationErrors, [\n 'account',\n 'mailingAddress',\n 'zone'\n ]),\n postalCode: getValidationError(validationErrors, [\n 'account',\n 'mailingAddress',\n 'postalCode'\n ])\n }}\n />\n \n \n \n \n updateForm(['account', 'naics'], (prev) =>\n !prev\n ? prev\n : {\n ...prev,\n business: prev.business ? { ...prev.business, naics } : undefined\n }\n )\n }\n options={Object.entries(naics).map(([code, classification]) => ({\n value: code,\n label: `${code} - ${classification.title}`,\n description: classification.description\n }))}\n error={getValidationError(validationErrors, ['account', 'naics'])}\n />\n \n \n
\n
\n Primary Contact Information\n \n Specify the primary contact associated with this account. This contact will\n receive notifications for policies and other account activities, and will be able\n to log into to the client application.\n \n \n \n {\n setContactCreationMode((prev) => (prev === 'new' ? 'existing' : 'new'));\n updateFormMulti(\n [\n ['associateContactId'],\n ['contact', 'name'],\n ['contact', 'email'],\n ['contact', 'phone']\n ],\n (prev) =>\n !prev\n ? prev\n : {\n ...prev,\n associateContactId: val === 'new' ? null : '',\n contact:\n val === 'existing'\n ? null\n : {\n name: '',\n email: '',\n phone: ''\n }\n }\n );\n }}\n >\n \n \n \n Create a new contact for this account.\n \n \n \n \n Associate an existing contact with this account.\n \n \n {getValidationError(validationErrors, ['contact'])}\n \n \n \n \n {contactCreationMode === 'existing' && (\n \n \n \n \n Search for and choose the contact to associate with this account.\n \n \n updateForm(['associateContactId'], (prev) =>\n !prev\n ? prev\n : {\n ...prev,\n associateContactId: contactId\n }\n )\n }\n options={\n contacts?.contacts?.map((contact) => ({\n value: contact.id,\n label: contact.name,\n description: contact.email\n })) || []\n }\n error={\n contactsError?.message ||\n getValidationError(validationErrors, ['associateContactId'])\n }\n />\n \n \n )}\n {contactCreationMode === 'new' && (\n \n
\n \n \n \n The name of the contact associated with this account.\n \n {\n const name = e.currentTarget.value;\n updateForm(['contact', 'name'], (prev) =>\n !prev\n ? prev\n : {\n ...prev,\n contact: prev.contact ? { ...prev.contact, name } : undefined\n }\n );\n }}\n invalid={!!getValidationError(validationErrors, ['contact', 'name'])}\n />\n {getValidationError(validationErrors, ['contact', 'name']) && (\n \n {getValidationError(validationErrors, ['contact', 'name'])}\n \n )}\n \n \n \n \n The email address of the contact associated with this account.\n \n {\n const email = e.currentTarget.value;\n updateForm(['contact', 'email'], (prev) =>\n !prev\n ? prev\n : {\n ...prev,\n contact: prev.contact ? { ...prev.contact, email } : undefined\n }\n );\n }}\n invalid={!!getValidationError(validationErrors, ['contact', 'email'])}\n />\n {getValidationError(validationErrors, ['contact', 'email']) && (\n \n {getValidationError(validationErrors, ['contact', 'email'])}\n \n )}\n \n \n \n \n The phone number of the contact associated with this account.\n \n {\n const phone = e.currentTarget.value;\n updateForm(['contact', 'phone'], (prev) =>\n !prev\n ? prev\n : {\n ...prev,\n contact: prev.contact ? { ...prev.contact, phone } : undefined\n }\n );\n }}\n invalid={!!getValidationError(validationErrors, ['contact', 'phone'])}\n />\n {getValidationError(validationErrors, ['contact', 'phone']) && (\n \n {getValidationError(validationErrors, ['contact', 'phone'])}\n \n )}\n \n
\n
\n )}\n
\n \n )}\n {form?.type === AccountType.Individual && (\n <>\n
\n Individual Details\n \n Specify the details of the individual. This information creates the profile of the\n individual and serves as the contact information associated with this account.\n \n \n
\n \n \n The name of the individual\n {\n const name = e.currentTarget.value;\n updateForm(['account', 'name'], (prev) =>\n !prev\n ? prev\n : {\n ...prev,\n individual: prev.individual\n ? { ...prev.individual, name }\n : undefined\n }\n );\n }}\n invalid={!!getValidationError(validationErrors, ['account', 'name'])}\n />\n {getValidationError(validationErrors, ['account', 'name']) && (\n \n {getValidationError(validationErrors, ['account', 'name'])}\n \n )}\n \n\n \n \n The email address of the individual\n {\n const email = e.currentTarget.value;\n updateForm(['account', 'email'], (prev) =>\n !prev\n ? prev\n : {\n ...prev,\n individual: prev.individual\n ? { ...prev.individual, email }\n : undefined\n }\n );\n }}\n invalid={!!getValidationError(validationErrors, ['account', 'email'])}\n />\n {getValidationError(validationErrors, ['account', 'email']) && (\n \n {getValidationError(validationErrors, ['account', 'email'])}\n \n )}\n \n \n \n The phone number of the individual\n {\n const phone = e.currentTarget.value;\n updateForm(['account', 'phone'], (prev) =>\n !prev\n ? prev\n : {\n ...prev,\n individual: prev.individual\n ? { ...prev.individual, phone }\n : undefined\n }\n );\n }}\n invalid={!!getValidationError(validationErrors, ['account', 'phone'])}\n />\n {getValidationError(validationErrors, ['account', 'phone']) && (\n \n {getValidationError(validationErrors, ['account', 'phone'])}\n \n )}\n \n
\n
\n \n updateFormMulti(\n [\n ['account', 'mailingAddress', 'line1'],\n ['account', 'mailingAddress', 'line2'],\n ['account', 'mailingAddress', 'city'],\n ['account', 'mailingAddress', 'zone'],\n ['account', 'mailingAddress', 'postalCode']\n ],\n (prev) =>\n !prev\n ? prev\n : {\n ...prev,\n individual: prev.individual\n ? {\n ...prev.individual,\n mailingAddress: update(prev.individual.mailingAddress)\n }\n : undefined\n }\n )\n }\n validationErrors={{\n line1: getValidationError(validationErrors, [\n 'account',\n 'mailingAddress',\n 'line1'\n ]),\n line2: getValidationError(validationErrors, [\n 'account',\n 'mailingAddress',\n 'line2'\n ]),\n city: getValidationError(validationErrors, [\n 'account',\n 'mailingAddress',\n 'city'\n ]),\n zone: getValidationError(validationErrors, [\n 'account',\n 'mailingAddress',\n 'zone'\n ]),\n postalCode: getValidationError(validationErrors, [\n 'account',\n 'mailingAddress',\n 'postalCode'\n ])\n }}\n />\n
\n \n )}\n
\n \n navigate(-1)}\n >\n Close\n \n \n Create Account\n \n \n
\n
\n );\n};\n\nexport const AccountEditPage = () => {\n const navigate = useNavigate();\n const loader = useLoaderData() as\n | { data: Promise<{ account?: AccountFieldsFragment }> }\n | undefined;\n\n return (\n navigate(-1)} size=\"2xl\">\n Edit account\n Edit the account details.\n \n \n {(data) => data?.account && }\n \n \n \n );\n};\n\nconst AccountEditForm = ({ account }: { account?: AccountFieldsFragment }) => {\n const navigation = useNavigation();\n const navigate = useNavigate();\n const submit = useSubmit();\n const action = useActionData() as ActionResult;\n\n const [validationErrors, setValidationErrors] = React.useState([]);\n const [form, setForm] = React.useState();\n const { updateForm, updateFormMulti, getValidationError } = useFormActions(\n setForm,\n setValidationErrors\n );\n\n React.useEffect(() => {\n if (action?.validationErrors) {\n setValidationErrors(action.validationErrors);\n }\n }, [action?.validationErrors]);\n\n React.useEffect(() => {\n if (account) {\n // No editing the contact here, only the account\n setForm({\n business: account.account.__typename === 'BusinessAccount' ? account.account : undefined,\n individual: account.account.__typename === 'IndividualAccount' ? account.account : undefined\n });\n }\n }, [account]);\n\n const handleSubmit = (e: React.FormEvent) => {\n if (!form) {\n return;\n }\n\n e.preventDefault();\n submit(form, { method: 'PUT', encType: 'application/json' });\n };\n\n return (\n
\n *+*]:pt-6 divide-y divide-neutral-200\">\n {!!form && account?.type === AccountType.Business && (\n <>\n
\n \n
\n \n \n The legal name of the business\n {\n const name = e.currentTarget.value;\n updateForm(['account', 'name'], (prev) =>\n !prev\n ? prev\n : {\n ...prev,\n business: prev.business ? { ...prev.business, name } : undefined\n }\n );\n }}\n invalid={!!getValidationError(validationErrors, ['account', 'name'])}\n />\n {getValidationError(validationErrors, ['account', 'name']) && (\n \n {getValidationError(validationErrors, ['account', 'name'])}\n \n )}\n \n \n \n The DBA of the business, if any\n {\n const dba = e.currentTarget.value;\n updateForm(['account', 'dba'], (prev) =>\n !prev\n ? prev\n : {\n ...prev,\n business: prev.business ? { ...prev.business, dba } : undefined\n }\n );\n }}\n invalid={!!getValidationError(validationErrors, ['account', 'dba'])}\n />\n {getValidationError(validationErrors, ['account', 'dba']) && (\n \n {getValidationError(validationErrors, ['account', 'dba'])}\n \n )}\n \n \n \n The email address of the business\n {\n const email = e.currentTarget.value;\n updateForm(['account', 'email'], (prev) =>\n !prev\n ? prev\n : {\n ...prev,\n business: prev.business ? { ...prev.business, email } : undefined\n }\n );\n }}\n invalid={!!getValidationError(validationErrors, ['account', 'email'])}\n />\n {getValidationError(validationErrors, ['account', 'email']) && (\n \n {getValidationError(validationErrors, ['account', 'email'])}\n \n )}\n \n \n \n The phone number of the business\n {\n const phone = e.currentTarget.value;\n updateForm(['account', 'phone'], (prev) =>\n !prev\n ? prev\n : {\n ...prev,\n business: prev.business ? { ...prev.business, phone } : undefined\n }\n );\n }}\n invalid={!!getValidationError(validationErrors, ['account', 'phone'])}\n />\n {getValidationError(validationErrors, ['account', 'phone']) && (\n \n {getValidationError(validationErrors, ['account', 'phone'])}\n \n )}\n \n
\n
\n \n updateFormMulti(\n [\n ['account', 'mailingAddress', 'line1'],\n ['account', 'mailingAddress', 'line2'],\n ['account', 'mailingAddress', 'city'],\n ['account', 'mailingAddress', 'zone'],\n ['account', 'mailingAddress', 'postalCode']\n ],\n (prev) =>\n !prev\n ? prev\n : {\n ...prev,\n business: prev.business\n ? {\n ...prev.business,\n mailingAddress: update(prev.business.mailingAddress)\n }\n : undefined\n }\n )\n }\n validationErrors={{\n line1: getValidationError(validationErrors, [\n 'account',\n 'mailingAddress',\n 'line1'\n ]),\n line2: getValidationError(validationErrors, [\n 'account',\n 'mailingAddress',\n 'line2'\n ]),\n city: getValidationError(validationErrors, ['account', 'mailingAddress', 'city']),\n zone: getValidationError(validationErrors, ['account', 'mailingAddress', 'zone']),\n postalCode: getValidationError(validationErrors, [\n 'account',\n 'mailingAddress',\n 'postalCode'\n ])\n }}\n />\n \n \n \n \n updateForm(['account', 'naics'], (prev) =>\n !prev\n ? prev\n : {\n ...prev,\n business: prev.business ? { ...prev.business, naics } : undefined\n }\n )\n }\n options={Object.entries(naics).map(([code, classification]) => ({\n value: code,\n label: `${code} - ${classification.title}`,\n description: classification.description\n }))}\n error={getValidationError(validationErrors, ['account', 'naics'])}\n />\n \n \n
\n \n )}\n {!!form && account?.type === AccountType.Individual && (\n <>\n
\n \n
\n \n \n The name of the individual\n {\n const name = e.currentTarget.value;\n updateForm(['account', 'name'], (prev) =>\n !prev\n ? prev\n : {\n ...prev,\n individual: prev.individual\n ? { ...prev.individual, name }\n : undefined\n }\n );\n }}\n invalid={!!getValidationError(validationErrors, ['account', 'name'])}\n />\n {getValidationError(validationErrors, ['account', 'name']) && (\n \n {getValidationError(validationErrors, ['account', 'name'])}\n \n )}\n \n\n \n \n The email address of the individual\n {\n const email = e.currentTarget.value;\n updateForm(['account', 'email'], (prev) =>\n !prev\n ? prev\n : {\n ...prev,\n individual: prev.individual\n ? { ...prev.individual, email }\n : undefined\n }\n );\n }}\n invalid={!!getValidationError(validationErrors, ['account', 'email'])}\n />\n {getValidationError(validationErrors, ['account', 'email']) && (\n \n {getValidationError(validationErrors, ['account', 'email'])}\n \n )}\n \n \n \n The phone number of the individual\n {\n const phone = e.currentTarget.value;\n updateForm(['account', 'phone'], (prev) =>\n !prev\n ? prev\n : {\n ...prev,\n individual: prev.individual\n ? { ...prev.individual, phone }\n : undefined\n }\n );\n }}\n invalid={!!getValidationError(validationErrors, ['account', 'phone'])}\n />\n {getValidationError(validationErrors, ['account', 'phone']) && (\n \n {getValidationError(validationErrors, ['account', 'phone'])}\n \n )}\n \n
\n
\n \n updateFormMulti(\n [\n ['account', 'mailingAddress', 'line1'],\n ['account', 'mailingAddress', 'line2'],\n ['account', 'mailingAddress', 'city'],\n ['account', 'mailingAddress', 'zone'],\n ['account', 'mailingAddress', 'postalCode']\n ],\n (prev) =>\n !prev\n ? prev\n : {\n ...prev,\n individual: prev.individual\n ? {\n ...prev.individual,\n mailingAddress: update(prev.individual.mailingAddress)\n }\n : undefined\n }\n )\n }\n validationErrors={{\n line1: getValidationError(validationErrors, [\n 'account',\n 'mailingAddress',\n 'line1'\n ]),\n line2: getValidationError(validationErrors, [\n 'account',\n 'mailingAddress',\n 'line2'\n ]),\n city: getValidationError(validationErrors, ['account', 'mailingAddress', 'city']),\n zone: getValidationError(validationErrors, ['account', 'mailingAddress', 'zone']),\n postalCode: getValidationError(validationErrors, [\n 'account',\n 'mailingAddress',\n 'postalCode'\n ])\n }}\n />\n
\n \n )}\n
\n \n navigate(-1)}\n >\n Close\n \n \n Save Changes\n \n \n
\n );\n};\n\nexport const AccountPage = () => {\n const loader = useLoaderData() as\n | { data: Promise<{ account?: AccountFieldsFragment & AccountContactFieldsFragment }> }\n | undefined;\n\n return (\n }>\n \n {(data) =>\n !!data?.account && (\n <>\n
\n
\n

\n {data.account?.account.name}\n

\n
\n {data.account?.type === AccountType.Business && (\n
\n \n {data.account?.contacts[0].name}\n
\n )}\n
\n \n Created on{' '}\n {new Intl.DateTimeFormat('en-US', { dateStyle: 'medium' }).format(\n new Date(data.account?.createdAt || '')\n )}\n
\n
\n
\n
\n \n \n \n Edit\n \n \n\n {/* Dropdown */}\n {/*\n \n More\n \n \n\n \n \n \n Delete\n \n \n \n */}\n
\n
\n \n \n )\n }\n
\n
\n );\n};\n\nexport const AccountOverviewPage = () => {\n const loader = useRouteLoaderData('accounts/:id') as\n | {\n data: Promise<{\n account?: AccountFieldsFragment & AccountContactFieldsFragment;\n }>;\n }\n | undefined;\n\n return (\n \n \n {(data) =>\n !!data?.account && (\n
\n
\n
\n
\n
\n

\n Contact overview\n

\n

\n Basic details about the contact for this account.\n

\n
\n
\n
\n
\n
\n
\n
Contact Name
\n
\n {data.account?.contacts[0].name}\n
\n
\n
\n
Email Address
\n
\n {data.account?.contacts[0].email}\n
\n
\n
\n
Phone Number
\n
\n {data.account?.contacts[0].phone}\n
\n
\n
\n
Account Since
\n
\n \n {new Intl.DateTimeFormat('en-US', { dateStyle: 'medium' }).format(\n new Date(data.account?.createdAt || '')\n )}\n \n
\n
\n
\n
\n
\n\n {data.account?.type === AccountType.Business && (\n
\n
\n
\n
\n

\n Business details\n

\n

\n Details about the business associated with the client.\n

\n
\n
\n
\n
\n
\n
\n
Business Name
\n
\n {data.account?.account.name}\n
\n
\n
\n
Mailing Address
\n
\n \n {data.account?.account.mailingAddress.line1}\n {data.account?.account.mailingAddress.line2 &&\n `, ${data.account?.account.mailingAddress.line2}`}\n {', '}\n {data.account?.account.mailingAddress.city},{' '}\n {data.account?.account.mailingAddress.zone}{' '}\n {data.account?.account.mailingAddress.postalCode}\n \n
\n
\n
\n
Classification
\n
\n {(naics[\n data.account?.account.__typename === 'BusinessAccount'\n ? data.account?.account.naics\n : ''\n ] ||\n undefined) && (\n \n {\n (\n naics[\n data.account?.account.__typename === 'BusinessAccount'\n ? data.account?.account.naics\n : ''\n ] || undefined\n ).title\n }{' '}\n (\n {data.account?.account.__typename === 'BusinessAccount'\n ? data.account?.account.naics\n : ''}\n )\n \n )}\n
\n
\n
\n
\n
\n )}\n
\n )\n }\n
\n
\n );\n};\n\nconst policyStatuses = {\n [PolicyState.Binding]: 'text-primary-700 bg-primary-50 ring-primary-600/20',\n [PolicyState.Inforce]: 'text-green-700 bg-green-50 ring-green-600/20',\n [PolicyState.Expired]: 'text-neutral-600 bg-neutral-50 ring-neutral-500/10',\n [PolicyState.Canceled]: 'text-red-700 bg-red-50 ring-red-600/10'\n};\n\nconst titleCase = (s: string) =>\n s\n .split(/[\\s_]/g)\n .map((part) => part[0].toUpperCase() + part.substring(1).toLowerCase())\n .join(' ');\n\nexport const AccountPoliciesPage = () => {\n const loader = useRouteLoaderData('accounts/:id') as\n | {\n data: Promise<{\n account?: AccountFieldsFragment & AccountBusinessPolicyFieldsFragment;\n }>;\n }\n | undefined;\n\n return (\n \n \n {(data) =>\n !!data?.account && (\n <>\n {data?.account?.type === AccountType.Business && (\n
\n
\n
\n
\n

\n Business Insurance Policies\n

\n

\n Details about the policies associated with this client.\n

\n
\n {!!data.account?.businessPolicies?.length && (\n
\n \n Add Policy\n \n
\n )}\n
\n
\n
\n
\n {!data.account?.businessPolicies?.length && (\n
\n \n

\n No policies\n

\n

\n Get started by logging a new policy.\n

\n
\n \n Add Policy\n \n
\n
\n )}\n {!!data.account?.businessPolicies?.length && (\n
\n \n \n \n \n Coverage\n \n \n Status\n \n \n Carrier\n \n \n Expiration Date\n \n \n Edit\n \n \n \n \n {data.account.businessPolicies.map((policy) => (\n \n \n \n \n \n \n \n ))}\n \n
\n
\n {getDisplayInsuranceType(policy.type)}\n
\n
\n {policy.policyNumber || 'N/A'}\n
\n
\n \n {titleCase(policy.state)}\n \n \n {policy.carrier.name}\n \n {!policy.expiresAt ||\n isNaN(new Date(policy.expiresAt).getTime())\n ? 'N/A'\n : new Intl.DateTimeFormat('en-US').format(\n new Date(policy.expiresAt)\n )}\n \n \n View\n \n , {getDisplayInsuranceType(policy.type)}\n \n \n
\n
\n )}\n
\n
\n
\n )}\n {data?.account?.type === AccountType.Individual && (\n
\n
\n
\n
\n

\n Personal Insurance Policies\n

\n

\n Details about the policies associated with this client.\n

\n
\n
\n
\n
\n
\n {!data.account?.businessPolicies?.length && (\n
\n \n

\n No policies\n

\n

\n Personal policies are not supported yet. Reach out to the Oyster support\n team for more information.\n

\n
\n )}\n
\n
\n
\n )}\n \n )\n }\n
\n
\n );\n};\n\nexport const AccountCertificatesPage = () => {\n const outlet = useOutlet();\n // const location = useLocation();\n const loader = useRouteLoaderData('accounts/:id') as\n | {\n data: Promise<{\n account?: AccountFieldsFragment &\n AccountCertificateOfLiabilityInsuranceFieldsFragment &\n AccountBusinessPolicyFieldsFragment;\n }>;\n }\n | undefined;\n\n return (\n <>\n \n \n {(data) =>\n !!data?.account && (\n
\n
\n
\n
\n

\n Certificates of Insurance\n

\n

\n Details about the certificates of insurance associated with this account.\n

\n
\n {!!data.account.certificatesOfLiabilityInsurance?.length &&\n !!data.account.businessPolicies?.length && (\n
\n \n Add Certificate\n \n
\n )}\n
\n
\n
\n
\n {!data.account.certificatesOfLiabilityInsurance?.length &&\n !!data.account.businessPolicies?.length && (\n
\n \n

\n No certificates\n

\n

\n Get started by creating a new certificate of liability insurance.\n

\n
\n \n Add Certificate\n \n
\n
\n )}\n {!data.account.certificatesOfLiabilityInsurance?.length &&\n !data.account.businessPolicies?.length && (\n
\n \n

\n No policies\n

\n

\n To create a certificate of liability insurance, start by logging a\n policy.\n

\n
\n \n Add Policy\n \n
\n
\n )}\n {data.account.certificatesOfLiabilityInsurance?.length > 0 && (\n
\n \n \n \n \n Certificate Holder\n \n \n Certificate Number\n \n \n Issued Date\n \n \n Actions\n \n \n \n \n \n {data.account.certificatesOfLiabilityInsurance.map((certificate) => (\n \n \n \n \n \n \n ))}\n \n
\n Edit\n
\n
\n {certificate.holder.name}\n
\n
\n {certificate.holder.address.city},{' '}\n {certificate.holder.address.zone}{' '}\n {certificate.holder.address.postalCode}\n
\n
\n {certificate.certificateNumber}\n \n {!certificate.createdAt ||\n isNaN(new Date(certificate.createdAt).getTime())\n ? 'N/A'\n : new Intl.DateTimeFormat('en-US').format(\n new Date(certificate.createdAt)\n )}\n \n
\n \n \n \n \n \n \n
\n
\n
\n )}\n
\n
\n
\n )\n }\n
\n
\n\n \n {outlet && React.cloneElement(outlet, {})}\n \n \n );\n};\n\nexport const AccountCertificatePage = () => {\n const navigate = useNavigate();\n const loader = useRouteLoaderData('accounts/:id/certificates/:certificateId') as\n | {\n data: Promise<{\n certificate?: CertificateOfLiabilityInsuranceFieldsFragment;\n }>;\n }\n | undefined;\n\n return (\n navigate(-1)} size=\"4xl\">\n View certificate\n \n \n \n }\n >\n \n {(data) =>\n !!data?.certificate && (\n <>\n \n {data.certificate.holder.name}, {data.certificate.holder.address.city},{' '}\n {data.certificate.holder.address.zone}{' '}\n {data.certificate.holder.address.postalCode}\n \n *+*]:pt-6 divide-y divide-neutral-200\">\n \n \n \n )\n }\n \n \n \n \n \n \n );\n};\n\nexport const AccountCertificateCreatePage = () => {\n const navigation = useNavigation();\n const navigate = useNavigate();\n const submit = useSubmit();\n const action = useActionData() as ActionResult;\n const loader = useRouteLoaderData('accounts/:id') as\n | {\n data: Promise<{ account?: AccountFieldsFragment }>;\n }\n | undefined;\n\n const [validationErrors, setValidationErrors] = React.useState([]);\n const [form, setForm] = React.useState({\n accountId: '',\n additionalInsured: false,\n descriptionOfOperations: '',\n holder: {\n name: '',\n address: {\n line1: '',\n city: '',\n zone: '',\n postalCode: ''\n }\n }\n });\n const { updateForm, updateFormMulti, getValidationError } = useFormActions(\n setForm,\n setValidationErrors\n );\n\n React.useEffect(() => {\n if (action?.validationErrors) {\n setValidationErrors(action.validationErrors);\n }\n }, [action?.validationErrors]);\n\n const handleSubmit = async (e: React.FormEvent) => {\n if (!form) {\n return;\n }\n\n e.preventDefault();\n submit(\n { ...form, accountId: (await loader?.data)?.account?.id || '' },\n { method: 'POST', encType: 'application/json' }\n );\n };\n\n return (\n navigate(-1)} size=\"xl\">\n Create a new certificate\n \n Create a new certificate of liability insurance for this account.\n \n
\n *+*]:pt-6 divide-y divide-neutral-200\">\n
\n \n \n \n {\n const name = e.target.value;\n updateForm(['holder', 'name'], (prev) => ({\n ...prev,\n holder: { ...prev.holder, name }\n }));\n }}\n invalid={!!getValidationError(validationErrors, ['holder', 'name'])}\n />\n {!!getValidationError(validationErrors, ['holder', 'name']) && (\n \n {getValidationError(validationErrors, ['holder', 'name'])}\n \n )}\n \n \n \n updateFormMulti(\n [\n ['holder', 'address', 'line1'],\n ['holder', 'address', 'line2'],\n ['holder', 'address', 'city'],\n ['holder', 'address', 'zone'],\n ['holder', 'address', 'postalCode']\n ],\n (prev) => ({\n ...prev,\n holder: { ...prev.holder, address: update(prev.holder.address) }\n })\n )\n }\n validationErrors={{\n line1: getValidationError(validationErrors, ['holder', 'address', 'line1']),\n line2: getValidationError(validationErrors, ['holder', 'address', 'line2']),\n city: getValidationError(validationErrors, ['holder', 'address', 'city']),\n zone: getValidationError(validationErrors, ['holder', 'address', 'zone']),\n postalCode: getValidationError(validationErrors, [\n 'holder',\n 'address',\n 'postalCode'\n ])\n }}\n />\n \n \n \n \n updateForm(['additionalInsured'], (prev) => ({\n ...prev,\n additionalInsured: !prev.additionalInsured\n }))\n }\n />\n {!!getValidationError(validationErrors, ['additionalInsured']) && (\n \n {getValidationError(validationErrors, ['additionalInsured'])}\n \n )}\n \n \n \n \n \n {\n const descriptionOfOperations = e.target.value;\n updateForm(['descriptionOfOperations'], (prev) => ({\n ...prev,\n descriptionOfOperations\n }));\n }}\n invalid={!!getValidationError(validationErrors, ['descriptionOfOperations'])}\n />\n {!!getValidationError(validationErrors, ['descriptionOfOperations']) && (\n \n {getValidationError(validationErrors, ['descriptionOfOperations'])}\n \n )}\n \n \n
\n
\n \n navigate(-1)}\n >\n Close\n \n \n \n
\n
\n );\n};\n\nexport const AccountServiceRequestsPage = () => {\n const location = useLocation();\n const outlet = useOutlet();\n const loader = useRouteLoaderData('accounts/:id') as\n | {\n data: Promise<{\n account?: AccountFieldsFragment & AccountServiceRequestFieldsFragment;\n }>;\n }\n | undefined;\n\n return (\n <>\n \n \n {(data) =>\n !!data?.account && (\n
\n
\n
\n
\n

\n Service Requests\n

\n

\n Customer service requests associated with this account.\n

\n
\n
\n
\n
\n
\n {!data.account.serviceRequests?.length && (\n
\n \n

\n No service requests\n

\n

\n You're all set! This account has not made any service requests.\n

\n
\n )}\n {data.account.serviceRequests?.length > 0 && (\n
\n \n \n \n \n Request Type\n \n \n Status\n \n \n Last Updated\n \n \n \n \n \n {data.account.serviceRequests.map((request) => (\n \n \n \n \n \n \n ))}\n \n
\n Edit\n
\n
\n {titleCase(request.type)}\n
\n
\n {request.state}\n \n {!request.updatedAt ||\n isNaN(new Date(request.updatedAt).getTime())\n ? 'N/A'\n : new Intl.DateTimeFormat('en-US').format(\n new Date(request.updatedAt)\n )}\n \n \n View\n \n
\n
\n )}\n
\n
\n
\n )\n }\n
\n
\n\n \n {outlet && React.cloneElement(outlet, { key: location.pathname })}\n \n \n );\n};\n","import React from 'react';\nimport { useNavigate, useSearchParams } from 'react-router-dom';\n\nimport { OysterLogo } from '@oysterjs/uiv2/logo';\nimport { Fieldset, FieldGroup, Field, Label, ErrorMessage } from '@oysterjs/uiv2/fieldset';\nimport { Input } from '@oysterjs/uiv2/input';\nimport { useSignInCompleteMutation, useSignInMutation } from '../api/graphql';\nimport { getValidationErrors } from '@oysterjs/corev2/graphql/errors';\nimport { PrimaryButton } from '@oysterjs/uiv2/button';\nimport { TransitionDiv } from '@oysterjs/uiv2/async';\n\nconst SignInPageContainer = (props: React.PropsWithChildren<{ title: string }>) => {\n return (\n <>\n
\n \n \n
\n
\n\n \n
\n \n

\n {props.title}\n

\n
\n {props.children}\n \n \n );\n};\n\nexport const SignInPage = () => {\n const navigate = useNavigate();\n const [searchParams] = useSearchParams();\n const [email, setEmail] = React.useState('');\n const [signIn, { loading, error }] = useSignInMutation();\n\n if (searchParams.get('email')) {\n return ;\n }\n\n const validationErrors = getValidationErrors(error);\n\n const handleSubmit = async (e: React.FormEvent) => {\n e.preventDefault();\n signIn({ variables: { email } }).then((res) => {\n if (!res.errors?.length) {\n navigate(`/app/signin?email=${encodeURIComponent(email)}`);\n }\n });\n };\n\n return (\n \n
\n
\n
\n \n \n \n setEmail(e.currentTarget.value)}\n invalid={validationErrors?.some((e) => e.field[0] === 'email')}\n />\n {validationErrors?.find((e) => e.field[0] === 'email')?.message && (\n \n {validationErrors?.find((e) => e.field[0] === 'email')?.message}\n \n )}\n \n \n
\n\n \n Sign In\n \n {validationErrors?.length === 0 && !!error?.message && (\n
\n {error.message}\n
\n )}\n
\n\n

\n Don't have an account?{' '}\n \n Get started with Oyster\n \n

\n
\n
\n );\n};\n\nexport const SignInCompletePage = () => {\n const navigate = useNavigate();\n const [searchParams] = useSearchParams();\n const [code, setCode] = React.useState(searchParams.get('code') || '');\n const [signInComplete, { loading, error }] = useSignInCompleteMutation();\n\n const email = searchParams.get('email') || '';\n\n const validationErrors = getValidationErrors(error);\n\n const handleSubmit = async (e: React.FormEvent) => {\n e.preventDefault();\n handleSignIn();\n };\n\n const handleSignIn = async () =>\n await signInComplete({ variables: { email, code } }).then((res) => {\n if (res.data?.agencySignIn?.agencyUser?.id) {\n navigate('/app');\n }\n });\n\n React.useEffect(() => {\n if (code.length === 6) {\n handleSignIn();\n }\n }, [code]);\n\n return (\n \n
\n

\n We've sent a six-digit verification code to{' '}\n {email}. Please enter the code below to\n continue.\n

\n
\n
\n \n \n \n setCode(e.currentTarget.value)}\n value={code}\n invalid={validationErrors?.some((e) => e.field[0] === 'code')}\n />\n {validationErrors?.find((e) => e.field[0] === 'code')?.message && (\n \n {validationErrors?.find((e) => e.field[0] === 'code')?.message}\n \n )}\n \n \n
\n\n Sign In\n {validationErrors?.length === 0 && !!error?.message && (\n
\n {error.message}\n
\n )}\n
\n
\n
\n );\n};\n","import { CubeTransparentIcon } from '@heroicons/react/24/outline';\nimport { PageTitle } from '@oysterjs/uiv2/page';\n\nexport const WorkbenchPage = () => {\n return (\n \n
\n
\n
\n \n
\n
\n

\n Policy Explorer\n

\n

Explore the details of a policy with AI

\n
\n
\n
\n
\n \n
\n
\n

\n Start a Quote\n

\n

Generate a quote from an application

\n
\n
\n
\n
\n \n
\n
\n

\n Send a Quote Proposal\n

\n

Send a quote proposal to a customer

\n
\n
\n
\n
\n \n
\n
\n

\n Generate a COI\n

\n

Generate a Certificate of Insurance

\n
\n
\n
\n
\n );\n};\n","import { ActionFunction, redirect, replace } from 'react-router-dom';\nimport { client } from './client';\nimport {\n CreateAccountDocument,\n CreateAccountMutationVariables,\n CreateBusinessPoliciesDocument,\n CreateBusinessPoliciesMutation,\n CreateBusinessPoliciesMutationVariables,\n UpdateAccountDocument,\n UpdateAccountMutation,\n UpdateAccountMutationVariables,\n UpdateBusinessPolicyMutationVariables,\n UpdateBusinessPolicyMutation,\n UpdateBusinessPolicyDocument,\n UploadPolicyFileDocument,\n UploadPolicyFileMutation,\n UploadPolicyFileMutationVariables,\n FileType,\n DeleteFileMutationVariables,\n DeleteFileMutation,\n DeleteFileDocument,\n AddPolicyExplorerConversationMessageDocument,\n AddPolicyExplorerConversationMessageMutation,\n AddPolicyExplorerConversationMessageMutationVariables,\n CreateAccountMutation,\n CreateCertificateMutationVariables,\n CreateCertificateMutation,\n CreateCertificateDocument,\n ResolveServiceRequestDocument,\n ResolveServiceRequestMutation,\n ResolveServiceRequestMutationVariables,\n UpdateServiceRequestMutation,\n UpdateServiceRequestDocument,\n UpdateServiceRequestMutationVariables,\n AddServiceRequestCommentMutation,\n AddServiceRequestCommentMutationVariables,\n AddServiceRequestCommentDocument\n} from './graphql';\nimport { mutate } from '@oysterjs/corev2/graphql/actions';\n\nexport const createAccount: ActionFunction = async ({ request }) =>\n mutate(\n client,\n { mutation: CreateAccountDocument, variables: { input: await request.json() } },\n async (data) => redirect(`/app/accounts/${data?.createAccount?.id}/overview`)\n );\n\nexport const updateAccount: ActionFunction = async ({ params, request }) =>\n mutate(\n client,\n {\n mutation: UpdateAccountDocument,\n variables: { id: params.id || '', input: await request.json() }\n },\n async (data) => redirect(`/app/accounts/${data?.updateAccount?.id}/overview`)\n );\n\nexport const createBusinessPolicy: ActionFunction = async ({ request }) =>\n mutate(\n client,\n {\n mutation: CreateBusinessPoliciesDocument,\n variables: { input: await request.json() },\n errorPolicy: 'all'\n },\n async (data) => redirect(`/app/policies/${data?.createBusinessPolicies?.[0]?.id}/overview`)\n );\n\nexport const updateBusinessPolicy: ActionFunction = async ({ params, request }) =>\n mutate(\n client,\n {\n mutation: UpdateBusinessPolicyDocument,\n variables: { id: params.id || '', input: await request.json() }\n },\n async (data) => redirect(`/app/policies/${data?.updateBusinessPolicy?.id}/overview`)\n );\n\nexport const uploadPolicyFile: ActionFunction = async ({ params, request }) => {\n const formData = await request.formData();\n return mutate(client, {\n mutation: UploadPolicyFileDocument,\n variables: {\n policyId: params.id || '',\n file: {\n notes: formData.get('notes') as string,\n type: formData.get('type') as FileType,\n visible: formData.get('visible') === 'true',\n file: formData.get('file') as File\n }\n }\n });\n};\n\nexport const deleteFile: ActionFunction = async ({ request }) =>\n mutate(client, {\n mutation: DeleteFileDocument,\n variables: { fileId: (await request.json()).fileId }\n });\n\nexport const addPolicyExplorerConversationMessage: ActionFunction = async ({ params, request }) =>\n mutate<\n AddPolicyExplorerConversationMessageMutation,\n AddPolicyExplorerConversationMessageMutationVariables\n >(client, {\n mutation: AddPolicyExplorerConversationMessageDocument,\n variables: { policyId: params.id || '', message: (await request.json()).message }\n });\n\nexport const createCertificateOfLiabilityInsurance: ActionFunction = async ({ params, request }) =>\n mutate(\n client,\n {\n mutation: CreateCertificateDocument,\n variables: { input: await request.json() }\n },\n async (data) =>\n replace(`/app/accounts/${params.id}/certificates/${data?.createCertificate?.id}`)\n );\n\nexport const resolveServiceRequest: ActionFunction = async ({ params, request }) => {\n const formData = await request.formData();\n return mutate(client, {\n mutation: ResolveServiceRequestDocument,\n variables: {\n id: params.id || '',\n input: {\n notes: formData.get('notes') as string,\n files: formData.getAll('files') as File[]\n }\n }\n });\n};\n\nexport const updateServiceRequest: ActionFunction = async ({ params, request }) => {\n return mutate(client, {\n mutation: UpdateServiceRequestDocument,\n variables: { id: params.id || '', input: await request.json() }\n });\n};\n\nexport const addServiceRequestComment: ActionFunction = async ({ params, request }) => {\n return mutate(\n client,\n {\n mutation: AddServiceRequestCommentDocument,\n variables: { id: params.id || '', input: await request.json() }\n }\n );\n};\n","import { LoaderFunctionArgs } from 'react-router-dom';\nimport {\n GetAgencyUserDocument,\n GetAgencyUserQuery,\n GetAgencyUserQueryVariables,\n GetBusinessPoliciesQueryVariables,\n GetBusinessPoliciesDocument,\n GetBusinessPoliciesQuery,\n GetAccountDocument,\n GetAccountQuery,\n GetAccountQueryVariables,\n GetAccountsDocument,\n GetAccountsQuery,\n GetAccountsQueryVariables,\n GetBusinessPolicyQueryVariables,\n GetBusinessPolicyQuery,\n GetBusinessPolicyDocument,\n GetInsuranceCarriersQuery,\n GetInsuranceCarriersDocument,\n GetInsuranceCarriersQueryVariables,\n GetAgencyUsersQuery,\n GetAgencyUsersQueryVariables,\n GetAgencyUsersDocument,\n GetPolicyExplorerConversationQuery,\n GetPolicyExplorerConversationQueryVariables,\n GetPolicyExplorerConversationDocument,\n GetCertificateQueryVariables,\n GetCertificateQuery,\n GetCertificateDocument,\n AgencyUserFieldsFragment,\n AccountFieldsFragment,\n InsuranceCarrierFieldsFragment,\n BusinessPolicyFieldsFragment,\n PolicyExplorerConversationMessageFieldsFragment,\n CertificateOfLiabilityInsuranceFieldsFragment,\n ServiceRequestFieldsFragment,\n GetServiceRequestsQueryVariables,\n GetServiceRequestsDocument,\n GetServiceRequestsQuery,\n GetServiceRequestDocument,\n GetServiceRequestQuery,\n GetServiceRequestQueryVariables,\n GetCallsQueryVariables,\n GetCallsQuery,\n GetCallsDocument,\n GetCallDocument,\n GetCallQuery,\n GetCallQueryVariables,\n CallFieldsFragment,\n CallTranscriptFieldsFragment,\n GetEmailThreadsQuery,\n GetEmailThreadsQueryVariables,\n GetEmailThreadsDocument,\n EmailThreadFieldsFragment,\n GetEmailThreadQuery,\n GetEmailThreadQueryVariables,\n GetEmailThreadDocument,\n GetCaraWorkspacesQuery,\n GetCaraWorkspacesQueryVariables,\n GetCaraWorkspacesDocument,\n CaraWorkspaceOverviewFieldsFragment,\n GetCaraWorkspaceDocument,\n CaraWorkspaceFieldsFragment,\n GetCaraWorkspaceQueryVariables,\n GetCaraWorkspaceQuery\n} from './graphql';\nimport { client } from './client';\nimport { query } from '@oysterjs/corev2/graphql/loaders';\nimport * as apm from '@oysterjs/corev2/apm';\n\nexport const getAgencyUser = async () =>\n query(\n client,\n { query: GetAgencyUserDocument },\n async (data) => {\n if (data.agencyUser) {\n await apm.setUser({\n id: data.agencyUser.id,\n email: data.agencyUser.email,\n name: data.agencyUser.name,\n agencyId: data.agencyUser.agency.id,\n agencyName: data.agencyUser.agency.name\n });\n }\n\n return data.agencyUser;\n },\n '/app/signin'\n );\n\nexport const getAgencyUsers = async () =>\n query(\n client,\n { query: GetAgencyUsersDocument, fetchPolicy: 'cache-first' },\n (data) => data.agencyUsers,\n '/app/signin'\n );\n\nexport const getAccounts = async () =>\n query(\n client,\n { query: GetAccountsDocument },\n (data) => data.accounts,\n '/app/accounts'\n );\n\nexport const getAccount = async ({ params }: LoaderFunctionArgs) =>\n query(\n client,\n { query: GetAccountDocument, variables: { id: params.id || '' } },\n (data) => data.account,\n '/app/accounts'\n );\n\nexport const getInsuranceCarriers = async () =>\n query<\n GetInsuranceCarriersQuery,\n GetInsuranceCarriersQueryVariables,\n InsuranceCarrierFieldsFragment[]\n >(\n client,\n { query: GetInsuranceCarriersDocument, fetchPolicy: 'cache-first' },\n (data) => data.carriers,\n '/app/signin'\n );\n\nexport const getBusinessPolicies = async () =>\n query<\n GetBusinessPoliciesQuery,\n GetBusinessPoliciesQueryVariables,\n BusinessPolicyFieldsFragment[]\n >(client, { query: GetBusinessPoliciesDocument }, (data) => data.businessPolicies, '/policies');\n\nexport const getBusinessPolicy = async ({ params }: LoaderFunctionArgs) =>\n query(\n client,\n { query: GetBusinessPolicyDocument, variables: { id: params.id || '' } },\n (data) => data.businessPolicy,\n '/app/policies'\n );\n\nexport const getPolicyExplorerConversation = async ({ params }: LoaderFunctionArgs) =>\n query<\n GetPolicyExplorerConversationQuery,\n GetPolicyExplorerConversationQueryVariables,\n PolicyExplorerConversationMessageFieldsFragment[]\n >(\n client,\n {\n query: GetPolicyExplorerConversationDocument,\n variables: { policyId: params.id || '' }\n },\n (data) => data.policyExplorerConversation\n );\n\nexport const getCertificate = async ({ params }: LoaderFunctionArgs) =>\n query<\n GetCertificateQuery,\n GetCertificateQueryVariables,\n CertificateOfLiabilityInsuranceFieldsFragment\n >(\n client,\n {\n query: GetCertificateDocument,\n variables: { id: params.certificateId || '' }\n },\n (data) => data.certificate\n );\n\nexport const getServiceRequests = async () =>\n query(\n client,\n { query: GetServiceRequestsDocument },\n (data) => data?.serviceRequests || []\n );\n\nexport const getServiceRequest = async ({ params }: LoaderFunctionArgs) =>\n query(\n client,\n { query: GetServiceRequestDocument, variables: { id: params.id || '' } },\n (data) => data.serviceRequest,\n '/app/servicing'\n );\n\nexport const getCalls = async () =>\n query(\n client,\n { query: GetCallsDocument },\n (data) => data.calls\n );\n\nexport const getCall = async ({ params }: LoaderFunctionArgs) =>\n query(\n client,\n { query: GetCallDocument, variables: { id: params.id || '' } },\n (data) => data.call\n );\n\nexport const getEmailThreads = async () =>\n query(\n client,\n { query: GetEmailThreadsDocument },\n (data) => data.emailThreads\n );\n\nexport const getEmailThread = async ({ params }: LoaderFunctionArgs) =>\n query(\n client,\n { query: GetEmailThreadDocument, variables: { id: params.id || '' } },\n (data) => data.emailThread\n );\n\nexport const getCaraWorkspaces = async () =>\n query<\n GetCaraWorkspacesQuery,\n GetCaraWorkspacesQueryVariables,\n CaraWorkspaceOverviewFieldsFragment[]\n >(client, { query: GetCaraWorkspacesDocument }, (data) => data?.caraWorkspaces || []);\n\nexport const getCaraWorkspace = async ({ params }: LoaderFunctionArgs) =>\n query(\n client,\n { query: GetCaraWorkspaceDocument, variables: { id: params.id || '' } },\n (data) => data.caraWorkspace\n );\n","import * as React from 'react';\nimport * as Headless from '@headlessui/react';\nimport { useRouteError } from 'react-router-dom';\n\nimport { CheckIcon, ClipboardIcon } from '@heroicons/react/24/outline';\nimport { TransitionDiv } from './async';\n\nconst ErrorDetails = (props: { error: Error | { data: string; error?: Error } }) => {\n const [copied, setCopied] = React.useState(false);\n\n const errorMessage = 'data' in props.error ? props.error.data : props.error.message;\n const errorStack =\n props.error instanceof Error\n ? props.error.stack\n : 'data' in props.error\n ? props.error.error?.stack\n : '';\n\n React.useEffect(() => {\n if (!copied) {\n return;\n }\n\n navigator.clipboard.writeText((errorMessage + '\\n\\n' + errorStack).trim());\n setTimeout(() => setCopied(false), 3000);\n }, [copied]);\n\n return (\n
\n setCopied(true)}\n >\n {copied ? : }\n \n
\n
\n
Error
\n
{errorMessage}
\n
\n {!!errorStack && (\n
\n
Stack Trace
\n
{errorStack}
\n
\n )}\n
\n
\n );\n};\n\nexport const ErrorBoundary = () => {\n const error = useRouteError() as { data: string; error: Error };\n\n return (\n \n

Application error

\n

Something went wrong

\n

\n There was an error while trying to perform your requested action. If the issue persists,\n please contact our team via the chat widget or via email at{' '}\n support@withoyster.com and include this error\n for reference.\n

\n\n
\n
\n \n
\n
\n
\n );\n};\n","import React, { useState } from 'react';\nimport clsx from 'clsx';\nimport { Dialog, DialogBackdrop, DialogPanel } from '@headlessui/react';\nimport { motion } from 'motion/react';\n\nimport {\n Bars3Icon,\n XMarkIcon,\n InboxArrowDownIcon,\n DocumentCheckIcon,\n PencilSquareIcon,\n ChartBarIcon,\n BriefcaseIcon,\n InboxStackIcon,\n ChatBubbleBottomCenterTextIcon,\n LockClosedIcon,\n MagnifyingGlassIcon,\n ComputerDesktopIcon,\n PhoneIcon,\n EnvelopeIcon\n} from '@heroicons/react/24/outline';\nimport { OysterLogo } from '@oysterjs/uiv2/logo';\nimport { PrimaryButton } from '@oysterjs/uiv2/button';\nimport { getAisBaseUrl, getEnvironment } from '@oysterjs/corev2/config';\n\nconst demoLink = 'https://share.hsforms.com/1_2mhmmLZREOe4wb1Mf0rWQdbrer';\n\nconst navigation = [\n { name: 'Product', href: '#product' },\n { name: 'Use Cases', href: '#features' },\n { name: 'Integrations', href: '#integrations' },\n { name: 'Book a Demo', href: demoLink, target: '_blank' }\n];\n\nconst Header = () => {\n const [mobileMenuOpen, setMobileMenuOpen] = useState(false);\n const loginLink = getAisBaseUrl() + '/app';\n\n return (\n
\n \n \n \n \n
\n \n Oyster Technologies, Inc.\n \n \n setMobileMenuOpen(false)}\n className=\"-m-2.5 rounded-md p-2.5 text-neutral-600\"\n >\n Close menu\n \n \n
\n
\n
\n
\n {navigation.map((item) => (\n setMobileMenuOpen(false)}\n className=\"-mx-3 block rounded-lg px-3 py-2 text-base/7 font-semibold text-neutral-900 hover:bg-neutral-50\"\n >\n {item.name}\n \n ))}\n
\n
\n \n Log in\n \n
\n
\n
\n \n
\n
\n );\n};\n\nconst HeroBlurPoly1 = () => {\n return (\n \n \n
\n );\n};\n\nconst HeroBlurPoly2 = () => {\n return (\n \n \n
\n );\n};\n\nconst HeroSection = () => {\n return (\n
\n \n \n
\n

\n Professional AI for Insurance Servicing\n

\n

\n Cara grows your insurance agency, brokerage, or MGA with domain-specific AI that\n automates servicing and assists with sales.\n

\n
\n \n Book a Demo\n \n
\n
\n
\n
\n
\n \n
\n
\n
\n \n \n
\n );\n};\n\nconst PageSection = (props: React.PropsWithChildren<{ id?: string; className?: string }>) => (\n
\n \n
{props.children}
\n \n
\n);\n\nconst SectionTitle = (\n props: React.PropsWithChildren<{ title: string; subtitle: string; content?: string }>\n) => (\n
\n

{props.subtitle}

\n

\n {props.title}\n

\n {props.content &&

{props.content}

}\n
\n);\n\nconst PartnersSection = () => {\n const partners = [\n { src: '/images/PIA-National-Logo.png', alt: 'PIA National' },\n { src: '/images/IAOA.png', alt: 'IAOA' },\n { src: '/images/catalyit.png', alt: 'Catalyit' },\n { src: '/images/Big-I-Alliance.jpg', alt: 'Big I Alliance' },\n { src: '/images/FAIA.jpg', alt: 'Florida Association of Insurance Agents' },\n { src: '/images/insurtech-association.png', alt: 'InsurTech Association' }\n // { src: '/images/iiah.png', alt: 'IIAH' },p\n ];\n\n return (\n \n
\n
\n

In partnership with

\n
\n
\n
\n
\n {partners.map((partner) => (\n \n ))}\n
\n
\n
\n );\n};\n\nconst ModulesSection = () => {\n const stats = [\n { id: 1, name: 'Servicing workflows automated*', value: '70%' },\n { id: 2, name: 'Types of tasks Cara can handle', value: '30+' },\n { id: 3, name: \"Cara's availability for your clients\", value: '24/7' }\n ];\n\n const features = {\n copilot: [\n {\n name: 'Compare quotes and contracts.',\n description:\n 'Analyze quotes and vendor contracts to summarize key points and identify coverage gaps.',\n icon: PencilSquareIcon\n },\n {\n name: 'Analyze policy documents.',\n description:\n 'Drag and drop policy documents to search and summarize coverage details for your customers.',\n icon: InboxArrowDownIcon\n },\n {\n name: 'Quote and bind automation.',\n description: 'Automate application intake, form generation, and bind submissions.',\n icon: BriefcaseIcon\n }\n ],\n servicing: [\n {\n name: 'Unified ticket management.',\n description: 'Manage all customer requests in a single place.',\n icon: InboxStackIcon\n },\n {\n name: 'Automate customer inquiries.',\n description:\n 'AI summarizes emails and phone calls, generates action items, and draft responses for your approval.',\n icon: ChatBubbleBottomCenterTextIcon\n },\n {\n name: 'COI generation.',\n description: 'Let Cara generate certificates of insurance for you to review and send.',\n icon: DocumentCheckIcon\n }\n ],\n knowledge: [\n {\n name: 'Find answers fast.',\n description: 'Query and search policy documents and contracts with generative AI.',\n icon: MagnifyingGlassIcon\n },\n {\n name: 'Extract insights across data.',\n description: 'Combine multiple documents and sources to get holistic insights.',\n icon: ChartBarIcon\n },\n {\n name: 'Private, encrypted, and secure.',\n description: 'Your data is private to you and your customers.',\n icon: LockClosedIcon\n }\n ],\n communication: [\n {\n name: 'Voice AI.',\n description:\n 'Cara can answer inbound calls, collect customer info, triage requests, handle claim FNOL, and service common needs.',\n icon: PhoneIcon\n },\n {\n name: 'Email AI.',\n description: 'Cara can handle email inquiries and assist agents with servicing tasks.',\n icon: EnvelopeIcon\n },\n {\n name: 'White-labeled policyholder portal.',\n description: 'Clients can access policy information and generate certificates digitally.',\n icon: ComputerDesktopIcon\n }\n ]\n };\n\n return (\n \n \n
\n
\n
\n
\n
\n

\n A personal assistant for every agent\n

\n

Copilot

\n

\n Delegate complex tasks to AI assistants to automate workflows and drive sales.\n

\n
\n
\n {features.copilot.map((feature) => (\n
\n
\n \n {feature.name}\n
{' '}\n
{feature.description}
\n
\n ))}\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n

\n Unified service and ticketing system\n

\n

Service

\n

\n Collaborate and automatically resolve customer requests in an AI-first workspace.\n

\n
\n
\n {features.servicing.map((feature) => (\n
\n
\n \n {feature.name}\n
{' '}\n
{feature.description}
\n
\n ))}\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n

\n Support your clients anywhere, 24/7\n

\n

\n Communication\n

\n

\n 24/7 self-serve customer support across web, email, and phone calls.\n

\n
\n
\n {features.communication.map((feature) => (\n
\n
\n \n {feature.name}\n
{' '}\n
{feature.description}
\n
\n ))}\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n

\n Leverage data for smarter servicing\n

\n

\n Knowledge\n

\n

\n Upload, manage, and analyze policies and documents using generative AI.\n

\n
\n
\n {features.knowledge.map((feature) => (\n
\n
\n \n {feature.name}\n
{' '}\n
{feature.description}
\n
\n ))}\n
\n
\n
\n
\n
\n
\n
\n

\n Cara returns 10+ hours per week to each agent and service rep, and drives higher customer\n satisfaction.\n

\n
\n {stats.map((stat) => (\n
\n
{stat.name}
\n
\n {stat.value}\n
\n
\n ))}\n
\n \n );\n};\n\nconst UseCasesSection = () => {\n const [selectedUseCaseId, setSelectedUseCaseId] = useState('A');\n const useCases = {\n A: {\n title: 'Email assistant',\n description:\n 'Forward emails or include Cara in email threads to triage service requests, draft customer responses, and automate tasks with your final approval.',\n image: '/images/email_assistant.png',\n alt: 'Email assistant'\n },\n B: {\n title: 'Research and compare',\n description:\n 'Drag and drop quotes, contracts, and policy documents to compare coverage, extract key insights, and draft customer responses and quote presentations.',\n image: '/images/compare_coverage.png',\n alt: 'Research and compare'\n },\n C: {\n title: 'COI generation',\n description:\n 'Create, manage, and share certificates of insurance in seconds. Cara can read policy documents and surface relevant endorsements and terms of coverage to help ensure certificates are correct.',\n image: '/images/coi_generation.png',\n alt: 'COI generation'\n },\n D: {\n title: 'Triage inbound calls',\n description:\n 'Cara can handle inbound phone calls, triage leads and customers across agency or individual phone lines, and track outstanding service requests for your team.',\n image: '/images/triage_inbound_calls.png',\n alt: 'Triage inbound calls'\n },\n E: {\n title: 'Explore policy documents',\n description:\n 'Upload policy documents and explore policy coverage, exclusions and terms to provide fast and efficient customer service.',\n image: '/images/explore_policy.png',\n alt: 'Explore policy documents'\n },\n F: {\n title: 'Document collection',\n description:\n 'Collect and process applications, carrier supplementary forms, and bind orders via email and the white-labeled client portal.',\n image: '/images/document_collection.png',\n alt: 'Document collection'\n }\n };\n\n const selectedUseCase = useCases[selectedUseCaseId];\n\n return (\n \n \n
\n
\n {Object.entries(useCases).map(([key, useCase]) => (\n setSelectedUseCaseId(key)}\n >\n {useCase.title}\n \n ))}\n
\n
\n
\n

\n {selectedUseCase.title}\n

\n

{selectedUseCase.description}

\n
\n
\n
\n \n
\n
\n
\n
\n
\n );\n};\nconst IntegrationsSection = () => {\n const integrations = [\n // Productivity tool integrations\n { src: '/images/gmail.png', alt: 'Google Workspace and Gmail' },\n { src: '/images/gcal.png', alt: 'Google Workspace and Calendar' },\n { src: '/images/outlook.png', alt: 'Microsoft Outlook' },\n // { src: '/images/aircall.png', alt: 'Native phone call forwarding' },\n // Agency management software integrations\n // { src: '/images/vertafore.png', alt: 'Vertafore AMS360' },\n // { src: '/images/hawksoft.png', alt: 'Hawksoft' },\n // { src: '/images/ezlynx.png', alt: 'EZLynx' },\n // Billing and financing integrations\n // { src: '/images/ascend.jpg', alt: 'Ascend' },\n // { src: '/images/quickbooks.svg', alt: 'Quickbooks' },\n // Document generation and signature integrations/\n // { src: '/images/dropboxsign.png', alt: 'Dropbox Sign' },\n // CRMs\n { src: '/images/salesforce.png', alt: 'Salesforce' },\n { src: '/images/hubspot.png', alt: 'HubSpot' }\n ];\n\n return (\n \n \n
\n
\n {integrations.map((integration) => (\n \n ))}\n
\n
\n
\n
\n
\n
\n \n And many more integrations\n \n
\n
\n
\n \n );\n};\n\nconst CallToActionSection = () => {\n return (\n \n
\n

\n See Cara in action\n

\n

\n Get started in minutes and see how Cara can reimagine servicing for your agency.\n

\n
\n \n Book a Demo\n \n
\n \n \n \n \n \n \n \n \n \n
\n
\n );\n};\n\nconst Footer = () => {\n const socialLinks = [\n // {\n // name: 'Facebook',\n // href: '#',\n // icon: (props) => (\n // \n // \n // \n // )\n // },\n // {\n // name: 'Instagram',\n // href: '#',\n // icon: (props) => (\n // \n // \n // \n // )\n // },\n {\n name: 'LinkedIn',\n href: 'https://www.linkedin.com/company/withoyster',\n icon: (props) => (\n \n \n \n )\n },\n {\n name: 'X',\n href: 'https://x.com/oyster_hq',\n icon: (props) => (\n \n \n \n )\n }\n ];\n\n return (\n
\n
\n
\n {socialLinks.map((item) => (\n \n {item.name}\n \n \n ))}\n
\n

\n © 2025 Oyster Technologies, Inc. All rights reserved.\n

\n
\n
\n );\n};\n\nexport default function Example() {\n return (\n <>\n
\n \n \n \n \n {/* */}\n {/* */}\n \n \n