@dvina/sdk 4.0.259 → 4.0.267
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.
- package/dist/_generated_documents-OVM2YCC6.js +4 -0
- package/dist/{_generated_documents-F3XM552I.js.map → _generated_documents-OVM2YCC6.js.map} +1 -1
- package/dist/{_generated_documents-F6BNAI5E.cjs → _generated_documents-YGDBW5CK.cjs} +623 -615
- package/dist/{_generated_documents-F6BNAI5E.cjs.map → _generated_documents-YGDBW5CK.cjs.map} +1 -1
- package/dist/adapters/angular/index.cjs +4 -4
- package/dist/adapters/angular/index.d.cts +1 -1
- package/dist/adapters/angular/index.d.ts +1 -1
- package/dist/adapters/angular/index.js +2 -2
- package/dist/{chunk-T7POS77O.js → chunk-NHAJFS2A.js} +27 -21
- package/dist/chunk-NHAJFS2A.js.map +1 -0
- package/dist/{chunk-2W6QO7VV.js → chunk-P265ZPR5.js} +22 -7
- package/dist/chunk-P265ZPR5.js.map +1 -0
- package/dist/{chunk-WWS7ZYHA.cjs → chunk-S367BNQY.cjs} +28 -20
- package/dist/chunk-S367BNQY.cjs.map +1 -0
- package/dist/{chunk-SOLIJ6F7.cjs → chunk-Z56FDAVG.cjs} +625 -609
- package/dist/chunk-Z56FDAVG.cjs.map +1 -0
- package/dist/{client-DaM27stt.d.ts → client-Dts4MHjS.d.ts} +50 -2
- package/dist/{client-DEb_wNHA.d.cts → client-JOEOx6Nz.d.cts} +50 -2
- package/dist/index.cjs +465 -457
- package/dist/index.d.cts +11 -4
- package/dist/index.d.ts +11 -4
- package/dist/index.js +2 -2
- package/package.json +1 -1
- package/dist/_generated_documents-F3XM552I.js +0 -4
- package/dist/chunk-2W6QO7VV.js.map +0 -1
- package/dist/chunk-SOLIJ6F7.cjs.map +0 -1
- package/dist/chunk-T7POS77O.js.map +0 -1
- package/dist/chunk-WWS7ZYHA.cjs.map +0 -1
|
@@ -109,7 +109,7 @@ type AgentScalarWhereInput = {
|
|
|
109
109
|
name?: InputMaybe<StringFilter>;
|
|
110
110
|
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
111
111
|
};
|
|
112
|
-
type AgentStreamEvent = AudioEventOutput | ChatTitleEventOutput | ContextUsageEventOutput | FinalContentEventOutput | MessageEndEventOutput | MessageStartEventOutput | ProgressSummaryEventOutput | ReasoningEventOutput | TextBlockEventOutput | TextDeltaEventOutput | ToolInputDeltaEventOutput | ToolResultEventOutput | ToolStartEventOutput | WidgetBlockCompleteEventOutput | WidgetBlockErrorEventOutput | WidgetBlockStartEventOutput | WidgetHtmlDeltaEventOutput;
|
|
112
|
+
type AgentStreamEvent = AudioEventOutput | ChatTitleEventOutput | ContextUsageEventOutput | FinalContentEventOutput | InterruptEventOutput | 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']>;
|
|
@@ -1833,6 +1856,12 @@ type EnumChatMessageFromEnumFilter = {
|
|
|
1833
1856
|
not?: InputMaybe<EnumChatMessageFromEnumFilter>;
|
|
1834
1857
|
notIn?: InputMaybe<Array<ChatMessageFromEnum>>;
|
|
1835
1858
|
};
|
|
1859
|
+
type EnumChatWorkspaceModeFilter = {
|
|
1860
|
+
equals?: InputMaybe<ChatWorkspaceMode>;
|
|
1861
|
+
in?: InputMaybe<Array<ChatWorkspaceMode>>;
|
|
1862
|
+
not?: InputMaybe<EnumChatWorkspaceModeFilter>;
|
|
1863
|
+
notIn?: InputMaybe<Array<ChatWorkspaceMode>>;
|
|
1864
|
+
};
|
|
1836
1865
|
type EnumContentBlockTypeFilter = {
|
|
1837
1866
|
equals?: InputMaybe<ContentBlockType>;
|
|
1838
1867
|
in?: InputMaybe<Array<ContentBlockType>>;
|
|
@@ -2676,6 +2705,12 @@ type InterpretationWhereUniqueInput = {
|
|
|
2676
2705
|
resourceType?: InputMaybe<EnumAiResourceTypeFilter>;
|
|
2677
2706
|
type?: InputMaybe<EnumInterpretationTypeFilter>;
|
|
2678
2707
|
};
|
|
2708
|
+
type InterruptEventOutput = {
|
|
2709
|
+
__typename?: 'InterruptEventOutput';
|
|
2710
|
+
interrupts: Scalars['JSON'];
|
|
2711
|
+
policy?: Maybe<Scalars['JSON']>;
|
|
2712
|
+
type: Scalars['String'];
|
|
2713
|
+
};
|
|
2679
2714
|
type JsonFilter = {
|
|
2680
2715
|
array_contains?: InputMaybe<Scalars['JSON']>;
|
|
2681
2716
|
array_ends_with?: InputMaybe<Scalars['JSON']>;
|
|
@@ -4349,6 +4384,7 @@ type ChatFragment = {
|
|
|
4349
4384
|
reasoningEffort: ReasoningEffort;
|
|
4350
4385
|
sourceProvider?: ChatSourceProviderEnum | null;
|
|
4351
4386
|
updatedAt: string;
|
|
4387
|
+
workspaceMode?: ChatWorkspaceMode | null;
|
|
4352
4388
|
desktopDevice?: {
|
|
4353
4389
|
__typename?: 'DesktopDevice';
|
|
4354
4390
|
id: string;
|
|
@@ -4380,6 +4416,7 @@ type ChatConnectionFragment = {
|
|
|
4380
4416
|
reasoningEffort: ReasoningEffort;
|
|
4381
4417
|
sourceProvider?: ChatSourceProviderEnum | null;
|
|
4382
4418
|
updatedAt: string;
|
|
4419
|
+
workspaceMode?: ChatWorkspaceMode | null;
|
|
4383
4420
|
desktopDevice?: {
|
|
4384
4421
|
__typename?: 'DesktopDevice';
|
|
4385
4422
|
id: string;
|
|
@@ -5538,6 +5575,12 @@ type InterpretationConnectionFragment = {
|
|
|
5538
5575
|
startCursor?: string | null;
|
|
5539
5576
|
};
|
|
5540
5577
|
};
|
|
5578
|
+
type InterruptEventOutputFragment = {
|
|
5579
|
+
__typename: 'InterruptEventOutput';
|
|
5580
|
+
interrupts: any;
|
|
5581
|
+
policy?: any | null;
|
|
5582
|
+
type: string;
|
|
5583
|
+
};
|
|
5541
5584
|
type InvocationFragment = {
|
|
5542
5585
|
__typename: 'Invocation';
|
|
5543
5586
|
cachedTokensInput?: number | null;
|
|
@@ -6012,6 +6055,11 @@ type StreamEventSchemaAnchorFragment = {
|
|
|
6012
6055
|
promptTokens: number;
|
|
6013
6056
|
totalTokens: number;
|
|
6014
6057
|
};
|
|
6058
|
+
} | {
|
|
6059
|
+
__typename: 'InterruptEventOutput';
|
|
6060
|
+
interrupts: any;
|
|
6061
|
+
policy?: any | null;
|
|
6062
|
+
type: string;
|
|
6015
6063
|
} | {
|
|
6016
6064
|
__typename: 'MessageEndEventOutput';
|
|
6017
6065
|
type: string;
|
|
@@ -7490,4 +7538,4 @@ interface DvinaClientResult {
|
|
|
7490
7538
|
*/
|
|
7491
7539
|
declare function createDvinaClient(options: DvinaSdkOptions): DvinaClientResult;
|
|
7492
7540
|
|
|
7493
|
-
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 DatabaseCatalogFragment 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 ContextUsageEventOutputFragment as aR, type ContinueImportedChatMutationVariables as aS, type ContinueInterpretationMutationVariables as aT, type CreateAgentMutationVariables as aU, type CreateChatMutationVariables as aV, type CreateDatabaseMutationVariables as aW, type DatabaseFragment as aX, type Database_EngineQueryVariables as aY, type DatabaseEngineFragment as aZ, type DatabaseCatalogQueryVariables 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 DisconnectIntegrationMutationVariables as b$, type DatabaseCatalog_EngineQueryVariables as b0, type Database_TablesQueryVariables as b1, TableStatus as b2, type TableFragment as b3, type Table_DatabaseQueryVariables as b4, type Table_DocumentQueryVariables as b5, type DocumentFragment as b6, type Document_ContentsQueryVariables as b7, type DocumentContentFragment as b8, type DocumentQueryVariables as b9, type CubeModelFragment as bA, type DatabaseCatalogConnectionFragment as bB, type DatabaseCatalogsQueryVariables as bC, type DatabaseConnectionFragment as bD, type DatabaseQueryVariables as bE, type DatabaseSchemaQueryVariables as bF, type Database_Engine_CatalogQueryVariables as bG, type DatabasesQueryVariables as bH, type DeepAnalysisUsageFragment as bI, type DeleteAgentMutationVariables as bJ, type DeleteAiProviderSettingMutationVariables as bK, type DeleteArtifactMutationVariables as bL, type DeleteChatMutationVariables as bM, type DeleteDatabaseMutationVariables as bN, type DeleteDocumentMutationVariables as bO, type DeleteFolderMutationVariables as bP, type DeleteInsightMutationVariables as bQ, type DeleteInsightsMutationVariables as bR, type DeleteIntegrationMutationVariables as bS, type DeleteProjectMutationVariables as bT, type DeleteReportMutationVariables as bU, type DeleteTableMutationVariables as bV, type DeleteUserSkillFileMutationVariables as bW, type DeleteUserSkillFolderMutationVariables as bX, type DesktopDeviceConnectionFragment as bY, type DesktopDevicesQueryVariables as bZ, type DevAccessTokenOutputFragment as b_, type Document_FileQueryVariables as ba, type Document_FormatQueryVariables as bb, type DocumentFormatFragment as bc, type DocumentCatalogQueryVariables as bd, type DocumentCatalogFragment as be, type DocumentCatalog_FormatQueryVariables as bf, type Document_TablesQueryVariables as bg, type Table_FromRelationsQueryVariables as bh, RelationType as bi, type RelationFragment as bj, type TableQueryVariables as bk, type Table_ToRelationsQueryVariables as bl, type TableConnectionFragment as bm, type CreateDocumentMutationVariables as bn, type CreateFeedbackMutationVariables as bo, type CreateFolderMutationVariables as bp, type FolderFragment as bq, type CreateInsightMutationVariables as br, type CreateIntegrationMutationVariables as bs, type CreateProjectMutationVariables as bt, type CreateReportMutationVariables as bu, type CreateTableMutationVariables as bv, type CreateUserSkillFileMutationVariables as bw, type UserSkillFileModelFragment as bx, type CreateUserSkillFolderMutationVariables as by, type UserSkillFolderModelFragment as bz, ChatMessageFromEnum as c, type ExportQueryVariables as c$, type DismissPulseEventMutationVariables as c0, PulseEventPriority as c1, PulseEventKind as c2, type PulseEventFragment as c3, type PulseEvent_IntegrationQueryVariables as c4, IntegrationStatus as c5, type IntegrationFragment as c6, type Integration_ProviderQueryVariables as c7, type IntegrationProviderFragment as c8, type IntegrationCatalogQueryVariables as c9, type ResolvePulseEventMutationVariables as cA, type WorkspaceDeleteScheduleFragment as cB, type SendMessageMutationVariables as cC, type SetDatabasePrimaryKeyMutationVariables as cD, type SyncProjectDesktopBindingMutationVariables as cE, type UpdateAgentMutationVariables as cF, type UpdateArtifactNameMutationVariables as cG, type UpdateChatMutationVariables as cH, type UpdateDatabaseMutationVariables as cI, type UpdateDocumentMutationVariables as cJ, type UpdateFolderMutationVariables as cK, type UpdateInsightMutationVariables as cL, type UpdateInsightInReportMutationVariables as cM, type UpdateInsightThumbnailMutationVariables as cN, type UpdateInterpMutationVariables as cO, InterpretationType as cP, AiResourceType as cQ, type InterpretationFragment as cR, type UpdateLiveContextMutationVariables as cS, type UpdateProjectMutationVariables as cT, type UpdatePulseTriggerMutationVariables as cU, type PulseTriggerSettingModelFragment as cV, type UpdateReportMutationVariables as cW, type UpdateTableMutationVariables as cX, type UpdateUserSkillFileMutationVariables as cY, type UpdateUserSkillFolderMutationVariables as cZ, type UpsertAiProviderSettingMutationVariables as c_, type IntegrationCatalogFragment as ca, type IntegrationCatalog_ProviderQueryVariables as cb, type DocumentCatalogConnectionFragment as cc, type DocumentCatalogsQueryVariables as cd, type DocumentConnectionFragment as ce, type Document_Format_CatalogQueryVariables as cf, type DocumentsQueryVariables as cg, type ChatStreamClient as ch, type DvinaSdkLifecycle as ci, type ExecuteChatImportMutationVariables as cj, type GenerateUploadUriMutationVariables as ck, type FileModelFragment as cl, type MigrateLegacyCodeChatsMutationVariables as cm, type LegacyCodeMigratedChatSummaryOutputFragment as cn, type LegacyCodeMigrationOutputFragment as co, type PreviewChatImportMutationVariables as cp, type ReanalyzeDocumentMutationVariables as cq, type RefineAgentInstructionMutationVariables as cr, type RefineSkillInstructionMutationVariables as cs, type RefreshDatabaseSchemaMutationVariables as ct, type RefreshInsightMutationVariables as cu, type RegisterDesktopDeviceMutationVariables as cv, type ReinterpretSourceMutationVariables as cw, type ReinterpretSourcesOfuserMutationVariables as cx, type RelocateInsightMutationVariables as cy, type RemoveInsightFromReportMutationVariables as cz, type ChatMessageFragment as d, type NotificationsByReferenceQueryVariables as d$, type ExportWithInsightIdQueryVariables as d0, type FeedItemQueryVariables as d1, FeedItemKind as d2, type FeedDocumentDataFragment as d3, type FeedArtifactDataFragment as d4, type FeedDatabaseDataFragment as d5, type FeedInsightDataFragment as d6, type FeedIntegrationDataFragment as d7, type FeedProjectDataFragment as d8, type FeedLiveContextDataFragment as d9, ActiveWindowType as dA, type WindowDetailTypeFragment as dB, type UsageWindowsStatusTypeFragment as dC, type UsageStatusFragment as dD, type GetTokenUsageStatus_WindowsQueryVariables as dE, type GetUsageQueryVariables as dF, type InsightsQueryVariables as dG, type IntegrationQueryVariables as dH, type IntegrationCatalogToolsQueryVariables as dI, type IntegrationCatalogsQueryVariables as dJ, type IntegrationCatalogConnectionFragment as dK, type IntegrationsQueryVariables as dL, type IntegrationConnectionFragment as dM, type InterpretationsQueryVariables as dN, type InterpretationConnectionFragment as dO, type LiveContextsQueryVariables as dP, type LiveContextConnectionFragment as dQ, type LocalSandboxDeviceStatusesQueryVariables as dR, LocalSandboxDeviceConnectionState as dS, type LocalSandboxDeviceStatusModelFragment as dT, type NotificationQueryVariables as dU, NotificationCategory as dV, NotificationPriority as dW, NotificationStatus as dX, type NotificationFragment as dY, type NotificationsQueryVariables as dZ, type NotificationConnectionFragment as d_, type FeedPulseDataFragment as da, type FeedItemFragment as db, type FeedItem_ActionQueryVariables as dc, type FeedSendMessageActionFragment as dd, type FeedItem_DataQueryVariables as de, type FeedItemsQueryVariables as df, type FeedConnectionFragment as dg, type FileQueryVariables as dh, type FileMetaQueryVariables as di, type FileUrlsQueryVariables as dj, type ResolvedFileUrlFragment as dk, type FindFitTierQueryVariables as dl, EntitlementTier as dm, type FolderQueryVariables as dn, type FoldersQueryVariables as dp, type FolderConnectionFragment as dq, type GetCapabilityQueryVariables as dr, type GetDevAccessTokenQueryVariables as ds, type GetLimitQueryVariables as dt, type GetRemainingQueryVariables as du, type GetTokenUsageByModelQueryVariables as dv, type ModelTokenUsageFragment as dw, type GetTokenUsageHistoryQueryVariables as dx, type GetTokenUsageStatusQueryVariables as dy, TokenUsageLimit as dz, type ChatMessage_ArtifactsQueryVariables as e, type ToolInputDeltaEventOutputFragment as e$, type PrivacyStatsQueryVariables as e0, type PrivacyStatsFragment as e1, type ProjectsQueryVariables as e2, type ProjectConnectionFragment as e3, type PulseAppSummaryQueryVariables as e4, type PulseAppSummaryModelFragment as e5, type PulseEventQueryVariables as e6, type PulseEventsQueryVariables as e7, type PulseEventConnectionFragment as e8, type PulseTriggerSettingsQueryVariables as e9, type GetTokenUsageStatus_Windows_WeekQueryVariables as eA, type InferenceRequestAuditFragment as eB, type Insight_Chat_DesktopDeviceQueryVariables as eC, type Insight_Chat_ProjectQueryVariables as eD, type Integration_Provider_CatalogQueryVariables as eE, type InvocationFragment as eF, type LiveContext_Source_EvidencesQueryVariables as eG, type McpClientInformationFragment as eH, type McpCodeVerifierFragment as eI, type McpServerFragment as eJ, type McpTokensFragment as eK, type McpToolFragment as eL, type MessageEndEventOutputFragment as eM, type MessageStartEventOutputFragment as eN, type ProgressSummaryEventOutputFragment as eO, type Project_DesktopBinding_DeviceQueryVariables as eP, type PulseEvent_Integration_ProviderQueryVariables as eQ, type ReasoningEventOutputFragment as eR, type ResetWorkspaceMutationVariables as eS, type ScheduleWorkspaceDeletionMutationVariables as eT, type TextBlockEventOutputFragment as eU, type TextDeltaEventOutputFragment as eV, type WidgetBlockStartEventOutputFragment as eW, type WidgetHtmlDeltaEventOutputFragment as eX, type WidgetBlockCompleteEventOutputFragment as eY, type WidgetBlockErrorEventOutputFragment as eZ, type ToolStartEventOutputFragment as e_, type QueryQueryVariables as ea, type QueryWithInsightIdQueryVariables as eb, type QueryWithMessageIdQueryVariables as ec, type ReportsQueryVariables as ed, type SkillCatalogQueryVariables as ee, SkillCatalogSource as ef, type SkillCatalogItemFragment as eg, type TablesQueryVariables as eh, type UserSkillFileQueryVariables as ei, type UserSkillFilesQueryVariables as ej, type UserSkillFolderQueryVariables as ek, type UserSkillFoldersQueryVariables as el, type WorkspaceDeletionScheduleQueryVariables as em, type McpAuthUpdatesSubscriptionVariables as en, McpAuthPhase as eo, type McpAuthUpdateModelFragment as ep, type TokenUsageUpdatesSubscriptionVariables as eq, type EvidenceFragment as er, type FailedSyncEventIngestionFragment as es, type StreamMessageContentOutputFragment as et, type StreamMessageOutputFragment as eu, type UsageMetaOutputFragment as ev, type FinalContentEventOutputFragment as ew, type GetTokenUsageStatus_Windows_DayQueryVariables as ex, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as ey, type GetTokenUsageStatus_Windows_MonthQueryVariables as ez, ArtifactKind as f, type ToolResultArtifactOutputFragment as f0, type ToolResultEventOutputFragment as f1, type StreamEventSchemaAnchorFragment as f2, type SyncEventFragment as f3, type SyncEventCursorFragment as f4, type Table_Database_EngineQueryVariables as f5, type Table_Document_ContentsQueryVariables as f6, type Table_Document_FileQueryVariables as f7, type Table_Document_FormatQueryVariables as f8, type TokenUsageFragment as f9, FileUrlVariant as fA, FolderOrderByRelevanceFieldEnum as fB, InsightOrderByRelevanceFieldEnum as fC, IntegrationCatalogOrderByRelevanceFieldEnum as fD, IntegrationOrderByRelevanceFieldEnum as fE, InterpretationOrderByRelevanceFieldEnum as fF, LimitType as fG, LiveContextOrderByRelevanceFieldEnum as fH, NotificationOrderByRelevanceFieldEnum as fI, NullsOrder as fJ, ProjectDesktopBindingOrderByRelevanceFieldEnum as fK, ProjectOrderByRelevanceFieldEnum as fL, PulseEventOrderByRelevanceFieldEnum as fM, QueryMode as fN, ReportOrderByRelevanceFieldEnum as fO, SendMessageModel as fP, SortOrder as fQ, TableOrderByRelevanceFieldEnum as fR, UsageHistoryGranularity as fS, createChatStreamClient as fT, createDvinaClient as fU, type UserSkillFileFragment as fa, type UserSkillFolderFragment as fb, type ActiveChatStreamClient as fc, type ActiveChatStreamListener as fd, type ActiveChatStreamListenerHandlers as fe, AgentOrderByRelevanceFieldEnum as ff, ArtifactOrderByRelevanceFieldEnum as fg, CapabilityType as fh, ChatMessageOrderByRelevanceFieldEnum as fi, ChatOrderByRelevanceFieldEnum as fj, type ChatStreamClientOptions as fk, type ChatStreamEvent as fl, type ChatStreamListener as fm, type ChatStreamListenerHandlers as fn, DatabaseCatalogOrderByRelevanceFieldEnum as fo, DatabaseOrderByRelevanceFieldEnum as fp, DesktopDeviceOrderByRelevanceFieldEnum as fq, DocumentCatalogOrderByRelevanceFieldEnum as fr, DocumentOrderByRelevanceFieldEnum as fs, type DvinaSdkBaseOptions as ft, type DvinaSdkCallbackOptions as fu, type DvinaSdkLifecycleHint as fv, type DvinaSdkTokenOptions as fw, FeedItemOrderByRelevanceFieldEnum as fx, FeedbackOrderByRelevanceFieldEnum as fy, FileOrderByRelevanceFieldEnum 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 };
|
|
7541
|
+
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 WidgetBlockErrorEventOutputFragment 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 InterruptEventOutputFragment as eG, type InvocationFragment as eH, type LiveContext_Source_EvidencesQueryVariables as eI, type McpClientInformationFragment as eJ, type McpCodeVerifierFragment as eK, type McpServerFragment as eL, type McpTokensFragment as eM, type McpToolFragment as eN, type MessageEndEventOutputFragment as eO, type MessageStartEventOutputFragment as eP, type ProgressSummaryEventOutputFragment as eQ, type Project_DesktopBinding_DeviceQueryVariables as eR, type PulseEvent_Integration_ProviderQueryVariables as eS, type ReasoningEventOutputFragment as eT, type ResetWorkspaceMutationVariables as eU, type ScheduleWorkspaceDeletionMutationVariables as eV, type TextBlockEventOutputFragment as eW, type TextDeltaEventOutputFragment as eX, type WidgetBlockStartEventOutputFragment as eY, type WidgetHtmlDeltaEventOutputFragment as eZ, type WidgetBlockCompleteEventOutputFragment 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 ToolStartEventOutputFragment as f0, type ToolInputDeltaEventOutputFragment as f1, type ToolResultArtifactOutputFragment as f2, type ToolResultEventOutputFragment as f3, type StreamEventSchemaAnchorFragment as f4, type SyncEventFragment as f5, type SyncEventCursorFragment as f6, type Table_Database_EngineQueryVariables as f7, type Table_Document_ContentsQueryVariables as f8, type Table_Document_FileQueryVariables as f9, FeedbackOrderByRelevanceFieldEnum as fA, FileOrderByRelevanceFieldEnum as fB, FileUrlVariant as fC, FolderOrderByRelevanceFieldEnum as fD, InsightOrderByRelevanceFieldEnum as fE, IntegrationCatalogOrderByRelevanceFieldEnum as fF, IntegrationOrderByRelevanceFieldEnum as fG, InterpretationOrderByRelevanceFieldEnum as fH, LimitType as fI, LiveContextOrderByRelevanceFieldEnum as fJ, NotificationOrderByRelevanceFieldEnum as fK, NullsOrder as fL, ProjectDesktopBindingOrderByRelevanceFieldEnum as fM, ProjectOrderByRelevanceFieldEnum as fN, PulseEventOrderByRelevanceFieldEnum as fO, QueryMode as fP, ReportOrderByRelevanceFieldEnum as fQ, SendMessageModel as fR, SortOrder as fS, TableOrderByRelevanceFieldEnum as fT, UsageHistoryGranularity as fU, createChatStreamClient as fV, createDvinaClient as fW, type Table_Document_FormatQueryVariables as fa, type TokenUsageFragment as fb, type UserSkillFileFragment as fc, type UserSkillFolderFragment as fd, type ActiveChatStreamClient as fe, type ActiveChatStreamListener as ff, type ActiveChatStreamListenerHandlers as fg, AgentOrderByRelevanceFieldEnum as fh, ArtifactOrderByRelevanceFieldEnum as fi, CapabilityType as fj, ChatMessageOrderByRelevanceFieldEnum as fk, ChatOrderByRelevanceFieldEnum as fl, type ChatStreamClientOptions as fm, type ChatStreamEvent as fn, type ChatStreamListener as fo, type ChatStreamListenerHandlers as fp, DatabaseCatalogOrderByRelevanceFieldEnum as fq, DatabaseOrderByRelevanceFieldEnum as fr, DesktopDeviceOrderByRelevanceFieldEnum as fs, DocumentCatalogOrderByRelevanceFieldEnum as ft, DocumentOrderByRelevanceFieldEnum as fu, type DvinaSdkBaseOptions as fv, type DvinaSdkCallbackOptions as fw, type DvinaSdkLifecycleHint as fx, type DvinaSdkTokenOptions as fy, FeedItemOrderByRelevanceFieldEnum 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 };
|
|
@@ -109,7 +109,7 @@ type AgentScalarWhereInput = {
|
|
|
109
109
|
name?: InputMaybe<StringFilter>;
|
|
110
110
|
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
111
111
|
};
|
|
112
|
-
type AgentStreamEvent = AudioEventOutput | ChatTitleEventOutput | ContextUsageEventOutput | FinalContentEventOutput | MessageEndEventOutput | MessageStartEventOutput | ProgressSummaryEventOutput | ReasoningEventOutput | TextBlockEventOutput | TextDeltaEventOutput | ToolInputDeltaEventOutput | ToolResultEventOutput | ToolStartEventOutput | WidgetBlockCompleteEventOutput | WidgetBlockErrorEventOutput | WidgetBlockStartEventOutput | WidgetHtmlDeltaEventOutput;
|
|
112
|
+
type AgentStreamEvent = AudioEventOutput | ChatTitleEventOutput | ContextUsageEventOutput | FinalContentEventOutput | InterruptEventOutput | 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']>;
|
|
@@ -1833,6 +1856,12 @@ type EnumChatMessageFromEnumFilter = {
|
|
|
1833
1856
|
not?: InputMaybe<EnumChatMessageFromEnumFilter>;
|
|
1834
1857
|
notIn?: InputMaybe<Array<ChatMessageFromEnum>>;
|
|
1835
1858
|
};
|
|
1859
|
+
type EnumChatWorkspaceModeFilter = {
|
|
1860
|
+
equals?: InputMaybe<ChatWorkspaceMode>;
|
|
1861
|
+
in?: InputMaybe<Array<ChatWorkspaceMode>>;
|
|
1862
|
+
not?: InputMaybe<EnumChatWorkspaceModeFilter>;
|
|
1863
|
+
notIn?: InputMaybe<Array<ChatWorkspaceMode>>;
|
|
1864
|
+
};
|
|
1836
1865
|
type EnumContentBlockTypeFilter = {
|
|
1837
1866
|
equals?: InputMaybe<ContentBlockType>;
|
|
1838
1867
|
in?: InputMaybe<Array<ContentBlockType>>;
|
|
@@ -2676,6 +2705,12 @@ type InterpretationWhereUniqueInput = {
|
|
|
2676
2705
|
resourceType?: InputMaybe<EnumAiResourceTypeFilter>;
|
|
2677
2706
|
type?: InputMaybe<EnumInterpretationTypeFilter>;
|
|
2678
2707
|
};
|
|
2708
|
+
type InterruptEventOutput = {
|
|
2709
|
+
__typename?: 'InterruptEventOutput';
|
|
2710
|
+
interrupts: Scalars['JSON'];
|
|
2711
|
+
policy?: Maybe<Scalars['JSON']>;
|
|
2712
|
+
type: Scalars['String'];
|
|
2713
|
+
};
|
|
2679
2714
|
type JsonFilter = {
|
|
2680
2715
|
array_contains?: InputMaybe<Scalars['JSON']>;
|
|
2681
2716
|
array_ends_with?: InputMaybe<Scalars['JSON']>;
|
|
@@ -4349,6 +4384,7 @@ type ChatFragment = {
|
|
|
4349
4384
|
reasoningEffort: ReasoningEffort;
|
|
4350
4385
|
sourceProvider?: ChatSourceProviderEnum | null;
|
|
4351
4386
|
updatedAt: string;
|
|
4387
|
+
workspaceMode?: ChatWorkspaceMode | null;
|
|
4352
4388
|
desktopDevice?: {
|
|
4353
4389
|
__typename?: 'DesktopDevice';
|
|
4354
4390
|
id: string;
|
|
@@ -4380,6 +4416,7 @@ type ChatConnectionFragment = {
|
|
|
4380
4416
|
reasoningEffort: ReasoningEffort;
|
|
4381
4417
|
sourceProvider?: ChatSourceProviderEnum | null;
|
|
4382
4418
|
updatedAt: string;
|
|
4419
|
+
workspaceMode?: ChatWorkspaceMode | null;
|
|
4383
4420
|
desktopDevice?: {
|
|
4384
4421
|
__typename?: 'DesktopDevice';
|
|
4385
4422
|
id: string;
|
|
@@ -5538,6 +5575,12 @@ type InterpretationConnectionFragment = {
|
|
|
5538
5575
|
startCursor?: string | null;
|
|
5539
5576
|
};
|
|
5540
5577
|
};
|
|
5578
|
+
type InterruptEventOutputFragment = {
|
|
5579
|
+
__typename: 'InterruptEventOutput';
|
|
5580
|
+
interrupts: any;
|
|
5581
|
+
policy?: any | null;
|
|
5582
|
+
type: string;
|
|
5583
|
+
};
|
|
5541
5584
|
type InvocationFragment = {
|
|
5542
5585
|
__typename: 'Invocation';
|
|
5543
5586
|
cachedTokensInput?: number | null;
|
|
@@ -6012,6 +6055,11 @@ type StreamEventSchemaAnchorFragment = {
|
|
|
6012
6055
|
promptTokens: number;
|
|
6013
6056
|
totalTokens: number;
|
|
6014
6057
|
};
|
|
6058
|
+
} | {
|
|
6059
|
+
__typename: 'InterruptEventOutput';
|
|
6060
|
+
interrupts: any;
|
|
6061
|
+
policy?: any | null;
|
|
6062
|
+
type: string;
|
|
6015
6063
|
} | {
|
|
6016
6064
|
__typename: 'MessageEndEventOutput';
|
|
6017
6065
|
type: string;
|
|
@@ -7490,4 +7538,4 @@ interface DvinaClientResult {
|
|
|
7490
7538
|
*/
|
|
7491
7539
|
declare function createDvinaClient(options: DvinaSdkOptions): DvinaClientResult;
|
|
7492
7540
|
|
|
7493
|
-
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 DatabaseCatalogFragment 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 ContextUsageEventOutputFragment as aR, type ContinueImportedChatMutationVariables as aS, type ContinueInterpretationMutationVariables as aT, type CreateAgentMutationVariables as aU, type CreateChatMutationVariables as aV, type CreateDatabaseMutationVariables as aW, type DatabaseFragment as aX, type Database_EngineQueryVariables as aY, type DatabaseEngineFragment as aZ, type DatabaseCatalogQueryVariables 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 DisconnectIntegrationMutationVariables as b$, type DatabaseCatalog_EngineQueryVariables as b0, type Database_TablesQueryVariables as b1, TableStatus as b2, type TableFragment as b3, type Table_DatabaseQueryVariables as b4, type Table_DocumentQueryVariables as b5, type DocumentFragment as b6, type Document_ContentsQueryVariables as b7, type DocumentContentFragment as b8, type DocumentQueryVariables as b9, type CubeModelFragment as bA, type DatabaseCatalogConnectionFragment as bB, type DatabaseCatalogsQueryVariables as bC, type DatabaseConnectionFragment as bD, type DatabaseQueryVariables as bE, type DatabaseSchemaQueryVariables as bF, type Database_Engine_CatalogQueryVariables as bG, type DatabasesQueryVariables as bH, type DeepAnalysisUsageFragment as bI, type DeleteAgentMutationVariables as bJ, type DeleteAiProviderSettingMutationVariables as bK, type DeleteArtifactMutationVariables as bL, type DeleteChatMutationVariables as bM, type DeleteDatabaseMutationVariables as bN, type DeleteDocumentMutationVariables as bO, type DeleteFolderMutationVariables as bP, type DeleteInsightMutationVariables as bQ, type DeleteInsightsMutationVariables as bR, type DeleteIntegrationMutationVariables as bS, type DeleteProjectMutationVariables as bT, type DeleteReportMutationVariables as bU, type DeleteTableMutationVariables as bV, type DeleteUserSkillFileMutationVariables as bW, type DeleteUserSkillFolderMutationVariables as bX, type DesktopDeviceConnectionFragment as bY, type DesktopDevicesQueryVariables as bZ, type DevAccessTokenOutputFragment as b_, type Document_FileQueryVariables as ba, type Document_FormatQueryVariables as bb, type DocumentFormatFragment as bc, type DocumentCatalogQueryVariables as bd, type DocumentCatalogFragment as be, type DocumentCatalog_FormatQueryVariables as bf, type Document_TablesQueryVariables as bg, type Table_FromRelationsQueryVariables as bh, RelationType as bi, type RelationFragment as bj, type TableQueryVariables as bk, type Table_ToRelationsQueryVariables as bl, type TableConnectionFragment as bm, type CreateDocumentMutationVariables as bn, type CreateFeedbackMutationVariables as bo, type CreateFolderMutationVariables as bp, type FolderFragment as bq, type CreateInsightMutationVariables as br, type CreateIntegrationMutationVariables as bs, type CreateProjectMutationVariables as bt, type CreateReportMutationVariables as bu, type CreateTableMutationVariables as bv, type CreateUserSkillFileMutationVariables as bw, type UserSkillFileModelFragment as bx, type CreateUserSkillFolderMutationVariables as by, type UserSkillFolderModelFragment as bz, ChatMessageFromEnum as c, type ExportQueryVariables as c$, type DismissPulseEventMutationVariables as c0, PulseEventPriority as c1, PulseEventKind as c2, type PulseEventFragment as c3, type PulseEvent_IntegrationQueryVariables as c4, IntegrationStatus as c5, type IntegrationFragment as c6, type Integration_ProviderQueryVariables as c7, type IntegrationProviderFragment as c8, type IntegrationCatalogQueryVariables as c9, type ResolvePulseEventMutationVariables as cA, type WorkspaceDeleteScheduleFragment as cB, type SendMessageMutationVariables as cC, type SetDatabasePrimaryKeyMutationVariables as cD, type SyncProjectDesktopBindingMutationVariables as cE, type UpdateAgentMutationVariables as cF, type UpdateArtifactNameMutationVariables as cG, type UpdateChatMutationVariables as cH, type UpdateDatabaseMutationVariables as cI, type UpdateDocumentMutationVariables as cJ, type UpdateFolderMutationVariables as cK, type UpdateInsightMutationVariables as cL, type UpdateInsightInReportMutationVariables as cM, type UpdateInsightThumbnailMutationVariables as cN, type UpdateInterpMutationVariables as cO, InterpretationType as cP, AiResourceType as cQ, type InterpretationFragment as cR, type UpdateLiveContextMutationVariables as cS, type UpdateProjectMutationVariables as cT, type UpdatePulseTriggerMutationVariables as cU, type PulseTriggerSettingModelFragment as cV, type UpdateReportMutationVariables as cW, type UpdateTableMutationVariables as cX, type UpdateUserSkillFileMutationVariables as cY, type UpdateUserSkillFolderMutationVariables as cZ, type UpsertAiProviderSettingMutationVariables as c_, type IntegrationCatalogFragment as ca, type IntegrationCatalog_ProviderQueryVariables as cb, type DocumentCatalogConnectionFragment as cc, type DocumentCatalogsQueryVariables as cd, type DocumentConnectionFragment as ce, type Document_Format_CatalogQueryVariables as cf, type DocumentsQueryVariables as cg, type ChatStreamClient as ch, type DvinaSdkLifecycle as ci, type ExecuteChatImportMutationVariables as cj, type GenerateUploadUriMutationVariables as ck, type FileModelFragment as cl, type MigrateLegacyCodeChatsMutationVariables as cm, type LegacyCodeMigratedChatSummaryOutputFragment as cn, type LegacyCodeMigrationOutputFragment as co, type PreviewChatImportMutationVariables as cp, type ReanalyzeDocumentMutationVariables as cq, type RefineAgentInstructionMutationVariables as cr, type RefineSkillInstructionMutationVariables as cs, type RefreshDatabaseSchemaMutationVariables as ct, type RefreshInsightMutationVariables as cu, type RegisterDesktopDeviceMutationVariables as cv, type ReinterpretSourceMutationVariables as cw, type ReinterpretSourcesOfuserMutationVariables as cx, type RelocateInsightMutationVariables as cy, type RemoveInsightFromReportMutationVariables as cz, type ChatMessageFragment as d, type NotificationsByReferenceQueryVariables as d$, type ExportWithInsightIdQueryVariables as d0, type FeedItemQueryVariables as d1, FeedItemKind as d2, type FeedDocumentDataFragment as d3, type FeedArtifactDataFragment as d4, type FeedDatabaseDataFragment as d5, type FeedInsightDataFragment as d6, type FeedIntegrationDataFragment as d7, type FeedProjectDataFragment as d8, type FeedLiveContextDataFragment as d9, ActiveWindowType as dA, type WindowDetailTypeFragment as dB, type UsageWindowsStatusTypeFragment as dC, type UsageStatusFragment as dD, type GetTokenUsageStatus_WindowsQueryVariables as dE, type GetUsageQueryVariables as dF, type InsightsQueryVariables as dG, type IntegrationQueryVariables as dH, type IntegrationCatalogToolsQueryVariables as dI, type IntegrationCatalogsQueryVariables as dJ, type IntegrationCatalogConnectionFragment as dK, type IntegrationsQueryVariables as dL, type IntegrationConnectionFragment as dM, type InterpretationsQueryVariables as dN, type InterpretationConnectionFragment as dO, type LiveContextsQueryVariables as dP, type LiveContextConnectionFragment as dQ, type LocalSandboxDeviceStatusesQueryVariables as dR, LocalSandboxDeviceConnectionState as dS, type LocalSandboxDeviceStatusModelFragment as dT, type NotificationQueryVariables as dU, NotificationCategory as dV, NotificationPriority as dW, NotificationStatus as dX, type NotificationFragment as dY, type NotificationsQueryVariables as dZ, type NotificationConnectionFragment as d_, type FeedPulseDataFragment as da, type FeedItemFragment as db, type FeedItem_ActionQueryVariables as dc, type FeedSendMessageActionFragment as dd, type FeedItem_DataQueryVariables as de, type FeedItemsQueryVariables as df, type FeedConnectionFragment as dg, type FileQueryVariables as dh, type FileMetaQueryVariables as di, type FileUrlsQueryVariables as dj, type ResolvedFileUrlFragment as dk, type FindFitTierQueryVariables as dl, EntitlementTier as dm, type FolderQueryVariables as dn, type FoldersQueryVariables as dp, type FolderConnectionFragment as dq, type GetCapabilityQueryVariables as dr, type GetDevAccessTokenQueryVariables as ds, type GetLimitQueryVariables as dt, type GetRemainingQueryVariables as du, type GetTokenUsageByModelQueryVariables as dv, type ModelTokenUsageFragment as dw, type GetTokenUsageHistoryQueryVariables as dx, type GetTokenUsageStatusQueryVariables as dy, TokenUsageLimit as dz, type ChatMessage_ArtifactsQueryVariables as e, type ToolInputDeltaEventOutputFragment as e$, type PrivacyStatsQueryVariables as e0, type PrivacyStatsFragment as e1, type ProjectsQueryVariables as e2, type ProjectConnectionFragment as e3, type PulseAppSummaryQueryVariables as e4, type PulseAppSummaryModelFragment as e5, type PulseEventQueryVariables as e6, type PulseEventsQueryVariables as e7, type PulseEventConnectionFragment as e8, type PulseTriggerSettingsQueryVariables as e9, type GetTokenUsageStatus_Windows_WeekQueryVariables as eA, type InferenceRequestAuditFragment as eB, type Insight_Chat_DesktopDeviceQueryVariables as eC, type Insight_Chat_ProjectQueryVariables as eD, type Integration_Provider_CatalogQueryVariables as eE, type InvocationFragment as eF, type LiveContext_Source_EvidencesQueryVariables as eG, type McpClientInformationFragment as eH, type McpCodeVerifierFragment as eI, type McpServerFragment as eJ, type McpTokensFragment as eK, type McpToolFragment as eL, type MessageEndEventOutputFragment as eM, type MessageStartEventOutputFragment as eN, type ProgressSummaryEventOutputFragment as eO, type Project_DesktopBinding_DeviceQueryVariables as eP, type PulseEvent_Integration_ProviderQueryVariables as eQ, type ReasoningEventOutputFragment as eR, type ResetWorkspaceMutationVariables as eS, type ScheduleWorkspaceDeletionMutationVariables as eT, type TextBlockEventOutputFragment as eU, type TextDeltaEventOutputFragment as eV, type WidgetBlockStartEventOutputFragment as eW, type WidgetHtmlDeltaEventOutputFragment as eX, type WidgetBlockCompleteEventOutputFragment as eY, type WidgetBlockErrorEventOutputFragment as eZ, type ToolStartEventOutputFragment as e_, type QueryQueryVariables as ea, type QueryWithInsightIdQueryVariables as eb, type QueryWithMessageIdQueryVariables as ec, type ReportsQueryVariables as ed, type SkillCatalogQueryVariables as ee, SkillCatalogSource as ef, type SkillCatalogItemFragment as eg, type TablesQueryVariables as eh, type UserSkillFileQueryVariables as ei, type UserSkillFilesQueryVariables as ej, type UserSkillFolderQueryVariables as ek, type UserSkillFoldersQueryVariables as el, type WorkspaceDeletionScheduleQueryVariables as em, type McpAuthUpdatesSubscriptionVariables as en, McpAuthPhase as eo, type McpAuthUpdateModelFragment as ep, type TokenUsageUpdatesSubscriptionVariables as eq, type EvidenceFragment as er, type FailedSyncEventIngestionFragment as es, type StreamMessageContentOutputFragment as et, type StreamMessageOutputFragment as eu, type UsageMetaOutputFragment as ev, type FinalContentEventOutputFragment as ew, type GetTokenUsageStatus_Windows_DayQueryVariables as ex, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as ey, type GetTokenUsageStatus_Windows_MonthQueryVariables as ez, ArtifactKind as f, type ToolResultArtifactOutputFragment as f0, type ToolResultEventOutputFragment as f1, type StreamEventSchemaAnchorFragment as f2, type SyncEventFragment as f3, type SyncEventCursorFragment as f4, type Table_Database_EngineQueryVariables as f5, type Table_Document_ContentsQueryVariables as f6, type Table_Document_FileQueryVariables as f7, type Table_Document_FormatQueryVariables as f8, type TokenUsageFragment as f9, FileUrlVariant as fA, FolderOrderByRelevanceFieldEnum as fB, InsightOrderByRelevanceFieldEnum as fC, IntegrationCatalogOrderByRelevanceFieldEnum as fD, IntegrationOrderByRelevanceFieldEnum as fE, InterpretationOrderByRelevanceFieldEnum as fF, LimitType as fG, LiveContextOrderByRelevanceFieldEnum as fH, NotificationOrderByRelevanceFieldEnum as fI, NullsOrder as fJ, ProjectDesktopBindingOrderByRelevanceFieldEnum as fK, ProjectOrderByRelevanceFieldEnum as fL, PulseEventOrderByRelevanceFieldEnum as fM, QueryMode as fN, ReportOrderByRelevanceFieldEnum as fO, SendMessageModel as fP, SortOrder as fQ, TableOrderByRelevanceFieldEnum as fR, UsageHistoryGranularity as fS, createChatStreamClient as fT, createDvinaClient as fU, type UserSkillFileFragment as fa, type UserSkillFolderFragment as fb, type ActiveChatStreamClient as fc, type ActiveChatStreamListener as fd, type ActiveChatStreamListenerHandlers as fe, AgentOrderByRelevanceFieldEnum as ff, ArtifactOrderByRelevanceFieldEnum as fg, CapabilityType as fh, ChatMessageOrderByRelevanceFieldEnum as fi, ChatOrderByRelevanceFieldEnum as fj, type ChatStreamClientOptions as fk, type ChatStreamEvent as fl, type ChatStreamListener as fm, type ChatStreamListenerHandlers as fn, DatabaseCatalogOrderByRelevanceFieldEnum as fo, DatabaseOrderByRelevanceFieldEnum as fp, DesktopDeviceOrderByRelevanceFieldEnum as fq, DocumentCatalogOrderByRelevanceFieldEnum as fr, DocumentOrderByRelevanceFieldEnum as fs, type DvinaSdkBaseOptions as ft, type DvinaSdkCallbackOptions as fu, type DvinaSdkLifecycleHint as fv, type DvinaSdkTokenOptions as fw, FeedItemOrderByRelevanceFieldEnum as fx, FeedbackOrderByRelevanceFieldEnum as fy, FileOrderByRelevanceFieldEnum 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 };
|
|
7541
|
+
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 WidgetBlockErrorEventOutputFragment 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 InterruptEventOutputFragment as eG, type InvocationFragment as eH, type LiveContext_Source_EvidencesQueryVariables as eI, type McpClientInformationFragment as eJ, type McpCodeVerifierFragment as eK, type McpServerFragment as eL, type McpTokensFragment as eM, type McpToolFragment as eN, type MessageEndEventOutputFragment as eO, type MessageStartEventOutputFragment as eP, type ProgressSummaryEventOutputFragment as eQ, type Project_DesktopBinding_DeviceQueryVariables as eR, type PulseEvent_Integration_ProviderQueryVariables as eS, type ReasoningEventOutputFragment as eT, type ResetWorkspaceMutationVariables as eU, type ScheduleWorkspaceDeletionMutationVariables as eV, type TextBlockEventOutputFragment as eW, type TextDeltaEventOutputFragment as eX, type WidgetBlockStartEventOutputFragment as eY, type WidgetHtmlDeltaEventOutputFragment as eZ, type WidgetBlockCompleteEventOutputFragment 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 ToolStartEventOutputFragment as f0, type ToolInputDeltaEventOutputFragment as f1, type ToolResultArtifactOutputFragment as f2, type ToolResultEventOutputFragment as f3, type StreamEventSchemaAnchorFragment as f4, type SyncEventFragment as f5, type SyncEventCursorFragment as f6, type Table_Database_EngineQueryVariables as f7, type Table_Document_ContentsQueryVariables as f8, type Table_Document_FileQueryVariables as f9, FeedbackOrderByRelevanceFieldEnum as fA, FileOrderByRelevanceFieldEnum as fB, FileUrlVariant as fC, FolderOrderByRelevanceFieldEnum as fD, InsightOrderByRelevanceFieldEnum as fE, IntegrationCatalogOrderByRelevanceFieldEnum as fF, IntegrationOrderByRelevanceFieldEnum as fG, InterpretationOrderByRelevanceFieldEnum as fH, LimitType as fI, LiveContextOrderByRelevanceFieldEnum as fJ, NotificationOrderByRelevanceFieldEnum as fK, NullsOrder as fL, ProjectDesktopBindingOrderByRelevanceFieldEnum as fM, ProjectOrderByRelevanceFieldEnum as fN, PulseEventOrderByRelevanceFieldEnum as fO, QueryMode as fP, ReportOrderByRelevanceFieldEnum as fQ, SendMessageModel as fR, SortOrder as fS, TableOrderByRelevanceFieldEnum as fT, UsageHistoryGranularity as fU, createChatStreamClient as fV, createDvinaClient as fW, type Table_Document_FormatQueryVariables as fa, type TokenUsageFragment as fb, type UserSkillFileFragment as fc, type UserSkillFolderFragment as fd, type ActiveChatStreamClient as fe, type ActiveChatStreamListener as ff, type ActiveChatStreamListenerHandlers as fg, AgentOrderByRelevanceFieldEnum as fh, ArtifactOrderByRelevanceFieldEnum as fi, CapabilityType as fj, ChatMessageOrderByRelevanceFieldEnum as fk, ChatOrderByRelevanceFieldEnum as fl, type ChatStreamClientOptions as fm, type ChatStreamEvent as fn, type ChatStreamListener as fo, type ChatStreamListenerHandlers as fp, DatabaseCatalogOrderByRelevanceFieldEnum as fq, DatabaseOrderByRelevanceFieldEnum as fr, DesktopDeviceOrderByRelevanceFieldEnum as fs, DocumentCatalogOrderByRelevanceFieldEnum as ft, DocumentOrderByRelevanceFieldEnum as fu, type DvinaSdkBaseOptions as fv, type DvinaSdkCallbackOptions as fw, type DvinaSdkLifecycleHint as fx, type DvinaSdkTokenOptions as fy, FeedItemOrderByRelevanceFieldEnum 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 };
|