@dvina/sdk 4.0.251 → 4.0.265

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<StringFilter>;
110
110
  updatedAt?: InputMaybe<DateTimeFilter>;
111
111
  };
112
- type AgentStreamEvent = AudioEventOutput | ChatTitleEventOutput | FinalContentEventOutput | MessageEndEventOutput | MessageStartEventOutput | ProgressSummaryEventOutput | ReasoningEventOutput | TextBlockEventOutput | TextDeltaEventOutput | ToolInputDeltaEventOutput | ToolResultEventOutput | ToolStartEventOutput | WidgetBlockCompleteEventOutput | WidgetBlockErrorEventOutput | WidgetBlockStartEventOutput | WidgetHtmlDeltaEventOutput;
112
+ type AgentStreamEvent = AudioEventOutput | ChatTitleEventOutput | ContextUsageEventOutput | FinalContentEventOutput | MessageEndEventOutput | MessageStartEventOutput | ProgressSummaryEventOutput | 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']>;
@@ -455,6 +455,7 @@ type ChatCreateInput = {
455
455
  piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
456
456
  project?: InputMaybe<ProjectCreateNestedOneWithoutChatsInput>;
457
457
  reasoningEffort?: InputMaybe<ReasoningEffort>;
458
+ workspaceMode?: InputMaybe<ChatWorkspaceMode>;
458
459
  };
459
460
  type ChatCreateManyDesktopDeviceInput = {
460
461
  closedAt?: InputMaybe<Scalars['DateTime']>;
@@ -466,6 +467,7 @@ type ChatCreateManyDesktopDeviceInput = {
466
467
  piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
467
468
  projectId?: InputMaybe<Scalars['String']>;
468
469
  reasoningEffort?: InputMaybe<ReasoningEffort>;
470
+ workspaceMode?: InputMaybe<ChatWorkspaceMode>;
469
471
  };
470
472
  type ChatCreateManyDesktopDeviceInputEnvelope = {
471
473
  data: Array<ChatCreateManyDesktopDeviceInput>;
@@ -481,6 +483,7 @@ type ChatCreateManyProjectInput = {
481
483
  piiMaskRules?: InputMaybe<Scalars['JSON']>;
482
484
  piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
483
485
  reasoningEffort?: InputMaybe<ReasoningEffort>;
486
+ workspaceMode?: InputMaybe<ChatWorkspaceMode>;
484
487
  };
485
488
  type ChatCreateManyProjectInputEnvelope = {
486
489
  data: Array<ChatCreateManyProjectInput>;
@@ -546,6 +549,7 @@ type ChatCreateWithoutArtifactsInput = {
546
549
  piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
547
550
  project?: InputMaybe<ProjectCreateNestedOneWithoutChatsInput>;
548
551
  reasoningEffort?: InputMaybe<ReasoningEffort>;
552
+ workspaceMode?: InputMaybe<ChatWorkspaceMode>;
549
553
  };
550
554
  type ChatCreateWithoutDesktopDeviceInput = {
551
555
  agents?: InputMaybe<AgentCreateNestedManyWithoutChatsInput>;
@@ -560,6 +564,7 @@ type ChatCreateWithoutDesktopDeviceInput = {
560
564
  piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
561
565
  project?: InputMaybe<ProjectCreateNestedOneWithoutChatsInput>;
562
566
  reasoningEffort?: InputMaybe<ReasoningEffort>;
567
+ workspaceMode?: InputMaybe<ChatWorkspaceMode>;
563
568
  };
564
569
  type ChatCreateWithoutInsightInput = {
565
570
  agents?: InputMaybe<AgentCreateNestedManyWithoutChatsInput>;
@@ -574,6 +579,7 @@ type ChatCreateWithoutInsightInput = {
574
579
  piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
575
580
  project?: InputMaybe<ProjectCreateNestedOneWithoutChatsInput>;
576
581
  reasoningEffort?: InputMaybe<ReasoningEffort>;
582
+ workspaceMode?: InputMaybe<ChatWorkspaceMode>;
577
583
  };
578
584
  type ChatCreateWithoutMessagesInput = {
579
585
  agents?: InputMaybe<AgentCreateNestedManyWithoutChatsInput>;
@@ -588,6 +594,7 @@ type ChatCreateWithoutMessagesInput = {
588
594
  piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
589
595
  project?: InputMaybe<ProjectCreateNestedOneWithoutChatsInput>;
590
596
  reasoningEffort?: InputMaybe<ReasoningEffort>;
597
+ workspaceMode?: InputMaybe<ChatWorkspaceMode>;
591
598
  };
592
599
  type ChatCreateWithoutProjectInput = {
593
600
  agents?: InputMaybe<AgentCreateNestedManyWithoutChatsInput>;
@@ -602,6 +609,7 @@ type ChatCreateWithoutProjectInput = {
602
609
  piiMaskRules?: InputMaybe<Scalars['JSON']>;
603
610
  piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
604
611
  reasoningEffort?: InputMaybe<ReasoningEffort>;
612
+ workspaceMode?: InputMaybe<ChatWorkspaceMode>;
605
613
  };
606
614
  type ChatImportExecuteInput = {
607
615
  files: Array<ChatImportFileInput>;
@@ -878,6 +886,7 @@ type ChatOrderByWithRelationInput = {
878
886
  projectId?: InputMaybe<SortOrderInput>;
879
887
  reasoningEffort?: InputMaybe<SortOrder>;
880
888
  updatedAt?: InputMaybe<SortOrder>;
889
+ workspaceMode?: InputMaybe<SortOrderInput>;
881
890
  };
882
891
  type ChatScalarRelationFilter = {
883
892
  is?: InputMaybe<ChatWhereInput>;
@@ -899,6 +908,7 @@ type ChatScalarWhereInput = {
899
908
  projectId?: InputMaybe<StringFilter>;
900
909
  reasoningEffort?: InputMaybe<EnumReasoningEffortFilter>;
901
910
  updatedAt?: InputMaybe<DateTimeFilter>;
911
+ workspaceMode?: InputMaybe<EnumChatWorkspaceModeFilter>;
902
912
  };
903
913
  declare enum ChatSourceImportFidelityEnum {
904
914
  Exact = "Exact",
@@ -931,6 +941,7 @@ type ChatUpdateInput = {
931
941
  piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
932
942
  project?: InputMaybe<ProjectUpdateOneWithoutChatsNestedInput>;
933
943
  reasoningEffort?: InputMaybe<ReasoningEffort>;
944
+ workspaceMode?: InputMaybe<ChatWorkspaceMode>;
934
945
  };
935
946
  type ChatUpdateManyMutationInput = {
936
947
  closedAt?: InputMaybe<Scalars['DateTime']>;
@@ -940,6 +951,7 @@ type ChatUpdateManyMutationInput = {
940
951
  piiMaskRules?: InputMaybe<Scalars['JSON']>;
941
952
  piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
942
953
  reasoningEffort?: InputMaybe<ReasoningEffort>;
954
+ workspaceMode?: InputMaybe<ChatWorkspaceMode>;
943
955
  };
944
956
  type ChatUpdateManyWithWhereWithoutDesktopDeviceInput = {
945
957
  data: ChatUpdateManyMutationInput;
@@ -1033,6 +1045,7 @@ type ChatUpdateWithoutArtifactsInput = {
1033
1045
  piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
1034
1046
  project?: InputMaybe<ProjectUpdateOneWithoutChatsNestedInput>;
1035
1047
  reasoningEffort?: InputMaybe<ReasoningEffort>;
1048
+ workspaceMode?: InputMaybe<ChatWorkspaceMode>;
1036
1049
  };
1037
1050
  type ChatUpdateWithoutDesktopDeviceInput = {
1038
1051
  agents?: InputMaybe<AgentUpdateManyWithoutChatsNestedInput>;
@@ -1047,6 +1060,7 @@ type ChatUpdateWithoutDesktopDeviceInput = {
1047
1060
  piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
1048
1061
  project?: InputMaybe<ProjectUpdateOneWithoutChatsNestedInput>;
1049
1062
  reasoningEffort?: InputMaybe<ReasoningEffort>;
1063
+ workspaceMode?: InputMaybe<ChatWorkspaceMode>;
1050
1064
  };
1051
1065
  type ChatUpdateWithoutInsightInput = {
1052
1066
  agents?: InputMaybe<AgentUpdateManyWithoutChatsNestedInput>;
@@ -1061,6 +1075,7 @@ type ChatUpdateWithoutInsightInput = {
1061
1075
  piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
1062
1076
  project?: InputMaybe<ProjectUpdateOneWithoutChatsNestedInput>;
1063
1077
  reasoningEffort?: InputMaybe<ReasoningEffort>;
1078
+ workspaceMode?: InputMaybe<ChatWorkspaceMode>;
1064
1079
  };
1065
1080
  type ChatUpdateWithoutMessagesInput = {
1066
1081
  agents?: InputMaybe<AgentUpdateManyWithoutChatsNestedInput>;
@@ -1075,6 +1090,7 @@ type ChatUpdateWithoutMessagesInput = {
1075
1090
  piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
1076
1091
  project?: InputMaybe<ProjectUpdateOneWithoutChatsNestedInput>;
1077
1092
  reasoningEffort?: InputMaybe<ReasoningEffort>;
1093
+ workspaceMode?: InputMaybe<ChatWorkspaceMode>;
1078
1094
  };
1079
1095
  type ChatUpdateWithoutProjectInput = {
1080
1096
  agents?: InputMaybe<AgentUpdateManyWithoutChatsNestedInput>;
@@ -1089,6 +1105,7 @@ type ChatUpdateWithoutProjectInput = {
1089
1105
  piiMaskRules?: InputMaybe<Scalars['JSON']>;
1090
1106
  piiSanitizationEnabled?: InputMaybe<Scalars['Boolean']>;
1091
1107
  reasoningEffort?: InputMaybe<ReasoningEffort>;
1108
+ workspaceMode?: InputMaybe<ChatWorkspaceMode>;
1092
1109
  };
1093
1110
  type ChatUpsertWithWhereUniqueWithoutDesktopDeviceInput = {
1094
1111
  create: ChatCreateWithoutDesktopDeviceInput;
@@ -1137,6 +1154,7 @@ type ChatWhereInput = {
1137
1154
  projectId?: InputMaybe<StringFilter>;
1138
1155
  reasoningEffort?: InputMaybe<EnumReasoningEffortFilter>;
1139
1156
  updatedAt?: InputMaybe<DateTimeFilter>;
1157
+ workspaceMode?: InputMaybe<EnumChatWorkspaceModeFilter>;
1140
1158
  };
1141
1159
  type ChatWhereUniqueInput = {
1142
1160
  AND?: InputMaybe<Array<ChatWhereInput>>;
@@ -1160,7 +1178,12 @@ type ChatWhereUniqueInput = {
1160
1178
  projectId?: InputMaybe<StringFilter>;
1161
1179
  reasoningEffort?: InputMaybe<EnumReasoningEffortFilter>;
1162
1180
  updatedAt?: InputMaybe<DateTimeFilter>;
1181
+ workspaceMode?: InputMaybe<EnumChatWorkspaceModeFilter>;
1163
1182
  };
1183
+ declare enum ChatWorkspaceMode {
1184
+ Main = "main",
1185
+ Worktree = "worktree"
1186
+ }
1164
1187
  type ContentBlockCreateManyChatMessageInput = {
1165
1188
  content: Scalars['String'];
1166
1189
  id?: InputMaybe<Scalars['String']>;
@@ -1380,6 +1403,11 @@ type ContentMaskWhereUniqueInput = {
1380
1403
  id?: InputMaybe<Scalars['String']>;
1381
1404
  piiMetadata?: InputMaybe<JsonFilter>;
1382
1405
  };
1406
+ type ContextUsageEventOutput = {
1407
+ __typename?: 'ContextUsageEventOutput';
1408
+ tokens: Scalars['Int'];
1409
+ type: Scalars['String'];
1410
+ };
1383
1411
  declare enum DatabaseCatalogOrderByRelevanceFieldEnum {
1384
1412
  AuthorName = "authorName",
1385
1413
  AuthorUrl = "authorUrl",
@@ -1828,6 +1856,12 @@ type EnumChatMessageFromEnumFilter = {
1828
1856
  not?: InputMaybe<EnumChatMessageFromEnumFilter>;
1829
1857
  notIn?: InputMaybe<Array<ChatMessageFromEnum>>;
1830
1858
  };
1859
+ type EnumChatWorkspaceModeFilter = {
1860
+ equals?: InputMaybe<ChatWorkspaceMode>;
1861
+ in?: InputMaybe<Array<ChatWorkspaceMode>>;
1862
+ not?: InputMaybe<EnumChatWorkspaceModeFilter>;
1863
+ notIn?: InputMaybe<Array<ChatWorkspaceMode>>;
1864
+ };
1831
1865
  type EnumContentBlockTypeFilter = {
1832
1866
  equals?: InputMaybe<ContentBlockType>;
1833
1867
  in?: InputMaybe<Array<ContentBlockType>>;
@@ -2177,6 +2211,7 @@ type FileWhereUniqueInput = {
2177
2211
  };
2178
2212
  type FinalContentEventOutput = {
2179
2213
  __typename?: 'FinalContentEventOutput';
2214
+ contextUsage?: Maybe<Scalars['Int']>;
2180
2215
  message: StreamMessageOutput;
2181
2216
  type: Scalars['String'];
2182
2217
  usage: UsageMetaOutput;
@@ -4084,6 +4119,7 @@ type ToolResultEventOutput = {
4084
4119
  artifacts?: Maybe<Array<ToolResultArtifactOutput>>;
4085
4120
  index: Scalars['Int'];
4086
4121
  input: Scalars['String'];
4122
+ metadata?: Maybe<Scalars['JSON']>;
4087
4123
  name: Scalars['String'];
4088
4124
  output: Scalars['String'];
4089
4125
  toolCallId: Scalars['String'];
@@ -4342,6 +4378,7 @@ type ChatFragment = {
4342
4378
  reasoningEffort: ReasoningEffort;
4343
4379
  sourceProvider?: ChatSourceProviderEnum | null;
4344
4380
  updatedAt: string;
4381
+ workspaceMode?: ChatWorkspaceMode | null;
4345
4382
  desktopDevice?: {
4346
4383
  __typename?: 'DesktopDevice';
4347
4384
  id: string;
@@ -4373,6 +4410,7 @@ type ChatConnectionFragment = {
4373
4410
  reasoningEffort: ReasoningEffort;
4374
4411
  sourceProvider?: ChatSourceProviderEnum | null;
4375
4412
  updatedAt: string;
4413
+ workspaceMode?: ChatWorkspaceMode | null;
4376
4414
  desktopDevice?: {
4377
4415
  __typename?: 'DesktopDevice';
4378
4416
  id: string;
@@ -4545,6 +4583,11 @@ type ContentMaskFragment = {
4545
4583
  }> | null;
4546
4584
  };
4547
4585
  };
4586
+ type ContextUsageEventOutputFragment = {
4587
+ __typename: 'ContextUsageEventOutput';
4588
+ tokens: number;
4589
+ type: string;
4590
+ };
4548
4591
  type CreateIntegrationOutputFragment = {
4549
4592
  __typename: 'CreateIntegrationOutput';
4550
4593
  error?: string | null;
@@ -5267,6 +5310,7 @@ type FileModelFragment = {
5267
5310
  };
5268
5311
  type FinalContentEventOutputFragment = {
5269
5312
  __typename: 'FinalContentEventOutput';
5313
+ contextUsage?: number | null;
5270
5314
  type: string;
5271
5315
  message: {
5272
5316
  __typename: 'StreamMessageOutput';
@@ -5967,8 +6011,13 @@ type StreamEventSchemaAnchorFragment = {
5967
6011
  __typename: 'ChatTitleEventOutput';
5968
6012
  title: string;
5969
6013
  type: string;
6014
+ } | {
6015
+ __typename: 'ContextUsageEventOutput';
6016
+ tokens: number;
6017
+ type: string;
5970
6018
  } | {
5971
6019
  __typename: 'FinalContentEventOutput';
6020
+ contextUsage?: number | null;
5972
6021
  type: string;
5973
6022
  message: {
5974
6023
  __typename: 'StreamMessageOutput';
@@ -6048,6 +6097,7 @@ type StreamEventSchemaAnchorFragment = {
6048
6097
  __typename: 'ToolResultEventOutput';
6049
6098
  index: number;
6050
6099
  input: string;
6100
+ metadata?: any | null;
6051
6101
  name: string;
6052
6102
  output: string;
6053
6103
  toolCallId: string;
@@ -6251,6 +6301,7 @@ type ToolResultEventOutputFragment = {
6251
6301
  __typename: 'ToolResultEventOutput';
6252
6302
  index: number;
6253
6303
  input: string;
6304
+ metadata?: any | null;
6254
6305
  name: string;
6255
6306
  output: string;
6256
6307
  toolCallId: string;
@@ -7470,4 +7521,4 @@ interface DvinaClientResult {
7470
7521
  */
7471
7522
  declare function createDvinaClient(options: DvinaSdkOptions): DvinaClientResult;
7472
7523
 
7473
- export { type Insight_ThumbnailFileQueryVariables as $, type AbortChatMutationVariables as A, type Artifact_FileQueryVariables as B, type ChatMessageQueryVariables as C, type DvinaSdkOptions as D, type Artifact_MessageQueryVariables as E, type FileFragment as F, type ChatMessage_ChatQueryVariables as G, type ChatMessage_ContentsQueryVariables as H, ContentBlockType as I, type ContentBlockFragment as J, type ChatMessage_FeedbackQueryVariables as K, FeedbackType as L, type FeedbackFragment as M, type Chat_InsightQueryVariables as N, type Insight_ChatQueryVariables as O, ProjectDesktopContextKind as P, type Insight_ReportMembersQueryVariables as Q, ReasoningEffort as R, ReportMemberSize as S, Presentation as T, type ReportMemberFragment as U, type ReportQueryVariables as V, type ReportFragment as W, type Report_InsightsQueryVariables as X, type InsightFragment as Y, type Insight_ReportsQueryVariables as Z, type ReportConnectionFragment as _, ActionType as a, type DatabaseCatalog_EngineQueryVariables as a$, type InsightConnectionFragment as a0, type Report_LayoutQueryVariables as a1, type InsightQueryVariables as a2, type Chat_MessagesQueryVariables as a3, type ChatMessageConnectionFragment as a4, type Chat_ProjectQueryVariables as a5, type DesktopDeviceQueryVariables as a6, type ArtifactConnectionFragment as a7, type AddInsightToReportMutationVariables as a8, type AgentQueryVariables as a9, ChatSourceImportModeEnum as aA, type ChatImportPreviewOutputFragment as aB, type ChatMessage_Chat_DesktopDeviceQueryVariables as aC, type ChatMessage_Chat_InsightQueryVariables as aD, type ChatMessage_Chat_ProjectQueryVariables as aE, type ChatMessagesQueryVariables as aF, type ChatQueryVariables as aG, type ChatTitleEventOutputFragment as aH, type Chat_DesktopDevice_DesktopBindingsQueryVariables as aI, type Chat_Insight_ReportMembersQueryVariables as aJ, type Chat_Insight_ThumbnailFileQueryVariables as aK, type Chat_Project_DesktopBindingQueryVariables as aL, type ChatsQueryVariables as aM, type ConnectIntegrationMutationVariables as aN, type CreateIntegrationOutputFragment as aO, type ConsumePulseEventsMutationVariables as aP, type ContentMaskFragment as aQ, type ContinueImportedChatMutationVariables as aR, type ContinueInterpretationMutationVariables as aS, type CreateAgentMutationVariables as aT, type CreateChatMutationVariables as aU, type CreateDatabaseMutationVariables as aV, type DatabaseFragment as aW, type Database_EngineQueryVariables as aX, type DatabaseEngineFragment as aY, type DatabaseCatalogQueryVariables as aZ, type DatabaseCatalogFragment as a_, type AgentsQueryVariables as aa, type AiProviderSettingQueryVariables as ab, type UserAiProviderSettingFragment as ac, type ArtifactQueryVariables as ad, type Artifact_Chat_DesktopDeviceQueryVariables as ae, type Artifact_Chat_InsightQueryVariables as af, type Artifact_Chat_ProjectQueryVariables as ag, type Artifact_Message_ChatQueryVariables as ah, type Artifact_Message_ContentsQueryVariables as ai, type Artifact_Message_FeedbackQueryVariables as aj, type ArtifactsQueryVariables as ak, type AudioEventOutputFragment as al, type CancelOauthFlowMutationVariables as am, type CancelWorkspaceDeletionMutationVariables as an, type CandidateFragment as ao, type LiveContextQueryVariables as ap, LiveContextStatus as aq, type LiveContextFragment as ar, type LiveContext_ItemsQueryVariables as as, FeedActionType as at, type FeedItemGeneratedFragment as au, type LiveContext_SourceQueryVariables as av, type CandidateEvidenceFragment as aw, type ImportedChatSummaryOutputFragment as ax, type ChatImportExecuteOutputFragment as ay, ChatSourceImportFidelityEnum as az, type ActionFragment as b, type DismissPulseEventMutationVariables as b$, type Database_TablesQueryVariables as b0, TableStatus as b1, type TableFragment as b2, type Table_DatabaseQueryVariables as b3, type Table_DocumentQueryVariables as b4, type DocumentFragment as b5, type Document_ContentsQueryVariables as b6, type DocumentContentFragment as b7, type DocumentQueryVariables as b8, type Document_FileQueryVariables as b9, type DatabaseCatalogConnectionFragment as bA, type DatabaseCatalogsQueryVariables as bB, type DatabaseConnectionFragment as bC, type DatabaseQueryVariables as bD, type DatabaseSchemaQueryVariables as bE, type Database_Engine_CatalogQueryVariables as bF, type DatabasesQueryVariables as bG, type DeepAnalysisUsageFragment as bH, type DeleteAgentMutationVariables as bI, type DeleteAiProviderSettingMutationVariables as bJ, type DeleteArtifactMutationVariables as bK, type DeleteChatMutationVariables as bL, type DeleteDatabaseMutationVariables as bM, type DeleteDocumentMutationVariables as bN, type DeleteFolderMutationVariables as bO, type DeleteInsightMutationVariables as bP, type DeleteInsightsMutationVariables as bQ, type DeleteIntegrationMutationVariables as bR, type DeleteProjectMutationVariables as bS, type DeleteReportMutationVariables as bT, type DeleteTableMutationVariables as bU, type DeleteUserSkillFileMutationVariables as bV, type DeleteUserSkillFolderMutationVariables as bW, type DesktopDeviceConnectionFragment as bX, type DesktopDevicesQueryVariables as bY, type DevAccessTokenOutputFragment as bZ, type DisconnectIntegrationMutationVariables as b_, type Document_FormatQueryVariables as ba, type DocumentFormatFragment as bb, type DocumentCatalogQueryVariables as bc, type DocumentCatalogFragment as bd, type DocumentCatalog_FormatQueryVariables as be, type Document_TablesQueryVariables as bf, type Table_FromRelationsQueryVariables as bg, RelationType as bh, type RelationFragment as bi, type TableQueryVariables as bj, type Table_ToRelationsQueryVariables as bk, type TableConnectionFragment as bl, type CreateDocumentMutationVariables as bm, type CreateFeedbackMutationVariables as bn, type CreateFolderMutationVariables as bo, type FolderFragment as bp, type CreateInsightMutationVariables as bq, type CreateIntegrationMutationVariables as br, type CreateProjectMutationVariables as bs, type CreateReportMutationVariables as bt, type CreateTableMutationVariables as bu, type CreateUserSkillFileMutationVariables as bv, type UserSkillFileModelFragment as bw, type CreateUserSkillFolderMutationVariables as bx, type UserSkillFolderModelFragment as by, type CubeModelFragment as bz, ChatMessageFromEnum as c, type ExportWithInsightIdQueryVariables as c$, PulseEventPriority as c0, PulseEventKind as c1, type PulseEventFragment as c2, type PulseEvent_IntegrationQueryVariables as c3, IntegrationStatus as c4, type IntegrationFragment as c5, type Integration_ProviderQueryVariables as c6, type IntegrationProviderFragment as c7, type IntegrationCatalogQueryVariables as c8, type IntegrationCatalogFragment as c9, type WorkspaceDeleteScheduleFragment as cA, type SendMessageMutationVariables as cB, type SetDatabasePrimaryKeyMutationVariables as cC, type SyncProjectDesktopBindingMutationVariables as cD, type UpdateAgentMutationVariables as cE, type UpdateArtifactNameMutationVariables as cF, type UpdateChatMutationVariables as cG, type UpdateDatabaseMutationVariables as cH, type UpdateDocumentMutationVariables as cI, type UpdateFolderMutationVariables as cJ, type UpdateInsightMutationVariables as cK, type UpdateInsightInReportMutationVariables as cL, type UpdateInsightThumbnailMutationVariables as cM, type UpdateInterpMutationVariables as cN, InterpretationType as cO, AiResourceType as cP, type InterpretationFragment as cQ, type UpdateLiveContextMutationVariables as cR, type UpdateProjectMutationVariables as cS, type UpdatePulseTriggerMutationVariables as cT, type PulseTriggerSettingModelFragment as cU, type UpdateReportMutationVariables as cV, type UpdateTableMutationVariables as cW, type UpdateUserSkillFileMutationVariables as cX, type UpdateUserSkillFolderMutationVariables as cY, type UpsertAiProviderSettingMutationVariables as cZ, type ExportQueryVariables as c_, type IntegrationCatalog_ProviderQueryVariables as ca, type DocumentCatalogConnectionFragment as cb, type DocumentCatalogsQueryVariables as cc, type DocumentConnectionFragment as cd, type Document_Format_CatalogQueryVariables as ce, type DocumentsQueryVariables as cf, type ChatStreamClient as cg, type DvinaSdkLifecycle as ch, type ExecuteChatImportMutationVariables as ci, type GenerateUploadUriMutationVariables as cj, type FileModelFragment as ck, type MigrateLegacyCodeChatsMutationVariables as cl, type LegacyCodeMigratedChatSummaryOutputFragment as cm, type LegacyCodeMigrationOutputFragment as cn, type PreviewChatImportMutationVariables as co, type ReanalyzeDocumentMutationVariables as cp, type RefineAgentInstructionMutationVariables as cq, type RefineSkillInstructionMutationVariables as cr, type RefreshDatabaseSchemaMutationVariables as cs, type RefreshInsightMutationVariables as ct, type RegisterDesktopDeviceMutationVariables as cu, type ReinterpretSourceMutationVariables as cv, type ReinterpretSourcesOfuserMutationVariables as cw, type RelocateInsightMutationVariables as cx, type RemoveInsightFromReportMutationVariables as cy, type ResolvePulseEventMutationVariables as cz, type ChatMessageFragment as d, type PrivacyStatsQueryVariables as d$, type FeedItemQueryVariables as d0, FeedItemKind as d1, type FeedDocumentDataFragment as d2, type FeedArtifactDataFragment as d3, type FeedDatabaseDataFragment as d4, type FeedInsightDataFragment as d5, type FeedIntegrationDataFragment as d6, type FeedProjectDataFragment as d7, type FeedLiveContextDataFragment as d8, type FeedPulseDataFragment as d9, type WindowDetailTypeFragment as dA, type UsageWindowsStatusTypeFragment as dB, type UsageStatusFragment as dC, type GetTokenUsageStatus_WindowsQueryVariables as dD, type GetUsageQueryVariables as dE, type InsightsQueryVariables as dF, type IntegrationQueryVariables as dG, type IntegrationCatalogToolsQueryVariables as dH, type IntegrationCatalogsQueryVariables as dI, type IntegrationCatalogConnectionFragment as dJ, type IntegrationsQueryVariables as dK, type IntegrationConnectionFragment as dL, type InterpretationsQueryVariables as dM, type InterpretationConnectionFragment as dN, type LiveContextsQueryVariables as dO, type LiveContextConnectionFragment as dP, type LocalSandboxDeviceStatusesQueryVariables as dQ, LocalSandboxDeviceConnectionState as dR, type LocalSandboxDeviceStatusModelFragment as dS, type NotificationQueryVariables as dT, NotificationCategory as dU, NotificationPriority as dV, NotificationStatus as dW, type NotificationFragment as dX, type NotificationsQueryVariables as dY, type NotificationConnectionFragment as dZ, type NotificationsByReferenceQueryVariables as d_, type FeedItemFragment as da, type FeedItem_ActionQueryVariables as db, type FeedSendMessageActionFragment as dc, type FeedItem_DataQueryVariables as dd, type FeedItemsQueryVariables as de, type FeedConnectionFragment as df, type FileQueryVariables as dg, type FileMetaQueryVariables as dh, type FileUrlsQueryVariables as di, type ResolvedFileUrlFragment as dj, type FindFitTierQueryVariables as dk, EntitlementTier as dl, type FolderQueryVariables as dm, type FoldersQueryVariables as dn, type FolderConnectionFragment as dp, type GetCapabilityQueryVariables as dq, type GetDevAccessTokenQueryVariables as dr, type GetLimitQueryVariables as ds, type GetRemainingQueryVariables as dt, type GetTokenUsageByModelQueryVariables as du, type ModelTokenUsageFragment as dv, type GetTokenUsageHistoryQueryVariables as dw, type GetTokenUsageStatusQueryVariables as dx, TokenUsageLimit as dy, ActiveWindowType as dz, type ChatMessage_ArtifactsQueryVariables as e, type ToolResultArtifactOutputFragment as e$, type PrivacyStatsFragment as e0, type ProjectsQueryVariables as e1, type ProjectConnectionFragment as e2, type PulseAppSummaryQueryVariables as e3, type PulseAppSummaryModelFragment as e4, type PulseEventQueryVariables as e5, type PulseEventsQueryVariables as e6, type PulseEventConnectionFragment as e7, type PulseTriggerSettingsQueryVariables as e8, type QueryQueryVariables as e9, type InferenceRequestAuditFragment as eA, type Insight_Chat_DesktopDeviceQueryVariables as eB, type Insight_Chat_ProjectQueryVariables as eC, type Integration_Provider_CatalogQueryVariables as eD, type InvocationFragment as eE, type LiveContext_Source_EvidencesQueryVariables as eF, type McpClientInformationFragment as eG, type McpCodeVerifierFragment as eH, type McpServerFragment as eI, type McpTokensFragment as eJ, type McpToolFragment as eK, type MessageEndEventOutputFragment as eL, type MessageStartEventOutputFragment as eM, type ProgressSummaryEventOutputFragment as eN, type Project_DesktopBinding_DeviceQueryVariables as eO, type PulseEvent_Integration_ProviderQueryVariables as eP, type ReasoningEventOutputFragment as eQ, type ResetWorkspaceMutationVariables as eR, type ScheduleWorkspaceDeletionMutationVariables as eS, type TextBlockEventOutputFragment as eT, type TextDeltaEventOutputFragment as eU, type WidgetBlockStartEventOutputFragment as eV, type WidgetHtmlDeltaEventOutputFragment as eW, type WidgetBlockCompleteEventOutputFragment as eX, type WidgetBlockErrorEventOutputFragment as eY, type ToolStartEventOutputFragment as eZ, type ToolInputDeltaEventOutputFragment as e_, type QueryWithInsightIdQueryVariables as ea, type QueryWithMessageIdQueryVariables as eb, type ReportsQueryVariables as ec, type SkillCatalogQueryVariables as ed, SkillCatalogSource as ee, type SkillCatalogItemFragment as ef, type TablesQueryVariables as eg, type UserSkillFileQueryVariables as eh, type UserSkillFilesQueryVariables as ei, type UserSkillFolderQueryVariables as ej, type UserSkillFoldersQueryVariables as ek, type WorkspaceDeletionScheduleQueryVariables as el, type McpAuthUpdatesSubscriptionVariables as em, McpAuthPhase as en, type McpAuthUpdateModelFragment as eo, type TokenUsageUpdatesSubscriptionVariables as ep, type EvidenceFragment as eq, type FailedSyncEventIngestionFragment as er, type StreamMessageContentOutputFragment as es, type StreamMessageOutputFragment as et, type UsageMetaOutputFragment as eu, type FinalContentEventOutputFragment as ev, type GetTokenUsageStatus_Windows_DayQueryVariables as ew, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as ex, type GetTokenUsageStatus_Windows_MonthQueryVariables as ey, type GetTokenUsageStatus_Windows_WeekQueryVariables as ez, ArtifactKind as f, type ToolResultEventOutputFragment as f0, type StreamEventSchemaAnchorFragment as f1, type SyncEventFragment as f2, type SyncEventCursorFragment as f3, type Table_Database_EngineQueryVariables as f4, type Table_Document_ContentsQueryVariables as f5, type Table_Document_FileQueryVariables as f6, type Table_Document_FormatQueryVariables as f7, type TokenUsageFragment as f8, type UserSkillFileFragment as f9, FolderOrderByRelevanceFieldEnum as fA, InsightOrderByRelevanceFieldEnum as fB, IntegrationCatalogOrderByRelevanceFieldEnum as fC, IntegrationOrderByRelevanceFieldEnum as fD, InterpretationOrderByRelevanceFieldEnum as fE, LimitType as fF, LiveContextOrderByRelevanceFieldEnum as fG, NotificationOrderByRelevanceFieldEnum as fH, NullsOrder as fI, ProjectDesktopBindingOrderByRelevanceFieldEnum as fJ, ProjectOrderByRelevanceFieldEnum as fK, PulseEventOrderByRelevanceFieldEnum as fL, QueryMode as fM, ReportOrderByRelevanceFieldEnum as fN, SendMessageModel as fO, SortOrder as fP, TableOrderByRelevanceFieldEnum as fQ, UsageHistoryGranularity as fR, createChatStreamClient as fS, createDvinaClient as fT, type UserSkillFolderFragment as fa, type ActiveChatStreamClient as fb, type ActiveChatStreamListener as fc, type ActiveChatStreamListenerHandlers as fd, AgentOrderByRelevanceFieldEnum as fe, ArtifactOrderByRelevanceFieldEnum as ff, CapabilityType as fg, ChatMessageOrderByRelevanceFieldEnum as fh, ChatOrderByRelevanceFieldEnum as fi, type ChatStreamClientOptions as fj, type ChatStreamEvent as fk, type ChatStreamListener as fl, type ChatStreamListenerHandlers as fm, DatabaseCatalogOrderByRelevanceFieldEnum as fn, DatabaseOrderByRelevanceFieldEnum as fo, DesktopDeviceOrderByRelevanceFieldEnum as fp, DocumentCatalogOrderByRelevanceFieldEnum as fq, DocumentOrderByRelevanceFieldEnum as fr, type DvinaSdkBaseOptions as fs, type DvinaSdkCallbackOptions as ft, type DvinaSdkLifecycleHint as fu, type DvinaSdkTokenOptions as fv, FeedItemOrderByRelevanceFieldEnum as fw, FeedbackOrderByRelevanceFieldEnum as fx, FileOrderByRelevanceFieldEnum as fy, FileUrlVariant as fz, type ArtifactFragment as g, type Artifact_ChatQueryVariables as h, ChatSourceProviderEnum as i, type ChatFragment as j, type Chat_AgentsQueryVariables as k, type AgentFragment as l, type Agent_ChatsQueryVariables as m, type ChatConnectionFragment as n, type AgentConnectionFragment as o, type Chat_ArtifactsQueryVariables as p, type Chat_DesktopDeviceQueryVariables as q, type DesktopDeviceFragment as r, type DesktopDevice_ChatsQueryVariables as s, type DesktopDevice_DesktopBindingsQueryVariables as t, type ProjectDesktopBindingFragment as u, type ProjectQueryVariables as v, ProjectSource as w, type ProjectFragment as x, type Project_ChatsQueryVariables as y, type Project_DesktopBindingQueryVariables as z };
7524
+ export { type ReportConnectionFragment as $, type AbortChatMutationVariables as A, type Project_DesktopBindingQueryVariables as B, type ChatMessageQueryVariables as C, type DvinaSdkOptions as D, type Artifact_FileQueryVariables as E, type FileFragment as F, type Artifact_MessageQueryVariables as G, type ChatMessage_ChatQueryVariables as H, type ChatMessage_ContentsQueryVariables as I, ContentBlockType as J, type ContentBlockFragment as K, type ChatMessage_FeedbackQueryVariables as L, FeedbackType as M, type FeedbackFragment as N, type Chat_InsightQueryVariables as O, ProjectDesktopContextKind as P, type Insight_ChatQueryVariables as Q, ReasoningEffort as R, type Insight_ReportMembersQueryVariables as S, ReportMemberSize as T, Presentation as U, type ReportMemberFragment as V, type ReportQueryVariables as W, type ReportFragment as X, type Report_InsightsQueryVariables as Y, type InsightFragment as Z, type Insight_ReportsQueryVariables as _, ActionType as a, type DatabaseCatalogQueryVariables as a$, type Insight_ThumbnailFileQueryVariables as a0, type InsightConnectionFragment as a1, type Report_LayoutQueryVariables as a2, type InsightQueryVariables as a3, type Chat_MessagesQueryVariables as a4, type ChatMessageConnectionFragment as a5, type Chat_ProjectQueryVariables as a6, type DesktopDeviceQueryVariables as a7, type ArtifactConnectionFragment as a8, type AddInsightToReportMutationVariables as a9, ChatSourceImportFidelityEnum as aA, ChatSourceImportModeEnum as aB, type ChatImportPreviewOutputFragment as aC, type ChatMessage_Chat_DesktopDeviceQueryVariables as aD, type ChatMessage_Chat_InsightQueryVariables as aE, type ChatMessage_Chat_ProjectQueryVariables as aF, type ChatMessagesQueryVariables as aG, type ChatQueryVariables as aH, type ChatTitleEventOutputFragment as aI, type Chat_DesktopDevice_DesktopBindingsQueryVariables as aJ, type Chat_Insight_ReportMembersQueryVariables as aK, type Chat_Insight_ThumbnailFileQueryVariables as aL, type Chat_Project_DesktopBindingQueryVariables as aM, type ChatsQueryVariables as aN, type ConnectIntegrationMutationVariables as aO, type CreateIntegrationOutputFragment as aP, type ConsumePulseEventsMutationVariables as aQ, type ContentMaskFragment as aR, type ContextUsageEventOutputFragment as aS, type ContinueImportedChatMutationVariables as aT, type ContinueInterpretationMutationVariables as aU, type CreateAgentMutationVariables as aV, type CreateChatMutationVariables as aW, type CreateDatabaseMutationVariables as aX, type DatabaseFragment as aY, type Database_EngineQueryVariables as aZ, type DatabaseEngineFragment as a_, type AgentQueryVariables as aa, type AgentsQueryVariables as ab, type AiProviderSettingQueryVariables as ac, type UserAiProviderSettingFragment as ad, type ArtifactQueryVariables as ae, type Artifact_Chat_DesktopDeviceQueryVariables as af, type Artifact_Chat_InsightQueryVariables as ag, type Artifact_Chat_ProjectQueryVariables as ah, type Artifact_Message_ChatQueryVariables as ai, type Artifact_Message_ContentsQueryVariables as aj, type Artifact_Message_FeedbackQueryVariables as ak, type ArtifactsQueryVariables as al, type AudioEventOutputFragment as am, type CancelOauthFlowMutationVariables as an, type CancelWorkspaceDeletionMutationVariables as ao, type CandidateFragment as ap, type LiveContextQueryVariables as aq, LiveContextStatus as ar, type LiveContextFragment as as, type LiveContext_ItemsQueryVariables as at, FeedActionType as au, type FeedItemGeneratedFragment as av, type LiveContext_SourceQueryVariables as aw, type CandidateEvidenceFragment as ax, type ImportedChatSummaryOutputFragment as ay, type ChatImportExecuteOutputFragment as az, type ActionFragment as b, type DevAccessTokenOutputFragment as b$, type DatabaseCatalogFragment as b0, type DatabaseCatalog_EngineQueryVariables as b1, type Database_TablesQueryVariables as b2, TableStatus as b3, type TableFragment as b4, type Table_DatabaseQueryVariables as b5, type Table_DocumentQueryVariables as b6, type DocumentFragment as b7, type Document_ContentsQueryVariables as b8, type DocumentContentFragment as b9, type UserSkillFolderModelFragment as bA, type CubeModelFragment as bB, type DatabaseCatalogConnectionFragment as bC, type DatabaseCatalogsQueryVariables as bD, type DatabaseConnectionFragment as bE, type DatabaseQueryVariables as bF, type DatabaseSchemaQueryVariables as bG, type Database_Engine_CatalogQueryVariables as bH, type DatabasesQueryVariables as bI, type DeepAnalysisUsageFragment as bJ, type DeleteAgentMutationVariables as bK, type DeleteAiProviderSettingMutationVariables as bL, type DeleteArtifactMutationVariables as bM, type DeleteChatMutationVariables as bN, type DeleteDatabaseMutationVariables as bO, type DeleteDocumentMutationVariables as bP, type DeleteFolderMutationVariables as bQ, type DeleteInsightMutationVariables as bR, type DeleteInsightsMutationVariables as bS, type DeleteIntegrationMutationVariables as bT, type DeleteProjectMutationVariables as bU, type DeleteReportMutationVariables as bV, type DeleteTableMutationVariables as bW, type DeleteUserSkillFileMutationVariables as bX, type DeleteUserSkillFolderMutationVariables as bY, type DesktopDeviceConnectionFragment as bZ, type DesktopDevicesQueryVariables as b_, type DocumentQueryVariables as ba, type Document_FileQueryVariables as bb, type Document_FormatQueryVariables as bc, type DocumentFormatFragment as bd, type DocumentCatalogQueryVariables as be, type DocumentCatalogFragment as bf, type DocumentCatalog_FormatQueryVariables as bg, type Document_TablesQueryVariables as bh, type Table_FromRelationsQueryVariables as bi, RelationType as bj, type RelationFragment as bk, type TableQueryVariables as bl, type Table_ToRelationsQueryVariables as bm, type TableConnectionFragment as bn, type CreateDocumentMutationVariables as bo, type CreateFeedbackMutationVariables as bp, type CreateFolderMutationVariables as bq, type FolderFragment as br, type CreateInsightMutationVariables as bs, type CreateIntegrationMutationVariables as bt, type CreateProjectMutationVariables as bu, type CreateReportMutationVariables as bv, type CreateTableMutationVariables as bw, type CreateUserSkillFileMutationVariables as bx, type UserSkillFileModelFragment as by, type CreateUserSkillFolderMutationVariables as bz, ChatMessageFromEnum as c, type UpsertAiProviderSettingMutationVariables as c$, type DisconnectIntegrationMutationVariables as c0, type DismissPulseEventMutationVariables as c1, PulseEventPriority as c2, PulseEventKind as c3, type PulseEventFragment as c4, type PulseEvent_IntegrationQueryVariables as c5, IntegrationStatus as c6, type IntegrationFragment as c7, type Integration_ProviderQueryVariables as c8, type IntegrationProviderFragment as c9, type RemoveInsightFromReportMutationVariables as cA, type ResolvePulseEventMutationVariables as cB, type WorkspaceDeleteScheduleFragment as cC, type SendMessageMutationVariables as cD, type SetDatabasePrimaryKeyMutationVariables as cE, type SyncProjectDesktopBindingMutationVariables as cF, type UpdateAgentMutationVariables as cG, type UpdateArtifactNameMutationVariables as cH, type UpdateChatMutationVariables as cI, type UpdateDatabaseMutationVariables as cJ, type UpdateDocumentMutationVariables as cK, type UpdateFolderMutationVariables as cL, type UpdateInsightMutationVariables as cM, type UpdateInsightInReportMutationVariables as cN, type UpdateInsightThumbnailMutationVariables as cO, type UpdateInterpMutationVariables as cP, InterpretationType as cQ, AiResourceType as cR, type InterpretationFragment as cS, type UpdateLiveContextMutationVariables as cT, type UpdateProjectMutationVariables as cU, type UpdatePulseTriggerMutationVariables as cV, type PulseTriggerSettingModelFragment as cW, type UpdateReportMutationVariables as cX, type UpdateTableMutationVariables as cY, type UpdateUserSkillFileMutationVariables as cZ, type UpdateUserSkillFolderMutationVariables as c_, type IntegrationCatalogQueryVariables as ca, type IntegrationCatalogFragment as cb, type IntegrationCatalog_ProviderQueryVariables as cc, type DocumentCatalogConnectionFragment as cd, type DocumentCatalogsQueryVariables as ce, type DocumentConnectionFragment as cf, type Document_Format_CatalogQueryVariables as cg, type DocumentsQueryVariables as ch, type ChatStreamClient as ci, type DvinaSdkLifecycle as cj, type ExecuteChatImportMutationVariables as ck, type GenerateUploadUriMutationVariables as cl, type FileModelFragment as cm, type MigrateLegacyCodeChatsMutationVariables as cn, type LegacyCodeMigratedChatSummaryOutputFragment as co, type LegacyCodeMigrationOutputFragment as cp, type PreviewChatImportMutationVariables as cq, type ReanalyzeDocumentMutationVariables as cr, type RefineAgentInstructionMutationVariables as cs, type RefineSkillInstructionMutationVariables as ct, type RefreshDatabaseSchemaMutationVariables as cu, type RefreshInsightMutationVariables as cv, type RegisterDesktopDeviceMutationVariables as cw, type ReinterpretSourceMutationVariables as cx, type ReinterpretSourcesOfuserMutationVariables as cy, type RelocateInsightMutationVariables as cz, type ChatMessageFragment as d, type NotificationConnectionFragment as d$, type ExportQueryVariables as d0, type ExportWithInsightIdQueryVariables as d1, type FeedItemQueryVariables as d2, FeedItemKind as d3, type FeedDocumentDataFragment as d4, type FeedArtifactDataFragment as d5, type FeedDatabaseDataFragment as d6, type FeedInsightDataFragment as d7, type FeedIntegrationDataFragment as d8, type FeedProjectDataFragment as d9, TokenUsageLimit as dA, ActiveWindowType as dB, type WindowDetailTypeFragment as dC, type UsageWindowsStatusTypeFragment as dD, type UsageStatusFragment as dE, type GetTokenUsageStatus_WindowsQueryVariables as dF, type GetUsageQueryVariables as dG, type InsightsQueryVariables as dH, type IntegrationQueryVariables as dI, type IntegrationCatalogToolsQueryVariables as dJ, type IntegrationCatalogsQueryVariables as dK, type IntegrationCatalogConnectionFragment as dL, type IntegrationsQueryVariables as dM, type IntegrationConnectionFragment as dN, type InterpretationsQueryVariables as dO, type InterpretationConnectionFragment as dP, type LiveContextsQueryVariables as dQ, type LiveContextConnectionFragment as dR, type LocalSandboxDeviceStatusesQueryVariables as dS, LocalSandboxDeviceConnectionState as dT, type LocalSandboxDeviceStatusModelFragment as dU, type NotificationQueryVariables as dV, NotificationCategory as dW, NotificationPriority as dX, NotificationStatus as dY, type NotificationFragment as dZ, type NotificationsQueryVariables as d_, type FeedLiveContextDataFragment as da, type FeedPulseDataFragment as db, type FeedItemFragment as dc, type FeedItem_ActionQueryVariables as dd, type FeedSendMessageActionFragment as de, type FeedItem_DataQueryVariables as df, type FeedItemsQueryVariables as dg, type FeedConnectionFragment as dh, type FileQueryVariables as di, type FileMetaQueryVariables as dj, type FileUrlsQueryVariables as dk, type ResolvedFileUrlFragment as dl, type FindFitTierQueryVariables as dm, EntitlementTier as dn, type FolderQueryVariables as dp, type FoldersQueryVariables as dq, type FolderConnectionFragment as dr, type GetCapabilityQueryVariables as ds, type GetDevAccessTokenQueryVariables as dt, type GetLimitQueryVariables as du, type GetRemainingQueryVariables as dv, type GetTokenUsageByModelQueryVariables as dw, type ModelTokenUsageFragment as dx, type GetTokenUsageHistoryQueryVariables as dy, type GetTokenUsageStatusQueryVariables as dz, type ChatMessage_ArtifactsQueryVariables as e, type ToolStartEventOutputFragment as e$, type NotificationsByReferenceQueryVariables as e0, type PrivacyStatsQueryVariables as e1, type PrivacyStatsFragment as e2, type ProjectsQueryVariables as e3, type ProjectConnectionFragment as e4, type PulseAppSummaryQueryVariables as e5, type PulseAppSummaryModelFragment as e6, type PulseEventQueryVariables as e7, type PulseEventsQueryVariables as e8, type PulseEventConnectionFragment as e9, type GetTokenUsageStatus_Windows_MonthQueryVariables as eA, type GetTokenUsageStatus_Windows_WeekQueryVariables as eB, type InferenceRequestAuditFragment as eC, type Insight_Chat_DesktopDeviceQueryVariables as eD, type Insight_Chat_ProjectQueryVariables as eE, type Integration_Provider_CatalogQueryVariables as eF, type InvocationFragment as eG, type LiveContext_Source_EvidencesQueryVariables as eH, type McpClientInformationFragment as eI, type McpCodeVerifierFragment as eJ, type McpServerFragment as eK, type McpTokensFragment as eL, type McpToolFragment as eM, type MessageEndEventOutputFragment as eN, type MessageStartEventOutputFragment as eO, type ProgressSummaryEventOutputFragment as eP, type Project_DesktopBinding_DeviceQueryVariables as eQ, type PulseEvent_Integration_ProviderQueryVariables as eR, type ReasoningEventOutputFragment as eS, type ResetWorkspaceMutationVariables as eT, type ScheduleWorkspaceDeletionMutationVariables as eU, type TextBlockEventOutputFragment as eV, type TextDeltaEventOutputFragment as eW, type WidgetBlockStartEventOutputFragment as eX, type WidgetHtmlDeltaEventOutputFragment as eY, type WidgetBlockCompleteEventOutputFragment as eZ, type WidgetBlockErrorEventOutputFragment as e_, type PulseTriggerSettingsQueryVariables as ea, type QueryQueryVariables as eb, type QueryWithInsightIdQueryVariables as ec, type QueryWithMessageIdQueryVariables as ed, type ReportsQueryVariables as ee, type SkillCatalogQueryVariables as ef, SkillCatalogSource as eg, type SkillCatalogItemFragment as eh, type TablesQueryVariables as ei, type UserSkillFileQueryVariables as ej, type UserSkillFilesQueryVariables as ek, type UserSkillFolderQueryVariables as el, type UserSkillFoldersQueryVariables as em, type WorkspaceDeletionScheduleQueryVariables as en, type McpAuthUpdatesSubscriptionVariables as eo, McpAuthPhase as ep, type McpAuthUpdateModelFragment as eq, type TokenUsageUpdatesSubscriptionVariables as er, type EvidenceFragment as es, type FailedSyncEventIngestionFragment as et, type StreamMessageContentOutputFragment as eu, type StreamMessageOutputFragment as ev, type UsageMetaOutputFragment as ew, type FinalContentEventOutputFragment as ex, type GetTokenUsageStatus_Windows_DayQueryVariables as ey, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as ez, ArtifactKind as f, type ToolInputDeltaEventOutputFragment as f0, type ToolResultArtifactOutputFragment as f1, type ToolResultEventOutputFragment as f2, type StreamEventSchemaAnchorFragment as f3, type SyncEventFragment as f4, type SyncEventCursorFragment as f5, type Table_Database_EngineQueryVariables as f6, type Table_Document_ContentsQueryVariables as f7, type Table_Document_FileQueryVariables as f8, type Table_Document_FormatQueryVariables as f9, FileOrderByRelevanceFieldEnum as fA, FileUrlVariant as fB, FolderOrderByRelevanceFieldEnum as fC, InsightOrderByRelevanceFieldEnum as fD, IntegrationCatalogOrderByRelevanceFieldEnum as fE, IntegrationOrderByRelevanceFieldEnum as fF, InterpretationOrderByRelevanceFieldEnum as fG, LimitType as fH, LiveContextOrderByRelevanceFieldEnum as fI, NotificationOrderByRelevanceFieldEnum as fJ, NullsOrder as fK, ProjectDesktopBindingOrderByRelevanceFieldEnum as fL, ProjectOrderByRelevanceFieldEnum as fM, PulseEventOrderByRelevanceFieldEnum as fN, QueryMode as fO, ReportOrderByRelevanceFieldEnum as fP, SendMessageModel as fQ, SortOrder as fR, TableOrderByRelevanceFieldEnum as fS, UsageHistoryGranularity as fT, createChatStreamClient as fU, createDvinaClient as fV, type TokenUsageFragment as fa, type UserSkillFileFragment as fb, type UserSkillFolderFragment as fc, type ActiveChatStreamClient as fd, type ActiveChatStreamListener as fe, type ActiveChatStreamListenerHandlers as ff, AgentOrderByRelevanceFieldEnum as fg, ArtifactOrderByRelevanceFieldEnum as fh, CapabilityType as fi, ChatMessageOrderByRelevanceFieldEnum as fj, ChatOrderByRelevanceFieldEnum as fk, type ChatStreamClientOptions as fl, type ChatStreamEvent as fm, type ChatStreamListener as fn, type ChatStreamListenerHandlers as fo, DatabaseCatalogOrderByRelevanceFieldEnum as fp, DatabaseOrderByRelevanceFieldEnum as fq, DesktopDeviceOrderByRelevanceFieldEnum as fr, DocumentCatalogOrderByRelevanceFieldEnum as fs, DocumentOrderByRelevanceFieldEnum as ft, type DvinaSdkBaseOptions as fu, type DvinaSdkCallbackOptions as fv, type DvinaSdkLifecycleHint as fw, type DvinaSdkTokenOptions as fx, FeedItemOrderByRelevanceFieldEnum as fy, FeedbackOrderByRelevanceFieldEnum as fz, type ArtifactFragment as g, type Artifact_ChatQueryVariables as h, ChatWorkspaceMode as i, ChatSourceProviderEnum as j, type ChatFragment as k, type Chat_AgentsQueryVariables as l, type AgentFragment as m, type Agent_ChatsQueryVariables as n, type ChatConnectionFragment as o, type AgentConnectionFragment as p, type Chat_ArtifactsQueryVariables as q, type Chat_DesktopDeviceQueryVariables as r, type DesktopDeviceFragment as s, type DesktopDevice_ChatsQueryVariables as t, type DesktopDevice_DesktopBindingsQueryVariables as u, type ProjectDesktopBindingFragment as v, type ProjectQueryVariables as w, ProjectSource as x, type ProjectFragment as y, type Project_ChatsQueryVariables as z };