Options
All
  • Public
  • Public/Protected
  • All
Menu

Module types/generated

Index

Type Aliases

Enumerations

Variables

Type Aliases

Maybe<T>: T | null

Type Parameters

  • T

InputMaybe<T>: Maybe<T>

Type Parameters

  • T

Exact<T>: { [ K in keyof T]: T[K] }

Type Parameters

  • T extends {}

MakeOptional<T, K>: Omit<T, K> & { [ SubKey in K]?: Maybe<T[SubKey]> }

Type Parameters

  • T

  • K extends keyof T

MakeMaybe<T, K>: Omit<T, K> & { [ SubKey in K]: Maybe<T[SubKey]> }

Type Parameters

  • T

  • K extends keyof T

Omit<T, K>: Pick<T, Exclude<keyof T, K>>

Type Parameters

  • T

  • K extends keyof T

Scalars: { ID: string; String: string; Boolean: boolean; Int: number; Float: number; Date: unknown; DateTime: string; GenericObjectScalar: unknown; GenericScalar: unknown; JSON: unknown; Time: string }

All built-in and custom scalars, mapped to their actual values

Type declaration

  • ID: string
  • String: string
  • Boolean: boolean
  • Int: number
  • Float: number
  • Date: unknown

    Date (isoformat)

  • DateTime: string

    Date with time (isoformat)

  • GenericObjectScalar: unknown

    A generic dictionary/object with string keys

  • GenericScalar: unknown

    The GenericScalar scalar type represents a generic GraphQL scalar value that could be String, Boolean, Int, Float, List or Object.

  • JSON: unknown

    The JSON scalar type represents JSON values as specified by ECMA-404.

  • Time: string

    Time (isoformat)

AblyData: { __typename?: "AblyData"; capability: Scalars["String"]; clientId: Scalars["String"]; keyName: Scalars["String"]; mac: Scalars["String"]; nonce: Scalars["String"]; timestamp: Scalars["Float"]; ttl: Scalars["Int"] }

Type declaration

AblyResponse: MutationResponse & { __typename?: "AblyResponse"; data?: Maybe<AblyData>; errors: ChatMutationError[]; success: Scalars["Boolean"] }
ApplicationConfiguration: { __typename?: "ApplicationConfiguration"; id: Scalars["ID"]; pusherAppCluster?: Maybe<Scalars["String"]>; pusherAppKey?: Maybe<Scalars["String"]> }

Type declaration

  • Optional __typename?: "ApplicationConfiguration"
  • id: Scalars["ID"]
  • Optional pusherAppCluster?: Maybe<Scalars["String"]>
  • Optional pusherAppKey?: Maybe<Scalars["String"]>
AssetClass: { __typename?: "AssetClass"; description: Scalars["String"]; id: Scalars["ID"]; name: Scalars["String"]; parent?: Maybe<AssetClass> }

Type declaration

Attachment: { __typename?: "Attachment"; archivedUrl: Scalars["String"]; mimeType: Scalars["String"]; title: Scalars["String"]; url: Scalars["String"] }

Type declaration

ChatMessageBase: { createdAt: Scalars["DateTime"]; id: Scalars["ID"]; messageType: ChatMessageType; ordinalId?: Maybe<Scalars["String"]>; promptMessageId?: Maybe<Scalars["ID"]>; runnerVersion?: Maybe<Scalars["String"]>; sessionId: Scalars["ID"]; sources?: Maybe<ChatSource[]>; updatedAt: Scalars["DateTime"]; userId: Scalars["ID"] }

Type declaration

ChatMessagePrompt: ChatMessageBase & { __typename?: "ChatMessagePrompt"; content: Scalars["String"]; createdAt: Scalars["DateTime"]; id: Scalars["ID"]; messageType: ChatMessageType; ordinalId?: Maybe<Scalars["String"]>; promptMessageId?: Maybe<Scalars["ID"]>; runnerVersion?: Maybe<Scalars["String"]>; sessionId: Scalars["ID"]; sources?: Maybe<ChatSource[]>; updatedAt: Scalars["DateTime"]; userId: Scalars["ID"] }
ChatMessagePromptResponse: MutationResponse & { __typename?: "ChatMessagePromptResponse"; chatMessage?: Maybe<ChatMessagePrompt>; errors: ChatMutationError[]; success: Scalars["Boolean"] }
ChatMessageResponse: ChatMessageBase & { __typename?: "ChatMessageResponse"; blocks: TextBlock[]; createdAt: Scalars["DateTime"]; id: Scalars["ID"]; messageType: ChatMessageType; ordinalId?: Maybe<Scalars["String"]>; promptMessageId?: Maybe<Scalars["ID"]>; runnerVersion?: Maybe<Scalars["String"]>; sessionId: Scalars["ID"]; sources?: Maybe<ChatSource[]>; updatedAt: Scalars["DateTime"]; userId: Scalars["ID"] }
ChatMessageSourceConfirmation: ChatMessageBase & { __typename?: "ChatMessageSourceConfirmation"; createdAt: Scalars["DateTime"]; id: Scalars["ID"]; messageType: ChatMessageType; ordinalId?: Maybe<Scalars["String"]>; promptMessageId?: Maybe<Scalars["ID"]>; runnerVersion?: Maybe<Scalars["String"]>; sessionId: Scalars["ID"]; sources?: Maybe<ChatSource[]>; updatedAt: Scalars["DateTime"]; userId: Scalars["ID"] }
ChatMessageSourceConfirmationResponse: MutationResponse & { __typename?: "ChatMessageSourceConfirmationResponse"; chatMessage?: Maybe<ChatMessageSourceConfirmation>; errors: ChatMutationError[]; success: Scalars["Boolean"] }
ChatMessageSuggestion: { __typename?: "ChatMessageSuggestion"; content: Scalars["String"]; createdAt: Scalars["DateTime"]; id: Scalars["ID"]; retrievalRequestId?: Maybe<Scalars["ID"]>; runnerVersion: Scalars["String"]; updatedAt: Scalars["DateTime"] }

Type declaration

ChatMutationError: Error & { __typename?: "ChatMutationError"; code: Scalars["String"] }
ChatSession: { __typename?: "ChatSession"; activeMessageId?: Maybe<Scalars["ID"]>; createdAt: Scalars["DateTime"]; id: Scalars["ID"]; modelGenerationParams?: Maybe<Scalars["JSON"]>; modelId?: Maybe<Scalars["ID"]>; promptMessages?: Maybe<ChatMessagePrompt[]>; responseMessages?: Maybe<ChatMessageResponse[]>; sourceConfirmationMessages?: Maybe<ChatMessageSourceConfirmation[]>; sources?: Maybe<ChatSource[]>; status: ChatSessionStatus; title?: Maybe<Scalars["String"]>; titleStatus?: Maybe<ChatSessionTitleStatus>; updatedAt: Scalars["DateTime"]; userId: Scalars["ID"] }

Type declaration

ChatSessionFilter: { includeMessages?: Scalars["Boolean"]; sessionId: Scalars["ID"]; sessionUserId?: InputMaybe<Scalars["ID"]> }

Type declaration

ChatSessionResponse: MutationResponse & { __typename?: "ChatSessionResponse"; chatSession?: Maybe<ChatSession>; errors: ChatMutationError[]; success: Scalars["Boolean"] }
ChatSessionsFilter: { sessionUserId?: InputMaybe<Scalars["ID"]> }

Type declaration

ChatSource: { __typename?: "ChatSource"; confirmed?: Maybe<Scalars["Boolean"]>; name: Scalars["String"]; parent?: Maybe<ChatSource>; sourceId: Scalars["ID"]; type: ChatSourceType }

Type declaration

ChatSourceInput: { confirmed?: InputMaybe<Scalars["Boolean"]>; sourceId: Scalars["ID"]; sourceName: Scalars["String"]; sourceType: ChatSourceType }

Type declaration

Citation: { __typename?: "Citation"; author?: Maybe<Scalars["String"]>; date?: Maybe<Scalars["Date"]>; marker: Scalars["String"]; meta?: Maybe<Scalars["JSON"]>; quote: Scalars["String"]; source: ChatSource; url?: Maybe<Scalars["String"]> }

Type declaration

ClearSourcesInput: { sessionId: Scalars["ID"]; sessionUserId?: InputMaybe<Scalars["ID"]> }

Type declaration

Company: { __typename?: "Company"; cik?: Maybe<Scalars["String"]>; commonName: Scalars["String"]; description?: Maybe<Scalars["String"]>; domiciledCountry: Country; gicsSubIndustry?: Maybe<GicsSubIndustry>; id: Scalars["ID"]; incorporatedCountry: Country; instruments: Instrument[]; legalName: Scalars["String"]; lei?: Maybe<Scalars["String"]>; ownership: CompanyOwnership; spacStatus: SpacStatus; spacTarget?: Maybe<Scalars["String"]>; urls: CompanyUrl[] }

Type declaration

CompanyFilter: { companyIds?: InputMaybe<Scalars["ID"][]>; identifierResolution?: InputMaybe<IdentifierResolutionInput>; resolution?: InputMaybe<ResolutionInput>; searchTerm?: InputMaybe<Scalars["String"]> }

Type declaration

CompanySearchFilter: { companyIds?: InputMaybe<Scalars["ID"][]>; searchTerm?: InputMaybe<Scalars["String"]>; watchlistId?: InputMaybe<Scalars["ID"]> }

Type declaration

CompanySearchResult: SearchResult & { __typename?: "CompanySearchResult"; hits: CompanySearchResultHit[]; id: Scalars["ID"]; numTotalHits: Scalars["Int"] }
CompanySearchResultHit: SearchResultHit & { __typename?: "CompanySearchResultHit"; company: Company; id: Scalars["ID"] }
CompanyUrl: { __typename?: "CompanyURL"; company: Company; id: Scalars["ID"]; url: Scalars["String"]; urlType: CompanyUrlType }

Type declaration

Conference: EventGroup & { __typename?: "Conference"; end?: Maybe<Scalars["DateTime"]>; events: Event[]; firstEvent?: Maybe<Event>; id: Scalars["ID"]; lastEvent?: Maybe<Event>; numEvents: Scalars["Int"]; start?: Maybe<Scalars["DateTime"]>; title: Scalars["String"]; year: Scalars["Int"] }
ConfirmSourceConfirmationInput: { promptMessageId: Scalars["ID"]; sessionId: Scalars["ID"]; sessionUserId?: InputMaybe<Scalars["ID"]>; sources: ConfirmationChatSourceInput[] }

Type declaration

ConfirmationChatSourceInput: { confirmed: Scalars["Boolean"]; sourceId: Scalars["ID"]; sourceName: Scalars["String"]; sourceType: ChatSourceType }

Type declaration

Container: { __typename?: "Container"; containers: StatsdContainer[]; pagination?: Maybe<StatsdContainerPagination> }

Type declaration

Content: { body: Scalars["String"]; companies: Company[]; contentType: ContentType; displayType: Scalars["String"]; events: Event[]; id: Scalars["ID"]; organization?: Maybe<Organization>; primaryCompany?: Maybe<Company>; publishedDate: Scalars["DateTime"]; source: ContentSource; title: Scalars["String"] }

Type declaration

ContentFilter: { contentIds: Scalars["ID"][] }

Type declaration

ContentSearchFilter: { companyIds?: InputMaybe<Scalars["ID"][]>; contentIds?: InputMaybe<Scalars["ID"][]>; contentTypes?: InputMaybe<ContentType[]>; searchTerm?: InputMaybe<Scalars["String"]>; watchlistId?: InputMaybe<Scalars["ID"]> }

Type declaration

ContentSearchResult: SearchResult & { __typename?: "ContentSearchResult"; hits: ContentSearchResultHit[]; id: Scalars["ID"]; numTotalHits: Scalars["Int"] }
ContentSearchResultHit: SearchResultHit & { __typename?: "ContentSearchResultHit"; content: Content; id: Scalars["ID"] }
Country: { __typename?: "Country"; countryCode: Scalars["String"]; countryCode3: Scalars["String"]; id: Scalars["ID"]; legalName: Scalars["String"]; shortName: Scalars["String"] }

Type declaration

CreateAblyTokenInput: { sessionUserId?: InputMaybe<Scalars["ID"]> }

Type declaration

CreateChatMessagePromptInput: { content: Scalars["String"]; sessionId: Scalars["ID"]; sessionUserId?: InputMaybe<Scalars["ID"]> }

Type declaration

CreateChatSessionInput: { prompt?: InputMaybe<Scalars["String"]>; sessionUserId?: InputMaybe<Scalars["ID"]>; sources?: InputMaybe<ChatSourceInput[]>; title?: InputMaybe<Scalars["String"]> }

Type declaration

CreatePrivateRecordingInput: { companyIds?: InputMaybe<Scalars["Int"][]>; connectAccessId?: InputMaybe<Scalars["String"]>; connectCallerId?: InputMaybe<Scalars["String"]>; connectOffsetSeconds?: InputMaybe<Scalars["Int"]>; connectPhoneNumber?: InputMaybe<Scalars["String"]>; connectPin?: InputMaybe<Scalars["String"]>; connectUrl?: InputMaybe<Scalars["String"]>; connectionType: PrConnectionType; onCompleteEmailCreator?: InputMaybe<Scalars["Boolean"]>; onConnectDialNumber?: InputMaybe<Scalars["String"]>; onFailure?: InputMaybe<PrOnFailure>; onFailureDialNumber?: InputMaybe<Scalars["String"]>; onFailureInstructions?: InputMaybe<Scalars["String"]>; onFailureSmsNumber?: InputMaybe<Scalars["String"]>; scheduledFor: Scalars["DateTime"]; smsAlertBeforeCall?: InputMaybe<Scalars["Boolean"]>; title: Scalars["String"] }

Type declaration

CreateTranscrippetInput: { companyId?: InputMaybe<Scalars["ID"]>; equityId?: InputMaybe<Scalars["ID"]>; eventId: Scalars["ID"]; transcript: Scalars["String"]; transcriptEndItemId?: InputMaybe<Scalars["ID"]>; transcriptEndItemOffset?: InputMaybe<Scalars["Int"]>; transcriptItemId: Scalars["ID"]; transcriptItemOffset?: InputMaybe<Scalars["Int"]> }

Type declaration

Currency: { __typename?: "Currency"; currencyCode: Scalars["String"]; exponent?: Maybe<Scalars["Int"]>; id: Scalars["ID"]; minorSymbol?: Maybe<Scalars["String"]>; minorSymbolPrefix: Scalars["Boolean"]; minorUnitName?: Maybe<Scalars["String"]>; minorUnitNamePlural?: Maybe<Scalars["String"]>; name: Scalars["String"]; symbol?: Maybe<Scalars["String"]>; symbolPrefix: Scalars["Boolean"]; unitName: Scalars["String"]; unitNamePlural?: Maybe<Scalars["String"]> }

Type declaration

DeleteChatSessionInput: { sessionId: Scalars["ID"]; sessionUserId?: InputMaybe<Scalars["ID"]> }

Type declaration

DeleteChatSessionResponse: MutationResponse & { __typename?: "DeleteChatSessionResponse"; errors: ChatMutationError[]; success: Scalars["Boolean"] }
DeletePrivateRecordingResponse: MutationResponse & { __typename?: "DeletePrivateRecordingResponse"; errors: Error[]; success: Scalars["Boolean"] }
DeleteTranscrippetResponse: MutationResponse & { __typename?: "DeleteTranscrippetResponse"; errors: Error[]; success: Scalars["Boolean"] }
Error: { code: Scalars["String"] }

Type declaration

Event: { __typename?: "Event"; archivedSlidesUrl?: Maybe<Scalars["String"]>; attachments: Maybe<Attachment>[]; audioProxy?: Maybe<Scalars["String"]>; audioRecordingOffsetMs: Scalars["Int"]; audioRecordingUrl?: Maybe<Scalars["String"]>; audioStreamUri?: Maybe<Scalars["String"]>; companies: Company[]; connectionExpected: Scalars["Boolean"]; connectionStatus: EventConnectionStatus; createdByUserId: Scalars["ID"]; creator?: Maybe<User>; dialInPhoneNumbers: Scalars["String"][]; dialInPin?: Maybe<Scalars["String"]>; eventDate: Scalars["DateTime"]; eventGroups: EventGroup[]; eventType: EventType; externalAudioStreamUrl?: Maybe<Scalars["String"]>; firstTranscriptItemStartMs: Scalars["Int"]; fiscalQuarter?: Maybe<Scalars["Int"]>; fiscalYear?: Maybe<Scalars["Int"]>; hasConnectionDetails: Scalars["Boolean"]; hasLiveTranscript: Scalars["Boolean"]; hasPublishedTranscript: Scalars["Boolean"]; hasTranscript: Scalars["Boolean"]; hasUnknownTime: Scalars["Boolean"]; id: Scalars["ID"]; isLive: Scalars["Boolean"]; liveStreamUrl?: Maybe<Scalars["String"]>; localTranscriptFileUrl?: Maybe<Scalars["String"]>; pressUrl?: Maybe<Scalars["String"]>; primaryCompany?: Maybe<Company>; publishedTranscriptExpected: Scalars["Boolean"]; quotePrices: EventQuotePriceInfo[]; slidesUrl?: Maybe<Scalars["String"]>; summaries: EventSummarization[]; title: Scalars["String"]; transcripts: EventTranscript[]; webcastUrls: Scalars["String"][] }

Type declaration

EventFilter: { companyIds?: InputMaybe<Scalars["ID"][]>; eventIds?: InputMaybe<Scalars["ID"][]>; eventTypes?: InputMaybe<EventType[]>; hasTranscript?: InputMaybe<Scalars["Boolean"]>; title?: InputMaybe<Scalars["String"]> }

Type declaration

EventGroup: { end?: Maybe<Scalars["DateTime"]>; events: Event[]; firstEvent?: Maybe<Event>; id: Scalars["ID"]; lastEvent?: Maybe<Event>; numEvents: Scalars["Int"]; start?: Maybe<Scalars["DateTime"]>; title: Scalars["String"] }

Type declaration

EventQuotePriceInfo: { __typename?: "EventQuotePriceInfo"; currentDayClosePrice?: Maybe<Scalars["Float"]>; currentDayOpenPrice?: Maybe<Scalars["Float"]>; endPrice?: Maybe<Scalars["Float"]>; id: Scalars["ID"]; previousDayClosePrice?: Maybe<Scalars["Float"]>; quote: Quote; realtimePrices: EventQuoteRealtimePrice[]; startPrice?: Maybe<Scalars["Float"]> }

Type declaration

EventQuotePriceInfoRealtimePricesArgs: { after?: InputMaybe<Scalars["DateTime"]> }

Type declaration

EventQuoteRealtimePrice: { __typename?: "EventQuoteRealtimePrice"; date: Scalars["DateTime"]; id: Scalars["ID"]; price: Scalars["Float"]; priceChangeFromStartPercent?: Maybe<Scalars["Float"]>; priceChangeFromStartValue?: Maybe<Scalars["Float"]>; volume: Scalars["Int"]; volumeChangeFromLastPercent?: Maybe<Scalars["Float"]>; volumeChangeFromLastValue?: Maybe<Scalars["Int"]>; volumeChangeFromStartPercent?: Maybe<Scalars["Float"]>; volumeChangeFromStartValue?: Maybe<Scalars["Int"]> }

Type declaration

EventSearchFilter: { companyIds?: InputMaybe<Scalars["ID"][]>; eventGroupIds?: InputMaybe<Scalars["ID"][]>; eventIds?: InputMaybe<Scalars["ID"][]>; eventTypes?: InputMaybe<EventType[]>; hasTranscripts?: InputMaybe<Scalars["Boolean"]>; searchTerm?: InputMaybe<Scalars["String"]>; watchlistId?: InputMaybe<Scalars["ID"]> }

Type declaration

EventSearchResult: SearchResult & { __typename?: "EventSearchResult"; hits: EventSearchResultHit[]; id: Scalars["ID"]; numTotalHits: Scalars["Int"] }
EventSearchResultHit: SearchResultHit & { __typename?: "EventSearchResultHit"; event: Event; id: Scalars["ID"]; numMentions?: Maybe<Scalars["Int"]> }
EventSummarization: { __typename?: "EventSummarization"; audioClip?: Maybe<Scalars["String"]>; created: Scalars["DateTime"]; eventId: Scalars["ID"]; id: Scalars["ID"]; modelType: EventSummarizationModelType; modified?: Maybe<Scalars["DateTime"]>; priority: Scalars["Int"]; reviewed?: Maybe<Scalars["DateTime"]>; summary: Scalars["String"][]; summaryType: EventSummarizationSummaryType; title: Scalars["String"]; transcriptVersion: Scalars["Int"]; videoClip?: Maybe<Scalars["String"]> }

Type declaration

EventTranscript: { __typename?: "EventTranscript"; id: Scalars["ID"]; latestParagraphs: EventTranscriptParagraph[]; sections: EventTranscriptSection[] }

Type declaration

EventTranscriptParagraph: { __typename?: "EventTranscriptParagraph"; created?: Maybe<Scalars["DateTime"]>; displayTimestamp?: Maybe<Scalars["DateTime"]>; id: Scalars["ID"]; index: Scalars["Int"]; sentences: EventTranscriptSentence[]; syncMs?: Maybe<Scalars["Int"]>; syncTimestamp?: Maybe<Scalars["DateTime"]>; timestamp?: Maybe<Scalars["DateTime"]> }

Type declaration

EventTranscriptSection: { __typename?: "EventTranscriptSection"; id: Scalars["ID"]; index: Scalars["Int"]; sectionType: EventTranscriptSectionType; speakerTurns: EventTranscriptSpeakerTurn[] }

Type declaration

EventTranscriptSentence: { __typename?: "EventTranscriptSentence"; eventItemId: Scalars["ID"]; id: Scalars["ID"]; index: Scalars["Int"]; sentiment?: Maybe<EventTranscriptSentenceSentimentContainer>; text: Scalars["String"] }

Type declaration

EventTranscriptSentenceSentimentContainer: SentimentContainer & { __typename?: "EventTranscriptSentenceSentimentContainer"; id: Scalars["ID"]; textual?: Maybe<TextualSentiment>; tonal?: Maybe<TonalSentiment> }
EventTranscriptSentenceTextualSentiment: Sentiment & TextualSentiment & { __typename?: "EventTranscriptSentenceTextualSentiment"; basicSentiment: BasicTextualSentiment; id: Scalars["ID"]; overThreshold: Scalars["Boolean"]; rawScore: Scalars["Float"] }
EventTranscriptSpeaker: { __typename?: "EventTranscriptSpeaker"; firmName?: Maybe<Scalars["String"]>; id: Scalars["ID"]; identified: Scalars["Boolean"]; name: Scalars["String"]; title?: Maybe<Scalars["String"]> }

Type declaration

EventTranscriptSpeakerTurn: { __typename?: "EventTranscriptSpeakerTurn"; id: Scalars["ID"]; index: Scalars["Int"]; paragraphs: EventTranscriptParagraph[]; speaker: EventTranscriptSpeaker }

Type declaration

Exchange: { __typename?: "Exchange"; city: Scalars["String"]; country: Country; defaultCurrency: Currency; id: Scalars["ID"]; localCloseTime?: Maybe<Scalars["Time"]>; localHalfDayCloseTime?: Maybe<Scalars["Time"]>; localHalfDayOpenTime?: Maybe<Scalars["Time"]>; localOpenTime?: Maybe<Scalars["Time"]>; mic: Scalars["String"]; name: Scalars["String"]; priceDelay?: Maybe<ExchangePriceDelay>; shortName: Scalars["String"]; tickerPadding?: Maybe<Scalars["Int"]>; tradingDays: Scalars["String"]; tz: Scalars["String"]; website: Scalars["String"] }

Type declaration

FilingContent: Content & { __typename?: "FilingContent"; body: Scalars["String"]; companies: Company[]; contentType: ContentType; displayType: Scalars["String"]; events: Event[]; id: Scalars["ID"]; organization?: Maybe<Organization>; primaryCompany?: Maybe<Company>; publishedDate: Scalars["DateTime"]; source: ContentSource; title: Scalars["String"] }
GicsIndustry: { __typename?: "GicsIndustry"; gicsCode: Scalars["String"]; gicsIndustryGroup: GicsIndustryGroup; id: Scalars["ID"]; name: Scalars["String"] }

Type declaration

GicsIndustryGroup: { __typename?: "GicsIndustryGroup"; gicsCode: Scalars["String"]; gicsSector: GicsSector; id: Scalars["ID"]; name: Scalars["String"] }

Type declaration

GicsSector: { __typename?: "GicsSector"; gicsCode: Scalars["String"]; id: Scalars["ID"]; name: Scalars["String"] }

Type declaration

GicsSubIndustry: { __typename?: "GicsSubIndustry"; gicsCode: Scalars["String"]; gicsIndustry: GicsIndustry; id: Scalars["ID"]; name: Scalars["String"] }

Type declaration

IdentifierInput: { identifier: Scalars["String"]; identifierType?: IdentifierType }

Type declaration

IdentifierResolutionFilter: { universe?: InputMaybe<IdentifierResolutionUniverse> }

Type declaration

IdentifierResolutionInput: { filter?: InputMaybe<IdentifierResolutionFilter>; identifiers: IdentifierInput[] }

Type declaration

Instrument: { __typename?: "Instrument"; assetClass: AssetClass; cusip?: Maybe<Scalars["String"]>; id: Scalars["ID"]; isPrimary: Scalars["Boolean"]; isin?: Maybe<Scalars["String"]>; issuer: Company; name: Scalars["String"]; quotes: Quote[] }

Type declaration

InstrumentId: { BBG?: InputMaybe<Scalars["String"]>; ISIN?: InputMaybe<Scalars["String"]>; PERMID?: InputMaybe<Scalars["String"]>; RIC?: InputMaybe<Scalars["String"]>; ticker?: InputMaybe<Scalars["String"]> }

Type declaration

Language: { __typename?: "Language"; id: Scalars["ID"]; iso6391: Scalars["String"]; iso6392B: Scalars["String"]; iso6392T: Scalars["String"]; iso6393: Scalars["String"]; languageCode: Scalars["String"]; name: Scalars["String"] }

Type declaration

LatestEventFilter: { earningsOnly?: InputMaybe<Scalars["Boolean"]>; ticker: Scalars["String"] }

Type declaration

Locale: { __typename?: "Locale"; country?: Maybe<Country>; displayName: Scalars["String"]; id: Scalars["ID"]; language: Language; localeCode: Scalars["String"] }

Type declaration

LoginResponse: MutationResponse & { __typename?: "LoginResponse"; accessToken: Scalars["String"]; errors: Error[]; refreshToken: Scalars["String"]; success: Scalars["Boolean"]; user: User }
Mutation: { __typename?: "Mutation"; clearChatSessionSources: ChatSessionResponse; confirmChatMessageSourceConfirmation: ChatMessageSourceConfirmationResponse; createAblyToken: AblyResponse; createChatMessagePrompt: ChatMessagePromptResponse; createChatSession: ChatSessionResponse; createPrivateRecording: PrivateRecordingResponse; createTranscrippet: TranscrippetResponse; deleteChatSession: DeleteChatSessionResponse; deletePrivateRecording: DeletePrivateRecordingResponse; deleteTranscrippet: DeleteTranscrippetResponse; login: LoginResponse; loginWithApiKey: LoginResponse; loginWithPublicApiKey: LoginResponse; refresh: RefreshResponse; reportEventIssue: SupportMutationResponse; track: TrackResponse; updateChatSession: ChatSessionResponse; updatePrivateRecording: PrivateRecordingResponse; upsertPrimaryWatchlist: UpsertPrimaryWatchlistResponse }

Type declaration

MutationClearChatSessionSourcesArgs: { input: ClearSourcesInput }

Type declaration

MutationConfirmChatMessageSourceConfirmationArgs: { input: ConfirmSourceConfirmationInput }

Type declaration

MutationCreateAblyTokenArgs: { input: CreateAblyTokenInput }

Type declaration

MutationCreateChatMessagePromptArgs: { input: CreateChatMessagePromptInput }

Type declaration

MutationCreateChatSessionArgs: { input: CreateChatSessionInput }

Type declaration

MutationCreatePrivateRecordingArgs: { input: CreatePrivateRecordingInput }

Type declaration

MutationCreateTranscrippetArgs: { input: CreateTranscrippetInput }

Type declaration

MutationDeleteChatSessionArgs: { input: DeleteChatSessionInput }

Type declaration

MutationDeletePrivateRecordingArgs: { privateRecordingId: Scalars["Int"] }

Type declaration

MutationDeleteTranscrippetArgs: { transcrippetId: Scalars["Int"] }

Type declaration

MutationLoginArgs: { email: Scalars["String"]; password: Scalars["String"] }

Type declaration

MutationLoginWithApiKeyArgs: { apiKey: Scalars["String"]; email: Scalars["String"] }

Type declaration

MutationLoginWithPublicApiKeyArgs: { apiKey: Scalars["String"]; origin?: InputMaybe<Scalars["String"]> }

Type declaration

MutationReportEventIssueArgs: { input: ReportEventIssueInput }

Type declaration

MutationTrackArgs: { event: Scalars["String"]; properties: Scalars["GenericObjectScalar"] }

Type declaration

MutationUpdateChatSessionArgs: { input: UpdateChatSessionInput }

Type declaration

MutationUpdatePrivateRecordingArgs: { input: UpdatePrivateRecordingInput }

Type declaration

MutationUpsertPrimaryWatchlistArgs: { input: UpsertPrimaryWatchlistInput }

Type declaration

MutationResponse: { errors: Error[]; success: Scalars["Boolean"] }

Type declaration

NewsContent: Content & { __typename?: "NewsContent"; body: Scalars["String"]; canShowFullText: Scalars["Boolean"]; companies: Company[]; contentType: ContentType; copyright?: Maybe<Scalars["String"]>; displayType: Scalars["String"]; events: Event[]; id: Scalars["ID"]; license?: Maybe<NewsLicense>; newsSource: NewsSource; organization?: Maybe<Organization>; primaryCompany?: Maybe<Company>; publishedDate: Scalars["DateTime"]; source: ContentSource; title: Scalars["String"]; url?: Maybe<Scalars["String"]> }
NewsSource: { __typename?: "NewsSource"; id: Scalars["ID"]; name: Scalars["String"]; tags: NewsSourceTag[] }

Type declaration

NewsSourceTag: Tag & { __typename?: "NewsSourceTag"; displayName: Scalars["String"]; id: Scalars["ID"]; overThreshold: Scalars["Boolean"]; slug: Scalars["String"]; tagType: TagType }
Organization: { __typename?: "Organization"; billingSource: BillingSource; domains: Scalars["JSON"]; id: Scalars["ID"]; isActive: Scalars["Boolean"]; isCustomer: Scalars["Boolean"]; isPremium: Scalars["Boolean"]; name: Scalars["String"] }

Type declaration

PrivateRecording: { __typename?: "PrivateRecording"; connectAccessId?: Maybe<Scalars["String"]>; connectCallerId?: Maybe<Scalars["String"]>; connectOffsetSeconds: Scalars["Int"]; connectPhoneNumber?: Maybe<Scalars["String"]>; connectPin?: Maybe<Scalars["String"]>; connectUrl?: Maybe<Scalars["String"]>; connectionType: PrConnectionType; equityIds?: Maybe<Scalars["JSON"]>; externalAudioStreamUrl?: Maybe<Scalars["String"]>; id: Scalars["ID"]; onCompleteEmailCreator: Scalars["Boolean"]; onConnectDialNumber?: Maybe<Scalars["String"]>; onFailure: PrOnFailure; onFailureDialNumber?: Maybe<Scalars["String"]>; onFailureInstructions?: Maybe<Scalars["String"]>; onFailureSmsNumber?: Maybe<Scalars["String"]>; organizationId: Scalars["ID"]; primaryCompany?: Maybe<Company>; scheduledFor: Scalars["DateTime"]; smsAlertBeforeCall: Scalars["Boolean"]; status: PrStatus; title: Scalars["String"]; userId: Scalars["ID"] }

Type declaration

PrivateRecordingFilter: { privateRecordingId?: InputMaybe<Scalars["ID"]>; title?: InputMaybe<Scalars["String"]> }

Type declaration

PrivateRecordingResponse: MutationResponse & { __typename?: "PrivateRecordingResponse"; errors: Error[]; privateRecording: PrivateRecording; success: Scalars["Boolean"] }
Query: { __typename?: "Query"; activeHosts: StatsdHostTotal; activeMetricsSince: StatsdActiveMetric; chatMessageSuggestions: ChatMessageSuggestion[]; chatSession?: Maybe<ChatSession>; chatSessions: ChatSession[]; companies: Company[]; configuration: ApplicationConfiguration; containers: Container; content: Content[]; countries: Country[]; currencies: Currency[]; currentUser: User; events: Event[]; languages: Language[]; latestEventForTicker: Event; locales: Locale[]; privateRecordings: PrivateRecording[]; search: Search; searchActiveHosts: StatsdActiveHost; transcrippet: Transcrippet; transcrippets: Transcrippet[]; userStatus: UserEmailStatus }

Type declaration

QueryActiveMetricsSinceArgs: { fromSecondsAgo: Scalars["Int"]; hostName?: InputMaybe<Scalars["String"]>; tag?: InputMaybe<Scalars["String"]> }

Type declaration

QueryChatSessionArgs: { filter: ChatSessionFilter }

Type declaration

QueryChatSessionsArgs: { filter?: InputMaybe<ChatSessionsFilter> }

Type declaration

QueryCompaniesArgs: { filter: CompanyFilter }

Type declaration

QueryContainersArgs: { filter?: InputMaybe<StatsdContainersFilter> }

Type declaration

QueryContentArgs: { filter: ContentFilter }

Type declaration

QueryEventsArgs: { filter?: InputMaybe<EventFilter>; view?: EventView }

Type declaration

QueryLatestEventForTickerArgs: { filter: LatestEventFilter }

Type declaration

QueryPrivateRecordingsArgs: { filter?: InputMaybe<PrivateRecordingFilter> }

Type declaration

QuerySearchActiveHostsArgs: { filter: StatsdHostsFilter }

Type declaration

QueryTranscrippetArgs: { transcrippetGuid: Scalars["String"] }

Type declaration

  • transcrippetGuid: Scalars["String"]
QueryTranscrippetsArgs: { filter?: InputMaybe<TranscrippetFilter> }

Type declaration

QueryUserStatusArgs: { email: Scalars["String"] }

Type declaration

Quote: { __typename?: "Quote"; bloombergRoot?: Maybe<Scalars["String"]>; currency: Currency; exchange: Exchange; id: Scalars["ID"]; instrument: Instrument; isPrimary: Scalars["Boolean"]; localTicker: Scalars["String"]; ric: Scalars["String"] }

Type declaration

RealtimeTranscrippetPrice: { __typename?: "RealtimeTranscrippetPrice"; date: Scalars["String"]; price: Scalars["Float"]; volume: Scalars["Int"] }

Type declaration

  • Optional __typename?: "RealtimeTranscrippetPrice"
  • date: Scalars["String"]
  • price: Scalars["Float"]
  • volume: Scalars["Int"]
RefreshResponse: MutationResponse & { __typename?: "RefreshResponse"; accessToken: Scalars["String"]; errors: Error[]; refreshToken: Scalars["String"]; success: Scalars["Boolean"]; user: User }
ReportEventIssueInput: { eventId: Scalars["ID"]; issue: Scalars["String"] }

Type declaration

ResolutionInput: { identifier?: InputMaybe<Scalars["String"]>; identifierType?: IdentifierType; identifiers?: InputMaybe<Scalars["String"][]> }

Type declaration

Search: { __typename?: "Search"; companies: CompanySearchResult; content: ContentSearchResult; events: EventSearchResult }

Type declaration

SearchCompaniesArgs: { filter: CompanySearchFilter; fromIndex?: InputMaybe<Scalars["Int"]>; size?: InputMaybe<Scalars["Int"]> }

Type declaration

SearchContentArgs: { filter: ContentSearchFilter; fromIndex?: InputMaybe<Scalars["Int"]>; size?: InputMaybe<Scalars["Int"]> }

Type declaration

SearchEventsArgs: { filter: EventSearchFilter; fromIndex?: InputMaybe<Scalars["Int"]>; size?: InputMaybe<Scalars["Int"]>; view?: EventView }

Type declaration

SearchResult: { hits: SearchResultHit[]; id: Scalars["ID"]; numTotalHits: Scalars["Int"] }

Type declaration

SearchResultHit: { id: Scalars["ID"] }

Type declaration

Sentiment: { id: Scalars["ID"]; overThreshold: Scalars["Boolean"]; rawScore: Scalars["Float"] }

Type declaration

SentimentContainer: { id: Scalars["ID"]; textual?: Maybe<TextualSentiment>; tonal?: Maybe<TonalSentiment> }

Type declaration

StatsdActiveHost: { __typename?: "StatsdActiveHost"; hostList: StatsdHost[]; totalMatching: Scalars["Int"]; totalReturned: Scalars["Int"] }

Type declaration

  • Optional __typename?: "StatsdActiveHost"
  • hostList: StatsdHost[]
  • totalMatching: Scalars["Int"]
  • totalReturned: Scalars["Int"]
StatsdActiveMetric: { __typename?: "StatsdActiveMetric"; metrics: Scalars["String"][]; since: Scalars["String"] }

Type declaration

  • Optional __typename?: "StatsdActiveMetric"
  • metrics: Scalars["String"][]
  • since: Scalars["String"]
StatsdContainer: { __typename?: "StatsdContainer"; created: Scalars["DateTime"]; host: Scalars["String"]; id: Scalars["ID"]; imageDigest: Scalars["String"]; imageName: Scalars["String"]; imageTags: Scalars["String"][]; name: Scalars["String"]; started: Scalars["DateTime"]; state: Scalars["String"]; tags: Scalars["String"][] }

Type declaration

StatsdContainerPagination: { __typename?: "StatsdContainerPagination"; cursor: Scalars["String"]; limit: Scalars["Int"]; nextCursor: Scalars["String"]; prevCursor: Scalars["String"]; total: Scalars["Int"] }

Type declaration

StatsdContainersFilter: { groupBy?: InputMaybe<Scalars["String"]>; page?: InputMaybe<Scalars["String"]>; size?: InputMaybe<Scalars["Int"]>; sort?: InputMaybe<Scalars["String"]>; tags?: InputMaybe<Scalars["String"][]> }

Type declaration

StatsdHost: { __typename?: "StatsdHost"; aliases?: Maybe<Scalars["String"][]>; apps?: Maybe<Scalars["String"][]>; awsName?: Maybe<Scalars["String"]>; hostName?: Maybe<Scalars["String"]>; id: Scalars["ID"]; isMuted: Scalars["Boolean"]; lastReportedTime: Scalars["Int"]; meta?: Maybe<StatsdHostMeta>; metrics?: Maybe<StatsdHostMetric>; muteTimeout?: Maybe<Scalars["Int"]>; name?: Maybe<Scalars["String"]>; sources?: Maybe<Scalars["String"][]>; tagsBySource?: Maybe<Scalars["GenericScalar"]> }

Type declaration

StatsdHostAgentInstallMethod: { __typename?: "StatsdHostAgentInstallMethod"; installerVersion?: Maybe<Scalars["String"]>; tool?: Maybe<Scalars["String"]>; toolVersion?: Maybe<Scalars["String"]> }

Type declaration

  • Optional __typename?: "StatsdHostAgentInstallMethod"
  • Optional installerVersion?: Maybe<Scalars["String"]>
  • Optional tool?: Maybe<Scalars["String"]>
  • Optional toolVersion?: Maybe<Scalars["String"]>
StatsdHostMeta: { __typename?: "StatsdHostMeta"; agentVersion?: Maybe<Scalars["String"]>; cpuCores?: Maybe<Scalars["Int"]>; gohai?: Maybe<Scalars["String"]>; installMethod?: Maybe<StatsdHostAgentInstallMethod>; macVersions?: Maybe<Scalars["String"][]>; machine?: Maybe<Scalars["String"]>; platform?: Maybe<Scalars["String"]>; processor?: Maybe<Scalars["String"]>; pythonVersion?: Maybe<Scalars["String"]>; socketFqdn?: Maybe<Scalars["String"]>; socketHostname?: Maybe<Scalars["String"]>; unixVersions?: Maybe<Scalars["String"][]>; windowsVersions?: Maybe<Scalars["String"][]> }

Type declaration

StatsdHostMetric: { __typename?: "StatsdHostMetric"; cpu?: Maybe<Scalars["Float"]>; iowait?: Maybe<Scalars["Float"]>; load?: Maybe<Scalars["Float"]> }

Type declaration

StatsdHostTotal: { __typename?: "StatsdHostTotal"; totalActive: Scalars["Int"]; totalUp: Scalars["Int"] }

Type declaration

  • Optional __typename?: "StatsdHostTotal"
  • totalActive: Scalars["Int"]
  • totalUp: Scalars["Int"]
StatsdHostsFilter: { fromSecondsAgo?: InputMaybe<Scalars["Int"]>; includeHostsMetadata?: InputMaybe<Scalars["Boolean"]>; includeMutedHostsData?: InputMaybe<Scalars["Boolean"]>; offset?: InputMaybe<Scalars["Int"]>; searchTerm: Scalars["String"]; size?: InputMaybe<Scalars["Int"]>; sortDirection?: InputMaybe<Scalars["String"]>; sortField?: InputMaybe<Scalars["String"]> }

Type declaration

SupportMutationResponse: MutationResponse & { __typename?: "SupportMutationResponse"; errors: Error[]; success: Scalars["Boolean"] }
Tag: { displayName: Scalars["String"]; id: Scalars["ID"]; overThreshold: Scalars["Boolean"]; slug: Scalars["String"]; tagType: TagType }

Type declaration

TextBlock: { __typename?: "TextBlock"; citations?: Maybe<Citation[]>; content: Scalars["String"]; type: ContentBlockType }

Type declaration

TextualSentiment: { basicSentiment: BasicTextualSentiment; id: Scalars["ID"]; overThreshold: Scalars["Boolean"]; rawScore: Scalars["Float"] }

Type declaration

TonalSentiment: { id: Scalars["ID"]; overThreshold: Scalars["Boolean"]; rawScore: Scalars["Float"] }

Type declaration

TrackResponse: MutationResponse & { __typename?: "TrackResponse"; errors: Error[]; success: Scalars["Boolean"] }
Transcrippet: { __typename?: "Transcrippet"; audioUrl?: Maybe<Scalars["String"]>; companyId?: Maybe<Scalars["ID"]>; companyLogoUrl?: Maybe<Scalars["String"]>; companyName?: Maybe<Scalars["String"]>; companyTicker?: Maybe<Scalars["String"]>; endMs?: Maybe<Scalars["Int"]>; equityId?: Maybe<Scalars["ID"]>; equityPrices?: Maybe<TranscrippetEquityPrice>; eventDate: Scalars["DateTime"]; eventId: Scalars["ID"]; eventTitle?: Maybe<Scalars["String"]>; eventType: EventType; id: Scalars["ID"]; speakerId?: Maybe<Scalars["ID"]>; speakerName?: Maybe<Scalars["String"]>; speakerTitle?: Maybe<Scalars["String"]>; startMs?: Maybe<Scalars["Int"]>; status: TranscrippetStatus; transcrippetGuid?: Maybe<Scalars["String"]>; transcript: Scalars["String"]; transcriptItemId: Scalars["ID"]; transcriptionAudioOffsetSeconds: Scalars["Int"]; trimmedAudioUrl?: Maybe<Scalars["String"]>; userId: Scalars["ID"]; wordDurationsMs?: Maybe<Scalars["JSON"]> }

Type declaration

TranscrippetEquityPrice: { __typename?: "TranscrippetEquityPrice"; prices: RealtimeTranscrippetPrice[]; startIndex: Scalars["Int"] }

Type declaration

TranscrippetFilter: { companyId?: InputMaybe<Scalars["ID"]>; equityId?: InputMaybe<Scalars["ID"]>; eventId?: InputMaybe<Scalars["ID"]>; speakerId?: InputMaybe<Scalars["ID"]>; transcrippetId?: InputMaybe<Scalars["ID"]>; transcriptItemId?: InputMaybe<Scalars["ID"]> }

Type declaration

TranscrippetResponse: MutationResponse & { __typename?: "TranscrippetResponse"; errors: Error[]; success: Scalars["Boolean"]; transcrippet: Transcrippet }
UpdateChatSessionInput: { sessionId: Scalars["ID"]; sessionUserId?: InputMaybe<Scalars["ID"]>; sources?: InputMaybe<ChatSourceInput[]>; title?: InputMaybe<Scalars["String"]> }

Type declaration

UpdatePrivateRecordingInput: { companyIds?: InputMaybe<Scalars["Int"][]>; connectAccessId?: InputMaybe<Scalars["String"]>; connectCallerId?: InputMaybe<Scalars["String"]>; connectOffsetSeconds?: InputMaybe<Scalars["Int"]>; connectPhoneNumber?: InputMaybe<Scalars["String"]>; connectPin?: InputMaybe<Scalars["String"]>; connectUrl?: InputMaybe<Scalars["String"]>; connectionType: PrConnectionType; onCompleteEmailCreator?: InputMaybe<Scalars["Boolean"]>; onConnectDialNumber?: InputMaybe<Scalars["String"]>; onFailure?: InputMaybe<PrOnFailure>; onFailureDialNumber?: InputMaybe<Scalars["String"]>; onFailureInstructions?: InputMaybe<Scalars["String"]>; onFailureSmsNumber?: InputMaybe<Scalars["String"]>; privateRecordingId: Scalars["ID"]; scheduledFor: Scalars["DateTime"]; smsAlertBeforeCall?: InputMaybe<Scalars["Boolean"]>; title: Scalars["String"] }

Type declaration

UpsertPrimaryWatchlistInput: { creatorUsername: Scalars["String"]; identifiers?: InputMaybe<InstrumentId[]> }

Type declaration

UpsertPrimaryWatchlistResponse: MutationResponse & { __typename?: "UpsertPrimaryWatchlistResponse"; errors: Error[]; success: Scalars["Boolean"]; watchlist: Watchlist }
User: { __typename?: "User"; apiKey?: Maybe<Scalars["String"]>; apiKeyPublic?: Maybe<Scalars["String"]>; customerType: UserCustomerType; email?: Maybe<Scalars["String"]>; firstName?: Maybe<Scalars["String"]>; id: Scalars["ID"]; lastName?: Maybe<Scalars["String"]>; organization: Organization; passwordStatus: PasswordStatus; primaryEmail?: Maybe<Scalars["String"]>; status: UserStatus; username: Scalars["String"] }

Type declaration

UserEmailStatus: { __typename?: "UserEmailStatus"; active: Scalars["Boolean"]; status?: Maybe<Scalars["String"]> }

Type declaration

  • Optional __typename?: "UserEmailStatus"
  • active: Scalars["Boolean"]
  • Optional status?: Maybe<Scalars["String"]>
Watchlist: { __typename?: "Watchlist"; id: Scalars["ID"]; status: WatchlistStatus; watchlistType: WatchlistType }

Type declaration

RefreshMutationVariables: Exact<{}>
RefreshMutation: { __typename: "Mutation"; refresh: { __typename: "RefreshResponse"; accessToken: string; refreshToken: string } }

Type declaration

  • __typename: "Mutation"
  • refresh: { __typename: "RefreshResponse"; accessToken: string; refreshToken: string }
    • __typename: "RefreshResponse"
    • accessToken: string
    • refreshToken: string
CompanyFilterQueryVariables: Exact<{ searchTerm?: InputMaybe<Scalars["String"]> }>
CompanyFilterQuery: { __typename?: "Query"; companies: { __typename?: "Company"; id: string; commonName: string; instruments: { __typename?: "Instrument"; id: string; isPrimary: boolean; quotes: { __typename?: "Quote"; id: string; isPrimary: boolean; localTicker: string; exchange: { __typename?: "Exchange"; id: string; shortName: string; country: { __typename?: "Country"; id: string; countryCode: string } } }[] }[] }[] }

Type declaration

  • Optional __typename?: "Query"
  • companies: { __typename?: "Company"; id: string; commonName: string; instruments: { __typename?: "Instrument"; id: string; isPrimary: boolean; quotes: { __typename?: "Quote"; id: string; isPrimary: boolean; localTicker: string; exchange: { __typename?: "Exchange"; id: string; shortName: string; country: { __typename?: "Country"; id: string; countryCode: string } } }[] }[] }[]
CompanyResolutionQueryVariables: Exact<{ identifiers?: InputMaybe<Scalars["String"][] | Scalars["String"]> }>
CompanyResolutionQuery: { __typename?: "Query"; companies: { __typename?: "Company"; id: string; commonName: string; instruments: { __typename?: "Instrument"; id: string; isPrimary: boolean; quotes: { __typename?: "Quote"; id: string; isPrimary: boolean; localTicker: string; exchange: { __typename?: "Exchange"; id: string; shortName: string; country: { __typename?: "Country"; id: string; countryCode: string } } }[] }[] }[] }

Type declaration

  • Optional __typename?: "Query"
  • companies: { __typename?: "Company"; id: string; commonName: string; instruments: { __typename?: "Instrument"; id: string; isPrimary: boolean; quotes: { __typename?: "Quote"; id: string; isPrimary: boolean; localTicker: string; exchange: { __typename?: "Exchange"; id: string; shortName: string; country: { __typename?: "Country"; id: string; countryCode: string } } }[] }[] }[]
UpsertPrimaryWatchlistMutationVariables: Exact<{ input: UpsertPrimaryWatchlistInput }>
UpsertPrimaryWatchlistMutation: { __typename?: "Mutation"; upsertPrimaryWatchlist: { __typename?: "UpsertPrimaryWatchlistResponse"; watchlist: { __typename?: "Watchlist"; id: string } } }

Type declaration

  • Optional __typename?: "Mutation"
  • upsertPrimaryWatchlist: { __typename?: "UpsertPrimaryWatchlistResponse"; watchlist: { __typename?: "Watchlist"; id: string } }
    • Optional __typename?: "UpsertPrimaryWatchlistResponse"
    • watchlist: { __typename?: "Watchlist"; id: string }
      • Optional __typename?: "Watchlist"
      • id: string
UserStatusQueryVariables: Exact<{ email: Scalars["String"] }>
UserStatusQuery: { __typename?: "Query"; userStatus: { __typename?: "UserEmailStatus"; active: boolean; status?: string | null } }

Type declaration

  • Optional __typename?: "Query"
  • userStatus: { __typename?: "UserEmailStatus"; active: boolean; status?: string | null }
    • Optional __typename?: "UserEmailStatus"
    • active: boolean
    • Optional status?: string | null
AppConfigQueryVariables: Exact<{}>
AppConfigQuery: { __typename?: "Query"; configuration: { __typename?: "ApplicationConfiguration"; pusherAppCluster?: string | null; pusherAppKey?: string | null } }

Type declaration

  • Optional __typename?: "Query"
  • configuration: { __typename?: "ApplicationConfiguration"; pusherAppCluster?: string | null; pusherAppKey?: string | null }
    • Optional __typename?: "ApplicationConfiguration"
    • Optional pusherAppCluster?: string | null
    • Optional pusherAppKey?: string | null
TrackMutationVariables: Exact<{ event: Scalars["String"]; properties: Scalars["GenericObjectScalar"] }>
TrackMutation: { __typename?: "Mutation"; track: { __typename?: "TrackResponse"; success: boolean } }

Type declaration

  • Optional __typename?: "Mutation"
  • track: { __typename?: "TrackResponse"; success: boolean }
    • Optional __typename?: "TrackResponse"
    • success: boolean
RealtimeCurrentUserQueryVariables: Exact<{}>
RealtimeCurrentUserQuery: { __typename?: "Query"; currentUser: { __typename?: "User"; id: string } }

Type declaration

  • Optional __typename?: "Query"
  • currentUser: { __typename?: "User"; id: string }
    • Optional __typename?: "User"
    • id: string
CreateAblyTokenMutationVariables: Exact<{ input: CreateAblyTokenInput }>
CreateAblyTokenMutation: { __typename?: "Mutation"; createAblyToken: { __typename?: "AblyResponse"; data?: { __typename?: "AblyData"; capability: string; clientId: string; keyName: string; mac: string; nonce: string; timestamp: number; ttl: number } | null } }

Type declaration

  • Optional __typename?: "Mutation"
  • createAblyToken: { __typename?: "AblyResponse"; data?: { __typename?: "AblyData"; capability: string; clientId: string; keyName: string; mac: string; nonce: string; timestamp: number; ttl: number } | null }
    • Optional __typename?: "AblyResponse"
    • Optional data?: { __typename?: "AblyData"; capability: string; clientId: string; keyName: string; mac: string; nonce: string; timestamp: number; ttl: number } | null
ClearChatSessionSourcesMutationVariables: Exact<{ input: ClearSourcesInput }>
ClearChatSessionSourcesMutation: { __typename?: "Mutation"; clearChatSessionSources: { __typename?: "ChatSessionResponse"; success: boolean } }

Type declaration

  • Optional __typename?: "Mutation"
  • clearChatSessionSources: { __typename?: "ChatSessionResponse"; success: boolean }
    • Optional __typename?: "ChatSessionResponse"
    • success: boolean
CreateChatSessionMutationVariables: Exact<{ input: CreateChatSessionInput }>
CreateChatSessionMutation: { __typename?: "Mutation"; createChatSession: { __typename?: "ChatSessionResponse"; chatSession?: { __typename?: "ChatSession"; id: string; createdAt: string; status: ChatSessionStatus; title?: string | null; titleStatus?: ChatSessionTitleStatus | null; updatedAt: string; userId: string; promptMessages?: { __typename?: "ChatMessagePrompt"; id: string; content: string; createdAt: string; messageType: ChatMessageType; ordinalId?: string | null; runnerVersion?: string | null; sessionId: string; updatedAt: string; userId: string }[] | null; sources?: { __typename: "ChatSource"; confirmed?: boolean | null; name: string; sourceId: string; type: ChatSourceType; parent?: { __typename: "ChatSource"; name: string; sourceId: string; type: ChatSourceType } | null }[] | null } | null } }

Type declaration

  • Optional __typename?: "Mutation"
  • createChatSession: { __typename?: "ChatSessionResponse"; chatSession?: { __typename?: "ChatSession"; id: string; createdAt: string; status: ChatSessionStatus; title?: string | null; titleStatus?: ChatSessionTitleStatus | null; updatedAt: string; userId: string; promptMessages?: { __typename?: "ChatMessagePrompt"; id: string; content: string; createdAt: string; messageType: ChatMessageType; ordinalId?: string | null; runnerVersion?: string | null; sessionId: string; updatedAt: string; userId: string }[] | null; sources?: { __typename: "ChatSource"; confirmed?: boolean | null; name: string; sourceId: string; type: ChatSourceType; parent?: { __typename: "ChatSource"; name: string; sourceId: string; type: ChatSourceType } | null }[] | null } | null }
    • Optional __typename?: "ChatSessionResponse"
    • Optional chatSession?: { __typename?: "ChatSession"; id: string; createdAt: string; status: ChatSessionStatus; title?: string | null; titleStatus?: ChatSessionTitleStatus | null; updatedAt: string; userId: string; promptMessages?: { __typename?: "ChatMessagePrompt"; id: string; content: string; createdAt: string; messageType: ChatMessageType; ordinalId?: string | null; runnerVersion?: string | null; sessionId: string; updatedAt: string; userId: string }[] | null; sources?: { __typename: "ChatSource"; confirmed?: boolean | null; name: string; sourceId: string; type: ChatSourceType; parent?: { __typename: "ChatSource"; name: string; sourceId: string; type: ChatSourceType } | null }[] | null } | null
DeleteChatSessionMutationVariables: Exact<{ input: DeleteChatSessionInput }>
DeleteChatSessionMutation: { __typename?: "Mutation"; deleteChatSession: { __typename?: "DeleteChatSessionResponse"; success: boolean } }

Type declaration

  • Optional __typename?: "Mutation"
  • deleteChatSession: { __typename?: "DeleteChatSessionResponse"; success: boolean }
    • Optional __typename?: "DeleteChatSessionResponse"
    • success: boolean
UpdateChatSessionMutationVariables: Exact<{ input: UpdateChatSessionInput }>
UpdateChatSessionMutation: { __typename?: "Mutation"; updateChatSession: { __typename?: "ChatSessionResponse"; chatSession?: { __typename?: "ChatSession"; id: string; createdAt: string; status: ChatSessionStatus; title?: string | null; titleStatus?: ChatSessionTitleStatus | null; updatedAt: string; userId: string; sources?: { __typename: "ChatSource"; confirmed?: boolean | null; name: string; sourceId: string; type: ChatSourceType; parent?: { __typename: "ChatSource"; name: string; sourceId: string; type: ChatSourceType } | null }[] | null } | null } }

Type declaration

  • Optional __typename?: "Mutation"
  • updateChatSession: { __typename?: "ChatSessionResponse"; chatSession?: { __typename?: "ChatSession"; id: string; createdAt: string; status: ChatSessionStatus; title?: string | null; titleStatus?: ChatSessionTitleStatus | null; updatedAt: string; userId: string; sources?: { __typename: "ChatSource"; confirmed?: boolean | null; name: string; sourceId: string; type: ChatSourceType; parent?: { __typename: "ChatSource"; name: string; sourceId: string; type: ChatSourceType } | null }[] | null } | null }
    • Optional __typename?: "ChatSessionResponse"
    • Optional chatSession?: { __typename?: "ChatSession"; id: string; createdAt: string; status: ChatSessionStatus; title?: string | null; titleStatus?: ChatSessionTitleStatus | null; updatedAt: string; userId: string; sources?: { __typename: "ChatSource"; confirmed?: boolean | null; name: string; sourceId: string; type: ChatSourceType; parent?: { __typename: "ChatSource"; name: string; sourceId: string; type: ChatSourceType } | null }[] | null } | null
ChatSessionsQueryVariables: Exact<{ filter?: InputMaybe<ChatSessionsFilter> }>
ChatSessionsQuery: { __typename?: "Query"; chatSessions: { __typename?: "ChatSession"; id: string; createdAt: string; status: ChatSessionStatus; title?: string | null; titleStatus?: ChatSessionTitleStatus | null; updatedAt: string; userId: string; sources?: { __typename: "ChatSource"; confirmed?: boolean | null; name: string; sourceId: string; type: ChatSourceType; parent?: { __typename: "ChatSource"; name: string; sourceId: string; type: ChatSourceType } | null }[] | null }[] }

Type declaration

  • Optional __typename?: "Query"
  • chatSessions: { __typename?: "ChatSession"; id: string; createdAt: string; status: ChatSessionStatus; title?: string | null; titleStatus?: ChatSessionTitleStatus | null; updatedAt: string; userId: string; sources?: { __typename: "ChatSource"; confirmed?: boolean | null; name: string; sourceId: string; type: ChatSourceType; parent?: { __typename: "ChatSource"; name: string; sourceId: string; type: ChatSourceType } | null }[] | null }[]
EventsQueryVariables: Exact<{ filter?: InputMaybe<EventFilter>; view: EventView }>
EventsQuery: { __typename?: "Query"; events: { __typename?: "Event"; id: string; hasPublishedTranscript: boolean; hasTranscript: boolean; eventDate: string; eventType: EventType; isLive: boolean; title: string }[] }

Type declaration

  • Optional __typename?: "Query"
  • events: { __typename?: "Event"; id: string; hasPublishedTranscript: boolean; hasTranscript: boolean; eventDate: string; eventType: EventType; isLive: boolean; title: string }[]
ChatMessagePromptFragmentFragment: { __typename: "ChatMessagePrompt"; id: string; content: string; createdAt: string; messageType: ChatMessageType; ordinalId?: string | null; runnerVersion?: string | null; sessionId: string; updatedAt: string; userId: string }

Type declaration

  • __typename: "ChatMessagePrompt"
  • id: string
  • content: string
  • createdAt: string
  • messageType: ChatMessageType
  • Optional ordinalId?: string | null
  • Optional runnerVersion?: string | null
  • sessionId: string
  • updatedAt: string
  • userId: string
ChatMessageResponseFragmentFragment: { __typename: "ChatMessageResponse"; id: string; createdAt: string; messageType: ChatMessageType; ordinalId?: string | null; promptMessageId?: string | null; runnerVersion?: string | null; sessionId: string; updatedAt: string; userId: string; blocks: { __typename: "TextBlock"; content: string; type: ContentBlockType; citations?: { __typename: "Citation"; author?: string | null; date?: unknown | null; marker: string; meta?: unknown | null; quote: string; url?: string | null; source: { __typename: "ChatSource"; name: string; sourceId: string; type: ChatSourceType; parent?: { __typename: "ChatSource"; name: string; sourceId: string; type: ChatSourceType } | null } }[] | null }[] }

Type declaration

  • __typename: "ChatMessageResponse"
  • id: string
  • createdAt: string
  • messageType: ChatMessageType
  • Optional ordinalId?: string | null
  • Optional promptMessageId?: string | null
  • Optional runnerVersion?: string | null
  • sessionId: string
  • updatedAt: string
  • userId: string
  • blocks: { __typename: "TextBlock"; content: string; type: ContentBlockType; citations?: { __typename: "Citation"; author?: string | null; date?: unknown | null; marker: string; meta?: unknown | null; quote: string; url?: string | null; source: { __typename: "ChatSource"; name: string; sourceId: string; type: ChatSourceType; parent?: { __typename: "ChatSource"; name: string; sourceId: string; type: ChatSourceType } | null } }[] | null }[]
ChatMessageSourceConfirmationFragmentFragment: { __typename: "ChatMessageSourceConfirmation"; id: string; createdAt: string; messageType: ChatMessageType; ordinalId?: string | null; promptMessageId?: string | null; runnerVersion?: string | null; sessionId: string; updatedAt: string; userId: string; sources?: { __typename: "ChatSource"; confirmed?: boolean | null; name: string; sourceId: string; type: ChatSourceType; parent?: { __typename: "ChatSource"; name: string; sourceId: string; type: ChatSourceType } | null }[] | null }

Type declaration

  • __typename: "ChatMessageSourceConfirmation"
  • id: string
  • createdAt: string
  • messageType: ChatMessageType
  • Optional ordinalId?: string | null
  • Optional promptMessageId?: string | null
  • Optional runnerVersion?: string | null
  • sessionId: string
  • updatedAt: string
  • userId: string
  • Optional sources?: { __typename: "ChatSource"; confirmed?: boolean | null; name: string; sourceId: string; type: ChatSourceType; parent?: { __typename: "ChatSource"; name: string; sourceId: string; type: ChatSourceType } | null }[] | null
ChatSessionWithMessagesQueryVariables: Exact<{ filter: ChatSessionFilter }>
ChatSessionWithMessagesQuery: { __typename?: "Query"; chatSession?: { __typename: "ChatSession"; id: string; activeMessageId?: string | null; createdAt: string; modelId?: string | null; modelGenerationParams?: unknown | null; status: ChatSessionStatus; title?: string | null; titleStatus?: ChatSessionTitleStatus | null; updatedAt: string; userId: string; sources?: { __typename: "ChatSource"; confirmed?: boolean | null; name: string; sourceId: string; type: ChatSourceType; parent?: { __typename: "ChatSource"; name: string; sourceId: string; type: ChatSourceType } | null }[] | null; promptMessages?: { __typename: "ChatMessagePrompt"; id: string; content: string; createdAt: string; messageType: ChatMessageType; ordinalId?: string | null; runnerVersion?: string | null; sessionId: string; updatedAt: string; userId: string }[] | null; responseMessages?: { __typename: "ChatMessageResponse"; id: string; createdAt: string; messageType: ChatMessageType; ordinalId?: string | null; promptMessageId?: string | null; runnerVersion?: string | null; sessionId: string; updatedAt: string; userId: string; blocks: { __typename: "TextBlock"; content: string; type: ContentBlockType; citations?: { __typename: "Citation"; author?: string | null; date?: unknown | null; marker: string; meta?: unknown | null; quote: string; url?: string | null; source: { __typename: "ChatSource"; name: string; sourceId: string; type: ChatSourceType; parent?: { __typename: "ChatSource"; name: string; sourceId: string; type: ChatSourceType } | null } }[] | null }[] }[] | null; sourceConfirmationMessages?: { __typename: "ChatMessageSourceConfirmation"; id: string; createdAt: string; messageType: ChatMessageType; ordinalId?: string | null; promptMessageId?: string | null; runnerVersion?: string | null; sessionId: string; updatedAt: string; userId: string; sources?: { __typename: "ChatSource"; confirmed?: boolean | null; name: string; sourceId: string; type: ChatSourceType; parent?: { __typename: "ChatSource"; name: string; sourceId: string; type: ChatSourceType } | null }[] | null }[] | null } | null }

Type declaration

  • Optional __typename?: "Query"
  • Optional chatSession?: { __typename: "ChatSession"; id: string; activeMessageId?: string | null; createdAt: string; modelId?: string | null; modelGenerationParams?: unknown | null; status: ChatSessionStatus; title?: string | null; titleStatus?: ChatSessionTitleStatus | null; updatedAt: string; userId: string; sources?: { __typename: "ChatSource"; confirmed?: boolean | null; name: string; sourceId: string; type: ChatSourceType; parent?: { __typename: "ChatSource"; name: string; sourceId: string; type: ChatSourceType } | null }[] | null; promptMessages?: { __typename: "ChatMessagePrompt"; id: string; content: string; createdAt: string; messageType: ChatMessageType; ordinalId?: string | null; runnerVersion?: string | null; sessionId: string; updatedAt: string; userId: string }[] | null; responseMessages?: { __typename: "ChatMessageResponse"; id: string; createdAt: string; messageType: ChatMessageType; ordinalId?: string | null; promptMessageId?: string | null; runnerVersion?: string | null; sessionId: string; updatedAt: string; userId: string; blocks: { __typename: "TextBlock"; content: string; type: ContentBlockType; citations?: { __typename: "Citation"; author?: string | null; date?: unknown | null; marker: string; meta?: unknown | null; quote: string; url?: string | null; source: { __typename: "ChatSource"; name: string; sourceId: string; type: ChatSourceType; parent?: { __typename: "ChatSource"; name: string; sourceId: string; type: ChatSourceType } | null } }[] | null }[] }[] | null; sourceConfirmationMessages?: { __typename: "ChatMessageSourceConfirmation"; id: string; createdAt: string; messageType: ChatMessageType; ordinalId?: string | null; promptMessageId?: string | null; runnerVersion?: string | null; sessionId: string; updatedAt: string; userId: string; sources?: { __typename: "ChatSource"; confirmed?: boolean | null; name: string; sourceId: string; type: ChatSourceType; parent?: { __typename: "ChatSource"; name: string; sourceId: string; type: ChatSourceType } | null }[] | null }[] | null } | null
ConfirmChatMessageSourceConfirmationMutationVariables: Exact<{ input: ConfirmSourceConfirmationInput }>
ConfirmChatMessageSourceConfirmationMutation: { __typename?: "Mutation"; confirmChatMessageSourceConfirmation: { __typename?: "ChatMessageSourceConfirmationResponse"; chatMessage?: { __typename: "ChatMessageSourceConfirmation"; id: string; createdAt: string; messageType: ChatMessageType; ordinalId?: string | null; promptMessageId?: string | null; runnerVersion?: string | null; sessionId: string; updatedAt: string; userId: string; sources?: { __typename: "ChatSource"; confirmed?: boolean | null; name: string; sourceId: string; type: ChatSourceType; parent?: { __typename: "ChatSource"; name: string; sourceId: string; type: ChatSourceType } | null }[] | null } | null } }

Type declaration

  • Optional __typename?: "Mutation"
  • confirmChatMessageSourceConfirmation: { __typename?: "ChatMessageSourceConfirmationResponse"; chatMessage?: { __typename: "ChatMessageSourceConfirmation"; id: string; createdAt: string; messageType: ChatMessageType; ordinalId?: string | null; promptMessageId?: string | null; runnerVersion?: string | null; sessionId: string; updatedAt: string; userId: string; sources?: { __typename: "ChatSource"; confirmed?: boolean | null; name: string; sourceId: string; type: ChatSourceType; parent?: { __typename: "ChatSource"; name: string; sourceId: string; type: ChatSourceType } | null }[] | null } | null }
    • Optional __typename?: "ChatMessageSourceConfirmationResponse"
    • Optional chatMessage?: { __typename: "ChatMessageSourceConfirmation"; id: string; createdAt: string; messageType: ChatMessageType; ordinalId?: string | null; promptMessageId?: string | null; runnerVersion?: string | null; sessionId: string; updatedAt: string; userId: string; sources?: { __typename: "ChatSource"; confirmed?: boolean | null; name: string; sourceId: string; type: ChatSourceType; parent?: { __typename: "ChatSource"; name: string; sourceId: string; type: ChatSourceType } | null }[] | null } | null
CreateChatMessagePromptMutationVariables: Exact<{ input: CreateChatMessagePromptInput }>
CreateChatMessagePromptMutation: { __typename?: "Mutation"; createChatMessagePrompt: { __typename?: "ChatMessagePromptResponse"; chatMessage?: { __typename: "ChatMessagePrompt"; id: string; content: string; createdAt: string; messageType: ChatMessageType; ordinalId?: string | null; runnerVersion?: string | null; sessionId: string; updatedAt: string; userId: string } | null } }

Type declaration

  • Optional __typename?: "Mutation"
  • createChatMessagePrompt: { __typename?: "ChatMessagePromptResponse"; chatMessage?: { __typename: "ChatMessagePrompt"; id: string; content: string; createdAt: string; messageType: ChatMessageType; ordinalId?: string | null; runnerVersion?: string | null; sessionId: string; updatedAt: string; userId: string } | null }
    • Optional __typename?: "ChatMessagePromptResponse"
    • Optional chatMessage?: { __typename: "ChatMessagePrompt"; id: string; content: string; createdAt: string; messageType: ChatMessageType; ordinalId?: string | null; runnerVersion?: string | null; sessionId: string; updatedAt: string; userId: string } | null
ChatSessionsRefetchQueryVariables: Exact<{ filter?: InputMaybe<ChatSessionsFilter> }>
ChatSessionsRefetchQuery: { __typename?: "Query"; chatSessions: { __typename?: "ChatSession"; id: string; createdAt: string; status: ChatSessionStatus; title?: string | null; titleStatus?: ChatSessionTitleStatus | null; updatedAt: string; userId: string; sources?: { __typename: "ChatSource"; confirmed?: boolean | null; name: string; sourceId: string; type: ChatSourceType; parent?: { __typename: "ChatSource"; name: string; sourceId: string; type: ChatSourceType } | null }[] | null }[] }

Type declaration

  • Optional __typename?: "Query"
  • chatSessions: { __typename?: "ChatSession"; id: string; createdAt: string; status: ChatSessionStatus; title?: string | null; titleStatus?: ChatSessionTitleStatus | null; updatedAt: string; userId: string; sources?: { __typename: "ChatSource"; confirmed?: boolean | null; name: string; sourceId: string; type: ChatSourceType; parent?: { __typename: "ChatSource"; name: string; sourceId: string; type: ChatSourceType } | null }[] | null }[]
CurrentUserQueryVariables: Exact<{}>
CurrentUserQuery: { __typename?: "Query"; currentUser: { __typename?: "User"; id: string; firstName?: string | null; lastName?: string | null; apiKey?: string | null } }

Type declaration

  • Optional __typename?: "Query"
  • currentUser: { __typename?: "User"; id: string; firstName?: string | null; lastName?: string | null; apiKey?: string | null }
    • Optional __typename?: "User"
    • id: string
    • Optional firstName?: string | null
    • Optional lastName?: string | null
    • Optional apiKey?: string | null
LoginMutationVariables: Exact<{ email: Scalars["String"]; password: Scalars["String"] }>
LoginMutation: { __typename?: "Mutation"; login: { __typename?: "LoginResponse"; accessToken: string; refreshToken: string } }

Type declaration

  • Optional __typename?: "Mutation"
  • login: { __typename?: "LoginResponse"; accessToken: string; refreshToken: string }
    • Optional __typename?: "LoginResponse"
    • accessToken: string
    • refreshToken: string
LoginWithPublicApiKeyMutationVariables: Exact<{ apiKey: Scalars["String"]; origin?: InputMaybe<Scalars["String"]> }>
LoginWithPublicApiKeyMutation: { __typename?: "Mutation"; loginWithPublicApiKey: { __typename?: "LoginResponse"; accessToken: string; refreshToken: string } }

Type declaration

  • Optional __typename?: "Mutation"
  • loginWithPublicApiKey: { __typename?: "LoginResponse"; accessToken: string; refreshToken: string }
    • Optional __typename?: "LoginResponse"
    • accessToken: string
    • refreshToken: string
EventListQueryVariables: Exact<{ filter: EventSearchFilter; view?: InputMaybe<EventView>; size?: InputMaybe<Scalars["Int"]>; fromIndex?: InputMaybe<Scalars["Int"]> }>
EventListQuery: { __typename?: "Query"; search: { __typename?: "Search"; events: { __typename?: "EventSearchResult"; id: string; numTotalHits: number; hits: { __typename?: "EventSearchResultHit"; id: string; event: { __typename?: "Event"; id: string; audioProxy?: string | null; audioRecordingUrl?: string | null; audioRecordingOffsetMs: number; audioStreamUri?: string | null; connectionStatus: EventConnectionStatus; externalAudioStreamUrl?: string | null; hasPublishedTranscript: boolean; hasTranscript: boolean; eventDate: string; eventType: EventType; isLive: boolean; liveStreamUrl?: string | null; title: string; creator?: { __typename?: "User"; id: string; firstName?: string | null; lastName?: string | null; primaryEmail?: string | null; username: string } | null; primaryCompany?: { __typename?: "Company"; id: string; commonName: string; instruments: { __typename?: "Instrument"; id: string; isPrimary: boolean; quotes: { __typename?: "Quote"; id: string; isPrimary: boolean; localTicker: string; exchange: { __typename?: "Exchange"; id: string; shortName: string; country: { __typename?: "Country"; id: string; countryCode: string } } }[] }[] } | null } }[] } } }

Type declaration

  • Optional __typename?: "Query"
  • search: { __typename?: "Search"; events: { __typename?: "EventSearchResult"; id: string; numTotalHits: number; hits: { __typename?: "EventSearchResultHit"; id: string; event: { __typename?: "Event"; id: string; audioProxy?: string | null; audioRecordingUrl?: string | null; audioRecordingOffsetMs: number; audioStreamUri?: string | null; connectionStatus: EventConnectionStatus; externalAudioStreamUrl?: string | null; hasPublishedTranscript: boolean; hasTranscript: boolean; eventDate: string; eventType: EventType; isLive: boolean; liveStreamUrl?: string | null; title: string; creator?: { __typename?: "User"; id: string; firstName?: string | null; lastName?: string | null; primaryEmail?: string | null; username: string } | null; primaryCompany?: { __typename?: "Company"; id: string; commonName: string; instruments: { __typename?: "Instrument"; id: string; isPrimary: boolean; quotes: { __typename?: "Quote"; id: string; isPrimary: boolean; localTicker: string; exchange: { __typename?: "Exchange"; id: string; shortName: string; country: { __typename?: "Country"; id: string; countryCode: string } } }[] }[] } | null } }[] } }
    • Optional __typename?: "Search"
    • events: { __typename?: "EventSearchResult"; id: string; numTotalHits: number; hits: { __typename?: "EventSearchResultHit"; id: string; event: { __typename?: "Event"; id: string; audioProxy?: string | null; audioRecordingUrl?: string | null; audioRecordingOffsetMs: number; audioStreamUri?: string | null; connectionStatus: EventConnectionStatus; externalAudioStreamUrl?: string | null; hasPublishedTranscript: boolean; hasTranscript: boolean; eventDate: string; eventType: EventType; isLive: boolean; liveStreamUrl?: string | null; title: string; creator?: { __typename?: "User"; id: string; firstName?: string | null; lastName?: string | null; primaryEmail?: string | null; username: string } | null; primaryCompany?: { __typename?: "Company"; id: string; commonName: string; instruments: { __typename?: "Instrument"; id: string; isPrimary: boolean; quotes: { __typename?: "Quote"; id: string; isPrimary: boolean; localTicker: string; exchange: { __typename?: "Exchange"; id: string; shortName: string; country: { __typename?: "Country"; id: string; countryCode: string } } }[] }[] } | null } }[] }
      • Optional __typename?: "EventSearchResult"
      • id: string
      • numTotalHits: number
      • hits: { __typename?: "EventSearchResultHit"; id: string; event: { __typename?: "Event"; id: string; audioProxy?: string | null; audioRecordingUrl?: string | null; audioRecordingOffsetMs: number; audioStreamUri?: string | null; connectionStatus: EventConnectionStatus; externalAudioStreamUrl?: string | null; hasPublishedTranscript: boolean; hasTranscript: boolean; eventDate: string; eventType: EventType; isLive: boolean; liveStreamUrl?: string | null; title: string; creator?: { __typename?: "User"; id: string; firstName?: string | null; lastName?: string | null; primaryEmail?: string | null; username: string } | null; primaryCompany?: { __typename?: "Company"; id: string; commonName: string; instruments: { __typename?: "Instrument"; id: string; isPrimary: boolean; quotes: { __typename?: "Quote"; id: string; isPrimary: boolean; localTicker: string; exchange: { __typename?: "Exchange"; id: string; shortName: string; country: { __typename?: "Country"; id: string; countryCode: string } } }[] }[] } | null } }[]
EventListCurrentUserQueryVariables: Exact<{}>
EventListCurrentUserQuery: { __typename?: "Query"; currentUser: { __typename?: "User"; id: string } }

Type declaration

  • Optional __typename?: "Query"
  • currentUser: { __typename?: "User"; id: string }
    • Optional __typename?: "User"
    • id: string
NewsQueryVariables: Exact<{ filter: ContentFilter }>
NewsQuery: { __typename?: "Query"; content: ({ __typename?: "FilingContent"; id: string; body: string; contentType: ContentType; publishedDate: string; title: string; primaryCompany?: { __typename?: "Company"; id: string; commonName: string; instruments: { __typename?: "Instrument"; id: string; isPrimary: boolean; quotes: { __typename?: "Quote"; id: string; isPrimary: boolean; localTicker: string; exchange: { __typename?: "Exchange"; id: string; shortName: string; country: { __typename?: "Country"; id: string; countryCode: string } } }[] }[] } | null } | { __typename?: "NewsContent"; id: string; body: string; contentType: ContentType; publishedDate: string; title: string; newsSource: { __typename?: "NewsSource"; id: string; name: string }; primaryCompany?: { __typename?: "Company"; id: string; commonName: string; instruments: { __typename?: "Instrument"; id: string; isPrimary: boolean; quotes: { __typename?: "Quote"; id: string; isPrimary: boolean; localTicker: string; exchange: { __typename?: "Exchange"; id: string; shortName: string; country: { __typename?: "Country"; id: string; countryCode: string } } }[] }[] } | null })[] }

Type declaration

  • Optional __typename?: "Query"
  • content: ({ __typename?: "FilingContent"; id: string; body: string; contentType: ContentType; publishedDate: string; title: string; primaryCompany?: { __typename?: "Company"; id: string; commonName: string; instruments: { __typename?: "Instrument"; id: string; isPrimary: boolean; quotes: { __typename?: "Quote"; id: string; isPrimary: boolean; localTicker: string; exchange: { __typename?: "Exchange"; id: string; shortName: string; country: { __typename?: "Country"; id: string; countryCode: string } } }[] }[] } | null } | { __typename?: "NewsContent"; id: string; body: string; contentType: ContentType; publishedDate: string; title: string; newsSource: { __typename?: "NewsSource"; id: string; name: string }; primaryCompany?: { __typename?: "Company"; id: string; commonName: string; instruments: { __typename?: "Instrument"; id: string; isPrimary: boolean; quotes: { __typename?: "Quote"; id: string; isPrimary: boolean; localTicker: string; exchange: { __typename?: "Exchange"; id: string; shortName: string; country: { __typename?: "Country"; id: string; countryCode: string } } }[] }[] } | null })[]
NewsListQueryVariables: Exact<{ filter: ContentSearchFilter; fromIndex?: InputMaybe<Scalars["Int"]>; size?: InputMaybe<Scalars["Int"]> }>
NewsListQuery: { __typename?: "Query"; search: { __typename?: "Search"; content: { __typename?: "ContentSearchResult"; id: string; numTotalHits: number; hits: { __typename?: "ContentSearchResultHit"; id: string; content: { __typename?: "FilingContent"; id: string; contentType: ContentType; publishedDate: string; title: string; primaryCompany?: { __typename?: "Company"; id: string; commonName: string; instruments: { __typename?: "Instrument"; id: string; isPrimary: boolean; quotes: { __typename?: "Quote"; id: string; isPrimary: boolean; localTicker: string; exchange: { __typename?: "Exchange"; id: string; shortName: string; country: { __typename?: "Country"; id: string; countryCode: string } } }[] }[] } | null } | { __typename?: "NewsContent"; id: string; contentType: ContentType; publishedDate: string; title: string; newsSource: { __typename?: "NewsSource"; id: string; name: string }; primaryCompany?: { __typename?: "Company"; id: string; commonName: string; instruments: { __typename?: "Instrument"; id: string; isPrimary: boolean; quotes: { __typename?: "Quote"; id: string; isPrimary: boolean; localTicker: string; exchange: { __typename?: "Exchange"; id: string; shortName: string; country: { __typename?: "Country"; id: string; countryCode: string } } }[] }[] } | null } }[] } } }

Type declaration

  • Optional __typename?: "Query"
  • search: { __typename?: "Search"; content: { __typename?: "ContentSearchResult"; id: string; numTotalHits: number; hits: { __typename?: "ContentSearchResultHit"; id: string; content: { __typename?: "FilingContent"; id: string; contentType: ContentType; publishedDate: string; title: string; primaryCompany?: { __typename?: "Company"; id: string; commonName: string; instruments: { __typename?: "Instrument"; id: string; isPrimary: boolean; quotes: { __typename?: "Quote"; id: string; isPrimary: boolean; localTicker: string; exchange: { __typename?: "Exchange"; id: string; shortName: string; country: { __typename?: "Country"; id: string; countryCode: string } } }[] }[] } | null } | { __typename?: "NewsContent"; id: string; contentType: ContentType; publishedDate: string; title: string; newsSource: { __typename?: "NewsSource"; id: string; name: string }; primaryCompany?: { __typename?: "Company"; id: string; commonName: string; instruments: { __typename?: "Instrument"; id: string; isPrimary: boolean; quotes: { __typename?: "Quote"; id: string; isPrimary: boolean; localTicker: string; exchange: { __typename?: "Exchange"; id: string; shortName: string; country: { __typename?: "Country"; id: string; countryCode: string } } }[] }[] } | null } }[] } }
    • Optional __typename?: "Search"
    • content: { __typename?: "ContentSearchResult"; id: string; numTotalHits: number; hits: { __typename?: "ContentSearchResultHit"; id: string; content: { __typename?: "FilingContent"; id: string; contentType: ContentType; publishedDate: string; title: string; primaryCompany?: { __typename?: "Company"; id: string; commonName: string; instruments: { __typename?: "Instrument"; id: string; isPrimary: boolean; quotes: { __typename?: "Quote"; id: string; isPrimary: boolean; localTicker: string; exchange: { __typename?: "Exchange"; id: string; shortName: string; country: { __typename?: "Country"; id: string; countryCode: string } } }[] }[] } | null } | { __typename?: "NewsContent"; id: string; contentType: ContentType; publishedDate: string; title: string; newsSource: { __typename?: "NewsSource"; id: string; name: string }; primaryCompany?: { __typename?: "Company"; id: string; commonName: string; instruments: { __typename?: "Instrument"; id: string; isPrimary: boolean; quotes: { __typename?: "Quote"; id: string; isPrimary: boolean; localTicker: string; exchange: { __typename?: "Exchange"; id: string; shortName: string; country: { __typename?: "Country"; id: string; countryCode: string } } }[] }[] } | null } }[] }
      • Optional __typename?: "ContentSearchResult"
      • id: string
      • numTotalHits: number
      • hits: { __typename?: "ContentSearchResultHit"; id: string; content: { __typename?: "FilingContent"; id: string; contentType: ContentType; publishedDate: string; title: string; primaryCompany?: { __typename?: "Company"; id: string; commonName: string; instruments: { __typename?: "Instrument"; id: string; isPrimary: boolean; quotes: { __typename?: "Quote"; id: string; isPrimary: boolean; localTicker: string; exchange: { __typename?: "Exchange"; id: string; shortName: string; country: { __typename?: "Country"; id: string; countryCode: string } } }[] }[] } | null } | { __typename?: "NewsContent"; id: string; contentType: ContentType; publishedDate: string; title: string; newsSource: { __typename?: "NewsSource"; id: string; name: string }; primaryCompany?: { __typename?: "Company"; id: string; commonName: string; instruments: { __typename?: "Instrument"; id: string; isPrimary: boolean; quotes: { __typename?: "Quote"; id: string; isPrimary: boolean; localTicker: string; exchange: { __typename?: "Exchange"; id: string; shortName: string; country: { __typename?: "Country"; id: string; countryCode: string } } }[] }[] } | null } }[]
RecordingsQueryVariables: Exact<{ filter?: InputMaybe<PrivateRecordingFilter> }>
RecordingsQuery: { __typename?: "Query"; privateRecordings: { __typename?: "PrivateRecording"; id: string; connectAccessId?: string | null; connectCallerId?: string | null; connectionType: PrConnectionType; connectOffsetSeconds: number; connectPhoneNumber?: string | null; connectPin?: string | null; connectUrl?: string | null; onCompleteEmailCreator: boolean; onConnectDialNumber?: string | null; onFailure: PrOnFailure; onFailureDialNumber?: string | null; onFailureInstructions?: string | null; onFailureSmsNumber?: string | null; scheduledFor: string; smsAlertBeforeCall: boolean; title: string; primaryCompany?: { __typename?: "Company"; id: string; commonName: string; instruments: { __typename?: "Instrument"; id: string; isPrimary: boolean; quotes: { __typename?: "Quote"; id: string; isPrimary: boolean; localTicker: string; exchange: { __typename?: "Exchange"; id: string; shortName: string; country: { __typename?: "Country"; id: string; countryCode: string } } }[] }[] } | null }[] }

Type declaration

  • Optional __typename?: "Query"
  • privateRecordings: { __typename?: "PrivateRecording"; id: string; connectAccessId?: string | null; connectCallerId?: string | null; connectionType: PrConnectionType; connectOffsetSeconds: number; connectPhoneNumber?: string | null; connectPin?: string | null; connectUrl?: string | null; onCompleteEmailCreator: boolean; onConnectDialNumber?: string | null; onFailure: PrOnFailure; onFailureDialNumber?: string | null; onFailureInstructions?: string | null; onFailureSmsNumber?: string | null; scheduledFor: string; smsAlertBeforeCall: boolean; title: string; primaryCompany?: { __typename?: "Company"; id: string; commonName: string; instruments: { __typename?: "Instrument"; id: string; isPrimary: boolean; quotes: { __typename?: "Quote"; id: string; isPrimary: boolean; localTicker: string; exchange: { __typename?: "Exchange"; id: string; shortName: string; country: { __typename?: "Country"; id: string; countryCode: string } } }[] }[] } | null }[]
CreatePrivateRecordingMutationVariables: Exact<{ input: CreatePrivateRecordingInput }>
CreatePrivateRecordingMutation: { __typename?: "Mutation"; createPrivateRecording: { __typename?: "PrivateRecordingResponse"; success: boolean } }

Type declaration

  • Optional __typename?: "Mutation"
  • createPrivateRecording: { __typename?: "PrivateRecordingResponse"; success: boolean }
    • Optional __typename?: "PrivateRecordingResponse"
    • success: boolean
UpdatePrivateRecordingMutationVariables: Exact<{ input: UpdatePrivateRecordingInput }>
UpdatePrivateRecordingMutation: { __typename?: "Mutation"; updatePrivateRecording: { __typename?: "PrivateRecordingResponse"; success: boolean } }

Type declaration

  • Optional __typename?: "Mutation"
  • updatePrivateRecording: { __typename?: "PrivateRecordingResponse"; success: boolean }
    • Optional __typename?: "PrivateRecordingResponse"
    • success: boolean
TranscrippetQueryVariables: Exact<{ transcrippetGuid: Scalars["String"] }>
TranscrippetQuery: { __typename?: "Query"; transcrippet: { __typename?: "Transcrippet"; audioUrl?: string | null; companyId?: string | null; companyLogoUrl?: string | null; companyName?: string | null; companyTicker?: string | null; endMs?: number | null; eventDate: string; eventId: string; eventType: EventType; eventTitle?: string | null; id: string; speakerId?: string | null; speakerName?: string | null; speakerTitle?: string | null; startMs?: number | null; status: TranscrippetStatus; transcript: string; transcriptionAudioOffsetSeconds: number; trimmedAudioUrl?: string | null; wordDurationsMs?: unknown | null; equityPrices?: { __typename?: "TranscrippetEquityPrice"; startIndex: number; prices: { __typename?: "RealtimeTranscrippetPrice"; date: string; price: number; volume: number }[] } | null } }

Type declaration

  • Optional __typename?: "Query"
  • transcrippet: { __typename?: "Transcrippet"; audioUrl?: string | null; companyId?: string | null; companyLogoUrl?: string | null; companyName?: string | null; companyTicker?: string | null; endMs?: number | null; eventDate: string; eventId: string; eventType: EventType; eventTitle?: string | null; id: string; speakerId?: string | null; speakerName?: string | null; speakerTitle?: string | null; startMs?: number | null; status: TranscrippetStatus; transcript: string; transcriptionAudioOffsetSeconds: number; trimmedAudioUrl?: string | null; wordDurationsMs?: unknown | null; equityPrices?: { __typename?: "TranscrippetEquityPrice"; startIndex: number; prices: { __typename?: "RealtimeTranscrippetPrice"; date: string; price: number; volume: number }[] } | null }
    • Optional __typename?: "Transcrippet"
    • Optional audioUrl?: string | null
    • Optional companyId?: string | null
    • Optional companyLogoUrl?: string | null
    • Optional companyName?: string | null
    • Optional companyTicker?: string | null
    • Optional endMs?: number | null
    • eventDate: string
    • eventId: string
    • eventType: EventType
    • Optional eventTitle?: string | null
    • id: string
    • Optional speakerId?: string | null
    • Optional speakerName?: string | null
    • Optional speakerTitle?: string | null
    • Optional startMs?: number | null
    • status: TranscrippetStatus
    • transcript: string
    • transcriptionAudioOffsetSeconds: number
    • Optional trimmedAudioUrl?: string | null
    • Optional wordDurationsMs?: unknown | null
    • Optional equityPrices?: { __typename?: "TranscrippetEquityPrice"; startIndex: number; prices: { __typename?: "RealtimeTranscrippetPrice"; date: string; price: number; volume: number }[] } | null
CurrentUserQueryQueryVariables: Exact<{}>
CurrentUserQueryQuery: { __typename?: "Query"; currentUser: { __typename?: "User"; id: string; apiKey?: string | null } }

Type declaration

  • Optional __typename?: "Query"
  • currentUser: { __typename?: "User"; id: string; apiKey?: string | null }
    • Optional __typename?: "User"
    • id: string
    • Optional apiKey?: string | null
QuotePricesQueryVariables: Exact<{ eventId: Scalars["ID"]; after?: InputMaybe<Scalars["DateTime"]> }>
QuotePricesQuery: { __typename?: "Query"; events: { __typename?: "Event"; id: string; quotePrices: { __typename?: "EventQuotePriceInfo"; id: string; currentDayClosePrice?: number | null; currentDayOpenPrice?: number | null; endPrice?: number | null; previousDayClosePrice?: number | null; startPrice?: number | null; quote: { __typename?: "Quote"; id: string; localTicker: string; exchange: { __typename?: "Exchange"; id: string; shortName: string } }; realtimePrices: { __typename?: "EventQuoteRealtimePrice"; id: string; date: string; price: number; volume: number; priceChangeFromStartValue?: number | null; priceChangeFromStartPercent?: number | null; volumeChangeFromStartValue?: number | null; volumeChangeFromStartPercent?: number | null; volumeChangeFromLastValue?: number | null; volumeChangeFromLastPercent?: number | null }[] }[] }[] }

Type declaration

  • Optional __typename?: "Query"
  • events: { __typename?: "Event"; id: string; quotePrices: { __typename?: "EventQuotePriceInfo"; id: string; currentDayClosePrice?: number | null; currentDayOpenPrice?: number | null; endPrice?: number | null; previousDayClosePrice?: number | null; startPrice?: number | null; quote: { __typename?: "Quote"; id: string; localTicker: string; exchange: { __typename?: "Exchange"; id: string; shortName: string } }; realtimePrices: { __typename?: "EventQuoteRealtimePrice"; id: string; date: string; price: number; volume: number; priceChangeFromStartValue?: number | null; priceChangeFromStartPercent?: number | null; volumeChangeFromStartValue?: number | null; volumeChangeFromStartPercent?: number | null; volumeChangeFromLastValue?: number | null; volumeChangeFromLastPercent?: number | null }[] }[] }[]
ReportEventIssueMutationVariables: Exact<{ input: ReportEventIssueInput }>
ReportEventIssueMutation: { __typename?: "Mutation"; reportEventIssue: { __typename?: "SupportMutationResponse"; success: boolean } }

Type declaration

  • Optional __typename?: "Mutation"
  • reportEventIssue: { __typename?: "SupportMutationResponse"; success: boolean }
    • Optional __typename?: "SupportMutationResponse"
    • success: boolean
EventUpdatesQueryVariables: Exact<{ eventId: Scalars["ID"] }>
EventUpdatesQuery: { __typename?: "Query"; events: { __typename?: "Event"; id: string; audioProxy?: string | null; audioRecordingOffsetMs: number; audioRecordingUrl?: string | null; audioStreamUri?: string | null; connectionStatus: EventConnectionStatus; eventDate: string; externalAudioStreamUrl?: string | null; hasConnectionDetails: boolean; hasPublishedTranscript: boolean; hasTranscript: boolean; isLive: boolean; liveStreamUrl?: string | null; publishedTranscriptExpected: boolean; creator?: { __typename?: "User"; id: string; firstName?: string | null; lastName?: string | null; primaryEmail?: string | null; username: string } | null }[] }

Type declaration

  • Optional __typename?: "Query"
  • events: { __typename?: "Event"; id: string; audioProxy?: string | null; audioRecordingOffsetMs: number; audioRecordingUrl?: string | null; audioStreamUri?: string | null; connectionStatus: EventConnectionStatus; eventDate: string; externalAudioStreamUrl?: string | null; hasConnectionDetails: boolean; hasPublishedTranscript: boolean; hasTranscript: boolean; isLive: boolean; liveStreamUrl?: string | null; publishedTranscriptExpected: boolean; creator?: { __typename?: "User"; id: string; firstName?: string | null; lastName?: string | null; primaryEmail?: string | null; username: string } | null }[]
LatestEventForTickerQueryVariables: Exact<{ filter: LatestEventFilter }>
LatestEventForTickerQuery: { __typename?: "Query"; latestEventForTicker: { __typename?: "Event"; id: string } }

Type declaration

  • Optional __typename?: "Query"
  • latestEventForTicker: { __typename?: "Event"; id: string }
    • Optional __typename?: "Event"
    • id: string
TranscriptQueryVariables: Exact<{ eventId: Scalars["ID"] }>
TranscriptQuery: { __typename?: "Query"; events: { __typename?: "Event"; id: string; audioProxy?: string | null; audioRecordingUrl?: string | null; audioRecordingOffsetMs: number; audioStreamUri?: string | null; connectionStatus: EventConnectionStatus; dialInPhoneNumbers: string[]; dialInPin?: string | null; eventDate: string; eventType: EventType; externalAudioStreamUrl?: string | null; hasConnectionDetails: boolean; hasPublishedTranscript: boolean; hasTranscript: boolean; isLive: boolean; liveStreamUrl?: string | null; publishedTranscriptExpected: boolean; title: string; webcastUrls: string[]; attachments: ({ __typename?: "Attachment"; archivedUrl: string; mimeType: string; title: string; url: string } | null | undefined)[]; creator?: { __typename?: "User"; id: string; firstName?: string | null; lastName?: string | null; primaryEmail?: string | null; username: string } | null; primaryCompany?: { __typename?: "Company"; id: string; commonName: string; instruments: { __typename?: "Instrument"; id: string; isPrimary: boolean; quotes: { __typename?: "Quote"; id: string; isPrimary: boolean; localTicker: string; exchange: { __typename?: "Exchange"; id: string; shortName: string; country: { __typename?: "Country"; id: string; countryCode: string } } }[] }[] } | null; quotePrices: { __typename?: "EventQuotePriceInfo"; currentDayClosePrice?: number | null; currentDayOpenPrice?: number | null; endPrice?: number | null; previousDayClosePrice?: number | null; startPrice?: number | null; quote: { __typename?: "Quote"; id: string; localTicker: string; exchange: { __typename?: "Exchange"; id: string; shortName: string } }; realtimePrices: { __typename?: "EventQuoteRealtimePrice"; id: string; date: string; price: number; priceChangeFromStartPercent?: number | null; priceChangeFromStartValue?: number | null; volume: number; volumeChangeFromLastPercent?: number | null; volumeChangeFromLastValue?: number | null; volumeChangeFromStartPercent?: number | null; volumeChangeFromStartValue?: number | null }[] }[]; summaries: { __typename?: "EventSummarization"; id: string; audioClip?: string | null; created: string; eventId: string; modelType: EventSummarizationModelType; modified?: string | null; priority: number; reviewed?: string | null; summary: string[]; summaryType: EventSummarizationSummaryType; title: string; transcriptVersion: number; videoClip?: string | null }[]; transcripts: { __typename?: "EventTranscript"; id: string; sections: { __typename?: "EventTranscriptSection"; id: string; speakerTurns: { __typename?: "EventTranscriptSpeakerTurn"; id: string; paragraphs: { __typename?: "EventTranscriptParagraph"; id: string; displayTimestamp?: string | null; syncMs?: number | null; syncTimestamp?: string | null; timestamp?: string | null; sentences: { __typename?: "EventTranscriptSentence"; id: string; text: string; sentiment?: { __typename?: "EventTranscriptSentenceSentimentContainer"; id: string; textual?: { __typename?: "EventTranscriptSentenceTextualSentiment"; id: string; basicSentiment: BasicTextualSentiment; overThreshold: boolean } | null } | null }[] }[]; speaker: { __typename?: "EventTranscriptSpeaker"; id: string; identified: boolean; name: string; title?: string | null } }[] }[] }[] }[] }

Type declaration

  • Optional __typename?: "Query"
  • events: { __typename?: "Event"; id: string; audioProxy?: string | null; audioRecordingUrl?: string | null; audioRecordingOffsetMs: number; audioStreamUri?: string | null; connectionStatus: EventConnectionStatus; dialInPhoneNumbers: string[]; dialInPin?: string | null; eventDate: string; eventType: EventType; externalAudioStreamUrl?: string | null; hasConnectionDetails: boolean; hasPublishedTranscript: boolean; hasTranscript: boolean; isLive: boolean; liveStreamUrl?: string | null; publishedTranscriptExpected: boolean; title: string; webcastUrls: string[]; attachments: ({ __typename?: "Attachment"; archivedUrl: string; mimeType: string; title: string; url: string } | null | undefined)[]; creator?: { __typename?: "User"; id: string; firstName?: string | null; lastName?: string | null; primaryEmail?: string | null; username: string } | null; primaryCompany?: { __typename?: "Company"; id: string; commonName: string; instruments: { __typename?: "Instrument"; id: string; isPrimary: boolean; quotes: { __typename?: "Quote"; id: string; isPrimary: boolean; localTicker: string; exchange: { __typename?: "Exchange"; id: string; shortName: string; country: { __typename?: "Country"; id: string; countryCode: string } } }[] }[] } | null; quotePrices: { __typename?: "EventQuotePriceInfo"; currentDayClosePrice?: number | null; currentDayOpenPrice?: number | null; endPrice?: number | null; previousDayClosePrice?: number | null; startPrice?: number | null; quote: { __typename?: "Quote"; id: string; localTicker: string; exchange: { __typename?: "Exchange"; id: string; shortName: string } }; realtimePrices: { __typename?: "EventQuoteRealtimePrice"; id: string; date: string; price: number; priceChangeFromStartPercent?: number | null; priceChangeFromStartValue?: number | null; volume: number; volumeChangeFromLastPercent?: number | null; volumeChangeFromLastValue?: number | null; volumeChangeFromStartPercent?: number | null; volumeChangeFromStartValue?: number | null }[] }[]; summaries: { __typename?: "EventSummarization"; id: string; audioClip?: string | null; created: string; eventId: string; modelType: EventSummarizationModelType; modified?: string | null; priority: number; reviewed?: string | null; summary: string[]; summaryType: EventSummarizationSummaryType; title: string; transcriptVersion: number; videoClip?: string | null }[]; transcripts: { __typename?: "EventTranscript"; id: string; sections: { __typename?: "EventTranscriptSection"; id: string; speakerTurns: { __typename?: "EventTranscriptSpeakerTurn"; id: string; paragraphs: { __typename?: "EventTranscriptParagraph"; id: string; displayTimestamp?: string | null; syncMs?: number | null; syncTimestamp?: string | null; timestamp?: string | null; sentences: { __typename?: "EventTranscriptSentence"; id: string; text: string; sentiment?: { __typename?: "EventTranscriptSentenceSentimentContainer"; id: string; textual?: { __typename?: "EventTranscriptSentenceTextualSentiment"; id: string; basicSentiment: BasicTextualSentiment; overThreshold: boolean } | null } | null }[] }[]; speaker: { __typename?: "EventTranscriptSpeaker"; id: string; identified: boolean; name: string; title?: string | null } }[] }[] }[] }[]
LatestParagraphsQueryVariables: Exact<{ eventId: Scalars["ID"] }>
LatestParagraphsQuery: { __typename?: "Query"; events: { __typename?: "Event"; id: string; transcripts: { __typename?: "EventTranscript"; id: string; latestParagraphs: { __typename?: "EventTranscriptParagraph"; id: string; timestamp?: string | null; displayTimestamp?: string | null; syncTimestamp?: string | null; syncMs?: number | null; sentences: { __typename?: "EventTranscriptSentence"; id: string; text: string }[] }[] }[] }[] }

Type declaration

  • Optional __typename?: "Query"
  • events: { __typename?: "Event"; id: string; transcripts: { __typename?: "EventTranscript"; id: string; latestParagraphs: { __typename?: "EventTranscriptParagraph"; id: string; timestamp?: string | null; displayTimestamp?: string | null; syncTimestamp?: string | null; syncMs?: number | null; sentences: { __typename?: "EventTranscriptSentence"; id: string; text: string }[] }[] }[] }[]

Variables

ChatMessagePromptFragmentFragmentDoc: DocumentNode = ...
ChatMessageResponseFragmentFragmentDoc: DocumentNode = ...
ChatMessageSourceConfirmationFragmentFragmentDoc: DocumentNode = ...
RefreshDocument: DocumentNode = ...
CompanyFilterDocument: DocumentNode = ...
CompanyResolutionDocument: DocumentNode = ...
UpsertPrimaryWatchlistDocument: DocumentNode = ...
UserStatusDocument: DocumentNode = ...
AppConfigDocument: DocumentNode = ...
TrackDocument: DocumentNode = ...
RealtimeCurrentUserDocument: DocumentNode = ...
CreateAblyTokenDocument: DocumentNode = ...
ClearChatSessionSourcesDocument: DocumentNode = ...
CreateChatSessionDocument: DocumentNode = ...
DeleteChatSessionDocument: DocumentNode = ...
UpdateChatSessionDocument: DocumentNode = ...
ChatSessionsDocument: DocumentNode = ...
EventsDocument: DocumentNode = ...
ChatSessionWithMessagesDocument: DocumentNode = ...
ConfirmChatMessageSourceConfirmationDocument: DocumentNode = ...
CreateChatMessagePromptDocument: DocumentNode = ...
ChatSessionsRefetchDocument: DocumentNode = ...
CurrentUserDocument: DocumentNode = ...
LoginDocument: DocumentNode = ...
LoginWithPublicApiKeyDocument: DocumentNode = ...
EventListDocument: DocumentNode = ...
EventListCurrentUserDocument: DocumentNode = ...
NewsDocument: DocumentNode = ...
NewsListDocument: DocumentNode = ...
RecordingsDocument: DocumentNode = ...
CreatePrivateRecordingDocument: DocumentNode = ...
UpdatePrivateRecordingDocument: DocumentNode = ...
TranscrippetDocument: DocumentNode = ...
CurrentUserQueryDocument: DocumentNode = ...
QuotePricesDocument: DocumentNode = ...
ReportEventIssueDocument: DocumentNode = ...
EventUpdatesDocument: DocumentNode = ...
LatestEventForTickerDocument: DocumentNode = ...
TranscriptDocument: DocumentNode = ...
LatestParagraphsDocument: DocumentNode = ...

Generated using TypeDoc