@dvina/sdk 4.0.151 → 4.0.156

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.
Files changed (28) hide show
  1. package/dist/_generated_documents-74CN3SRN.js +4 -0
  2. package/dist/{_generated_documents-3N6BQ5SR.js.map → _generated_documents-74CN3SRN.js.map} +1 -1
  3. package/dist/{_generated_documents-R4Q64XRB.cjs → _generated_documents-BMEC6UQQ.cjs} +555 -539
  4. package/dist/{_generated_documents-R4Q64XRB.cjs.map → _generated_documents-BMEC6UQQ.cjs.map} +1 -1
  5. package/dist/adapters/angular/index.cjs +4 -4
  6. package/dist/adapters/angular/index.d.cts +1 -1
  7. package/dist/adapters/angular/index.d.ts +1 -1
  8. package/dist/adapters/angular/index.js +2 -2
  9. package/dist/{chunk-N64A3FWK.js → chunk-4URBIIA3.js} +88 -21
  10. package/dist/chunk-4URBIIA3.js.map +1 -0
  11. package/dist/{chunk-4BKKU67P.js → chunk-7XSFNAV6.js} +15 -10
  12. package/dist/chunk-7XSFNAV6.js.map +1 -0
  13. package/dist/{chunk-D7AKD4KG.cjs → chunk-EL37Q6V6.cjs} +19 -10
  14. package/dist/chunk-EL37Q6V6.cjs.map +1 -0
  15. package/dist/{chunk-RSSJCKVR.cjs → chunk-JI734QZE.cjs} +588 -517
  16. package/dist/chunk-JI734QZE.cjs.map +1 -0
  17. package/dist/{client-Bqg_UhDO.d.cts → client-CGpx9L9A.d.cts} +108 -22
  18. package/dist/{client-BK4gb0rI.d.ts → client-COXtGG0M.d.ts} +108 -22
  19. package/dist/index.cjs +409 -393
  20. package/dist/index.d.cts +42 -12
  21. package/dist/index.d.ts +42 -12
  22. package/dist/index.js +2 -2
  23. package/package.json +1 -1
  24. package/dist/_generated_documents-3N6BQ5SR.js +0 -4
  25. package/dist/chunk-4BKKU67P.js.map +0 -1
  26. package/dist/chunk-D7AKD4KG.cjs.map +0 -1
  27. package/dist/chunk-N64A3FWK.js.map +0 -1
  28. package/dist/chunk-RSSJCKVR.cjs.map +0 -1
@@ -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']>;
@@ -1510,6 +1510,7 @@ declare enum FeedItemKind {
1510
1510
  Artifact = "artifact",
1511
1511
  Database = "database",
1512
1512
  Document = "document",
1513
+ Insight = "insight",
1513
1514
  Integration = "integration",
1514
1515
  LiveContext = "live_context",
1515
1516
  Pulse = "pulse"
@@ -3234,13 +3235,6 @@ type StreamMessageOutput = {
3234
3235
  originMeta?: Maybe<Scalars['JSON']>;
3235
3236
  sentAt: Scalars['DateTime'];
3236
3237
  };
3237
- type StreamableUiDeltaEventOutput = {
3238
- __typename?: 'StreamableUiDeltaEventOutput';
3239
- delta: Scalars['String'];
3240
- index: Scalars['Int'];
3241
- toolCallId: Scalars['String'];
3242
- type: Scalars['String'];
3243
- };
3244
3238
  type StringFilter = {
3245
3239
  contains?: InputMaybe<Scalars['String']>;
3246
3240
  endsWith?: InputMaybe<Scalars['String']>;
@@ -3498,6 +3492,35 @@ type UsageMetaOutput = {
3498
3492
  promptTokens: Scalars['Int'];
3499
3493
  totalTokens: Scalars['Int'];
3500
3494
  };
3495
+ type WidgetBlockCompleteEventOutput = {
3496
+ __typename?: 'WidgetBlockCompleteEventOutput';
3497
+ index: Scalars['Int'];
3498
+ summary?: Maybe<Scalars['String']>;
3499
+ toolCallId: Scalars['String'];
3500
+ type: Scalars['String'];
3501
+ };
3502
+ type WidgetBlockErrorEventOutput = {
3503
+ __typename?: 'WidgetBlockErrorEventOutput';
3504
+ errorMessage: Scalars['String'];
3505
+ index: Scalars['Int'];
3506
+ toolCallId: Scalars['String'];
3507
+ type: Scalars['String'];
3508
+ };
3509
+ type WidgetBlockStartEventOutput = {
3510
+ __typename?: 'WidgetBlockStartEventOutput';
3511
+ index: Scalars['Int'];
3512
+ summary?: Maybe<Scalars['String']>;
3513
+ toolCallId: Scalars['String'];
3514
+ type: Scalars['String'];
3515
+ };
3516
+ type WidgetHtmlDeltaEventOutput = {
3517
+ __typename?: 'WidgetHtmlDeltaEventOutput';
3518
+ delta: Scalars['String'];
3519
+ index: Scalars['Int'];
3520
+ summary?: Maybe<Scalars['String']>;
3521
+ toolCallId: Scalars['String'];
3522
+ type: Scalars['String'];
3523
+ };
3501
3524
  type ActionFragment = {
3502
3525
  __typename: 'Action';
3503
3526
  chatMessageId?: string | null;
@@ -4116,6 +4139,13 @@ type FeedConnectionFragment = {
4116
4139
  fileName?: string | null;
4117
4140
  fileType?: string | null;
4118
4141
  kind: FeedItemKind;
4142
+ } | {
4143
+ __typename: 'FeedInsightData';
4144
+ kind: FeedItemKind;
4145
+ output?: any | null;
4146
+ pivotConfig?: any | null;
4147
+ presentation: Presentation;
4148
+ query: any;
4119
4149
  } | {
4120
4150
  __typename: 'FeedIntegrationData';
4121
4151
  integrationProviderKey?: string | null;
@@ -4159,6 +4189,14 @@ type FeedDocumentDataFragment = {
4159
4189
  fileType?: string | null;
4160
4190
  kind: FeedItemKind;
4161
4191
  };
4192
+ type FeedInsightDataFragment = {
4193
+ __typename: 'FeedInsightData';
4194
+ kind: FeedItemKind;
4195
+ output?: any | null;
4196
+ pivotConfig?: any | null;
4197
+ presentation: Presentation;
4198
+ query: any;
4199
+ };
4162
4200
  type FeedIntegrationDataFragment = {
4163
4201
  __typename: 'FeedIntegrationData';
4164
4202
  integrationProviderKey?: string | null;
@@ -4199,6 +4237,13 @@ type FeedItemFragment = {
4199
4237
  fileName?: string | null;
4200
4238
  fileType?: string | null;
4201
4239
  kind: FeedItemKind;
4240
+ } | {
4241
+ __typename: 'FeedInsightData';
4242
+ kind: FeedItemKind;
4243
+ output?: any | null;
4244
+ pivotConfig?: any | null;
4245
+ presentation: Presentation;
4246
+ query: any;
4202
4247
  } | {
4203
4248
  __typename: 'FeedIntegrationData';
4204
4249
  integrationProviderKey?: string | null;
@@ -4926,12 +4971,6 @@ type StreamEventSchemaAnchorFragment = {
4926
4971
  __typename: 'ReasoningEventOutput';
4927
4972
  delta: string;
4928
4973
  type: string;
4929
- } | {
4930
- __typename: 'StreamableUiDeltaEventOutput';
4931
- delta: string;
4932
- index: number;
4933
- toolCallId: string;
4934
- type: string;
4935
4974
  } | {
4936
4975
  __typename: 'TextBlockEventOutput';
4937
4976
  text: string;
@@ -4970,6 +5009,31 @@ type StreamEventSchemaAnchorFragment = {
4970
5009
  toolCallId: string;
4971
5010
  toolKit: string;
4972
5011
  type: string;
5012
+ } | {
5013
+ __typename: 'WidgetBlockCompleteEventOutput';
5014
+ index: number;
5015
+ summary?: string | null;
5016
+ toolCallId: string;
5017
+ type: string;
5018
+ } | {
5019
+ __typename: 'WidgetBlockErrorEventOutput';
5020
+ errorMessage: string;
5021
+ index: number;
5022
+ toolCallId: string;
5023
+ type: string;
5024
+ } | {
5025
+ __typename: 'WidgetBlockStartEventOutput';
5026
+ index: number;
5027
+ summary?: string | null;
5028
+ toolCallId: string;
5029
+ type: string;
5030
+ } | {
5031
+ __typename: 'WidgetHtmlDeltaEventOutput';
5032
+ delta: string;
5033
+ index: number;
5034
+ summary?: string | null;
5035
+ toolCallId: string;
5036
+ type: string;
4973
5037
  };
4974
5038
  };
4975
5039
  type StreamMessageContentOutputFragment = {
@@ -4997,13 +5061,6 @@ type StreamMessageOutputFragment = {
4997
5061
  type: ContentBlockType;
4998
5062
  }> | null;
4999
5063
  };
5000
- type StreamableUiDeltaEventOutputFragment = {
5001
- __typename: 'StreamableUiDeltaEventOutput';
5002
- delta: string;
5003
- index: number;
5004
- toolCallId: string;
5005
- type: string;
5006
- };
5007
5064
  type SyncEventFragment = {
5008
5065
  __typename: 'SyncEvent';
5009
5066
  createdAt: string;
@@ -5288,6 +5345,35 @@ type UserSkillFolderModelFragment = {
5288
5345
  path: string;
5289
5346
  updatedAt: string;
5290
5347
  };
5348
+ type WidgetBlockCompleteEventOutputFragment = {
5349
+ __typename: 'WidgetBlockCompleteEventOutput';
5350
+ index: number;
5351
+ summary?: string | null;
5352
+ toolCallId: string;
5353
+ type: string;
5354
+ };
5355
+ type WidgetBlockErrorEventOutputFragment = {
5356
+ __typename: 'WidgetBlockErrorEventOutput';
5357
+ errorMessage: string;
5358
+ index: number;
5359
+ toolCallId: string;
5360
+ type: string;
5361
+ };
5362
+ type WidgetBlockStartEventOutputFragment = {
5363
+ __typename: 'WidgetBlockStartEventOutput';
5364
+ index: number;
5365
+ summary?: string | null;
5366
+ toolCallId: string;
5367
+ type: string;
5368
+ };
5369
+ type WidgetHtmlDeltaEventOutputFragment = {
5370
+ __typename: 'WidgetHtmlDeltaEventOutput';
5371
+ delta: string;
5372
+ index: number;
5373
+ summary?: string | null;
5374
+ toolCallId: string;
5375
+ type: string;
5376
+ };
5291
5377
  type WindowDetailTypeFragment = {
5292
5378
  __typename: 'WindowDetailType';
5293
5379
  cost: number;
@@ -6168,4 +6254,4 @@ interface DvinaClientResult {
6168
6254
  */
6169
6255
  declare function createDvinaClient(options: DvinaSdkOptions): DvinaClientResult;
6170
6256
 
6171
- 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 IntegrationQueryVariables 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 FeedItemsQueryVariables as cA, type FeedConnectionFragment as cB, type FileQueryVariables as cC, type FileMetaQueryVariables as cD, type FileUrlsQueryVariables as cE, type ResolvedFileUrlFragment as cF, type FindFitTierQueryVariables as cG, EntitlementTier as cH, type FolderQueryVariables as cI, type FoldersQueryVariables as cJ, type FolderConnectionFragment as cK, type GetCapabilityQueryVariables as cL, type GetDevAccessTokenQueryVariables as cM, type GetLimitQueryVariables as cN, type GetRemainingQueryVariables as cO, type GetTokenUsageByModelQueryVariables as cP, type ModelTokenUsageFragment as cQ, type GetTokenUsageHistoryQueryVariables as cR, type GetTokenUsageStatusQueryVariables as cS, TokenUsageLimit as cT, ActiveWindowType as cU, type WindowDetailTypeFragment as cV, type UsageWindowsStatusTypeFragment as cW, type UsageStatusFragment as cX, type GetTokenUsageStatus_WindowsQueryVariables as cY, type GetUsageQueryVariables as cZ, type InsightsQueryVariables 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 FeedIntegrationDataFragment as cs, type FeedLiveContextDataFragment as ct, type FeedPulseDataFragment as cu, type FeedItemFragment as cv, type FeedItem_ActionQueryVariables as cw, FeedActionType as cx, type FeedSendMessageActionFragment as cy, type FeedItem_DataQueryVariables as cz, type ChatMessageFragment as d, type StreamableUiDeltaEventOutputFragment as d$, type IntegrationCatalogToolsQueryVariables as d0, type IntegrationCatalogsQueryVariables as d1, type IntegrationCatalogConnectionFragment as d2, type IntegrationsQueryVariables as d3, type IntegrationConnectionFragment as d4, type InterpretationsQueryVariables as d5, type InterpretationConnectionFragment as d6, type NotificationQueryVariables as d7, NotificationCategory as d8, NotificationPriority as d9, type McpAuthUpdateModelFragment as dA, type TokenUsageUpdatesSubscriptionVariables as dB, type EvidenceFragment as dC, type FailedSyncEventIngestionFragment as dD, type FeedItemGeneratedFragment as dE, type StreamMessageContentOutputFragment as dF, type StreamMessageOutputFragment as dG, type UsageMetaOutputFragment as dH, type FinalContentEventOutputFragment as dI, type GetTokenUsageStatus_Windows_DayQueryVariables as dJ, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as dK, type GetTokenUsageStatus_Windows_MonthQueryVariables as dL, type GetTokenUsageStatus_Windows_WeekQueryVariables as dM, type InferenceRequestAuditFragment as dN, type Integration_Provider_CatalogQueryVariables as dO, type InvocationFragment as dP, type McpClientInformationFragment as dQ, type McpCodeVerifierFragment as dR, type McpServerFragment as dS, type McpTokensFragment as dT, type McpToolFragment as dU, type MessageEndEventOutputFragment as dV, type MessageStartEventOutputFragment as dW, type PulseEvent_Integration_ProviderQueryVariables as dX, type ReasoningEventOutputFragment as dY, type ResetWorkspaceMutationVariables as dZ, type ScheduleWorkspaceDeletionMutationVariables as d_, NotificationStatus as da, type NotificationFragment as db, type NotificationsQueryVariables as dc, type NotificationConnectionFragment as dd, type NotificationsByReferenceQueryVariables as de, type PrivacyStatsQueryVariables as df, type PrivacyStatsFragment as dg, type PulseAppSummaryQueryVariables as dh, type PulseAppSummaryModelFragment as di, type PulseEventQueryVariables as dj, type PulseEventsQueryVariables as dk, type PulseEventConnectionFragment as dl, type PulseTriggerSettingsQueryVariables as dm, type QueryQueryVariables as dn, type QueryWithInsightIdQueryVariables as dp, type QueryWithMessageIdQueryVariables as dq, type ReportsQueryVariables as dr, type TablesQueryVariables as ds, type UserSkillFileQueryVariables as dt, type UserSkillFilesQueryVariables as du, type UserSkillFolderQueryVariables as dv, type UserSkillFoldersQueryVariables as dw, type WorkspaceDeletionScheduleQueryVariables as dx, type McpAuthUpdatesSubscriptionVariables as dy, McpAuthPhase 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 StreamEventSchemaAnchorFragment as e6, type SyncEventFragment as e7, type SyncEventCursorFragment as e8, type Table_Database_EngineQueryVariables as e9, FeedbackOrderByRelevanceFieldEnum as eA, FileOrderByRelevanceFieldEnum as eB, FolderOrderByRelevanceFieldEnum as eC, InsightOrderByRelevanceFieldEnum as eD, IntegrationCatalogOrderByRelevanceFieldEnum as eE, IntegrationOrderByRelevanceFieldEnum as eF, InterpretationOrderByRelevanceFieldEnum as eG, LimitType as eH, NotificationOrderByRelevanceFieldEnum as eI, NullsOrder as eJ, PulseEventOrderByRelevanceFieldEnum as eK, QueryMode as eL, ReportOrderByRelevanceFieldEnum as eM, SendMessageModel as eN, SortOrder as eO, TableOrderByRelevanceFieldEnum as eP, UsageHistoryGranularity as eQ, createChatStreamClient as eR, createDvinaClient as eS, type Table_Document_ContentsQueryVariables as ea, type Table_Document_FileQueryVariables as eb, type Table_Document_FormatQueryVariables as ec, type TokenUsageFragment as ed, type UserSkillFileFragment as ee, type UserSkillFolderFragment as ef, type ActiveChatStreamClient as eg, type ActiveChatStreamListener as eh, type ActiveChatStreamListenerHandlers as ei, AgentOrderByRelevanceFieldEnum as ej, ArtifactOrderByRelevanceFieldEnum as ek, CapabilityType as el, ChatMessageOrderByRelevanceFieldEnum as em, ChatOrderByRelevanceFieldEnum as en, type ChatStreamClientOptions as eo, type ChatStreamEvent as ep, type ChatStreamListener as eq, type ChatStreamListenerHandlers as er, DatabaseCatalogOrderByRelevanceFieldEnum as es, DatabaseOrderByRelevanceFieldEnum as et, DocumentCatalogOrderByRelevanceFieldEnum as eu, DocumentOrderByRelevanceFieldEnum as ev, type DvinaSdkBaseOptions as ew, type DvinaSdkCallbackOptions as ex, type DvinaSdkTokenOptions as ey, FeedItemOrderByRelevanceFieldEnum 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 };
6257
+ 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, FolderOrderByRelevanceFieldEnum as eG, InsightOrderByRelevanceFieldEnum as eH, IntegrationCatalogOrderByRelevanceFieldEnum as eI, IntegrationOrderByRelevanceFieldEnum as eJ, InterpretationOrderByRelevanceFieldEnum as eK, LimitType as eL, NotificationOrderByRelevanceFieldEnum as eM, NullsOrder as eN, PulseEventOrderByRelevanceFieldEnum as eO, QueryMode as eP, ReportOrderByRelevanceFieldEnum as eQ, SendMessageModel as eR, SortOrder as eS, TableOrderByRelevanceFieldEnum as eT, UsageHistoryGranularity as eU, createChatStreamClient as eV, createDvinaClient as eW, 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']>;
@@ -1510,6 +1510,7 @@ declare enum FeedItemKind {
1510
1510
  Artifact = "artifact",
1511
1511
  Database = "database",
1512
1512
  Document = "document",
1513
+ Insight = "insight",
1513
1514
  Integration = "integration",
1514
1515
  LiveContext = "live_context",
1515
1516
  Pulse = "pulse"
@@ -3234,13 +3235,6 @@ type StreamMessageOutput = {
3234
3235
  originMeta?: Maybe<Scalars['JSON']>;
3235
3236
  sentAt: Scalars['DateTime'];
3236
3237
  };
3237
- type StreamableUiDeltaEventOutput = {
3238
- __typename?: 'StreamableUiDeltaEventOutput';
3239
- delta: Scalars['String'];
3240
- index: Scalars['Int'];
3241
- toolCallId: Scalars['String'];
3242
- type: Scalars['String'];
3243
- };
3244
3238
  type StringFilter = {
3245
3239
  contains?: InputMaybe<Scalars['String']>;
3246
3240
  endsWith?: InputMaybe<Scalars['String']>;
@@ -3498,6 +3492,35 @@ type UsageMetaOutput = {
3498
3492
  promptTokens: Scalars['Int'];
3499
3493
  totalTokens: Scalars['Int'];
3500
3494
  };
3495
+ type WidgetBlockCompleteEventOutput = {
3496
+ __typename?: 'WidgetBlockCompleteEventOutput';
3497
+ index: Scalars['Int'];
3498
+ summary?: Maybe<Scalars['String']>;
3499
+ toolCallId: Scalars['String'];
3500
+ type: Scalars['String'];
3501
+ };
3502
+ type WidgetBlockErrorEventOutput = {
3503
+ __typename?: 'WidgetBlockErrorEventOutput';
3504
+ errorMessage: Scalars['String'];
3505
+ index: Scalars['Int'];
3506
+ toolCallId: Scalars['String'];
3507
+ type: Scalars['String'];
3508
+ };
3509
+ type WidgetBlockStartEventOutput = {
3510
+ __typename?: 'WidgetBlockStartEventOutput';
3511
+ index: Scalars['Int'];
3512
+ summary?: Maybe<Scalars['String']>;
3513
+ toolCallId: Scalars['String'];
3514
+ type: Scalars['String'];
3515
+ };
3516
+ type WidgetHtmlDeltaEventOutput = {
3517
+ __typename?: 'WidgetHtmlDeltaEventOutput';
3518
+ delta: Scalars['String'];
3519
+ index: Scalars['Int'];
3520
+ summary?: Maybe<Scalars['String']>;
3521
+ toolCallId: Scalars['String'];
3522
+ type: Scalars['String'];
3523
+ };
3501
3524
  type ActionFragment = {
3502
3525
  __typename: 'Action';
3503
3526
  chatMessageId?: string | null;
@@ -4116,6 +4139,13 @@ type FeedConnectionFragment = {
4116
4139
  fileName?: string | null;
4117
4140
  fileType?: string | null;
4118
4141
  kind: FeedItemKind;
4142
+ } | {
4143
+ __typename: 'FeedInsightData';
4144
+ kind: FeedItemKind;
4145
+ output?: any | null;
4146
+ pivotConfig?: any | null;
4147
+ presentation: Presentation;
4148
+ query: any;
4119
4149
  } | {
4120
4150
  __typename: 'FeedIntegrationData';
4121
4151
  integrationProviderKey?: string | null;
@@ -4159,6 +4189,14 @@ type FeedDocumentDataFragment = {
4159
4189
  fileType?: string | null;
4160
4190
  kind: FeedItemKind;
4161
4191
  };
4192
+ type FeedInsightDataFragment = {
4193
+ __typename: 'FeedInsightData';
4194
+ kind: FeedItemKind;
4195
+ output?: any | null;
4196
+ pivotConfig?: any | null;
4197
+ presentation: Presentation;
4198
+ query: any;
4199
+ };
4162
4200
  type FeedIntegrationDataFragment = {
4163
4201
  __typename: 'FeedIntegrationData';
4164
4202
  integrationProviderKey?: string | null;
@@ -4199,6 +4237,13 @@ type FeedItemFragment = {
4199
4237
  fileName?: string | null;
4200
4238
  fileType?: string | null;
4201
4239
  kind: FeedItemKind;
4240
+ } | {
4241
+ __typename: 'FeedInsightData';
4242
+ kind: FeedItemKind;
4243
+ output?: any | null;
4244
+ pivotConfig?: any | null;
4245
+ presentation: Presentation;
4246
+ query: any;
4202
4247
  } | {
4203
4248
  __typename: 'FeedIntegrationData';
4204
4249
  integrationProviderKey?: string | null;
@@ -4926,12 +4971,6 @@ type StreamEventSchemaAnchorFragment = {
4926
4971
  __typename: 'ReasoningEventOutput';
4927
4972
  delta: string;
4928
4973
  type: string;
4929
- } | {
4930
- __typename: 'StreamableUiDeltaEventOutput';
4931
- delta: string;
4932
- index: number;
4933
- toolCallId: string;
4934
- type: string;
4935
4974
  } | {
4936
4975
  __typename: 'TextBlockEventOutput';
4937
4976
  text: string;
@@ -4970,6 +5009,31 @@ type StreamEventSchemaAnchorFragment = {
4970
5009
  toolCallId: string;
4971
5010
  toolKit: string;
4972
5011
  type: string;
5012
+ } | {
5013
+ __typename: 'WidgetBlockCompleteEventOutput';
5014
+ index: number;
5015
+ summary?: string | null;
5016
+ toolCallId: string;
5017
+ type: string;
5018
+ } | {
5019
+ __typename: 'WidgetBlockErrorEventOutput';
5020
+ errorMessage: string;
5021
+ index: number;
5022
+ toolCallId: string;
5023
+ type: string;
5024
+ } | {
5025
+ __typename: 'WidgetBlockStartEventOutput';
5026
+ index: number;
5027
+ summary?: string | null;
5028
+ toolCallId: string;
5029
+ type: string;
5030
+ } | {
5031
+ __typename: 'WidgetHtmlDeltaEventOutput';
5032
+ delta: string;
5033
+ index: number;
5034
+ summary?: string | null;
5035
+ toolCallId: string;
5036
+ type: string;
4973
5037
  };
4974
5038
  };
4975
5039
  type StreamMessageContentOutputFragment = {
@@ -4997,13 +5061,6 @@ type StreamMessageOutputFragment = {
4997
5061
  type: ContentBlockType;
4998
5062
  }> | null;
4999
5063
  };
5000
- type StreamableUiDeltaEventOutputFragment = {
5001
- __typename: 'StreamableUiDeltaEventOutput';
5002
- delta: string;
5003
- index: number;
5004
- toolCallId: string;
5005
- type: string;
5006
- };
5007
5064
  type SyncEventFragment = {
5008
5065
  __typename: 'SyncEvent';
5009
5066
  createdAt: string;
@@ -5288,6 +5345,35 @@ type UserSkillFolderModelFragment = {
5288
5345
  path: string;
5289
5346
  updatedAt: string;
5290
5347
  };
5348
+ type WidgetBlockCompleteEventOutputFragment = {
5349
+ __typename: 'WidgetBlockCompleteEventOutput';
5350
+ index: number;
5351
+ summary?: string | null;
5352
+ toolCallId: string;
5353
+ type: string;
5354
+ };
5355
+ type WidgetBlockErrorEventOutputFragment = {
5356
+ __typename: 'WidgetBlockErrorEventOutput';
5357
+ errorMessage: string;
5358
+ index: number;
5359
+ toolCallId: string;
5360
+ type: string;
5361
+ };
5362
+ type WidgetBlockStartEventOutputFragment = {
5363
+ __typename: 'WidgetBlockStartEventOutput';
5364
+ index: number;
5365
+ summary?: string | null;
5366
+ toolCallId: string;
5367
+ type: string;
5368
+ };
5369
+ type WidgetHtmlDeltaEventOutputFragment = {
5370
+ __typename: 'WidgetHtmlDeltaEventOutput';
5371
+ delta: string;
5372
+ index: number;
5373
+ summary?: string | null;
5374
+ toolCallId: string;
5375
+ type: string;
5376
+ };
5291
5377
  type WindowDetailTypeFragment = {
5292
5378
  __typename: 'WindowDetailType';
5293
5379
  cost: number;
@@ -6168,4 +6254,4 @@ interface DvinaClientResult {
6168
6254
  */
6169
6255
  declare function createDvinaClient(options: DvinaSdkOptions): DvinaClientResult;
6170
6256
 
6171
- 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 IntegrationQueryVariables 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 FeedItemsQueryVariables as cA, type FeedConnectionFragment as cB, type FileQueryVariables as cC, type FileMetaQueryVariables as cD, type FileUrlsQueryVariables as cE, type ResolvedFileUrlFragment as cF, type FindFitTierQueryVariables as cG, EntitlementTier as cH, type FolderQueryVariables as cI, type FoldersQueryVariables as cJ, type FolderConnectionFragment as cK, type GetCapabilityQueryVariables as cL, type GetDevAccessTokenQueryVariables as cM, type GetLimitQueryVariables as cN, type GetRemainingQueryVariables as cO, type GetTokenUsageByModelQueryVariables as cP, type ModelTokenUsageFragment as cQ, type GetTokenUsageHistoryQueryVariables as cR, type GetTokenUsageStatusQueryVariables as cS, TokenUsageLimit as cT, ActiveWindowType as cU, type WindowDetailTypeFragment as cV, type UsageWindowsStatusTypeFragment as cW, type UsageStatusFragment as cX, type GetTokenUsageStatus_WindowsQueryVariables as cY, type GetUsageQueryVariables as cZ, type InsightsQueryVariables 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 FeedIntegrationDataFragment as cs, type FeedLiveContextDataFragment as ct, type FeedPulseDataFragment as cu, type FeedItemFragment as cv, type FeedItem_ActionQueryVariables as cw, FeedActionType as cx, type FeedSendMessageActionFragment as cy, type FeedItem_DataQueryVariables as cz, type ChatMessageFragment as d, type StreamableUiDeltaEventOutputFragment as d$, type IntegrationCatalogToolsQueryVariables as d0, type IntegrationCatalogsQueryVariables as d1, type IntegrationCatalogConnectionFragment as d2, type IntegrationsQueryVariables as d3, type IntegrationConnectionFragment as d4, type InterpretationsQueryVariables as d5, type InterpretationConnectionFragment as d6, type NotificationQueryVariables as d7, NotificationCategory as d8, NotificationPriority as d9, type McpAuthUpdateModelFragment as dA, type TokenUsageUpdatesSubscriptionVariables as dB, type EvidenceFragment as dC, type FailedSyncEventIngestionFragment as dD, type FeedItemGeneratedFragment as dE, type StreamMessageContentOutputFragment as dF, type StreamMessageOutputFragment as dG, type UsageMetaOutputFragment as dH, type FinalContentEventOutputFragment as dI, type GetTokenUsageStatus_Windows_DayQueryVariables as dJ, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as dK, type GetTokenUsageStatus_Windows_MonthQueryVariables as dL, type GetTokenUsageStatus_Windows_WeekQueryVariables as dM, type InferenceRequestAuditFragment as dN, type Integration_Provider_CatalogQueryVariables as dO, type InvocationFragment as dP, type McpClientInformationFragment as dQ, type McpCodeVerifierFragment as dR, type McpServerFragment as dS, type McpTokensFragment as dT, type McpToolFragment as dU, type MessageEndEventOutputFragment as dV, type MessageStartEventOutputFragment as dW, type PulseEvent_Integration_ProviderQueryVariables as dX, type ReasoningEventOutputFragment as dY, type ResetWorkspaceMutationVariables as dZ, type ScheduleWorkspaceDeletionMutationVariables as d_, NotificationStatus as da, type NotificationFragment as db, type NotificationsQueryVariables as dc, type NotificationConnectionFragment as dd, type NotificationsByReferenceQueryVariables as de, type PrivacyStatsQueryVariables as df, type PrivacyStatsFragment as dg, type PulseAppSummaryQueryVariables as dh, type PulseAppSummaryModelFragment as di, type PulseEventQueryVariables as dj, type PulseEventsQueryVariables as dk, type PulseEventConnectionFragment as dl, type PulseTriggerSettingsQueryVariables as dm, type QueryQueryVariables as dn, type QueryWithInsightIdQueryVariables as dp, type QueryWithMessageIdQueryVariables as dq, type ReportsQueryVariables as dr, type TablesQueryVariables as ds, type UserSkillFileQueryVariables as dt, type UserSkillFilesQueryVariables as du, type UserSkillFolderQueryVariables as dv, type UserSkillFoldersQueryVariables as dw, type WorkspaceDeletionScheduleQueryVariables as dx, type McpAuthUpdatesSubscriptionVariables as dy, McpAuthPhase 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 StreamEventSchemaAnchorFragment as e6, type SyncEventFragment as e7, type SyncEventCursorFragment as e8, type Table_Database_EngineQueryVariables as e9, FeedbackOrderByRelevanceFieldEnum as eA, FileOrderByRelevanceFieldEnum as eB, FolderOrderByRelevanceFieldEnum as eC, InsightOrderByRelevanceFieldEnum as eD, IntegrationCatalogOrderByRelevanceFieldEnum as eE, IntegrationOrderByRelevanceFieldEnum as eF, InterpretationOrderByRelevanceFieldEnum as eG, LimitType as eH, NotificationOrderByRelevanceFieldEnum as eI, NullsOrder as eJ, PulseEventOrderByRelevanceFieldEnum as eK, QueryMode as eL, ReportOrderByRelevanceFieldEnum as eM, SendMessageModel as eN, SortOrder as eO, TableOrderByRelevanceFieldEnum as eP, UsageHistoryGranularity as eQ, createChatStreamClient as eR, createDvinaClient as eS, type Table_Document_ContentsQueryVariables as ea, type Table_Document_FileQueryVariables as eb, type Table_Document_FormatQueryVariables as ec, type TokenUsageFragment as ed, type UserSkillFileFragment as ee, type UserSkillFolderFragment as ef, type ActiveChatStreamClient as eg, type ActiveChatStreamListener as eh, type ActiveChatStreamListenerHandlers as ei, AgentOrderByRelevanceFieldEnum as ej, ArtifactOrderByRelevanceFieldEnum as ek, CapabilityType as el, ChatMessageOrderByRelevanceFieldEnum as em, ChatOrderByRelevanceFieldEnum as en, type ChatStreamClientOptions as eo, type ChatStreamEvent as ep, type ChatStreamListener as eq, type ChatStreamListenerHandlers as er, DatabaseCatalogOrderByRelevanceFieldEnum as es, DatabaseOrderByRelevanceFieldEnum as et, DocumentCatalogOrderByRelevanceFieldEnum as eu, DocumentOrderByRelevanceFieldEnum as ev, type DvinaSdkBaseOptions as ew, type DvinaSdkCallbackOptions as ex, type DvinaSdkTokenOptions as ey, FeedItemOrderByRelevanceFieldEnum 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 };
6257
+ 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, FolderOrderByRelevanceFieldEnum as eG, InsightOrderByRelevanceFieldEnum as eH, IntegrationCatalogOrderByRelevanceFieldEnum as eI, IntegrationOrderByRelevanceFieldEnum as eJ, InterpretationOrderByRelevanceFieldEnum as eK, LimitType as eL, NotificationOrderByRelevanceFieldEnum as eM, NullsOrder as eN, PulseEventOrderByRelevanceFieldEnum as eO, QueryMode as eP, ReportOrderByRelevanceFieldEnum as eQ, SendMessageModel as eR, SortOrder as eS, TableOrderByRelevanceFieldEnum as eT, UsageHistoryGranularity as eU, createChatStreamClient as eV, createDvinaClient as eW, 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 };