@dvina/sdk 4.0.154 → 4.0.158

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -109,7 +109,7 @@ type AgentScalarWhereInput = {
109
109
  name?: InputMaybe<StringNullableFilter>;
110
110
  updatedAt?: InputMaybe<DateTimeFilter>;
111
111
  };
112
- type AgentStreamEvent = AudioEventOutput | ChatTitleEventOutput | FinalContentEventOutput | MessageEndEventOutput | MessageStartEventOutput | ReasoningEventOutput | StreamableUiDeltaEventOutput | TextBlockEventOutput | TextDeltaEventOutput | ToolInputDeltaEventOutput | ToolResultEventOutput | ToolStartEventOutput;
112
+ type AgentStreamEvent = AudioEventOutput | ChatTitleEventOutput | FinalContentEventOutput | MessageEndEventOutput | MessageStartEventOutput | ReasoningEventOutput | TextBlockEventOutput | TextDeltaEventOutput | ToolInputDeltaEventOutput | ToolResultEventOutput | ToolStartEventOutput | WidgetBlockCompleteEventOutput | WidgetBlockErrorEventOutput | WidgetBlockStartEventOutput | WidgetHtmlDeltaEventOutput;
113
113
  type AgentUpdateInput = {
114
114
  emoji?: InputMaybe<Scalars['String']>;
115
115
  id?: InputMaybe<Scalars['String']>;
@@ -1725,6 +1725,10 @@ type FileUpsertWithoutArtifactInput = {
1725
1725
  update: FileUpdateWithoutArtifactInput;
1726
1726
  where?: InputMaybe<FileWhereInput>;
1727
1727
  };
1728
+ declare enum FileUrlVariant {
1729
+ Original = "Original",
1730
+ Thumbnail = "Thumbnail"
1731
+ }
1728
1732
  type FileWhereInput = {
1729
1733
  AND?: InputMaybe<Array<FileWhereInput>>;
1730
1734
  NOT?: InputMaybe<Array<FileWhereInput>>;
@@ -3235,13 +3239,6 @@ type StreamMessageOutput = {
3235
3239
  originMeta?: Maybe<Scalars['JSON']>;
3236
3240
  sentAt: Scalars['DateTime'];
3237
3241
  };
3238
- type StreamableUiDeltaEventOutput = {
3239
- __typename?: 'StreamableUiDeltaEventOutput';
3240
- delta: Scalars['String'];
3241
- index: Scalars['Int'];
3242
- toolCallId: Scalars['String'];
3243
- type: Scalars['String'];
3244
- };
3245
3242
  type StringFilter = {
3246
3243
  contains?: InputMaybe<Scalars['String']>;
3247
3244
  endsWith?: InputMaybe<Scalars['String']>;
@@ -3499,6 +3496,35 @@ type UsageMetaOutput = {
3499
3496
  promptTokens: Scalars['Int'];
3500
3497
  totalTokens: Scalars['Int'];
3501
3498
  };
3499
+ type WidgetBlockCompleteEventOutput = {
3500
+ __typename?: 'WidgetBlockCompleteEventOutput';
3501
+ index: Scalars['Int'];
3502
+ summary?: Maybe<Scalars['String']>;
3503
+ toolCallId: Scalars['String'];
3504
+ type: Scalars['String'];
3505
+ };
3506
+ type WidgetBlockErrorEventOutput = {
3507
+ __typename?: 'WidgetBlockErrorEventOutput';
3508
+ errorMessage: Scalars['String'];
3509
+ index: Scalars['Int'];
3510
+ toolCallId: Scalars['String'];
3511
+ type: Scalars['String'];
3512
+ };
3513
+ type WidgetBlockStartEventOutput = {
3514
+ __typename?: 'WidgetBlockStartEventOutput';
3515
+ index: Scalars['Int'];
3516
+ summary?: Maybe<Scalars['String']>;
3517
+ toolCallId: Scalars['String'];
3518
+ type: Scalars['String'];
3519
+ };
3520
+ type WidgetHtmlDeltaEventOutput = {
3521
+ __typename?: 'WidgetHtmlDeltaEventOutput';
3522
+ delta: Scalars['String'];
3523
+ index: Scalars['Int'];
3524
+ summary?: Maybe<Scalars['String']>;
3525
+ toolCallId: Scalars['String'];
3526
+ type: Scalars['String'];
3527
+ };
3502
3528
  type ActionFragment = {
3503
3529
  __typename: 'Action';
3504
3530
  chatMessageId?: string | null;
@@ -4949,12 +4975,6 @@ type StreamEventSchemaAnchorFragment = {
4949
4975
  __typename: 'ReasoningEventOutput';
4950
4976
  delta: string;
4951
4977
  type: string;
4952
- } | {
4953
- __typename: 'StreamableUiDeltaEventOutput';
4954
- delta: string;
4955
- index: number;
4956
- toolCallId: string;
4957
- type: string;
4958
4978
  } | {
4959
4979
  __typename: 'TextBlockEventOutput';
4960
4980
  text: string;
@@ -4993,6 +5013,31 @@ type StreamEventSchemaAnchorFragment = {
4993
5013
  toolCallId: string;
4994
5014
  toolKit: string;
4995
5015
  type: string;
5016
+ } | {
5017
+ __typename: 'WidgetBlockCompleteEventOutput';
5018
+ index: number;
5019
+ summary?: string | null;
5020
+ toolCallId: string;
5021
+ type: string;
5022
+ } | {
5023
+ __typename: 'WidgetBlockErrorEventOutput';
5024
+ errorMessage: string;
5025
+ index: number;
5026
+ toolCallId: string;
5027
+ type: string;
5028
+ } | {
5029
+ __typename: 'WidgetBlockStartEventOutput';
5030
+ index: number;
5031
+ summary?: string | null;
5032
+ toolCallId: string;
5033
+ type: string;
5034
+ } | {
5035
+ __typename: 'WidgetHtmlDeltaEventOutput';
5036
+ delta: string;
5037
+ index: number;
5038
+ summary?: string | null;
5039
+ toolCallId: string;
5040
+ type: string;
4996
5041
  };
4997
5042
  };
4998
5043
  type StreamMessageContentOutputFragment = {
@@ -5020,13 +5065,6 @@ type StreamMessageOutputFragment = {
5020
5065
  type: ContentBlockType;
5021
5066
  }> | null;
5022
5067
  };
5023
- type StreamableUiDeltaEventOutputFragment = {
5024
- __typename: 'StreamableUiDeltaEventOutput';
5025
- delta: string;
5026
- index: number;
5027
- toolCallId: string;
5028
- type: string;
5029
- };
5030
5068
  type SyncEventFragment = {
5031
5069
  __typename: 'SyncEvent';
5032
5070
  createdAt: string;
@@ -5311,6 +5349,35 @@ type UserSkillFolderModelFragment = {
5311
5349
  path: string;
5312
5350
  updatedAt: string;
5313
5351
  };
5352
+ type WidgetBlockCompleteEventOutputFragment = {
5353
+ __typename: 'WidgetBlockCompleteEventOutput';
5354
+ index: number;
5355
+ summary?: string | null;
5356
+ toolCallId: string;
5357
+ type: string;
5358
+ };
5359
+ type WidgetBlockErrorEventOutputFragment = {
5360
+ __typename: 'WidgetBlockErrorEventOutput';
5361
+ errorMessage: string;
5362
+ index: number;
5363
+ toolCallId: string;
5364
+ type: string;
5365
+ };
5366
+ type WidgetBlockStartEventOutputFragment = {
5367
+ __typename: 'WidgetBlockStartEventOutput';
5368
+ index: number;
5369
+ summary?: string | null;
5370
+ toolCallId: string;
5371
+ type: string;
5372
+ };
5373
+ type WidgetHtmlDeltaEventOutputFragment = {
5374
+ __typename: 'WidgetHtmlDeltaEventOutput';
5375
+ delta: string;
5376
+ index: number;
5377
+ summary?: string | null;
5378
+ toolCallId: string;
5379
+ type: string;
5380
+ };
5314
5381
  type WindowDetailTypeFragment = {
5315
5382
  __typename: 'WindowDetailType';
5316
5383
  cost: number;
@@ -5826,6 +5893,7 @@ type FileMetaQueryVariables = Exact<{
5826
5893
  }>;
5827
5894
  type FileUrlsQueryVariables = Exact<{
5828
5895
  ids: Array<Scalars['String']> | Scalars['String'];
5896
+ variant?: InputMaybe<FileUrlVariant>;
5829
5897
  }>;
5830
5898
  type FindFitTierQueryVariables = Exact<{
5831
5899
  property: Scalars['String'];
@@ -6191,4 +6259,4 @@ interface DvinaClientResult {
6191
6259
  */
6192
6260
  declare function createDvinaClient(options: DvinaSdkOptions): DvinaClientResult;
6193
6261
 
6194
- export { type Artifact_Message_ContentsQueryVariables as $, type AbortChatMutationVariables as A, type ChatMessage_FeedbackQueryVariables as B, type ChatMessageQueryVariables as C, type DvinaSdkOptions as D, FeedbackType as E, type FileFragment as F, type FeedbackFragment as G, type Insight_ReportsQueryVariables as H, type InsightFragment as I, type Report_InsightsQueryVariables as J, type InsightConnectionFragment as K, type Report_LayoutQueryVariables as L, type ReportFragment as M, type ReportConnectionFragment as N, type Insight_ThumbnailFileQueryVariables as O, Presentation as P, type Chat_MessagesQueryVariables as Q, ReportMemberSize as R, type ChatMessageConnectionFragment as S, type ReportQueryVariables as T, type ArtifactConnectionFragment as U, type AddInsightToReportMutationVariables as V, type AgentQueryVariables as W, type AgentsQueryVariables as X, type ArtifactQueryVariables as Y, type Artifact_Chat_InsightQueryVariables as Z, type Artifact_Message_ChatQueryVariables as _, ActionType as a, type CreateReportMutationVariables as a$, type Artifact_Message_FeedbackQueryVariables as a0, type ArtifactsQueryVariables as a1, type AudioEventOutputFragment as a2, type CancelOauthFlowMutationVariables as a3, type CancelWorkspaceDeletionMutationVariables as a4, type CandidateFragment as a5, type CandidateEvidenceFragment as a6, ChatSourceProviderEnum as a7, type ImportedChatSummaryOutputFragment as a8, type ChatImportExecuteOutputFragment as a9, TableStatus as aA, type TableFragment as aB, type Table_DatabaseQueryVariables as aC, type Table_DocumentQueryVariables as aD, type DocumentFragment as aE, type Document_ContentsQueryVariables as aF, type DocumentContentFragment as aG, type DocumentQueryVariables as aH, type Document_FileQueryVariables as aI, type Document_FormatQueryVariables as aJ, type DocumentFormatFragment as aK, type DocumentCatalogQueryVariables as aL, type DocumentCatalogFragment as aM, type DocumentCatalog_FormatQueryVariables as aN, type Document_TablesQueryVariables as aO, type Table_FromRelationsQueryVariables as aP, RelationType as aQ, type RelationFragment as aR, type TableQueryVariables as aS, type Table_ToRelationsQueryVariables as aT, type TableConnectionFragment as aU, type CreateDocumentMutationVariables as aV, type CreateFeedbackMutationVariables as aW, type CreateFolderMutationVariables as aX, type FolderFragment as aY, type CreateInsightMutationVariables as aZ, type CreateIntegrationMutationVariables as a_, ChatSourceImportFidelityEnum as aa, ChatSourceImportModeEnum as ab, type ChatImportPreviewOutputFragment as ac, type ChatMessage_Chat_InsightQueryVariables as ad, type ChatMessagesQueryVariables as ae, type ChatQueryVariables as af, type ChatTitleEventOutputFragment as ag, type Chat_Insight_ReportMembersQueryVariables as ah, type Chat_Insight_ThumbnailFileQueryVariables as ai, type ChatsQueryVariables as aj, type ConnectIntegrationMutationVariables as ak, type CreateIntegrationOutputFragment as al, type ConsumePulseEventsMutationVariables as am, type ContentMaskFragment as an, type ContinueImportedChatMutationVariables as ao, type ContinueInterpretationMutationVariables as ap, type CreateAgentMutationVariables as aq, type CreateChatMutationVariables as ar, type CreateDatabaseMutationVariables as as, type DatabaseFragment as at, type Database_EngineQueryVariables as au, type DatabaseEngineFragment as av, type DatabaseCatalogQueryVariables as aw, type DatabaseCatalogFragment as ax, type DatabaseCatalog_EngineQueryVariables as ay, type Database_TablesQueryVariables as az, type ActionFragment as b, type UpdateAgentMutationVariables as b$, type CreateTableMutationVariables as b0, type CreateUserSkillFileMutationVariables as b1, type UserSkillFileModelFragment as b2, type CreateUserSkillFolderMutationVariables as b3, type UserSkillFolderModelFragment as b4, type CubeModelFragment as b5, type DatabaseCatalogConnectionFragment as b6, type DatabaseCatalogsQueryVariables as b7, type DatabaseConnectionFragment as b8, type DatabaseQueryVariables as b9, type Integration_ProviderQueryVariables as bA, type IntegrationProviderFragment as bB, type IntegrationCatalogQueryVariables as bC, type IntegrationCatalogFragment as bD, type IntegrationCatalog_ProviderQueryVariables as bE, type DocumentCatalogConnectionFragment as bF, type DocumentCatalogsQueryVariables as bG, type DocumentConnectionFragment as bH, type Document_Format_CatalogQueryVariables as bI, type DocumentsQueryVariables as bJ, type ChatStreamClient as bK, type ExecuteChatImportMutationVariables as bL, type GenerateUploadUriMutationVariables as bM, type FileModelFragment as bN, type PreviewChatImportMutationVariables as bO, type ReanalyzeDocumentMutationVariables as bP, type RefineMindInstructionMutationVariables as bQ, type RefreshDatabaseSchemaMutationVariables as bR, type RefreshInsightMutationVariables as bS, type ReinterpretSourceMutationVariables as bT, type ReinterpretSourcesOfuserMutationVariables as bU, type RelocateInsightMutationVariables as bV, type RemoveInsightFromReportMutationVariables as bW, type ResolvePulseEventMutationVariables as bX, type WorkspaceDeleteScheduleFragment as bY, type SendMessageMutationVariables as bZ, type SetDatabasePrimaryKeyMutationVariables as b_, type DatabaseSchemaQueryVariables as ba, type Database_Engine_CatalogQueryVariables as bb, type DatabasesQueryVariables as bc, type DeepAnalysisUsageFragment as bd, type DeleteAgentMutationVariables as be, type DeleteArtifactMutationVariables as bf, type DeleteChatMutationVariables as bg, type DeleteDatabaseMutationVariables as bh, type DeleteDocumentMutationVariables as bi, type DeleteFolderMutationVariables as bj, type DeleteInsightMutationVariables as bk, type DeleteInsightsMutationVariables as bl, type DeleteIntegrationMutationVariables as bm, type DeleteReportMutationVariables as bn, type DeleteTableMutationVariables as bo, type DeleteUserSkillFileMutationVariables as bp, type DeleteUserSkillFolderMutationVariables as bq, type DevAccessTokenOutputFragment as br, type DisconnectIntegrationMutationVariables as bs, type DismissPulseEventMutationVariables as bt, PulseEventKind as bu, PulseEventPriority as bv, type PulseEventFragment as bw, type PulseEvent_IntegrationQueryVariables as bx, IntegrationStatus as by, type IntegrationFragment as bz, ChatMessageFromEnum as c, type InsightsQueryVariables as c$, type UpdateArtifactNameMutationVariables as c0, type UpdateChatMutationVariables as c1, type UpdateDatabaseMutationVariables as c2, type UpdateDocumentMutationVariables as c3, type UpdateFolderMutationVariables as c4, type UpdateInsightMutationVariables as c5, type UpdateInsightInReportMutationVariables as c6, type UpdateInsightThumbnailMutationVariables as c7, type UpdateInterpMutationVariables as c8, AiResourceType as c9, type FeedItem_DataQueryVariables as cA, type FeedItemsQueryVariables as cB, type FeedConnectionFragment as cC, type FileQueryVariables as cD, type FileMetaQueryVariables as cE, type FileUrlsQueryVariables as cF, type ResolvedFileUrlFragment as cG, type FindFitTierQueryVariables as cH, EntitlementTier as cI, type FolderQueryVariables as cJ, type FoldersQueryVariables as cK, type FolderConnectionFragment as cL, type GetCapabilityQueryVariables as cM, type GetDevAccessTokenQueryVariables as cN, type GetLimitQueryVariables as cO, type GetRemainingQueryVariables as cP, type GetTokenUsageByModelQueryVariables as cQ, type ModelTokenUsageFragment as cR, type GetTokenUsageHistoryQueryVariables as cS, type GetTokenUsageStatusQueryVariables as cT, TokenUsageLimit as cU, ActiveWindowType as cV, type WindowDetailTypeFragment as cW, type UsageWindowsStatusTypeFragment as cX, type UsageStatusFragment as cY, type GetTokenUsageStatus_WindowsQueryVariables as cZ, type GetUsageQueryVariables as c_, InterpretationType as ca, type InterpretationFragment as cb, type UpdateLiveContextMutationVariables as cc, LiveContextStatus as cd, type LiveContextFragment as ce, type UpdatePulseTriggerMutationVariables as cf, type PulseTriggerSettingModelFragment as cg, type UpdateReportMutationVariables as ch, type UpdateTableMutationVariables as ci, type UpdateUserSkillFileMutationVariables as cj, type UpdateUserSkillFolderMutationVariables as ck, type ExportQueryVariables as cl, type ExportWithInsightIdQueryVariables as cm, type FeedItemQueryVariables as cn, FeedItemKind as co, type FeedArtifactDataFragment as cp, type FeedDatabaseDataFragment as cq, type FeedDocumentDataFragment as cr, type FeedInsightDataFragment as cs, type FeedIntegrationDataFragment as ct, type FeedLiveContextDataFragment as cu, type FeedPulseDataFragment as cv, type FeedItemFragment as cw, type FeedItem_ActionQueryVariables as cx, FeedActionType as cy, type FeedSendMessageActionFragment as cz, type ChatMessageFragment as d, type ScheduleWorkspaceDeletionMutationVariables as d$, type IntegrationQueryVariables as d0, type IntegrationCatalogToolsQueryVariables as d1, type IntegrationCatalogsQueryVariables as d2, type IntegrationCatalogConnectionFragment as d3, type IntegrationsQueryVariables as d4, type IntegrationConnectionFragment as d5, type InterpretationsQueryVariables as d6, type InterpretationConnectionFragment as d7, type NotificationQueryVariables as d8, NotificationCategory as d9, McpAuthPhase as dA, type McpAuthUpdateModelFragment as dB, type TokenUsageUpdatesSubscriptionVariables as dC, type EvidenceFragment as dD, type FailedSyncEventIngestionFragment as dE, type FeedItemGeneratedFragment as dF, type StreamMessageContentOutputFragment as dG, type StreamMessageOutputFragment as dH, type UsageMetaOutputFragment as dI, type FinalContentEventOutputFragment as dJ, type GetTokenUsageStatus_Windows_DayQueryVariables as dK, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as dL, type GetTokenUsageStatus_Windows_MonthQueryVariables as dM, type GetTokenUsageStatus_Windows_WeekQueryVariables as dN, type InferenceRequestAuditFragment as dO, type Integration_Provider_CatalogQueryVariables as dP, type InvocationFragment as dQ, type McpClientInformationFragment as dR, type McpCodeVerifierFragment as dS, type McpServerFragment as dT, type McpTokensFragment as dU, type McpToolFragment as dV, type MessageEndEventOutputFragment as dW, type MessageStartEventOutputFragment as dX, type PulseEvent_Integration_ProviderQueryVariables as dY, type ReasoningEventOutputFragment as dZ, type ResetWorkspaceMutationVariables as d_, NotificationPriority as da, NotificationStatus as db, type NotificationFragment as dc, type NotificationsQueryVariables as dd, type NotificationConnectionFragment as de, type NotificationsByReferenceQueryVariables as df, type PrivacyStatsQueryVariables as dg, type PrivacyStatsFragment as dh, type PulseAppSummaryQueryVariables as di, type PulseAppSummaryModelFragment as dj, type PulseEventQueryVariables as dk, type PulseEventsQueryVariables as dl, type PulseEventConnectionFragment as dm, type PulseTriggerSettingsQueryVariables as dn, type QueryQueryVariables as dp, type QueryWithInsightIdQueryVariables as dq, type QueryWithMessageIdQueryVariables as dr, type ReportsQueryVariables as ds, type TablesQueryVariables as dt, type UserSkillFileQueryVariables as du, type UserSkillFilesQueryVariables as dv, type UserSkillFolderQueryVariables as dw, type UserSkillFoldersQueryVariables as dx, type WorkspaceDeletionScheduleQueryVariables as dy, type McpAuthUpdatesSubscriptionVariables as dz, type ChatMessage_ArtifactsQueryVariables as e, type StreamableUiDeltaEventOutputFragment as e0, type TextBlockEventOutputFragment as e1, type TextDeltaEventOutputFragment as e2, type ToolInputDeltaEventOutputFragment as e3, type ToolResultArtifactOutputFragment as e4, type ToolResultEventOutputFragment as e5, type ToolStartEventOutputFragment as e6, type StreamEventSchemaAnchorFragment as e7, type SyncEventFragment as e8, type SyncEventCursorFragment as e9, FeedItemOrderByRelevanceFieldEnum as eA, FeedbackOrderByRelevanceFieldEnum as eB, FileOrderByRelevanceFieldEnum as eC, FolderOrderByRelevanceFieldEnum as eD, InsightOrderByRelevanceFieldEnum as eE, IntegrationCatalogOrderByRelevanceFieldEnum as eF, IntegrationOrderByRelevanceFieldEnum as eG, InterpretationOrderByRelevanceFieldEnum as eH, LimitType as eI, NotificationOrderByRelevanceFieldEnum as eJ, NullsOrder as eK, PulseEventOrderByRelevanceFieldEnum as eL, QueryMode as eM, ReportOrderByRelevanceFieldEnum as eN, SendMessageModel as eO, SortOrder as eP, TableOrderByRelevanceFieldEnum as eQ, UsageHistoryGranularity as eR, createChatStreamClient as eS, createDvinaClient as eT, type Table_Database_EngineQueryVariables as ea, type Table_Document_ContentsQueryVariables as eb, type Table_Document_FileQueryVariables as ec, type Table_Document_FormatQueryVariables as ed, type TokenUsageFragment as ee, type UserSkillFileFragment as ef, type UserSkillFolderFragment as eg, type ActiveChatStreamClient as eh, type ActiveChatStreamListener as ei, type ActiveChatStreamListenerHandlers as ej, AgentOrderByRelevanceFieldEnum as ek, ArtifactOrderByRelevanceFieldEnum as el, CapabilityType as em, ChatMessageOrderByRelevanceFieldEnum as en, ChatOrderByRelevanceFieldEnum as eo, type ChatStreamClientOptions as ep, type ChatStreamEvent as eq, type ChatStreamListener as er, type ChatStreamListenerHandlers as es, DatabaseCatalogOrderByRelevanceFieldEnum as et, DatabaseOrderByRelevanceFieldEnum as eu, DocumentCatalogOrderByRelevanceFieldEnum as ev, DocumentOrderByRelevanceFieldEnum as ew, type DvinaSdkBaseOptions as ex, type DvinaSdkCallbackOptions as ey, type DvinaSdkTokenOptions as ez, ArtifactKind as f, type ArtifactFragment as g, type Artifact_ChatQueryVariables as h, type ChatFragment as i, type Chat_AgentsQueryVariables as j, type AgentFragment as k, type Agent_ChatsQueryVariables as l, type ChatConnectionFragment as m, type AgentConnectionFragment as n, type Chat_ArtifactsQueryVariables as o, type Chat_InsightQueryVariables as p, type Insight_ChatQueryVariables as q, type Insight_ReportMembersQueryVariables as r, type ReportMemberFragment as s, type InsightQueryVariables as t, type Artifact_FileQueryVariables as u, type Artifact_MessageQueryVariables as v, type ChatMessage_ChatQueryVariables as w, type ChatMessage_ContentsQueryVariables as x, ContentBlockType as y, type ContentBlockFragment as z };
6262
+ export { type Artifact_Message_ContentsQueryVariables as $, type AbortChatMutationVariables as A, type ChatMessage_FeedbackQueryVariables as B, type ChatMessageQueryVariables as C, type DvinaSdkOptions as D, FeedbackType as E, type FileFragment as F, type FeedbackFragment as G, type Insight_ReportsQueryVariables as H, type InsightFragment as I, type Report_InsightsQueryVariables as J, type InsightConnectionFragment as K, type Report_LayoutQueryVariables as L, type ReportFragment as M, type ReportConnectionFragment as N, type Insight_ThumbnailFileQueryVariables as O, Presentation as P, type Chat_MessagesQueryVariables as Q, ReportMemberSize as R, type ChatMessageConnectionFragment as S, type ReportQueryVariables as T, type ArtifactConnectionFragment as U, type AddInsightToReportMutationVariables as V, type AgentQueryVariables as W, type AgentsQueryVariables as X, type ArtifactQueryVariables as Y, type Artifact_Chat_InsightQueryVariables as Z, type Artifact_Message_ChatQueryVariables as _, ActionType as a, type CreateReportMutationVariables as a$, type Artifact_Message_FeedbackQueryVariables as a0, type ArtifactsQueryVariables as a1, type AudioEventOutputFragment as a2, type CancelOauthFlowMutationVariables as a3, type CancelWorkspaceDeletionMutationVariables as a4, type CandidateFragment as a5, type CandidateEvidenceFragment as a6, ChatSourceProviderEnum as a7, type ImportedChatSummaryOutputFragment as a8, type ChatImportExecuteOutputFragment as a9, TableStatus as aA, type TableFragment as aB, type Table_DatabaseQueryVariables as aC, type Table_DocumentQueryVariables as aD, type DocumentFragment as aE, type Document_ContentsQueryVariables as aF, type DocumentContentFragment as aG, type DocumentQueryVariables as aH, type Document_FileQueryVariables as aI, type Document_FormatQueryVariables as aJ, type DocumentFormatFragment as aK, type DocumentCatalogQueryVariables as aL, type DocumentCatalogFragment as aM, type DocumentCatalog_FormatQueryVariables as aN, type Document_TablesQueryVariables as aO, type Table_FromRelationsQueryVariables as aP, RelationType as aQ, type RelationFragment as aR, type TableQueryVariables as aS, type Table_ToRelationsQueryVariables as aT, type TableConnectionFragment as aU, type CreateDocumentMutationVariables as aV, type CreateFeedbackMutationVariables as aW, type CreateFolderMutationVariables as aX, type FolderFragment as aY, type CreateInsightMutationVariables as aZ, type CreateIntegrationMutationVariables as a_, ChatSourceImportFidelityEnum as aa, ChatSourceImportModeEnum as ab, type ChatImportPreviewOutputFragment as ac, type ChatMessage_Chat_InsightQueryVariables as ad, type ChatMessagesQueryVariables as ae, type ChatQueryVariables as af, type ChatTitleEventOutputFragment as ag, type Chat_Insight_ReportMembersQueryVariables as ah, type Chat_Insight_ThumbnailFileQueryVariables as ai, type ChatsQueryVariables as aj, type ConnectIntegrationMutationVariables as ak, type CreateIntegrationOutputFragment as al, type ConsumePulseEventsMutationVariables as am, type ContentMaskFragment as an, type ContinueImportedChatMutationVariables as ao, type ContinueInterpretationMutationVariables as ap, type CreateAgentMutationVariables as aq, type CreateChatMutationVariables as ar, type CreateDatabaseMutationVariables as as, type DatabaseFragment as at, type Database_EngineQueryVariables as au, type DatabaseEngineFragment as av, type DatabaseCatalogQueryVariables as aw, type DatabaseCatalogFragment as ax, type DatabaseCatalog_EngineQueryVariables as ay, type Database_TablesQueryVariables as az, type ActionFragment as b, type UpdateAgentMutationVariables as b$, type CreateTableMutationVariables as b0, type CreateUserSkillFileMutationVariables as b1, type UserSkillFileModelFragment as b2, type CreateUserSkillFolderMutationVariables as b3, type UserSkillFolderModelFragment as b4, type CubeModelFragment as b5, type DatabaseCatalogConnectionFragment as b6, type DatabaseCatalogsQueryVariables as b7, type DatabaseConnectionFragment as b8, type DatabaseQueryVariables as b9, type Integration_ProviderQueryVariables as bA, type IntegrationProviderFragment as bB, type IntegrationCatalogQueryVariables as bC, type IntegrationCatalogFragment as bD, type IntegrationCatalog_ProviderQueryVariables as bE, type DocumentCatalogConnectionFragment as bF, type DocumentCatalogsQueryVariables as bG, type DocumentConnectionFragment as bH, type Document_Format_CatalogQueryVariables as bI, type DocumentsQueryVariables as bJ, type ChatStreamClient as bK, type ExecuteChatImportMutationVariables as bL, type GenerateUploadUriMutationVariables as bM, type FileModelFragment as bN, type PreviewChatImportMutationVariables as bO, type ReanalyzeDocumentMutationVariables as bP, type RefineMindInstructionMutationVariables as bQ, type RefreshDatabaseSchemaMutationVariables as bR, type RefreshInsightMutationVariables as bS, type ReinterpretSourceMutationVariables as bT, type ReinterpretSourcesOfuserMutationVariables as bU, type RelocateInsightMutationVariables as bV, type RemoveInsightFromReportMutationVariables as bW, type ResolvePulseEventMutationVariables as bX, type WorkspaceDeleteScheduleFragment as bY, type SendMessageMutationVariables as bZ, type SetDatabasePrimaryKeyMutationVariables as b_, type DatabaseSchemaQueryVariables as ba, type Database_Engine_CatalogQueryVariables as bb, type DatabasesQueryVariables as bc, type DeepAnalysisUsageFragment as bd, type DeleteAgentMutationVariables as be, type DeleteArtifactMutationVariables as bf, type DeleteChatMutationVariables as bg, type DeleteDatabaseMutationVariables as bh, type DeleteDocumentMutationVariables as bi, type DeleteFolderMutationVariables as bj, type DeleteInsightMutationVariables as bk, type DeleteInsightsMutationVariables as bl, type DeleteIntegrationMutationVariables as bm, type DeleteReportMutationVariables as bn, type DeleteTableMutationVariables as bo, type DeleteUserSkillFileMutationVariables as bp, type DeleteUserSkillFolderMutationVariables as bq, type DevAccessTokenOutputFragment as br, type DisconnectIntegrationMutationVariables as bs, type DismissPulseEventMutationVariables as bt, PulseEventKind as bu, PulseEventPriority as bv, type PulseEventFragment as bw, type PulseEvent_IntegrationQueryVariables as bx, IntegrationStatus as by, type IntegrationFragment as bz, ChatMessageFromEnum as c, type InsightsQueryVariables as c$, type UpdateArtifactNameMutationVariables as c0, type UpdateChatMutationVariables as c1, type UpdateDatabaseMutationVariables as c2, type UpdateDocumentMutationVariables as c3, type UpdateFolderMutationVariables as c4, type UpdateInsightMutationVariables as c5, type UpdateInsightInReportMutationVariables as c6, type UpdateInsightThumbnailMutationVariables as c7, type UpdateInterpMutationVariables as c8, AiResourceType as c9, type FeedItem_DataQueryVariables as cA, type FeedItemsQueryVariables as cB, type FeedConnectionFragment as cC, type FileQueryVariables as cD, type FileMetaQueryVariables as cE, type FileUrlsQueryVariables as cF, type ResolvedFileUrlFragment as cG, type FindFitTierQueryVariables as cH, EntitlementTier as cI, type FolderQueryVariables as cJ, type FoldersQueryVariables as cK, type FolderConnectionFragment as cL, type GetCapabilityQueryVariables as cM, type GetDevAccessTokenQueryVariables as cN, type GetLimitQueryVariables as cO, type GetRemainingQueryVariables as cP, type GetTokenUsageByModelQueryVariables as cQ, type ModelTokenUsageFragment as cR, type GetTokenUsageHistoryQueryVariables as cS, type GetTokenUsageStatusQueryVariables as cT, TokenUsageLimit as cU, ActiveWindowType as cV, type WindowDetailTypeFragment as cW, type UsageWindowsStatusTypeFragment as cX, type UsageStatusFragment as cY, type GetTokenUsageStatus_WindowsQueryVariables as cZ, type GetUsageQueryVariables as c_, InterpretationType as ca, type InterpretationFragment as cb, type UpdateLiveContextMutationVariables as cc, LiveContextStatus as cd, type LiveContextFragment as ce, type UpdatePulseTriggerMutationVariables as cf, type PulseTriggerSettingModelFragment as cg, type UpdateReportMutationVariables as ch, type UpdateTableMutationVariables as ci, type UpdateUserSkillFileMutationVariables as cj, type UpdateUserSkillFolderMutationVariables as ck, type ExportQueryVariables as cl, type ExportWithInsightIdQueryVariables as cm, type FeedItemQueryVariables as cn, FeedItemKind as co, type FeedArtifactDataFragment as cp, type FeedDatabaseDataFragment as cq, type FeedDocumentDataFragment as cr, type FeedInsightDataFragment as cs, type FeedIntegrationDataFragment as ct, type FeedLiveContextDataFragment as cu, type FeedPulseDataFragment as cv, type FeedItemFragment as cw, type FeedItem_ActionQueryVariables as cx, FeedActionType as cy, type FeedSendMessageActionFragment as cz, type ChatMessageFragment as d, type ScheduleWorkspaceDeletionMutationVariables as d$, type IntegrationQueryVariables as d0, type IntegrationCatalogToolsQueryVariables as d1, type IntegrationCatalogsQueryVariables as d2, type IntegrationCatalogConnectionFragment as d3, type IntegrationsQueryVariables as d4, type IntegrationConnectionFragment as d5, type InterpretationsQueryVariables as d6, type InterpretationConnectionFragment as d7, type NotificationQueryVariables as d8, NotificationCategory as d9, McpAuthPhase as dA, type McpAuthUpdateModelFragment as dB, type TokenUsageUpdatesSubscriptionVariables as dC, type EvidenceFragment as dD, type FailedSyncEventIngestionFragment as dE, type FeedItemGeneratedFragment as dF, type StreamMessageContentOutputFragment as dG, type StreamMessageOutputFragment as dH, type UsageMetaOutputFragment as dI, type FinalContentEventOutputFragment as dJ, type GetTokenUsageStatus_Windows_DayQueryVariables as dK, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as dL, type GetTokenUsageStatus_Windows_MonthQueryVariables as dM, type GetTokenUsageStatus_Windows_WeekQueryVariables as dN, type InferenceRequestAuditFragment as dO, type Integration_Provider_CatalogQueryVariables as dP, type InvocationFragment as dQ, type McpClientInformationFragment as dR, type McpCodeVerifierFragment as dS, type McpServerFragment as dT, type McpTokensFragment as dU, type McpToolFragment as dV, type MessageEndEventOutputFragment as dW, type MessageStartEventOutputFragment as dX, type PulseEvent_Integration_ProviderQueryVariables as dY, type ReasoningEventOutputFragment as dZ, type ResetWorkspaceMutationVariables as d_, NotificationPriority as da, NotificationStatus as db, type NotificationFragment as dc, type NotificationsQueryVariables as dd, type NotificationConnectionFragment as de, type NotificationsByReferenceQueryVariables as df, type PrivacyStatsQueryVariables as dg, type PrivacyStatsFragment as dh, type PulseAppSummaryQueryVariables as di, type PulseAppSummaryModelFragment as dj, type PulseEventQueryVariables as dk, type PulseEventsQueryVariables as dl, type PulseEventConnectionFragment as dm, type PulseTriggerSettingsQueryVariables as dn, type QueryQueryVariables as dp, type QueryWithInsightIdQueryVariables as dq, type QueryWithMessageIdQueryVariables as dr, type ReportsQueryVariables as ds, type TablesQueryVariables as dt, type UserSkillFileQueryVariables as du, type UserSkillFilesQueryVariables as dv, type UserSkillFolderQueryVariables as dw, type UserSkillFoldersQueryVariables as dx, type WorkspaceDeletionScheduleQueryVariables as dy, type McpAuthUpdatesSubscriptionVariables as dz, type ChatMessage_ArtifactsQueryVariables as e, type TextBlockEventOutputFragment as e0, type TextDeltaEventOutputFragment as e1, type ToolInputDeltaEventOutputFragment as e2, type ToolResultArtifactOutputFragment as e3, type ToolResultEventOutputFragment as e4, type ToolStartEventOutputFragment as e5, type WidgetBlockCompleteEventOutputFragment as e6, type WidgetBlockErrorEventOutputFragment as e7, type WidgetBlockStartEventOutputFragment as e8, type WidgetHtmlDeltaEventOutputFragment as e9, type DvinaSdkBaseOptions as eA, type DvinaSdkCallbackOptions as eB, type DvinaSdkTokenOptions as eC, FeedItemOrderByRelevanceFieldEnum as eD, FeedbackOrderByRelevanceFieldEnum as eE, FileOrderByRelevanceFieldEnum as eF, FileUrlVariant as eG, FolderOrderByRelevanceFieldEnum as eH, InsightOrderByRelevanceFieldEnum as eI, IntegrationCatalogOrderByRelevanceFieldEnum as eJ, IntegrationOrderByRelevanceFieldEnum as eK, InterpretationOrderByRelevanceFieldEnum as eL, LimitType as eM, NotificationOrderByRelevanceFieldEnum as eN, NullsOrder as eO, PulseEventOrderByRelevanceFieldEnum as eP, QueryMode as eQ, ReportOrderByRelevanceFieldEnum as eR, SendMessageModel as eS, SortOrder as eT, TableOrderByRelevanceFieldEnum as eU, UsageHistoryGranularity as eV, createChatStreamClient as eW, createDvinaClient as eX, type StreamEventSchemaAnchorFragment as ea, type SyncEventFragment as eb, type SyncEventCursorFragment as ec, type Table_Database_EngineQueryVariables as ed, type Table_Document_ContentsQueryVariables as ee, type Table_Document_FileQueryVariables as ef, type Table_Document_FormatQueryVariables as eg, type TokenUsageFragment as eh, type UserSkillFileFragment as ei, type UserSkillFolderFragment as ej, type ActiveChatStreamClient as ek, type ActiveChatStreamListener as el, type ActiveChatStreamListenerHandlers as em, AgentOrderByRelevanceFieldEnum as en, ArtifactOrderByRelevanceFieldEnum as eo, CapabilityType as ep, ChatMessageOrderByRelevanceFieldEnum as eq, ChatOrderByRelevanceFieldEnum as er, type ChatStreamClientOptions as es, type ChatStreamEvent as et, type ChatStreamListener as eu, type ChatStreamListenerHandlers as ev, DatabaseCatalogOrderByRelevanceFieldEnum as ew, DatabaseOrderByRelevanceFieldEnum as ex, DocumentCatalogOrderByRelevanceFieldEnum as ey, DocumentOrderByRelevanceFieldEnum as ez, ArtifactKind as f, type ArtifactFragment as g, type Artifact_ChatQueryVariables as h, type ChatFragment as i, type Chat_AgentsQueryVariables as j, type AgentFragment as k, type Agent_ChatsQueryVariables as l, type ChatConnectionFragment as m, type AgentConnectionFragment as n, type Chat_ArtifactsQueryVariables as o, type Chat_InsightQueryVariables as p, type Insight_ChatQueryVariables as q, type Insight_ReportMembersQueryVariables as r, type ReportMemberFragment as s, type InsightQueryVariables as t, type Artifact_FileQueryVariables as u, type Artifact_MessageQueryVariables as v, type ChatMessage_ChatQueryVariables as w, type ChatMessage_ContentsQueryVariables as x, ContentBlockType as y, type ContentBlockFragment as z };
@@ -109,7 +109,7 @@ type AgentScalarWhereInput = {
109
109
  name?: InputMaybe<StringNullableFilter>;
110
110
  updatedAt?: InputMaybe<DateTimeFilter>;
111
111
  };
112
- type AgentStreamEvent = AudioEventOutput | ChatTitleEventOutput | FinalContentEventOutput | MessageEndEventOutput | MessageStartEventOutput | ReasoningEventOutput | StreamableUiDeltaEventOutput | TextBlockEventOutput | TextDeltaEventOutput | ToolInputDeltaEventOutput | ToolResultEventOutput | ToolStartEventOutput;
112
+ type AgentStreamEvent = AudioEventOutput | ChatTitleEventOutput | FinalContentEventOutput | MessageEndEventOutput | MessageStartEventOutput | ReasoningEventOutput | TextBlockEventOutput | TextDeltaEventOutput | ToolInputDeltaEventOutput | ToolResultEventOutput | ToolStartEventOutput | WidgetBlockCompleteEventOutput | WidgetBlockErrorEventOutput | WidgetBlockStartEventOutput | WidgetHtmlDeltaEventOutput;
113
113
  type AgentUpdateInput = {
114
114
  emoji?: InputMaybe<Scalars['String']>;
115
115
  id?: InputMaybe<Scalars['String']>;
@@ -1725,6 +1725,10 @@ type FileUpsertWithoutArtifactInput = {
1725
1725
  update: FileUpdateWithoutArtifactInput;
1726
1726
  where?: InputMaybe<FileWhereInput>;
1727
1727
  };
1728
+ declare enum FileUrlVariant {
1729
+ Original = "Original",
1730
+ Thumbnail = "Thumbnail"
1731
+ }
1728
1732
  type FileWhereInput = {
1729
1733
  AND?: InputMaybe<Array<FileWhereInput>>;
1730
1734
  NOT?: InputMaybe<Array<FileWhereInput>>;
@@ -3235,13 +3239,6 @@ type StreamMessageOutput = {
3235
3239
  originMeta?: Maybe<Scalars['JSON']>;
3236
3240
  sentAt: Scalars['DateTime'];
3237
3241
  };
3238
- type StreamableUiDeltaEventOutput = {
3239
- __typename?: 'StreamableUiDeltaEventOutput';
3240
- delta: Scalars['String'];
3241
- index: Scalars['Int'];
3242
- toolCallId: Scalars['String'];
3243
- type: Scalars['String'];
3244
- };
3245
3242
  type StringFilter = {
3246
3243
  contains?: InputMaybe<Scalars['String']>;
3247
3244
  endsWith?: InputMaybe<Scalars['String']>;
@@ -3499,6 +3496,35 @@ type UsageMetaOutput = {
3499
3496
  promptTokens: Scalars['Int'];
3500
3497
  totalTokens: Scalars['Int'];
3501
3498
  };
3499
+ type WidgetBlockCompleteEventOutput = {
3500
+ __typename?: 'WidgetBlockCompleteEventOutput';
3501
+ index: Scalars['Int'];
3502
+ summary?: Maybe<Scalars['String']>;
3503
+ toolCallId: Scalars['String'];
3504
+ type: Scalars['String'];
3505
+ };
3506
+ type WidgetBlockErrorEventOutput = {
3507
+ __typename?: 'WidgetBlockErrorEventOutput';
3508
+ errorMessage: Scalars['String'];
3509
+ index: Scalars['Int'];
3510
+ toolCallId: Scalars['String'];
3511
+ type: Scalars['String'];
3512
+ };
3513
+ type WidgetBlockStartEventOutput = {
3514
+ __typename?: 'WidgetBlockStartEventOutput';
3515
+ index: Scalars['Int'];
3516
+ summary?: Maybe<Scalars['String']>;
3517
+ toolCallId: Scalars['String'];
3518
+ type: Scalars['String'];
3519
+ };
3520
+ type WidgetHtmlDeltaEventOutput = {
3521
+ __typename?: 'WidgetHtmlDeltaEventOutput';
3522
+ delta: Scalars['String'];
3523
+ index: Scalars['Int'];
3524
+ summary?: Maybe<Scalars['String']>;
3525
+ toolCallId: Scalars['String'];
3526
+ type: Scalars['String'];
3527
+ };
3502
3528
  type ActionFragment = {
3503
3529
  __typename: 'Action';
3504
3530
  chatMessageId?: string | null;
@@ -4949,12 +4975,6 @@ type StreamEventSchemaAnchorFragment = {
4949
4975
  __typename: 'ReasoningEventOutput';
4950
4976
  delta: string;
4951
4977
  type: string;
4952
- } | {
4953
- __typename: 'StreamableUiDeltaEventOutput';
4954
- delta: string;
4955
- index: number;
4956
- toolCallId: string;
4957
- type: string;
4958
4978
  } | {
4959
4979
  __typename: 'TextBlockEventOutput';
4960
4980
  text: string;
@@ -4993,6 +5013,31 @@ type StreamEventSchemaAnchorFragment = {
4993
5013
  toolCallId: string;
4994
5014
  toolKit: string;
4995
5015
  type: string;
5016
+ } | {
5017
+ __typename: 'WidgetBlockCompleteEventOutput';
5018
+ index: number;
5019
+ summary?: string | null;
5020
+ toolCallId: string;
5021
+ type: string;
5022
+ } | {
5023
+ __typename: 'WidgetBlockErrorEventOutput';
5024
+ errorMessage: string;
5025
+ index: number;
5026
+ toolCallId: string;
5027
+ type: string;
5028
+ } | {
5029
+ __typename: 'WidgetBlockStartEventOutput';
5030
+ index: number;
5031
+ summary?: string | null;
5032
+ toolCallId: string;
5033
+ type: string;
5034
+ } | {
5035
+ __typename: 'WidgetHtmlDeltaEventOutput';
5036
+ delta: string;
5037
+ index: number;
5038
+ summary?: string | null;
5039
+ toolCallId: string;
5040
+ type: string;
4996
5041
  };
4997
5042
  };
4998
5043
  type StreamMessageContentOutputFragment = {
@@ -5020,13 +5065,6 @@ type StreamMessageOutputFragment = {
5020
5065
  type: ContentBlockType;
5021
5066
  }> | null;
5022
5067
  };
5023
- type StreamableUiDeltaEventOutputFragment = {
5024
- __typename: 'StreamableUiDeltaEventOutput';
5025
- delta: string;
5026
- index: number;
5027
- toolCallId: string;
5028
- type: string;
5029
- };
5030
5068
  type SyncEventFragment = {
5031
5069
  __typename: 'SyncEvent';
5032
5070
  createdAt: string;
@@ -5311,6 +5349,35 @@ type UserSkillFolderModelFragment = {
5311
5349
  path: string;
5312
5350
  updatedAt: string;
5313
5351
  };
5352
+ type WidgetBlockCompleteEventOutputFragment = {
5353
+ __typename: 'WidgetBlockCompleteEventOutput';
5354
+ index: number;
5355
+ summary?: string | null;
5356
+ toolCallId: string;
5357
+ type: string;
5358
+ };
5359
+ type WidgetBlockErrorEventOutputFragment = {
5360
+ __typename: 'WidgetBlockErrorEventOutput';
5361
+ errorMessage: string;
5362
+ index: number;
5363
+ toolCallId: string;
5364
+ type: string;
5365
+ };
5366
+ type WidgetBlockStartEventOutputFragment = {
5367
+ __typename: 'WidgetBlockStartEventOutput';
5368
+ index: number;
5369
+ summary?: string | null;
5370
+ toolCallId: string;
5371
+ type: string;
5372
+ };
5373
+ type WidgetHtmlDeltaEventOutputFragment = {
5374
+ __typename: 'WidgetHtmlDeltaEventOutput';
5375
+ delta: string;
5376
+ index: number;
5377
+ summary?: string | null;
5378
+ toolCallId: string;
5379
+ type: string;
5380
+ };
5314
5381
  type WindowDetailTypeFragment = {
5315
5382
  __typename: 'WindowDetailType';
5316
5383
  cost: number;
@@ -5826,6 +5893,7 @@ type FileMetaQueryVariables = Exact<{
5826
5893
  }>;
5827
5894
  type FileUrlsQueryVariables = Exact<{
5828
5895
  ids: Array<Scalars['String']> | Scalars['String'];
5896
+ variant?: InputMaybe<FileUrlVariant>;
5829
5897
  }>;
5830
5898
  type FindFitTierQueryVariables = Exact<{
5831
5899
  property: Scalars['String'];
@@ -6191,4 +6259,4 @@ interface DvinaClientResult {
6191
6259
  */
6192
6260
  declare function createDvinaClient(options: DvinaSdkOptions): DvinaClientResult;
6193
6261
 
6194
- export { type Artifact_Message_ContentsQueryVariables as $, type AbortChatMutationVariables as A, type ChatMessage_FeedbackQueryVariables as B, type ChatMessageQueryVariables as C, type DvinaSdkOptions as D, FeedbackType as E, type FileFragment as F, type FeedbackFragment as G, type Insight_ReportsQueryVariables as H, type InsightFragment as I, type Report_InsightsQueryVariables as J, type InsightConnectionFragment as K, type Report_LayoutQueryVariables as L, type ReportFragment as M, type ReportConnectionFragment as N, type Insight_ThumbnailFileQueryVariables as O, Presentation as P, type Chat_MessagesQueryVariables as Q, ReportMemberSize as R, type ChatMessageConnectionFragment as S, type ReportQueryVariables as T, type ArtifactConnectionFragment as U, type AddInsightToReportMutationVariables as V, type AgentQueryVariables as W, type AgentsQueryVariables as X, type ArtifactQueryVariables as Y, type Artifact_Chat_InsightQueryVariables as Z, type Artifact_Message_ChatQueryVariables as _, ActionType as a, type CreateReportMutationVariables as a$, type Artifact_Message_FeedbackQueryVariables as a0, type ArtifactsQueryVariables as a1, type AudioEventOutputFragment as a2, type CancelOauthFlowMutationVariables as a3, type CancelWorkspaceDeletionMutationVariables as a4, type CandidateFragment as a5, type CandidateEvidenceFragment as a6, ChatSourceProviderEnum as a7, type ImportedChatSummaryOutputFragment as a8, type ChatImportExecuteOutputFragment as a9, TableStatus as aA, type TableFragment as aB, type Table_DatabaseQueryVariables as aC, type Table_DocumentQueryVariables as aD, type DocumentFragment as aE, type Document_ContentsQueryVariables as aF, type DocumentContentFragment as aG, type DocumentQueryVariables as aH, type Document_FileQueryVariables as aI, type Document_FormatQueryVariables as aJ, type DocumentFormatFragment as aK, type DocumentCatalogQueryVariables as aL, type DocumentCatalogFragment as aM, type DocumentCatalog_FormatQueryVariables as aN, type Document_TablesQueryVariables as aO, type Table_FromRelationsQueryVariables as aP, RelationType as aQ, type RelationFragment as aR, type TableQueryVariables as aS, type Table_ToRelationsQueryVariables as aT, type TableConnectionFragment as aU, type CreateDocumentMutationVariables as aV, type CreateFeedbackMutationVariables as aW, type CreateFolderMutationVariables as aX, type FolderFragment as aY, type CreateInsightMutationVariables as aZ, type CreateIntegrationMutationVariables as a_, ChatSourceImportFidelityEnum as aa, ChatSourceImportModeEnum as ab, type ChatImportPreviewOutputFragment as ac, type ChatMessage_Chat_InsightQueryVariables as ad, type ChatMessagesQueryVariables as ae, type ChatQueryVariables as af, type ChatTitleEventOutputFragment as ag, type Chat_Insight_ReportMembersQueryVariables as ah, type Chat_Insight_ThumbnailFileQueryVariables as ai, type ChatsQueryVariables as aj, type ConnectIntegrationMutationVariables as ak, type CreateIntegrationOutputFragment as al, type ConsumePulseEventsMutationVariables as am, type ContentMaskFragment as an, type ContinueImportedChatMutationVariables as ao, type ContinueInterpretationMutationVariables as ap, type CreateAgentMutationVariables as aq, type CreateChatMutationVariables as ar, type CreateDatabaseMutationVariables as as, type DatabaseFragment as at, type Database_EngineQueryVariables as au, type DatabaseEngineFragment as av, type DatabaseCatalogQueryVariables as aw, type DatabaseCatalogFragment as ax, type DatabaseCatalog_EngineQueryVariables as ay, type Database_TablesQueryVariables as az, type ActionFragment as b, type UpdateAgentMutationVariables as b$, type CreateTableMutationVariables as b0, type CreateUserSkillFileMutationVariables as b1, type UserSkillFileModelFragment as b2, type CreateUserSkillFolderMutationVariables as b3, type UserSkillFolderModelFragment as b4, type CubeModelFragment as b5, type DatabaseCatalogConnectionFragment as b6, type DatabaseCatalogsQueryVariables as b7, type DatabaseConnectionFragment as b8, type DatabaseQueryVariables as b9, type Integration_ProviderQueryVariables as bA, type IntegrationProviderFragment as bB, type IntegrationCatalogQueryVariables as bC, type IntegrationCatalogFragment as bD, type IntegrationCatalog_ProviderQueryVariables as bE, type DocumentCatalogConnectionFragment as bF, type DocumentCatalogsQueryVariables as bG, type DocumentConnectionFragment as bH, type Document_Format_CatalogQueryVariables as bI, type DocumentsQueryVariables as bJ, type ChatStreamClient as bK, type ExecuteChatImportMutationVariables as bL, type GenerateUploadUriMutationVariables as bM, type FileModelFragment as bN, type PreviewChatImportMutationVariables as bO, type ReanalyzeDocumentMutationVariables as bP, type RefineMindInstructionMutationVariables as bQ, type RefreshDatabaseSchemaMutationVariables as bR, type RefreshInsightMutationVariables as bS, type ReinterpretSourceMutationVariables as bT, type ReinterpretSourcesOfuserMutationVariables as bU, type RelocateInsightMutationVariables as bV, type RemoveInsightFromReportMutationVariables as bW, type ResolvePulseEventMutationVariables as bX, type WorkspaceDeleteScheduleFragment as bY, type SendMessageMutationVariables as bZ, type SetDatabasePrimaryKeyMutationVariables as b_, type DatabaseSchemaQueryVariables as ba, type Database_Engine_CatalogQueryVariables as bb, type DatabasesQueryVariables as bc, type DeepAnalysisUsageFragment as bd, type DeleteAgentMutationVariables as be, type DeleteArtifactMutationVariables as bf, type DeleteChatMutationVariables as bg, type DeleteDatabaseMutationVariables as bh, type DeleteDocumentMutationVariables as bi, type DeleteFolderMutationVariables as bj, type DeleteInsightMutationVariables as bk, type DeleteInsightsMutationVariables as bl, type DeleteIntegrationMutationVariables as bm, type DeleteReportMutationVariables as bn, type DeleteTableMutationVariables as bo, type DeleteUserSkillFileMutationVariables as bp, type DeleteUserSkillFolderMutationVariables as bq, type DevAccessTokenOutputFragment as br, type DisconnectIntegrationMutationVariables as bs, type DismissPulseEventMutationVariables as bt, PulseEventKind as bu, PulseEventPriority as bv, type PulseEventFragment as bw, type PulseEvent_IntegrationQueryVariables as bx, IntegrationStatus as by, type IntegrationFragment as bz, ChatMessageFromEnum as c, type InsightsQueryVariables as c$, type UpdateArtifactNameMutationVariables as c0, type UpdateChatMutationVariables as c1, type UpdateDatabaseMutationVariables as c2, type UpdateDocumentMutationVariables as c3, type UpdateFolderMutationVariables as c4, type UpdateInsightMutationVariables as c5, type UpdateInsightInReportMutationVariables as c6, type UpdateInsightThumbnailMutationVariables as c7, type UpdateInterpMutationVariables as c8, AiResourceType as c9, type FeedItem_DataQueryVariables as cA, type FeedItemsQueryVariables as cB, type FeedConnectionFragment as cC, type FileQueryVariables as cD, type FileMetaQueryVariables as cE, type FileUrlsQueryVariables as cF, type ResolvedFileUrlFragment as cG, type FindFitTierQueryVariables as cH, EntitlementTier as cI, type FolderQueryVariables as cJ, type FoldersQueryVariables as cK, type FolderConnectionFragment as cL, type GetCapabilityQueryVariables as cM, type GetDevAccessTokenQueryVariables as cN, type GetLimitQueryVariables as cO, type GetRemainingQueryVariables as cP, type GetTokenUsageByModelQueryVariables as cQ, type ModelTokenUsageFragment as cR, type GetTokenUsageHistoryQueryVariables as cS, type GetTokenUsageStatusQueryVariables as cT, TokenUsageLimit as cU, ActiveWindowType as cV, type WindowDetailTypeFragment as cW, type UsageWindowsStatusTypeFragment as cX, type UsageStatusFragment as cY, type GetTokenUsageStatus_WindowsQueryVariables as cZ, type GetUsageQueryVariables as c_, InterpretationType as ca, type InterpretationFragment as cb, type UpdateLiveContextMutationVariables as cc, LiveContextStatus as cd, type LiveContextFragment as ce, type UpdatePulseTriggerMutationVariables as cf, type PulseTriggerSettingModelFragment as cg, type UpdateReportMutationVariables as ch, type UpdateTableMutationVariables as ci, type UpdateUserSkillFileMutationVariables as cj, type UpdateUserSkillFolderMutationVariables as ck, type ExportQueryVariables as cl, type ExportWithInsightIdQueryVariables as cm, type FeedItemQueryVariables as cn, FeedItemKind as co, type FeedArtifactDataFragment as cp, type FeedDatabaseDataFragment as cq, type FeedDocumentDataFragment as cr, type FeedInsightDataFragment as cs, type FeedIntegrationDataFragment as ct, type FeedLiveContextDataFragment as cu, type FeedPulseDataFragment as cv, type FeedItemFragment as cw, type FeedItem_ActionQueryVariables as cx, FeedActionType as cy, type FeedSendMessageActionFragment as cz, type ChatMessageFragment as d, type ScheduleWorkspaceDeletionMutationVariables as d$, type IntegrationQueryVariables as d0, type IntegrationCatalogToolsQueryVariables as d1, type IntegrationCatalogsQueryVariables as d2, type IntegrationCatalogConnectionFragment as d3, type IntegrationsQueryVariables as d4, type IntegrationConnectionFragment as d5, type InterpretationsQueryVariables as d6, type InterpretationConnectionFragment as d7, type NotificationQueryVariables as d8, NotificationCategory as d9, McpAuthPhase as dA, type McpAuthUpdateModelFragment as dB, type TokenUsageUpdatesSubscriptionVariables as dC, type EvidenceFragment as dD, type FailedSyncEventIngestionFragment as dE, type FeedItemGeneratedFragment as dF, type StreamMessageContentOutputFragment as dG, type StreamMessageOutputFragment as dH, type UsageMetaOutputFragment as dI, type FinalContentEventOutputFragment as dJ, type GetTokenUsageStatus_Windows_DayQueryVariables as dK, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as dL, type GetTokenUsageStatus_Windows_MonthQueryVariables as dM, type GetTokenUsageStatus_Windows_WeekQueryVariables as dN, type InferenceRequestAuditFragment as dO, type Integration_Provider_CatalogQueryVariables as dP, type InvocationFragment as dQ, type McpClientInformationFragment as dR, type McpCodeVerifierFragment as dS, type McpServerFragment as dT, type McpTokensFragment as dU, type McpToolFragment as dV, type MessageEndEventOutputFragment as dW, type MessageStartEventOutputFragment as dX, type PulseEvent_Integration_ProviderQueryVariables as dY, type ReasoningEventOutputFragment as dZ, type ResetWorkspaceMutationVariables as d_, NotificationPriority as da, NotificationStatus as db, type NotificationFragment as dc, type NotificationsQueryVariables as dd, type NotificationConnectionFragment as de, type NotificationsByReferenceQueryVariables as df, type PrivacyStatsQueryVariables as dg, type PrivacyStatsFragment as dh, type PulseAppSummaryQueryVariables as di, type PulseAppSummaryModelFragment as dj, type PulseEventQueryVariables as dk, type PulseEventsQueryVariables as dl, type PulseEventConnectionFragment as dm, type PulseTriggerSettingsQueryVariables as dn, type QueryQueryVariables as dp, type QueryWithInsightIdQueryVariables as dq, type QueryWithMessageIdQueryVariables as dr, type ReportsQueryVariables as ds, type TablesQueryVariables as dt, type UserSkillFileQueryVariables as du, type UserSkillFilesQueryVariables as dv, type UserSkillFolderQueryVariables as dw, type UserSkillFoldersQueryVariables as dx, type WorkspaceDeletionScheduleQueryVariables as dy, type McpAuthUpdatesSubscriptionVariables as dz, type ChatMessage_ArtifactsQueryVariables as e, type StreamableUiDeltaEventOutputFragment as e0, type TextBlockEventOutputFragment as e1, type TextDeltaEventOutputFragment as e2, type ToolInputDeltaEventOutputFragment as e3, type ToolResultArtifactOutputFragment as e4, type ToolResultEventOutputFragment as e5, type ToolStartEventOutputFragment as e6, type StreamEventSchemaAnchorFragment as e7, type SyncEventFragment as e8, type SyncEventCursorFragment as e9, FeedItemOrderByRelevanceFieldEnum as eA, FeedbackOrderByRelevanceFieldEnum as eB, FileOrderByRelevanceFieldEnum as eC, FolderOrderByRelevanceFieldEnum as eD, InsightOrderByRelevanceFieldEnum as eE, IntegrationCatalogOrderByRelevanceFieldEnum as eF, IntegrationOrderByRelevanceFieldEnum as eG, InterpretationOrderByRelevanceFieldEnum as eH, LimitType as eI, NotificationOrderByRelevanceFieldEnum as eJ, NullsOrder as eK, PulseEventOrderByRelevanceFieldEnum as eL, QueryMode as eM, ReportOrderByRelevanceFieldEnum as eN, SendMessageModel as eO, SortOrder as eP, TableOrderByRelevanceFieldEnum as eQ, UsageHistoryGranularity as eR, createChatStreamClient as eS, createDvinaClient as eT, type Table_Database_EngineQueryVariables as ea, type Table_Document_ContentsQueryVariables as eb, type Table_Document_FileQueryVariables as ec, type Table_Document_FormatQueryVariables as ed, type TokenUsageFragment as ee, type UserSkillFileFragment as ef, type UserSkillFolderFragment as eg, type ActiveChatStreamClient as eh, type ActiveChatStreamListener as ei, type ActiveChatStreamListenerHandlers as ej, AgentOrderByRelevanceFieldEnum as ek, ArtifactOrderByRelevanceFieldEnum as el, CapabilityType as em, ChatMessageOrderByRelevanceFieldEnum as en, ChatOrderByRelevanceFieldEnum as eo, type ChatStreamClientOptions as ep, type ChatStreamEvent as eq, type ChatStreamListener as er, type ChatStreamListenerHandlers as es, DatabaseCatalogOrderByRelevanceFieldEnum as et, DatabaseOrderByRelevanceFieldEnum as eu, DocumentCatalogOrderByRelevanceFieldEnum as ev, DocumentOrderByRelevanceFieldEnum as ew, type DvinaSdkBaseOptions as ex, type DvinaSdkCallbackOptions as ey, type DvinaSdkTokenOptions as ez, ArtifactKind as f, type ArtifactFragment as g, type Artifact_ChatQueryVariables as h, type ChatFragment as i, type Chat_AgentsQueryVariables as j, type AgentFragment as k, type Agent_ChatsQueryVariables as l, type ChatConnectionFragment as m, type AgentConnectionFragment as n, type Chat_ArtifactsQueryVariables as o, type Chat_InsightQueryVariables as p, type Insight_ChatQueryVariables as q, type Insight_ReportMembersQueryVariables as r, type ReportMemberFragment as s, type InsightQueryVariables as t, type Artifact_FileQueryVariables as u, type Artifact_MessageQueryVariables as v, type ChatMessage_ChatQueryVariables as w, type ChatMessage_ContentsQueryVariables as x, ContentBlockType as y, type ContentBlockFragment as z };
6262
+ export { type Artifact_Message_ContentsQueryVariables as $, type AbortChatMutationVariables as A, type ChatMessage_FeedbackQueryVariables as B, type ChatMessageQueryVariables as C, type DvinaSdkOptions as D, FeedbackType as E, type FileFragment as F, type FeedbackFragment as G, type Insight_ReportsQueryVariables as H, type InsightFragment as I, type Report_InsightsQueryVariables as J, type InsightConnectionFragment as K, type Report_LayoutQueryVariables as L, type ReportFragment as M, type ReportConnectionFragment as N, type Insight_ThumbnailFileQueryVariables as O, Presentation as P, type Chat_MessagesQueryVariables as Q, ReportMemberSize as R, type ChatMessageConnectionFragment as S, type ReportQueryVariables as T, type ArtifactConnectionFragment as U, type AddInsightToReportMutationVariables as V, type AgentQueryVariables as W, type AgentsQueryVariables as X, type ArtifactQueryVariables as Y, type Artifact_Chat_InsightQueryVariables as Z, type Artifact_Message_ChatQueryVariables as _, ActionType as a, type CreateReportMutationVariables as a$, type Artifact_Message_FeedbackQueryVariables as a0, type ArtifactsQueryVariables as a1, type AudioEventOutputFragment as a2, type CancelOauthFlowMutationVariables as a3, type CancelWorkspaceDeletionMutationVariables as a4, type CandidateFragment as a5, type CandidateEvidenceFragment as a6, ChatSourceProviderEnum as a7, type ImportedChatSummaryOutputFragment as a8, type ChatImportExecuteOutputFragment as a9, TableStatus as aA, type TableFragment as aB, type Table_DatabaseQueryVariables as aC, type Table_DocumentQueryVariables as aD, type DocumentFragment as aE, type Document_ContentsQueryVariables as aF, type DocumentContentFragment as aG, type DocumentQueryVariables as aH, type Document_FileQueryVariables as aI, type Document_FormatQueryVariables as aJ, type DocumentFormatFragment as aK, type DocumentCatalogQueryVariables as aL, type DocumentCatalogFragment as aM, type DocumentCatalog_FormatQueryVariables as aN, type Document_TablesQueryVariables as aO, type Table_FromRelationsQueryVariables as aP, RelationType as aQ, type RelationFragment as aR, type TableQueryVariables as aS, type Table_ToRelationsQueryVariables as aT, type TableConnectionFragment as aU, type CreateDocumentMutationVariables as aV, type CreateFeedbackMutationVariables as aW, type CreateFolderMutationVariables as aX, type FolderFragment as aY, type CreateInsightMutationVariables as aZ, type CreateIntegrationMutationVariables as a_, ChatSourceImportFidelityEnum as aa, ChatSourceImportModeEnum as ab, type ChatImportPreviewOutputFragment as ac, type ChatMessage_Chat_InsightQueryVariables as ad, type ChatMessagesQueryVariables as ae, type ChatQueryVariables as af, type ChatTitleEventOutputFragment as ag, type Chat_Insight_ReportMembersQueryVariables as ah, type Chat_Insight_ThumbnailFileQueryVariables as ai, type ChatsQueryVariables as aj, type ConnectIntegrationMutationVariables as ak, type CreateIntegrationOutputFragment as al, type ConsumePulseEventsMutationVariables as am, type ContentMaskFragment as an, type ContinueImportedChatMutationVariables as ao, type ContinueInterpretationMutationVariables as ap, type CreateAgentMutationVariables as aq, type CreateChatMutationVariables as ar, type CreateDatabaseMutationVariables as as, type DatabaseFragment as at, type Database_EngineQueryVariables as au, type DatabaseEngineFragment as av, type DatabaseCatalogQueryVariables as aw, type DatabaseCatalogFragment as ax, type DatabaseCatalog_EngineQueryVariables as ay, type Database_TablesQueryVariables as az, type ActionFragment as b, type UpdateAgentMutationVariables as b$, type CreateTableMutationVariables as b0, type CreateUserSkillFileMutationVariables as b1, type UserSkillFileModelFragment as b2, type CreateUserSkillFolderMutationVariables as b3, type UserSkillFolderModelFragment as b4, type CubeModelFragment as b5, type DatabaseCatalogConnectionFragment as b6, type DatabaseCatalogsQueryVariables as b7, type DatabaseConnectionFragment as b8, type DatabaseQueryVariables as b9, type Integration_ProviderQueryVariables as bA, type IntegrationProviderFragment as bB, type IntegrationCatalogQueryVariables as bC, type IntegrationCatalogFragment as bD, type IntegrationCatalog_ProviderQueryVariables as bE, type DocumentCatalogConnectionFragment as bF, type DocumentCatalogsQueryVariables as bG, type DocumentConnectionFragment as bH, type Document_Format_CatalogQueryVariables as bI, type DocumentsQueryVariables as bJ, type ChatStreamClient as bK, type ExecuteChatImportMutationVariables as bL, type GenerateUploadUriMutationVariables as bM, type FileModelFragment as bN, type PreviewChatImportMutationVariables as bO, type ReanalyzeDocumentMutationVariables as bP, type RefineMindInstructionMutationVariables as bQ, type RefreshDatabaseSchemaMutationVariables as bR, type RefreshInsightMutationVariables as bS, type ReinterpretSourceMutationVariables as bT, type ReinterpretSourcesOfuserMutationVariables as bU, type RelocateInsightMutationVariables as bV, type RemoveInsightFromReportMutationVariables as bW, type ResolvePulseEventMutationVariables as bX, type WorkspaceDeleteScheduleFragment as bY, type SendMessageMutationVariables as bZ, type SetDatabasePrimaryKeyMutationVariables as b_, type DatabaseSchemaQueryVariables as ba, type Database_Engine_CatalogQueryVariables as bb, type DatabasesQueryVariables as bc, type DeepAnalysisUsageFragment as bd, type DeleteAgentMutationVariables as be, type DeleteArtifactMutationVariables as bf, type DeleteChatMutationVariables as bg, type DeleteDatabaseMutationVariables as bh, type DeleteDocumentMutationVariables as bi, type DeleteFolderMutationVariables as bj, type DeleteInsightMutationVariables as bk, type DeleteInsightsMutationVariables as bl, type DeleteIntegrationMutationVariables as bm, type DeleteReportMutationVariables as bn, type DeleteTableMutationVariables as bo, type DeleteUserSkillFileMutationVariables as bp, type DeleteUserSkillFolderMutationVariables as bq, type DevAccessTokenOutputFragment as br, type DisconnectIntegrationMutationVariables as bs, type DismissPulseEventMutationVariables as bt, PulseEventKind as bu, PulseEventPriority as bv, type PulseEventFragment as bw, type PulseEvent_IntegrationQueryVariables as bx, IntegrationStatus as by, type IntegrationFragment as bz, ChatMessageFromEnum as c, type InsightsQueryVariables as c$, type UpdateArtifactNameMutationVariables as c0, type UpdateChatMutationVariables as c1, type UpdateDatabaseMutationVariables as c2, type UpdateDocumentMutationVariables as c3, type UpdateFolderMutationVariables as c4, type UpdateInsightMutationVariables as c5, type UpdateInsightInReportMutationVariables as c6, type UpdateInsightThumbnailMutationVariables as c7, type UpdateInterpMutationVariables as c8, AiResourceType as c9, type FeedItem_DataQueryVariables as cA, type FeedItemsQueryVariables as cB, type FeedConnectionFragment as cC, type FileQueryVariables as cD, type FileMetaQueryVariables as cE, type FileUrlsQueryVariables as cF, type ResolvedFileUrlFragment as cG, type FindFitTierQueryVariables as cH, EntitlementTier as cI, type FolderQueryVariables as cJ, type FoldersQueryVariables as cK, type FolderConnectionFragment as cL, type GetCapabilityQueryVariables as cM, type GetDevAccessTokenQueryVariables as cN, type GetLimitQueryVariables as cO, type GetRemainingQueryVariables as cP, type GetTokenUsageByModelQueryVariables as cQ, type ModelTokenUsageFragment as cR, type GetTokenUsageHistoryQueryVariables as cS, type GetTokenUsageStatusQueryVariables as cT, TokenUsageLimit as cU, ActiveWindowType as cV, type WindowDetailTypeFragment as cW, type UsageWindowsStatusTypeFragment as cX, type UsageStatusFragment as cY, type GetTokenUsageStatus_WindowsQueryVariables as cZ, type GetUsageQueryVariables as c_, InterpretationType as ca, type InterpretationFragment as cb, type UpdateLiveContextMutationVariables as cc, LiveContextStatus as cd, type LiveContextFragment as ce, type UpdatePulseTriggerMutationVariables as cf, type PulseTriggerSettingModelFragment as cg, type UpdateReportMutationVariables as ch, type UpdateTableMutationVariables as ci, type UpdateUserSkillFileMutationVariables as cj, type UpdateUserSkillFolderMutationVariables as ck, type ExportQueryVariables as cl, type ExportWithInsightIdQueryVariables as cm, type FeedItemQueryVariables as cn, FeedItemKind as co, type FeedArtifactDataFragment as cp, type FeedDatabaseDataFragment as cq, type FeedDocumentDataFragment as cr, type FeedInsightDataFragment as cs, type FeedIntegrationDataFragment as ct, type FeedLiveContextDataFragment as cu, type FeedPulseDataFragment as cv, type FeedItemFragment as cw, type FeedItem_ActionQueryVariables as cx, FeedActionType as cy, type FeedSendMessageActionFragment as cz, type ChatMessageFragment as d, type ScheduleWorkspaceDeletionMutationVariables as d$, type IntegrationQueryVariables as d0, type IntegrationCatalogToolsQueryVariables as d1, type IntegrationCatalogsQueryVariables as d2, type IntegrationCatalogConnectionFragment as d3, type IntegrationsQueryVariables as d4, type IntegrationConnectionFragment as d5, type InterpretationsQueryVariables as d6, type InterpretationConnectionFragment as d7, type NotificationQueryVariables as d8, NotificationCategory as d9, McpAuthPhase as dA, type McpAuthUpdateModelFragment as dB, type TokenUsageUpdatesSubscriptionVariables as dC, type EvidenceFragment as dD, type FailedSyncEventIngestionFragment as dE, type FeedItemGeneratedFragment as dF, type StreamMessageContentOutputFragment as dG, type StreamMessageOutputFragment as dH, type UsageMetaOutputFragment as dI, type FinalContentEventOutputFragment as dJ, type GetTokenUsageStatus_Windows_DayQueryVariables as dK, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as dL, type GetTokenUsageStatus_Windows_MonthQueryVariables as dM, type GetTokenUsageStatus_Windows_WeekQueryVariables as dN, type InferenceRequestAuditFragment as dO, type Integration_Provider_CatalogQueryVariables as dP, type InvocationFragment as dQ, type McpClientInformationFragment as dR, type McpCodeVerifierFragment as dS, type McpServerFragment as dT, type McpTokensFragment as dU, type McpToolFragment as dV, type MessageEndEventOutputFragment as dW, type MessageStartEventOutputFragment as dX, type PulseEvent_Integration_ProviderQueryVariables as dY, type ReasoningEventOutputFragment as dZ, type ResetWorkspaceMutationVariables as d_, NotificationPriority as da, NotificationStatus as db, type NotificationFragment as dc, type NotificationsQueryVariables as dd, type NotificationConnectionFragment as de, type NotificationsByReferenceQueryVariables as df, type PrivacyStatsQueryVariables as dg, type PrivacyStatsFragment as dh, type PulseAppSummaryQueryVariables as di, type PulseAppSummaryModelFragment as dj, type PulseEventQueryVariables as dk, type PulseEventsQueryVariables as dl, type PulseEventConnectionFragment as dm, type PulseTriggerSettingsQueryVariables as dn, type QueryQueryVariables as dp, type QueryWithInsightIdQueryVariables as dq, type QueryWithMessageIdQueryVariables as dr, type ReportsQueryVariables as ds, type TablesQueryVariables as dt, type UserSkillFileQueryVariables as du, type UserSkillFilesQueryVariables as dv, type UserSkillFolderQueryVariables as dw, type UserSkillFoldersQueryVariables as dx, type WorkspaceDeletionScheduleQueryVariables as dy, type McpAuthUpdatesSubscriptionVariables as dz, type ChatMessage_ArtifactsQueryVariables as e, type TextBlockEventOutputFragment as e0, type TextDeltaEventOutputFragment as e1, type ToolInputDeltaEventOutputFragment as e2, type ToolResultArtifactOutputFragment as e3, type ToolResultEventOutputFragment as e4, type ToolStartEventOutputFragment as e5, type WidgetBlockCompleteEventOutputFragment as e6, type WidgetBlockErrorEventOutputFragment as e7, type WidgetBlockStartEventOutputFragment as e8, type WidgetHtmlDeltaEventOutputFragment as e9, type DvinaSdkBaseOptions as eA, type DvinaSdkCallbackOptions as eB, type DvinaSdkTokenOptions as eC, FeedItemOrderByRelevanceFieldEnum as eD, FeedbackOrderByRelevanceFieldEnum as eE, FileOrderByRelevanceFieldEnum as eF, FileUrlVariant as eG, FolderOrderByRelevanceFieldEnum as eH, InsightOrderByRelevanceFieldEnum as eI, IntegrationCatalogOrderByRelevanceFieldEnum as eJ, IntegrationOrderByRelevanceFieldEnum as eK, InterpretationOrderByRelevanceFieldEnum as eL, LimitType as eM, NotificationOrderByRelevanceFieldEnum as eN, NullsOrder as eO, PulseEventOrderByRelevanceFieldEnum as eP, QueryMode as eQ, ReportOrderByRelevanceFieldEnum as eR, SendMessageModel as eS, SortOrder as eT, TableOrderByRelevanceFieldEnum as eU, UsageHistoryGranularity as eV, createChatStreamClient as eW, createDvinaClient as eX, type StreamEventSchemaAnchorFragment as ea, type SyncEventFragment as eb, type SyncEventCursorFragment as ec, type Table_Database_EngineQueryVariables as ed, type Table_Document_ContentsQueryVariables as ee, type Table_Document_FileQueryVariables as ef, type Table_Document_FormatQueryVariables as eg, type TokenUsageFragment as eh, type UserSkillFileFragment as ei, type UserSkillFolderFragment as ej, type ActiveChatStreamClient as ek, type ActiveChatStreamListener as el, type ActiveChatStreamListenerHandlers as em, AgentOrderByRelevanceFieldEnum as en, ArtifactOrderByRelevanceFieldEnum as eo, CapabilityType as ep, ChatMessageOrderByRelevanceFieldEnum as eq, ChatOrderByRelevanceFieldEnum as er, type ChatStreamClientOptions as es, type ChatStreamEvent as et, type ChatStreamListener as eu, type ChatStreamListenerHandlers as ev, DatabaseCatalogOrderByRelevanceFieldEnum as ew, DatabaseOrderByRelevanceFieldEnum as ex, DocumentCatalogOrderByRelevanceFieldEnum as ey, DocumentOrderByRelevanceFieldEnum as ez, ArtifactKind as f, type ArtifactFragment as g, type Artifact_ChatQueryVariables as h, type ChatFragment as i, type Chat_AgentsQueryVariables as j, type AgentFragment as k, type Agent_ChatsQueryVariables as l, type ChatConnectionFragment as m, type AgentConnectionFragment as n, type Chat_ArtifactsQueryVariables as o, type Chat_InsightQueryVariables as p, type Insight_ChatQueryVariables as q, type Insight_ReportMembersQueryVariables as r, type ReportMemberFragment as s, type InsightQueryVariables as t, type Artifact_FileQueryVariables as u, type Artifact_MessageQueryVariables as v, type ChatMessage_ChatQueryVariables as w, type ChatMessage_ContentsQueryVariables as x, ContentBlockType as y, type ContentBlockFragment as z };