@dvina/sdk 4.0.268 → 4.0.276
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-VFEHYZJT.cjs → _generated_documents-CGRQF2EK.cjs} +661 -617
- package/dist/{_generated_documents-VFEHYZJT.cjs.map → _generated_documents-CGRQF2EK.cjs.map} +1 -1
- package/dist/_generated_documents-X5VIIQ2W.js +4 -0
- package/dist/{_generated_documents-CCZ5RXZI.js.map → _generated_documents-X5VIIQ2W.js.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-DPNUH5TU.cjs → chunk-AKXUF4OW.cjs} +727 -613
- package/dist/chunk-AKXUF4OW.cjs.map +1 -0
- package/dist/{chunk-UGQBIF6X.js → chunk-DIQHI4WY.js} +22 -11
- package/dist/chunk-DIQHI4WY.js.map +1 -0
- package/dist/{chunk-WRHKSPT3.cjs → chunk-MLQYOCMC.cjs} +32 -10
- package/dist/chunk-MLQYOCMC.cjs.map +1 -0
- package/dist/{chunk-IEAQ2GLV.js → chunk-S3MP5E7G.js} +117 -11
- package/dist/chunk-S3MP5E7G.js.map +1 -0
- package/dist/{client-F48xVO6W.d.cts → client-C1hIr0Zt.d.cts} +129 -3
- package/dist/{client-PJMDhSqU.d.ts → client-DwfuQsWt.d.ts} +129 -3
- package/dist/index.cjs +491 -459
- package/dist/index.d.cts +56 -5
- package/dist/index.d.ts +56 -5
- package/dist/index.js +2 -2
- package/package.json +1 -1
- package/dist/_generated_documents-CCZ5RXZI.js +0 -4
- package/dist/chunk-DPNUH5TU.cjs.map +0 -1
- package/dist/chunk-IEAQ2GLV.js.map +0 -1
- package/dist/chunk-UGQBIF6X.js.map +0 -1
- package/dist/chunk-WRHKSPT3.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 | InterruptEventOutput | MessageEndEventOutput | MessageStartEventOutput | ProgressSummaryEventOutput | ReasoningEventOutput | TextBlockEventOutput | TextDeltaEventOutput | ToolInputDeltaEventOutput | ToolResultEventOutput | ToolStartEventOutput | WidgetBlockCompleteEventOutput | WidgetBlockErrorEventOutput | WidgetBlockStartEventOutput | WidgetHtmlDeltaEventOutput;
|
|
112
|
+
type AgentStreamEvent = AudioEventOutput | ChatTitleEventOutput | ContextUsageEventOutput | FinalContentEventOutput | InterruptEventOutput | MessageEndEventOutput | MessageStartEventOutput | PrivacyStatsEventOutput | 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']>;
|
|
@@ -2213,6 +2213,7 @@ type FinalContentEventOutput = {
|
|
|
2213
2213
|
__typename?: 'FinalContentEventOutput';
|
|
2214
2214
|
contextUsage?: Maybe<Scalars['Int']>;
|
|
2215
2215
|
message: StreamMessageOutput;
|
|
2216
|
+
privacyStats?: Maybe<PrivacyStatsOutput>;
|
|
2216
2217
|
type: Scalars['String'];
|
|
2217
2218
|
usage: UsageMetaOutput;
|
|
2218
2219
|
};
|
|
@@ -2916,6 +2917,27 @@ declare enum Presentation {
|
|
|
2916
2917
|
Table = "Table",
|
|
2917
2918
|
VerticalBar = "VerticalBar"
|
|
2918
2919
|
}
|
|
2920
|
+
type PrivacyStatsEventOutput = {
|
|
2921
|
+
__typename?: 'PrivacyStatsEventOutput';
|
|
2922
|
+
stats: PrivacyStatsOutput;
|
|
2923
|
+
totalsDelta?: Maybe<PrivacyStatsTotalsDeltaOutput>;
|
|
2924
|
+
type: Scalars['String'];
|
|
2925
|
+
};
|
|
2926
|
+
type PrivacyStatsOutput = {
|
|
2927
|
+
__typename?: 'PrivacyStatsOutput';
|
|
2928
|
+
enabled: Scalars['Boolean'];
|
|
2929
|
+
enabledRuleCount: Scalars['Int'];
|
|
2930
|
+
maskedValueCount: Scalars['Int'];
|
|
2931
|
+
matchedTypeCount: Scalars['Int'];
|
|
2932
|
+
matchedTypes: Array<Scalars['String']>;
|
|
2933
|
+
protectedAt?: Maybe<Scalars['String']>;
|
|
2934
|
+
protectedTurn: Scalars['Boolean'];
|
|
2935
|
+
};
|
|
2936
|
+
type PrivacyStatsTotalsDeltaOutput = {
|
|
2937
|
+
__typename?: 'PrivacyStatsTotalsDeltaOutput';
|
|
2938
|
+
automaticallyMaskedData?: Maybe<Scalars['Int']>;
|
|
2939
|
+
messagesProtectedFromTraining?: Maybe<Scalars['Int']>;
|
|
2940
|
+
};
|
|
2919
2941
|
type ProgressSummaryEventOutput = {
|
|
2920
2942
|
__typename?: 'ProgressSummaryEventOutput';
|
|
2921
2943
|
kind: Scalars['String'];
|
|
@@ -3924,6 +3946,13 @@ type StringFilter = {
|
|
|
3924
3946
|
search?: InputMaybe<Scalars['String']>;
|
|
3925
3947
|
startsWith?: InputMaybe<Scalars['String']>;
|
|
3926
3948
|
};
|
|
3949
|
+
type StringListFilter = {
|
|
3950
|
+
equals?: InputMaybe<Array<Scalars['String']>>;
|
|
3951
|
+
has?: InputMaybe<Scalars['String']>;
|
|
3952
|
+
hasEvery?: InputMaybe<Array<Scalars['String']>>;
|
|
3953
|
+
hasSome?: InputMaybe<Array<Scalars['String']>>;
|
|
3954
|
+
isEmpty?: InputMaybe<Scalars['Boolean']>;
|
|
3955
|
+
};
|
|
3927
3956
|
type SyncProjectDesktopBindingInput = {
|
|
3928
3957
|
deviceId?: InputMaybe<Scalars['String']>;
|
|
3929
3958
|
iconDataUrl?: InputMaybe<Scalars['String']>;
|
|
@@ -4165,6 +4194,7 @@ type UserAiProviderSettingCreateInput = {
|
|
|
4165
4194
|
enabled?: InputMaybe<Scalars['Boolean']>;
|
|
4166
4195
|
id?: InputMaybe<Scalars['String']>;
|
|
4167
4196
|
model: Scalars['String'];
|
|
4197
|
+
savedModels?: InputMaybe<Array<Scalars['String']>>;
|
|
4168
4198
|
};
|
|
4169
4199
|
type UserAiProviderSettingUpdateInput = {
|
|
4170
4200
|
apiKey?: InputMaybe<Scalars['String']>;
|
|
@@ -4173,6 +4203,7 @@ type UserAiProviderSettingUpdateInput = {
|
|
|
4173
4203
|
enabled?: InputMaybe<Scalars['Boolean']>;
|
|
4174
4204
|
id?: InputMaybe<Scalars['String']>;
|
|
4175
4205
|
model?: InputMaybe<Scalars['String']>;
|
|
4206
|
+
savedModels?: InputMaybe<Array<Scalars['String']>>;
|
|
4176
4207
|
};
|
|
4177
4208
|
type UserAiProviderSettingWhereInput = {
|
|
4178
4209
|
AND?: InputMaybe<Array<UserAiProviderSettingWhereInput>>;
|
|
@@ -4185,6 +4216,7 @@ type UserAiProviderSettingWhereInput = {
|
|
|
4185
4216
|
enabled?: InputMaybe<BoolFilter>;
|
|
4186
4217
|
id?: InputMaybe<StringFilter>;
|
|
4187
4218
|
model?: InputMaybe<StringFilter>;
|
|
4219
|
+
savedModels?: InputMaybe<StringListFilter>;
|
|
4188
4220
|
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
4189
4221
|
};
|
|
4190
4222
|
type UserAiProviderSettingWhereUniqueInput = {
|
|
@@ -4198,6 +4230,7 @@ type UserAiProviderSettingWhereUniqueInput = {
|
|
|
4198
4230
|
enabled?: InputMaybe<BoolFilter>;
|
|
4199
4231
|
id?: InputMaybe<Scalars['String']>;
|
|
4200
4232
|
model?: InputMaybe<StringFilter>;
|
|
4233
|
+
savedModels?: InputMaybe<StringListFilter>;
|
|
4201
4234
|
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
4202
4235
|
};
|
|
4203
4236
|
type WidgetBlockCompleteEventOutput = {
|
|
@@ -5336,6 +5369,16 @@ type FinalContentEventOutputFragment = {
|
|
|
5336
5369
|
type: ContentBlockType;
|
|
5337
5370
|
}> | null;
|
|
5338
5371
|
};
|
|
5372
|
+
privacyStats?: {
|
|
5373
|
+
__typename: 'PrivacyStatsOutput';
|
|
5374
|
+
enabled: boolean;
|
|
5375
|
+
enabledRuleCount: number;
|
|
5376
|
+
maskedValueCount: number;
|
|
5377
|
+
matchedTypeCount: number;
|
|
5378
|
+
matchedTypes: Array<string>;
|
|
5379
|
+
protectedAt?: string | null;
|
|
5380
|
+
protectedTurn: boolean;
|
|
5381
|
+
} | null;
|
|
5339
5382
|
usage: {
|
|
5340
5383
|
__typename: 'UsageMetaOutput';
|
|
5341
5384
|
cachedPromptTokens?: number | null;
|
|
@@ -5804,6 +5847,41 @@ type PrivacyStatsFragment = {
|
|
|
5804
5847
|
__typename: 'PrivacyStats';
|
|
5805
5848
|
automaticallyMaskedData?: number | null;
|
|
5806
5849
|
dataKeptAwayFromThirdParties?: number | null;
|
|
5850
|
+
id: string;
|
|
5851
|
+
messagesProtectedFromTraining?: number | null;
|
|
5852
|
+
};
|
|
5853
|
+
type PrivacyStatsEventOutputFragment = {
|
|
5854
|
+
__typename: 'PrivacyStatsEventOutput';
|
|
5855
|
+
type: string;
|
|
5856
|
+
stats: {
|
|
5857
|
+
__typename: 'PrivacyStatsOutput';
|
|
5858
|
+
enabled: boolean;
|
|
5859
|
+
enabledRuleCount: number;
|
|
5860
|
+
maskedValueCount: number;
|
|
5861
|
+
matchedTypeCount: number;
|
|
5862
|
+
matchedTypes: Array<string>;
|
|
5863
|
+
protectedAt?: string | null;
|
|
5864
|
+
protectedTurn: boolean;
|
|
5865
|
+
};
|
|
5866
|
+
totalsDelta?: {
|
|
5867
|
+
__typename: 'PrivacyStatsTotalsDeltaOutput';
|
|
5868
|
+
automaticallyMaskedData?: number | null;
|
|
5869
|
+
messagesProtectedFromTraining?: number | null;
|
|
5870
|
+
} | null;
|
|
5871
|
+
};
|
|
5872
|
+
type PrivacyStatsOutputFragment = {
|
|
5873
|
+
__typename: 'PrivacyStatsOutput';
|
|
5874
|
+
enabled: boolean;
|
|
5875
|
+
enabledRuleCount: number;
|
|
5876
|
+
maskedValueCount: number;
|
|
5877
|
+
matchedTypeCount: number;
|
|
5878
|
+
matchedTypes: Array<string>;
|
|
5879
|
+
protectedAt?: string | null;
|
|
5880
|
+
protectedTurn: boolean;
|
|
5881
|
+
};
|
|
5882
|
+
type PrivacyStatsTotalsDeltaOutputFragment = {
|
|
5883
|
+
__typename: 'PrivacyStatsTotalsDeltaOutput';
|
|
5884
|
+
automaticallyMaskedData?: number | null;
|
|
5807
5885
|
messagesProtectedFromTraining?: number | null;
|
|
5808
5886
|
};
|
|
5809
5887
|
type ProgressSummaryEventOutputFragment = {
|
|
@@ -6050,6 +6128,16 @@ type StreamEventSchemaAnchorFragment = {
|
|
|
6050
6128
|
type: ContentBlockType;
|
|
6051
6129
|
}> | null;
|
|
6052
6130
|
};
|
|
6131
|
+
privacyStats?: {
|
|
6132
|
+
__typename: 'PrivacyStatsOutput';
|
|
6133
|
+
enabled: boolean;
|
|
6134
|
+
enabledRuleCount: number;
|
|
6135
|
+
maskedValueCount: number;
|
|
6136
|
+
matchedTypeCount: number;
|
|
6137
|
+
matchedTypes: Array<string>;
|
|
6138
|
+
protectedAt?: string | null;
|
|
6139
|
+
protectedTurn: boolean;
|
|
6140
|
+
} | null;
|
|
6053
6141
|
usage: {
|
|
6054
6142
|
__typename: 'UsageMetaOutput';
|
|
6055
6143
|
cachedPromptTokens?: number | null;
|
|
@@ -6086,6 +6174,24 @@ type StreamEventSchemaAnchorFragment = {
|
|
|
6086
6174
|
type: ContentBlockType;
|
|
6087
6175
|
}> | null;
|
|
6088
6176
|
};
|
|
6177
|
+
} | {
|
|
6178
|
+
__typename: 'PrivacyStatsEventOutput';
|
|
6179
|
+
type: string;
|
|
6180
|
+
stats: {
|
|
6181
|
+
__typename: 'PrivacyStatsOutput';
|
|
6182
|
+
enabled: boolean;
|
|
6183
|
+
enabledRuleCount: number;
|
|
6184
|
+
maskedValueCount: number;
|
|
6185
|
+
matchedTypeCount: number;
|
|
6186
|
+
matchedTypes: Array<string>;
|
|
6187
|
+
protectedAt?: string | null;
|
|
6188
|
+
protectedTurn: boolean;
|
|
6189
|
+
};
|
|
6190
|
+
totalsDelta?: {
|
|
6191
|
+
__typename: 'PrivacyStatsTotalsDeltaOutput';
|
|
6192
|
+
automaticallyMaskedData?: number | null;
|
|
6193
|
+
messagesProtectedFromTraining?: number | null;
|
|
6194
|
+
} | null;
|
|
6089
6195
|
} | {
|
|
6090
6196
|
__typename: 'ProgressSummaryEventOutput';
|
|
6091
6197
|
kind: string;
|
|
@@ -6441,6 +6547,7 @@ type UserAiProviderSettingFragment = {
|
|
|
6441
6547
|
enabled: boolean;
|
|
6442
6548
|
id: string;
|
|
6443
6549
|
model: string;
|
|
6550
|
+
savedModels?: Array<string> | null;
|
|
6444
6551
|
updatedAt: string;
|
|
6445
6552
|
};
|
|
6446
6553
|
type UserSkillFileFragment = {
|
|
@@ -6521,6 +6628,13 @@ type WindowDetailTypeFragment = {
|
|
|
6521
6628
|
windowEnd?: string | null;
|
|
6522
6629
|
windowStart?: string | null;
|
|
6523
6630
|
};
|
|
6631
|
+
type WorkspaceAiModelSettingFragment = {
|
|
6632
|
+
__typename: 'WorkspaceAiModelSetting';
|
|
6633
|
+
createdAt: string;
|
|
6634
|
+
id: string;
|
|
6635
|
+
model: string;
|
|
6636
|
+
updatedAt: string;
|
|
6637
|
+
};
|
|
6524
6638
|
type WorkspaceDeleteScheduleFragment = {
|
|
6525
6639
|
__typename: 'WorkspaceDeleteSchedule';
|
|
6526
6640
|
createdAt: string;
|
|
@@ -6643,6 +6757,9 @@ type DeleteProjectMutationVariables = Exact<{
|
|
|
6643
6757
|
type DeleteReportMutationVariables = Exact<{
|
|
6644
6758
|
where: ReportWhereUniqueInput;
|
|
6645
6759
|
}>;
|
|
6760
|
+
type DeleteSavedAiProviderModelMutationVariables = Exact<{
|
|
6761
|
+
model: Scalars['String'];
|
|
6762
|
+
}>;
|
|
6646
6763
|
type DeleteTableMutationVariables = Exact<{
|
|
6647
6764
|
where: TableWhereUniqueInput;
|
|
6648
6765
|
}>;
|
|
@@ -6806,6 +6923,9 @@ type UpsertAiProviderSettingMutationVariables = Exact<{
|
|
|
6806
6923
|
update: UserAiProviderSettingUpdateInput;
|
|
6807
6924
|
where: UserAiProviderSettingWhereUniqueInput;
|
|
6808
6925
|
}>;
|
|
6926
|
+
type UpsertWorkspaceAiModelMutationVariables = Exact<{
|
|
6927
|
+
model: Scalars['String'];
|
|
6928
|
+
}>;
|
|
6809
6929
|
type AgentQueryVariables = Exact<{
|
|
6810
6930
|
id: Scalars['ID'];
|
|
6811
6931
|
}>;
|
|
@@ -7267,6 +7387,9 @@ type LiveContextsQueryVariables = Exact<{
|
|
|
7267
7387
|
type LocalSandboxDeviceStatusesQueryVariables = Exact<{
|
|
7268
7388
|
deviceIds: Array<Scalars['String']> | Scalars['String'];
|
|
7269
7389
|
}>;
|
|
7390
|
+
type ManagedChatModelsQueryVariables = Exact<{
|
|
7391
|
+
[key: string]: never;
|
|
7392
|
+
}>;
|
|
7270
7393
|
type NotificationQueryVariables = Exact<{
|
|
7271
7394
|
id: Scalars['ID'];
|
|
7272
7395
|
}>;
|
|
@@ -7282,7 +7405,7 @@ type NotificationsByReferenceQueryVariables = Exact<{
|
|
|
7282
7405
|
referenceId: Scalars['String'];
|
|
7283
7406
|
}>;
|
|
7284
7407
|
type PrivacyStatsQueryVariables = Exact<{
|
|
7285
|
-
|
|
7408
|
+
id: Scalars['ID'];
|
|
7286
7409
|
}>;
|
|
7287
7410
|
type ProjectQueryVariables = Exact<{
|
|
7288
7411
|
id: Scalars['ID'];
|
|
@@ -7418,6 +7541,9 @@ type UserSkillFolderQueryVariables = Exact<{
|
|
|
7418
7541
|
type UserSkillFoldersQueryVariables = Exact<{
|
|
7419
7542
|
path?: InputMaybe<Scalars['String']>;
|
|
7420
7543
|
}>;
|
|
7544
|
+
type WorkspaceAiModelQueryVariables = Exact<{
|
|
7545
|
+
[key: string]: never;
|
|
7546
|
+
}>;
|
|
7421
7547
|
type WorkspaceDeletionScheduleQueryVariables = Exact<{
|
|
7422
7548
|
[key: string]: never;
|
|
7423
7549
|
}>;
|
|
@@ -7541,4 +7667,4 @@ interface DvinaClientResult {
|
|
|
7541
7667
|
*/
|
|
7542
7668
|
declare function createDvinaClient(options: DvinaSdkOptions): DvinaClientResult;
|
|
7543
7669
|
|
|
7544
|
-
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 };
|
|
7670
|
+
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 DesktopDevicesQueryVariables 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 DeleteSavedAiProviderModelMutationVariables as bW, type DeleteTableMutationVariables as bX, type DeleteUserSkillFileMutationVariables as bY, type DeleteUserSkillFolderMutationVariables as bZ, type DesktopDeviceConnectionFragment 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 UpdateUserSkillFolderMutationVariables as c$, type DevAccessTokenOutputFragment as c0, type DisconnectIntegrationMutationVariables as c1, type DismissPulseEventMutationVariables as c2, PulseEventPriority as c3, PulseEventKind as c4, type PulseEventFragment as c5, type PulseEvent_IntegrationQueryVariables as c6, IntegrationStatus as c7, type IntegrationFragment as c8, type Integration_ProviderQueryVariables as c9, type RelocateInsightMutationVariables as cA, type RemoveInsightFromReportMutationVariables as cB, type ResolvePulseEventMutationVariables as cC, type WorkspaceDeleteScheduleFragment as cD, type SendMessageMutationVariables as cE, type SetDatabasePrimaryKeyMutationVariables as cF, type SyncProjectDesktopBindingMutationVariables as cG, type UpdateAgentMutationVariables as cH, type UpdateArtifactNameMutationVariables as cI, type UpdateChatMutationVariables as cJ, type UpdateDatabaseMutationVariables as cK, type UpdateDocumentMutationVariables as cL, type UpdateFolderMutationVariables as cM, type UpdateInsightMutationVariables as cN, type UpdateInsightInReportMutationVariables as cO, type UpdateInsightThumbnailMutationVariables as cP, type UpdateInterpMutationVariables as cQ, InterpretationType as cR, AiResourceType as cS, type InterpretationFragment as cT, type UpdateLiveContextMutationVariables as cU, type UpdateProjectMutationVariables as cV, type UpdatePulseTriggerMutationVariables as cW, type PulseTriggerSettingModelFragment as cX, type UpdateReportMutationVariables as cY, type UpdateTableMutationVariables as cZ, type UpdateUserSkillFileMutationVariables as c_, type IntegrationProviderFragment as ca, type IntegrationCatalogQueryVariables as cb, type IntegrationCatalogFragment as cc, type IntegrationCatalog_ProviderQueryVariables as cd, type DocumentCatalogConnectionFragment as ce, type DocumentCatalogsQueryVariables as cf, type DocumentConnectionFragment as cg, type Document_Format_CatalogQueryVariables as ch, type DocumentsQueryVariables as ci, type ChatStreamClient as cj, type DvinaSdkLifecycle as ck, type ExecuteChatImportMutationVariables as cl, type GenerateUploadUriMutationVariables as cm, type FileModelFragment as cn, type MigrateLegacyCodeChatsMutationVariables as co, type LegacyCodeMigratedChatSummaryOutputFragment as cp, type LegacyCodeMigrationOutputFragment as cq, type PreviewChatImportMutationVariables as cr, type ReanalyzeDocumentMutationVariables as cs, type RefineAgentInstructionMutationVariables as ct, type RefineSkillInstructionMutationVariables as cu, type RefreshDatabaseSchemaMutationVariables as cv, type RefreshInsightMutationVariables as cw, type RegisterDesktopDeviceMutationVariables as cx, type ReinterpretSourceMutationVariables as cy, type ReinterpretSourcesOfuserMutationVariables as cz, type ChatMessageFragment as d, type NotificationFragment as d$, type UpsertAiProviderSettingMutationVariables as d0, type UpsertWorkspaceAiModelMutationVariables as d1, type ExportQueryVariables as d2, type ExportWithInsightIdQueryVariables as d3, type FeedItemQueryVariables as d4, FeedItemKind as d5, type FeedDocumentDataFragment as d6, type FeedArtifactDataFragment as d7, type FeedDatabaseDataFragment as d8, type FeedInsightDataFragment as d9, type GetTokenUsageHistoryQueryVariables as dA, type GetTokenUsageStatusQueryVariables as dB, TokenUsageLimit as dC, ActiveWindowType as dD, type WindowDetailTypeFragment as dE, type UsageWindowsStatusTypeFragment as dF, type UsageStatusFragment as dG, type GetTokenUsageStatus_WindowsQueryVariables as dH, type GetUsageQueryVariables as dI, type InsightsQueryVariables as dJ, type IntegrationQueryVariables as dK, type IntegrationCatalogToolsQueryVariables as dL, type IntegrationCatalogsQueryVariables as dM, type IntegrationCatalogConnectionFragment as dN, type IntegrationsQueryVariables as dO, type IntegrationConnectionFragment as dP, type InterpretationsQueryVariables as dQ, type InterpretationConnectionFragment as dR, type LiveContextsQueryVariables as dS, type LiveContextConnectionFragment as dT, type LocalSandboxDeviceStatusesQueryVariables as dU, LocalSandboxDeviceConnectionState as dV, type LocalSandboxDeviceStatusModelFragment as dW, type NotificationQueryVariables as dX, NotificationCategory as dY, NotificationPriority as dZ, NotificationStatus as d_, type FeedIntegrationDataFragment as da, type FeedProjectDataFragment as db, type FeedLiveContextDataFragment as dc, type FeedPulseDataFragment as dd, type FeedItemFragment as de, type FeedItem_ActionQueryVariables as df, type FeedSendMessageActionFragment as dg, type FeedItem_DataQueryVariables as dh, type FeedItemsQueryVariables as di, type FeedConnectionFragment as dj, type FileQueryVariables as dk, type FileMetaQueryVariables as dl, type FileUrlsQueryVariables as dm, type ResolvedFileUrlFragment as dn, type FindFitTierQueryVariables as dp, EntitlementTier as dq, type FolderQueryVariables as dr, type FoldersQueryVariables as ds, type FolderConnectionFragment as dt, type GetCapabilityQueryVariables as du, type GetDevAccessTokenQueryVariables as dv, type GetLimitQueryVariables as dw, type GetRemainingQueryVariables as dx, type GetTokenUsageByModelQueryVariables as dy, type ModelTokenUsageFragment as dz, type ChatMessage_ArtifactsQueryVariables as e, type ScheduleWorkspaceDeletionMutationVariables as e$, type NotificationsQueryVariables as e0, type NotificationConnectionFragment as e1, type NotificationsByReferenceQueryVariables as e2, type PrivacyStatsQueryVariables as e3, type PrivacyStatsFragment as e4, type ProjectsQueryVariables as e5, type ProjectConnectionFragment as e6, type PulseAppSummaryQueryVariables as e7, type PulseAppSummaryModelFragment as e8, type PulseEventQueryVariables as e9, type FinalContentEventOutputFragment as eA, type GetTokenUsageStatus_Windows_DayQueryVariables as eB, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as eC, type GetTokenUsageStatus_Windows_MonthQueryVariables as eD, type GetTokenUsageStatus_Windows_WeekQueryVariables as eE, type InferenceRequestAuditFragment as eF, type Insight_Chat_DesktopDeviceQueryVariables as eG, type Insight_Chat_ProjectQueryVariables as eH, type Integration_Provider_CatalogQueryVariables as eI, type InterruptEventOutputFragment as eJ, type InvocationFragment as eK, type LiveContext_Source_EvidencesQueryVariables as eL, type ManagedChatModelsQueryVariables as eM, type McpClientInformationFragment as eN, type McpCodeVerifierFragment as eO, type McpServerFragment as eP, type McpTokensFragment as eQ, type McpToolFragment as eR, type MessageEndEventOutputFragment as eS, type MessageStartEventOutputFragment as eT, type PrivacyStatsTotalsDeltaOutputFragment as eU, type PrivacyStatsEventOutputFragment as eV, type ProgressSummaryEventOutputFragment as eW, type Project_DesktopBinding_DeviceQueryVariables as eX, type PulseEvent_Integration_ProviderQueryVariables as eY, type ReasoningEventOutputFragment as eZ, type ResetWorkspaceMutationVariables as e_, type PulseEventsQueryVariables as ea, type PulseEventConnectionFragment as eb, type PulseTriggerSettingsQueryVariables as ec, type QueryQueryVariables as ed, type QueryWithInsightIdQueryVariables as ee, type QueryWithMessageIdQueryVariables as ef, type ReportsQueryVariables as eg, type SkillCatalogQueryVariables as eh, SkillCatalogSource as ei, type SkillCatalogItemFragment as ej, type TablesQueryVariables as ek, type UserSkillFileQueryVariables as el, type UserSkillFilesQueryVariables as em, type UserSkillFolderQueryVariables as en, type UserSkillFoldersQueryVariables as eo, type WorkspaceDeletionScheduleQueryVariables as ep, type McpAuthUpdatesSubscriptionVariables as eq, McpAuthPhase as er, type McpAuthUpdateModelFragment as es, type TokenUsageUpdatesSubscriptionVariables as et, type EvidenceFragment as eu, type FailedSyncEventIngestionFragment as ev, type StreamMessageContentOutputFragment as ew, type StreamMessageOutputFragment as ex, type UsageMetaOutputFragment as ey, type PrivacyStatsOutputFragment as ez, ArtifactKind as f, TableOrderByRelevanceFieldEnum as f$, type TextBlockEventOutputFragment as f0, type TextDeltaEventOutputFragment as f1, type WidgetBlockStartEventOutputFragment as f2, type WidgetHtmlDeltaEventOutputFragment as f3, type WidgetBlockCompleteEventOutputFragment as f4, type WidgetBlockErrorEventOutputFragment as f5, type ToolStartEventOutputFragment as f6, type ToolInputDeltaEventOutputFragment as f7, type ToolResultArtifactOutputFragment as f8, type ToolResultEventOutputFragment as f9, DesktopDeviceOrderByRelevanceFieldEnum as fA, DocumentCatalogOrderByRelevanceFieldEnum as fB, DocumentOrderByRelevanceFieldEnum as fC, type DvinaSdkBaseOptions as fD, type DvinaSdkCallbackOptions as fE, type DvinaSdkLifecycleHint as fF, type DvinaSdkTokenOptions as fG, FeedItemOrderByRelevanceFieldEnum as fH, FeedbackOrderByRelevanceFieldEnum as fI, FileOrderByRelevanceFieldEnum as fJ, FileUrlVariant as fK, FolderOrderByRelevanceFieldEnum as fL, InsightOrderByRelevanceFieldEnum as fM, IntegrationCatalogOrderByRelevanceFieldEnum as fN, IntegrationOrderByRelevanceFieldEnum as fO, InterpretationOrderByRelevanceFieldEnum as fP, LimitType as fQ, LiveContextOrderByRelevanceFieldEnum as fR, NotificationOrderByRelevanceFieldEnum as fS, NullsOrder as fT, ProjectDesktopBindingOrderByRelevanceFieldEnum as fU, ProjectOrderByRelevanceFieldEnum as fV, PulseEventOrderByRelevanceFieldEnum as fW, QueryMode as fX, ReportOrderByRelevanceFieldEnum as fY, SendMessageModel as fZ, SortOrder as f_, type StreamEventSchemaAnchorFragment as fa, type SyncEventFragment as fb, type SyncEventCursorFragment as fc, type Table_Database_EngineQueryVariables as fd, type Table_Document_ContentsQueryVariables as fe, type Table_Document_FileQueryVariables as ff, type Table_Document_FormatQueryVariables as fg, type TokenUsageFragment as fh, type UserSkillFileFragment as fi, type UserSkillFolderFragment as fj, type WorkspaceAiModelQueryVariables as fk, type WorkspaceAiModelSettingFragment as fl, type ActiveChatStreamClient as fm, type ActiveChatStreamListener as fn, type ActiveChatStreamListenerHandlers as fo, AgentOrderByRelevanceFieldEnum as fp, ArtifactOrderByRelevanceFieldEnum as fq, CapabilityType as fr, ChatMessageOrderByRelevanceFieldEnum as fs, ChatOrderByRelevanceFieldEnum as ft, type ChatStreamClientOptions as fu, type ChatStreamEvent as fv, type ChatStreamListener as fw, type ChatStreamListenerHandlers as fx, DatabaseCatalogOrderByRelevanceFieldEnum as fy, DatabaseOrderByRelevanceFieldEnum as fz, type ArtifactFragment as g, UsageHistoryGranularity as g0, createChatStreamClient as g1, createDvinaClient as g2, 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 };
|