@dvina/sdk 4.0.206 → 4.0.210

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. package/dist/_generated_documents-OVKM6E6J.js +4 -0
  2. package/dist/{_generated_documents-RAV5MNHA.js.map → _generated_documents-OVKM6E6J.js.map} +1 -1
  3. package/dist/{_generated_documents-KJOJJM2L.cjs → _generated_documents-UERNUJV2.cjs} +646 -618
  4. package/dist/{_generated_documents-KJOJJM2L.cjs.map → _generated_documents-UERNUJV2.cjs.map} +1 -1
  5. package/dist/adapters/angular/index.cjs +4 -4
  6. package/dist/adapters/angular/index.d.cts +1 -1
  7. package/dist/adapters/angular/index.d.ts +1 -1
  8. package/dist/adapters/angular/index.js +2 -2
  9. package/dist/{chunk-XYIJYHQI.cjs → chunk-2C5KMNDM.cjs} +31 -17
  10. package/dist/chunk-2C5KMNDM.cjs.map +1 -0
  11. package/dist/{chunk-IQJIL4SQ.cjs → chunk-5KUJ63KT.cjs} +1054 -801
  12. package/dist/chunk-5KUJ63KT.cjs.map +1 -0
  13. package/dist/{chunk-MKWTSXJB.js → chunk-BBXV2I6V.js} +19 -12
  14. package/dist/chunk-BBXV2I6V.js.map +1 -0
  15. package/dist/{chunk-PAYMMCFU.js → chunk-UDAQBW74.js} +469 -220
  16. package/dist/chunk-UDAQBW74.js.map +1 -0
  17. package/dist/{client-DCKAIoXm.d.cts → client-BQliWrjz.d.cts} +107 -57
  18. package/dist/{client-CIQ4ru7O.d.ts → client-DOYqm17u.d.ts} +107 -57
  19. package/dist/index.cjs +476 -460
  20. package/dist/index.d.cts +104 -69
  21. package/dist/index.d.ts +104 -69
  22. package/dist/index.js +2 -2
  23. package/package.json +1 -1
  24. package/dist/_generated_documents-RAV5MNHA.js +0 -4
  25. package/dist/chunk-IQJIL4SQ.cjs.map +0 -1
  26. package/dist/chunk-MKWTSXJB.js.map +0 -1
  27. package/dist/chunk-PAYMMCFU.js.map +0 -1
  28. package/dist/chunk-XYIJYHQI.cjs.map +0 -1
@@ -4085,6 +4085,44 @@ type UsageMetaOutput = {
4085
4085
  promptTokens: Scalars['Int'];
4086
4086
  totalTokens: Scalars['Int'];
4087
4087
  };
4088
+ type UserAiProviderSettingCreateInput = {
4089
+ apiKey: Scalars['String'];
4090
+ baseUrl: Scalars['String'];
4091
+ enabled?: InputMaybe<Scalars['Boolean']>;
4092
+ id?: InputMaybe<Scalars['String']>;
4093
+ model: Scalars['String'];
4094
+ };
4095
+ type UserAiProviderSettingUpdateInput = {
4096
+ apiKey?: InputMaybe<Scalars['String']>;
4097
+ baseUrl?: InputMaybe<Scalars['String']>;
4098
+ enabled?: InputMaybe<Scalars['Boolean']>;
4099
+ id?: InputMaybe<Scalars['String']>;
4100
+ model?: InputMaybe<Scalars['String']>;
4101
+ };
4102
+ type UserAiProviderSettingWhereInput = {
4103
+ AND?: InputMaybe<Array<UserAiProviderSettingWhereInput>>;
4104
+ NOT?: InputMaybe<Array<UserAiProviderSettingWhereInput>>;
4105
+ OR?: InputMaybe<Array<UserAiProviderSettingWhereInput>>;
4106
+ apiKey?: InputMaybe<StringFilter>;
4107
+ baseUrl?: InputMaybe<StringFilter>;
4108
+ createdAt?: InputMaybe<DateTimeFilter>;
4109
+ enabled?: InputMaybe<BoolFilter>;
4110
+ id?: InputMaybe<StringFilter>;
4111
+ model?: InputMaybe<StringFilter>;
4112
+ updatedAt?: InputMaybe<DateTimeFilter>;
4113
+ };
4114
+ type UserAiProviderSettingWhereUniqueInput = {
4115
+ AND?: InputMaybe<Array<UserAiProviderSettingWhereInput>>;
4116
+ NOT?: InputMaybe<Array<UserAiProviderSettingWhereInput>>;
4117
+ OR?: InputMaybe<Array<UserAiProviderSettingWhereInput>>;
4118
+ apiKey?: InputMaybe<StringFilter>;
4119
+ baseUrl?: InputMaybe<StringFilter>;
4120
+ createdAt?: InputMaybe<DateTimeFilter>;
4121
+ enabled?: InputMaybe<BoolFilter>;
4122
+ id?: InputMaybe<Scalars['String']>;
4123
+ model?: InputMaybe<StringFilter>;
4124
+ updatedAt?: InputMaybe<DateTimeFilter>;
4125
+ };
4088
4126
  type WidgetBlockCompleteEventOutput = {
4089
4127
  __typename?: 'WidgetBlockCompleteEventOutput';
4090
4128
  index: Scalars['Int'];
@@ -4592,18 +4630,31 @@ type DesktopDeviceFragment = {
4592
4630
  platform?: string | null;
4593
4631
  updatedAt: string;
4594
4632
  };
4595
- type DesktopDeviceModelFragment = {
4596
- __typename: 'DesktopDeviceModel';
4597
- appVersion?: string | null;
4598
- deviceId: string;
4599
- deviceLabel: string;
4600
- deviceType?: string | null;
4601
- lastSeenAt?: string | null;
4602
- manufacturer?: string | null;
4603
- modelName?: string | null;
4604
- modelYear?: number | null;
4605
- platform?: string | null;
4606
- state: LocalSandboxDeviceConnectionState;
4633
+ type DesktopDeviceConnectionFragment = {
4634
+ __typename: 'DesktopDeviceConnection';
4635
+ totalCount: number;
4636
+ nodes?: Array<{
4637
+ __typename: 'DesktopDevice';
4638
+ appVersion?: string | null;
4639
+ createdAt: string;
4640
+ deviceLabel: string;
4641
+ deviceType?: string | null;
4642
+ id: string;
4643
+ lastSeenAt?: string | null;
4644
+ macAddress?: string | null;
4645
+ manufacturer?: string | null;
4646
+ modelName?: string | null;
4647
+ modelYear?: number | null;
4648
+ platform?: string | null;
4649
+ updatedAt: string;
4650
+ }> | null;
4651
+ pageInfo: {
4652
+ __typename?: 'PageInfo';
4653
+ endCursor?: string | null;
4654
+ hasNextPage: boolean;
4655
+ hasPreviousPage: boolean;
4656
+ startCursor?: string | null;
4657
+ };
4607
4658
  };
4608
4659
  type DevAccessTokenOutputFragment = {
4609
4660
  __typename: 'DevAccessTokenOutput';
@@ -5507,41 +5558,6 @@ type LiveContextConnectionFragment = {
5507
5558
  startCursor?: string | null;
5508
5559
  };
5509
5560
  };
5510
- type LocalRuntimeDeviceModelFragment = {
5511
- __typename: 'LocalRuntimeDeviceModel';
5512
- deviceId: string;
5513
- deviceType?: string | null;
5514
- isPreferred: boolean;
5515
- isResolved: boolean;
5516
- label: string;
5517
- lastSeenAt?: string | null;
5518
- manufacturer?: string | null;
5519
- modelName?: string | null;
5520
- modelYear?: number | null;
5521
- platform?: string | null;
5522
- state: LocalSandboxDeviceConnectionState;
5523
- };
5524
- type LocalRuntimeOverviewModelFragment = {
5525
- __typename: 'LocalRuntimeOverviewModel';
5526
- connectedDeviceCount: number;
5527
- resolvedDeviceId?: string | null;
5528
- resolvedDeviceLabel?: string | null;
5529
- state: LocalSandboxDeviceConnectionState;
5530
- devices: Array<{
5531
- __typename: 'LocalRuntimeDeviceModel';
5532
- deviceId: string;
5533
- deviceType?: string | null;
5534
- isPreferred: boolean;
5535
- isResolved: boolean;
5536
- label: string;
5537
- lastSeenAt?: string | null;
5538
- manufacturer?: string | null;
5539
- modelName?: string | null;
5540
- modelYear?: number | null;
5541
- platform?: string | null;
5542
- state: LocalSandboxDeviceConnectionState;
5543
- }>;
5544
- };
5545
5561
  type LocalSandboxDeviceStatusModelFragment = {
5546
5562
  __typename: 'LocalSandboxDeviceStatusModel';
5547
5563
  deviceId: string;
@@ -6284,6 +6300,15 @@ type UsageWindowsStatusTypeFragment = {
6284
6300
  windowStart?: string | null;
6285
6301
  } | null;
6286
6302
  };
6303
+ type UserAiProviderSettingFragment = {
6304
+ __typename: 'UserAiProviderSetting';
6305
+ baseUrl: string;
6306
+ createdAt: string;
6307
+ enabled: boolean;
6308
+ id: string;
6309
+ model: string;
6310
+ updatedAt: string;
6311
+ };
6287
6312
  type UserSkillFileFragment = {
6288
6313
  __typename: 'UserSkillFile';
6289
6314
  createdAt: string;
@@ -6450,6 +6475,9 @@ type CreateUserSkillFolderMutationVariables = Exact<{
6450
6475
  type DeleteAgentMutationVariables = Exact<{
6451
6476
  where: AgentWhereUniqueInput;
6452
6477
  }>;
6478
+ type DeleteAiProviderSettingMutationVariables = Exact<{
6479
+ where: UserAiProviderSettingWhereUniqueInput;
6480
+ }>;
6453
6481
  type DeleteArtifactMutationVariables = Exact<{
6454
6482
  where: ArtifactWhereUniqueInput;
6455
6483
  }>;
@@ -6636,6 +6664,11 @@ type UpdateUserSkillFolderMutationVariables = Exact<{
6636
6664
  id: Scalars['ID'];
6637
6665
  path: Scalars['String'];
6638
6666
  }>;
6667
+ type UpsertAiProviderSettingMutationVariables = Exact<{
6668
+ create: UserAiProviderSettingCreateInput;
6669
+ update: UserAiProviderSettingUpdateInput;
6670
+ where: UserAiProviderSettingWhereUniqueInput;
6671
+ }>;
6639
6672
  type AgentQueryVariables = Exact<{
6640
6673
  id: Scalars['ID'];
6641
6674
  }>;
@@ -6656,6 +6689,9 @@ type AgentsQueryVariables = Exact<{
6656
6689
  last?: InputMaybe<Scalars['Int']>;
6657
6690
  orderBy?: InputMaybe<Array<AgentOrderByWithRelationInput> | AgentOrderByWithRelationInput>;
6658
6691
  }>;
6692
+ type AiProviderSettingQueryVariables = Exact<{
6693
+ [key: string]: never;
6694
+ }>;
6659
6695
  type ArtifactQueryVariables = Exact<{
6660
6696
  id: Scalars['ID'];
6661
6697
  }>;
@@ -6835,8 +6871,28 @@ type DatabasesQueryVariables = Exact<{
6835
6871
  last?: InputMaybe<Scalars['Int']>;
6836
6872
  orderBy?: InputMaybe<Array<DatabaseOrderByWithRelationInput> | DatabaseOrderByWithRelationInput>;
6837
6873
  }>;
6874
+ type DesktopDeviceQueryVariables = Exact<{
6875
+ id: Scalars['ID'];
6876
+ }>;
6877
+ type DesktopDevice_ChatsQueryVariables = Exact<{
6878
+ id: Scalars['ID'];
6879
+ after?: InputMaybe<Scalars['String']>;
6880
+ before?: InputMaybe<Scalars['String']>;
6881
+ filter?: InputMaybe<ChatWhereInput>;
6882
+ first?: InputMaybe<Scalars['Int']>;
6883
+ last?: InputMaybe<Scalars['Int']>;
6884
+ orderBy?: InputMaybe<Array<ChatOrderByWithRelationInput> | ChatOrderByWithRelationInput>;
6885
+ }>;
6886
+ type DesktopDevice_DesktopBindingsQueryVariables = Exact<{
6887
+ id: Scalars['ID'];
6888
+ }>;
6838
6889
  type DesktopDevicesQueryVariables = Exact<{
6839
- [key: string]: never;
6890
+ after?: InputMaybe<Scalars['String']>;
6891
+ before?: InputMaybe<Scalars['String']>;
6892
+ filter?: InputMaybe<DesktopDeviceWhereInput>;
6893
+ first?: InputMaybe<Scalars['Int']>;
6894
+ last?: InputMaybe<Scalars['Int']>;
6895
+ orderBy?: InputMaybe<Array<DesktopDeviceOrderByWithRelationInput> | DesktopDeviceOrderByWithRelationInput>;
6840
6896
  }>;
6841
6897
  type DocumentQueryVariables = Exact<{
6842
6898
  id: Scalars['ID'];
@@ -7071,14 +7127,8 @@ type LiveContextsQueryVariables = Exact<{
7071
7127
  last?: InputMaybe<Scalars['Int']>;
7072
7128
  orderBy?: InputMaybe<Array<LiveContextOrderByWithRelationInput> | LiveContextOrderByWithRelationInput>;
7073
7129
  }>;
7074
- type LocalRuntimeOverviewQueryVariables = Exact<{
7075
- preferredDeviceId?: InputMaybe<Scalars['String']>;
7076
- }>;
7077
- type LocalRuntimeOverview_DevicesQueryVariables = Exact<{
7078
- preferredDeviceId?: InputMaybe<Scalars['String']>;
7079
- }>;
7080
- type LocalSandboxDeviceStatusQueryVariables = Exact<{
7081
- deviceId: Scalars['String'];
7130
+ type LocalSandboxDeviceStatusesQueryVariables = Exact<{
7131
+ deviceIds: Array<Scalars['String']> | Scalars['String'];
7082
7132
  }>;
7083
7133
  type NotificationQueryVariables = Exact<{
7084
7134
  id: Scalars['ID'];
@@ -7344,4 +7394,4 @@ interface DvinaClientResult {
7344
7394
  */
7345
7395
  declare function createDvinaClient(options: DvinaSdkOptions): DvinaClientResult;
7346
7396
 
7347
- export { type ProjectFragment as $, type AbortChatMutationVariables as A, type InsightConnectionFragment as B, type ChatMessageQueryVariables as C, type DvinaSdkOptions as D, type Report_LayoutQueryVariables as E, type Artifact_FileQueryVariables as F, type FileFragment as G, type Artifact_MessageQueryVariables as H, type InsightFragment as I, type ChatMessage_ChatQueryVariables as J, type ChatMessage_ContentsQueryVariables as K, ContentBlockType as L, type ContentBlockFragment as M, type ChatMessage_FeedbackQueryVariables as N, FeedbackType as O, Presentation as P, type FeedbackFragment as Q, ReasoningEffort as R, type Chat_MessagesQueryVariables as S, type ChatMessageConnectionFragment as T, type Chat_ProjectQueryVariables as U, type Project_ChatsQueryVariables as V, type Project_DesktopBindingQueryVariables as W, ProjectDesktopContextKind as X, type ProjectDesktopBindingFragment as Y, type ProjectQueryVariables as Z, ProjectSource as _, ActionType as a, type Table_DocumentQueryVariables as a$, type Insight_ReportsQueryVariables as a0, type ReportConnectionFragment as a1, type Insight_ThumbnailFileQueryVariables as a2, type InsightQueryVariables as a3, type ArtifactConnectionFragment as a4, type AddInsightToReportMutationVariables as a5, type AgentQueryVariables as a6, type AgentsQueryVariables as a7, type ArtifactQueryVariables as a8, type Artifact_Chat_DesktopDeviceQueryVariables as a9, type ChatMessagesQueryVariables as aA, type ChatQueryVariables as aB, type ChatTitleEventOutputFragment as aC, type Chat_DesktopDevice_DesktopBindingsQueryVariables as aD, type Chat_Insight_ReportMembersQueryVariables as aE, type Chat_Insight_ThumbnailFileQueryVariables as aF, type Chat_Project_DesktopBindingQueryVariables as aG, type ChatsQueryVariables as aH, type ConnectIntegrationMutationVariables as aI, type CreateIntegrationOutputFragment as aJ, type ConsumePulseEventsMutationVariables as aK, type ContentMaskFragment as aL, type ContinueImportedChatMutationVariables as aM, type ContinueInterpretationMutationVariables as aN, type CreateAgentMutationVariables as aO, type CreateChatMutationVariables as aP, type CreateDatabaseMutationVariables as aQ, type DatabaseFragment as aR, type Database_EngineQueryVariables as aS, type DatabaseEngineFragment as aT, type DatabaseCatalogQueryVariables as aU, type DatabaseCatalogFragment as aV, type DatabaseCatalog_EngineQueryVariables as aW, type Database_TablesQueryVariables as aX, TableStatus as aY, type TableFragment as aZ, type Table_DatabaseQueryVariables as a_, type Artifact_Chat_InsightQueryVariables as aa, type Artifact_Chat_ProjectQueryVariables as ab, type Artifact_Message_ChatQueryVariables as ac, type Artifact_Message_ContentsQueryVariables as ad, type Artifact_Message_FeedbackQueryVariables as ae, type ArtifactsQueryVariables as af, type AudioEventOutputFragment as ag, type CancelOauthFlowMutationVariables as ah, type CancelWorkspaceDeletionMutationVariables as ai, type CandidateFragment as aj, type LiveContextQueryVariables as ak, LiveContextStatus as al, type LiveContextFragment as am, type LiveContext_ItemsQueryVariables as an, FeedActionType as ao, type FeedItemGeneratedFragment as ap, type LiveContext_SourceQueryVariables as aq, type CandidateEvidenceFragment as ar, type ImportedChatSummaryOutputFragment as as, type ChatImportExecuteOutputFragment as at, ChatSourceImportFidelityEnum as au, ChatSourceImportModeEnum as av, type ChatImportPreviewOutputFragment as aw, type ChatMessage_Chat_DesktopDeviceQueryVariables as ax, type ChatMessage_Chat_InsightQueryVariables as ay, type ChatMessage_Chat_ProjectQueryVariables as az, type ActionFragment as b, IntegrationStatus as b$, type DocumentFragment as b0, type Document_ContentsQueryVariables as b1, type DocumentContentFragment as b2, type DocumentQueryVariables as b3, type Document_FileQueryVariables as b4, type Document_FormatQueryVariables as b5, type DocumentFormatFragment as b6, type DocumentCatalogQueryVariables as b7, type DocumentCatalogFragment as b8, type DocumentCatalog_FormatQueryVariables as b9, type Database_Engine_CatalogQueryVariables as bA, type DatabasesQueryVariables as bB, type DeepAnalysisUsageFragment as bC, type DeleteAgentMutationVariables as bD, type DeleteArtifactMutationVariables as bE, type DeleteChatMutationVariables as bF, type DeleteDatabaseMutationVariables as bG, type DeleteDocumentMutationVariables as bH, type DeleteFolderMutationVariables as bI, type DeleteInsightMutationVariables as bJ, type DeleteInsightsMutationVariables as bK, type DeleteIntegrationMutationVariables as bL, type DeleteProjectMutationVariables as bM, type DeleteReportMutationVariables as bN, type DeleteTableMutationVariables as bO, type DeleteUserSkillFileMutationVariables as bP, type DeleteUserSkillFolderMutationVariables as bQ, LocalSandboxDeviceConnectionState as bR, type DesktopDeviceModelFragment as bS, type DesktopDevicesQueryVariables as bT, type DevAccessTokenOutputFragment as bU, type DisconnectIntegrationMutationVariables as bV, type DismissPulseEventMutationVariables as bW, PulseEventPriority as bX, PulseEventKind as bY, type PulseEventFragment as bZ, type PulseEvent_IntegrationQueryVariables as b_, type Document_TablesQueryVariables as ba, type Table_FromRelationsQueryVariables as bb, RelationType as bc, type RelationFragment as bd, type TableQueryVariables as be, type Table_ToRelationsQueryVariables as bf, type TableConnectionFragment as bg, type CreateDocumentMutationVariables as bh, type CreateFeedbackMutationVariables as bi, type CreateFolderMutationVariables as bj, type FolderFragment as bk, type CreateInsightMutationVariables as bl, type CreateIntegrationMutationVariables as bm, type CreateProjectMutationVariables as bn, type CreateReportMutationVariables as bo, type CreateTableMutationVariables as bp, type CreateUserSkillFileMutationVariables as bq, type UserSkillFileModelFragment as br, type CreateUserSkillFolderMutationVariables as bs, type UserSkillFolderModelFragment as bt, type CubeModelFragment as bu, type DatabaseCatalogConnectionFragment as bv, type DatabaseCatalogsQueryVariables as bw, type DatabaseConnectionFragment as bx, type DatabaseQueryVariables as by, type DatabaseSchemaQueryVariables as bz, ChatMessageFromEnum as c, type FeedPulseDataFragment as c$, type IntegrationFragment as c0, type Integration_ProviderQueryVariables as c1, type IntegrationProviderFragment as c2, type IntegrationCatalogQueryVariables as c3, type IntegrationCatalogFragment as c4, type IntegrationCatalog_ProviderQueryVariables as c5, type DocumentCatalogConnectionFragment as c6, type DocumentCatalogsQueryVariables as c7, type DocumentConnectionFragment as c8, type Document_Format_CatalogQueryVariables as c9, type UpdateFolderMutationVariables as cA, type UpdateInsightMutationVariables as cB, type UpdateInsightInReportMutationVariables as cC, type UpdateInsightThumbnailMutationVariables as cD, type UpdateInterpMutationVariables as cE, InterpretationType as cF, AiResourceType as cG, type InterpretationFragment as cH, type UpdateLiveContextMutationVariables as cI, type UpdateProjectMutationVariables as cJ, type UpdatePulseTriggerMutationVariables as cK, type PulseTriggerSettingModelFragment as cL, type UpdateReportMutationVariables as cM, type UpdateTableMutationVariables as cN, type UpdateUserSkillFileMutationVariables as cO, type UpdateUserSkillFolderMutationVariables as cP, type ExportQueryVariables as cQ, type ExportWithInsightIdQueryVariables as cR, type FeedItemQueryVariables as cS, FeedItemKind as cT, type FeedDocumentDataFragment as cU, type FeedArtifactDataFragment as cV, type FeedDatabaseDataFragment as cW, type FeedInsightDataFragment as cX, type FeedIntegrationDataFragment as cY, type FeedProjectDataFragment as cZ, type FeedLiveContextDataFragment as c_, type DocumentsQueryVariables as ca, type ChatStreamClient as cb, type ExecuteChatImportMutationVariables as cc, type GenerateUploadUriMutationVariables as cd, type FileModelFragment as ce, type PreviewChatImportMutationVariables as cf, type ReanalyzeDocumentMutationVariables as cg, type RefineAgentInstructionMutationVariables as ch, type RefineSkillInstructionMutationVariables as ci, type RefreshDatabaseSchemaMutationVariables as cj, type RefreshInsightMutationVariables as ck, type RegisterDesktopDeviceMutationVariables as cl, type ReinterpretSourceMutationVariables as cm, type ReinterpretSourcesOfuserMutationVariables as cn, type RelocateInsightMutationVariables as co, type RemoveInsightFromReportMutationVariables as cp, type ResolvePulseEventMutationVariables as cq, type WorkspaceDeleteScheduleFragment as cr, type SendMessageMutationVariables as cs, type SetDatabasePrimaryKeyMutationVariables as ct, type SyncProjectDesktopBindingMutationVariables as cu, type UpdateAgentMutationVariables as cv, type UpdateArtifactNameMutationVariables as cw, type UpdateChatMutationVariables as cx, type UpdateDatabaseMutationVariables as cy, type UpdateDocumentMutationVariables as cz, type ChatMessageFragment as d, type PulseEventsQueryVariables as d$, type FeedItemFragment as d0, type FeedItem_ActionQueryVariables as d1, type FeedSendMessageActionFragment as d2, type FeedItem_DataQueryVariables as d3, type FeedItemsQueryVariables as d4, type FeedConnectionFragment as d5, type FileQueryVariables as d6, type FileMetaQueryVariables as d7, type FileUrlsQueryVariables as d8, type ResolvedFileUrlFragment as d9, type IntegrationsQueryVariables as dA, type IntegrationConnectionFragment as dB, type InterpretationsQueryVariables as dC, type InterpretationConnectionFragment as dD, type LiveContextsQueryVariables as dE, type LiveContextConnectionFragment as dF, type LocalRuntimeOverviewQueryVariables as dG, type LocalRuntimeDeviceModelFragment as dH, type LocalRuntimeOverviewModelFragment as dI, type LocalRuntimeOverview_DevicesQueryVariables as dJ, type LocalSandboxDeviceStatusQueryVariables as dK, type LocalSandboxDeviceStatusModelFragment as dL, type NotificationQueryVariables as dM, NotificationCategory as dN, NotificationPriority as dO, NotificationStatus as dP, type NotificationFragment as dQ, type NotificationsQueryVariables as dR, type NotificationConnectionFragment as dS, type NotificationsByReferenceQueryVariables as dT, type PrivacyStatsQueryVariables as dU, type PrivacyStatsFragment as dV, type ProjectsQueryVariables as dW, type ProjectConnectionFragment as dX, type PulseAppSummaryQueryVariables as dY, type PulseAppSummaryModelFragment as dZ, type PulseEventQueryVariables as d_, type FindFitTierQueryVariables as da, EntitlementTier as db, type FolderQueryVariables as dc, type FoldersQueryVariables as dd, type FolderConnectionFragment as de, type GetCapabilityQueryVariables as df, type GetDevAccessTokenQueryVariables as dg, type GetLimitQueryVariables as dh, type GetRemainingQueryVariables as di, type GetTokenUsageByModelQueryVariables as dj, type ModelTokenUsageFragment as dk, type GetTokenUsageHistoryQueryVariables as dl, type GetTokenUsageStatusQueryVariables as dm, TokenUsageLimit as dn, ActiveWindowType as dp, type WindowDetailTypeFragment as dq, type UsageWindowsStatusTypeFragment as dr, type UsageStatusFragment as ds, type GetTokenUsageStatus_WindowsQueryVariables as dt, type GetUsageQueryVariables as du, type InsightsQueryVariables as dv, type IntegrationQueryVariables as dw, type IntegrationCatalogToolsQueryVariables as dx, type IntegrationCatalogsQueryVariables as dy, type IntegrationCatalogConnectionFragment as dz, type ChatMessage_ArtifactsQueryVariables as e, type UserSkillFileFragment as e$, type PulseEventConnectionFragment as e0, type PulseTriggerSettingsQueryVariables as e1, type QueryQueryVariables as e2, type QueryWithInsightIdQueryVariables as e3, type QueryWithMessageIdQueryVariables as e4, type ReportsQueryVariables as e5, type TablesQueryVariables as e6, type UserSkillFileQueryVariables as e7, type UserSkillFilesQueryVariables as e8, type UserSkillFolderQueryVariables as e9, type McpToolFragment as eA, type MessageEndEventOutputFragment as eB, type MessageStartEventOutputFragment as eC, type ProgressSummaryEventOutputFragment as eD, type Project_DesktopBinding_DeviceQueryVariables as eE, type PulseEvent_Integration_ProviderQueryVariables as eF, type ReasoningEventOutputFragment as eG, type ResetWorkspaceMutationVariables as eH, type ScheduleWorkspaceDeletionMutationVariables as eI, type TextBlockEventOutputFragment as eJ, type TextDeltaEventOutputFragment as eK, type WidgetBlockStartEventOutputFragment as eL, type WidgetHtmlDeltaEventOutputFragment as eM, type WidgetBlockCompleteEventOutputFragment as eN, type WidgetBlockErrorEventOutputFragment as eO, type ToolStartEventOutputFragment as eP, type ToolInputDeltaEventOutputFragment as eQ, type ToolResultArtifactOutputFragment as eR, type ToolResultEventOutputFragment as eS, type StreamEventSchemaAnchorFragment as eT, type SyncEventFragment as eU, type SyncEventCursorFragment as eV, type Table_Database_EngineQueryVariables as eW, type Table_Document_ContentsQueryVariables as eX, type Table_Document_FileQueryVariables as eY, type Table_Document_FormatQueryVariables as eZ, type TokenUsageFragment as e_, type UserSkillFoldersQueryVariables as ea, type WorkspaceDeletionScheduleQueryVariables as eb, type McpAuthUpdatesSubscriptionVariables as ec, McpAuthPhase as ed, type McpAuthUpdateModelFragment as ee, type TokenUsageUpdatesSubscriptionVariables as ef, type EvidenceFragment as eg, type FailedSyncEventIngestionFragment as eh, type StreamMessageContentOutputFragment as ei, type StreamMessageOutputFragment as ej, type UsageMetaOutputFragment as ek, type FinalContentEventOutputFragment as el, type GetTokenUsageStatus_Windows_DayQueryVariables as em, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as en, type GetTokenUsageStatus_Windows_MonthQueryVariables as eo, type GetTokenUsageStatus_Windows_WeekQueryVariables as ep, type InferenceRequestAuditFragment as eq, type Insight_Chat_DesktopDeviceQueryVariables as er, type Insight_Chat_ProjectQueryVariables as es, type Integration_Provider_CatalogQueryVariables as et, type InvocationFragment as eu, type LiveContext_Source_EvidencesQueryVariables as ev, type McpClientInformationFragment as ew, type McpCodeVerifierFragment as ex, type McpServerFragment as ey, type McpTokensFragment as ez, ArtifactKind as f, type UserSkillFolderFragment as f0, type ActiveChatStreamClient as f1, type ActiveChatStreamListener as f2, type ActiveChatStreamListenerHandlers as f3, AgentOrderByRelevanceFieldEnum as f4, ArtifactOrderByRelevanceFieldEnum as f5, CapabilityType as f6, ChatMessageOrderByRelevanceFieldEnum as f7, ChatOrderByRelevanceFieldEnum as f8, type ChatStreamClientOptions as f9, PulseEventOrderByRelevanceFieldEnum as fA, QueryMode as fB, ReportOrderByRelevanceFieldEnum as fC, SendMessageModel as fD, SortOrder as fE, TableOrderByRelevanceFieldEnum as fF, UsageHistoryGranularity as fG, createChatStreamClient as fH, createDvinaClient as fI, type ChatStreamEvent as fa, type ChatStreamListener as fb, type ChatStreamListenerHandlers as fc, DatabaseCatalogOrderByRelevanceFieldEnum as fd, DatabaseOrderByRelevanceFieldEnum as fe, DesktopDeviceOrderByRelevanceFieldEnum as ff, DocumentCatalogOrderByRelevanceFieldEnum as fg, DocumentOrderByRelevanceFieldEnum as fh, type DvinaSdkBaseOptions as fi, type DvinaSdkCallbackOptions as fj, type DvinaSdkTokenOptions as fk, FeedItemOrderByRelevanceFieldEnum as fl, FeedbackOrderByRelevanceFieldEnum as fm, FileOrderByRelevanceFieldEnum as fn, FileUrlVariant as fo, FolderOrderByRelevanceFieldEnum as fp, InsightOrderByRelevanceFieldEnum as fq, IntegrationCatalogOrderByRelevanceFieldEnum as fr, IntegrationOrderByRelevanceFieldEnum as fs, InterpretationOrderByRelevanceFieldEnum as ft, LimitType as fu, LiveContextOrderByRelevanceFieldEnum as fv, NotificationOrderByRelevanceFieldEnum as fw, NullsOrder as fx, ProjectDesktopBindingOrderByRelevanceFieldEnum as fy, ProjectOrderByRelevanceFieldEnum 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 Chat_InsightQueryVariables as s, type Insight_ChatQueryVariables as t, type Insight_ReportMembersQueryVariables as u, ReportMemberSize as v, type ReportMemberFragment as w, type ReportQueryVariables as x, type ReportFragment as y, type Report_InsightsQueryVariables as z };
7397
+ export { type Insight_ThumbnailFileQueryVariables as $, type AbortChatMutationVariables as A, type Artifact_FileQueryVariables as B, type ChatMessageQueryVariables as C, type DvinaSdkOptions as D, type Artifact_MessageQueryVariables as E, type FileFragment as F, type ChatMessage_ChatQueryVariables as G, type ChatMessage_ContentsQueryVariables as H, ContentBlockType as I, type ContentBlockFragment as J, type ChatMessage_FeedbackQueryVariables as K, FeedbackType as L, type FeedbackFragment as M, type Chat_InsightQueryVariables as N, type Insight_ChatQueryVariables as O, ProjectDesktopContextKind as P, type Insight_ReportMembersQueryVariables as Q, ReasoningEffort as R, ReportMemberSize as S, Presentation as T, type ReportMemberFragment as U, type ReportQueryVariables as V, type ReportFragment as W, type Report_InsightsQueryVariables as X, type InsightFragment as Y, type Insight_ReportsQueryVariables as Z, type ReportConnectionFragment as _, ActionType as a, type DatabaseCatalog_EngineQueryVariables as a$, type InsightConnectionFragment as a0, type Report_LayoutQueryVariables as a1, type InsightQueryVariables as a2, type Chat_MessagesQueryVariables as a3, type ChatMessageConnectionFragment as a4, type Chat_ProjectQueryVariables as a5, type DesktopDeviceQueryVariables as a6, type ArtifactConnectionFragment as a7, type AddInsightToReportMutationVariables as a8, type AgentQueryVariables as a9, ChatSourceImportModeEnum as aA, type ChatImportPreviewOutputFragment as aB, type ChatMessage_Chat_DesktopDeviceQueryVariables as aC, type ChatMessage_Chat_InsightQueryVariables as aD, type ChatMessage_Chat_ProjectQueryVariables as aE, type ChatMessagesQueryVariables as aF, type ChatQueryVariables as aG, type ChatTitleEventOutputFragment as aH, type Chat_DesktopDevice_DesktopBindingsQueryVariables as aI, type Chat_Insight_ReportMembersQueryVariables as aJ, type Chat_Insight_ThumbnailFileQueryVariables as aK, type Chat_Project_DesktopBindingQueryVariables as aL, type ChatsQueryVariables as aM, type ConnectIntegrationMutationVariables as aN, type CreateIntegrationOutputFragment as aO, type ConsumePulseEventsMutationVariables as aP, type ContentMaskFragment as aQ, type ContinueImportedChatMutationVariables as aR, type ContinueInterpretationMutationVariables as aS, type CreateAgentMutationVariables as aT, type CreateChatMutationVariables as aU, type CreateDatabaseMutationVariables as aV, type DatabaseFragment as aW, type Database_EngineQueryVariables as aX, type DatabaseEngineFragment as aY, type DatabaseCatalogQueryVariables as aZ, type DatabaseCatalogFragment as a_, type AgentsQueryVariables as aa, type AiProviderSettingQueryVariables as ab, type UserAiProviderSettingFragment as ac, type ArtifactQueryVariables as ad, type Artifact_Chat_DesktopDeviceQueryVariables as ae, type Artifact_Chat_InsightQueryVariables as af, type Artifact_Chat_ProjectQueryVariables as ag, type Artifact_Message_ChatQueryVariables as ah, type Artifact_Message_ContentsQueryVariables as ai, type Artifact_Message_FeedbackQueryVariables as aj, type ArtifactsQueryVariables as ak, type AudioEventOutputFragment as al, type CancelOauthFlowMutationVariables as am, type CancelWorkspaceDeletionMutationVariables as an, type CandidateFragment as ao, type LiveContextQueryVariables as ap, LiveContextStatus as aq, type LiveContextFragment as ar, type LiveContext_ItemsQueryVariables as as, FeedActionType as at, type FeedItemGeneratedFragment as au, type LiveContext_SourceQueryVariables as av, type CandidateEvidenceFragment as aw, type ImportedChatSummaryOutputFragment as ax, type ChatImportExecuteOutputFragment as ay, ChatSourceImportFidelityEnum as az, type ActionFragment as b, type DismissPulseEventMutationVariables as b$, type Database_TablesQueryVariables as b0, TableStatus as b1, type TableFragment as b2, type Table_DatabaseQueryVariables as b3, type Table_DocumentQueryVariables as b4, type DocumentFragment as b5, type Document_ContentsQueryVariables as b6, type DocumentContentFragment as b7, type DocumentQueryVariables as b8, type Document_FileQueryVariables as b9, type DatabaseCatalogConnectionFragment as bA, type DatabaseCatalogsQueryVariables as bB, type DatabaseConnectionFragment as bC, type DatabaseQueryVariables as bD, type DatabaseSchemaQueryVariables as bE, type Database_Engine_CatalogQueryVariables as bF, type DatabasesQueryVariables as bG, type DeepAnalysisUsageFragment as bH, type DeleteAgentMutationVariables as bI, type DeleteAiProviderSettingMutationVariables as bJ, type DeleteArtifactMutationVariables as bK, type DeleteChatMutationVariables as bL, type DeleteDatabaseMutationVariables as bM, type DeleteDocumentMutationVariables as bN, type DeleteFolderMutationVariables as bO, type DeleteInsightMutationVariables as bP, type DeleteInsightsMutationVariables as bQ, type DeleteIntegrationMutationVariables as bR, type DeleteProjectMutationVariables as bS, type DeleteReportMutationVariables as bT, type DeleteTableMutationVariables as bU, type DeleteUserSkillFileMutationVariables as bV, type DeleteUserSkillFolderMutationVariables as bW, type DesktopDeviceConnectionFragment as bX, type DesktopDevicesQueryVariables as bY, type DevAccessTokenOutputFragment as bZ, type DisconnectIntegrationMutationVariables as b_, type Document_FormatQueryVariables as ba, type DocumentFormatFragment as bb, type DocumentCatalogQueryVariables as bc, type DocumentCatalogFragment as bd, type DocumentCatalog_FormatQueryVariables as be, type Document_TablesQueryVariables as bf, type Table_FromRelationsQueryVariables as bg, RelationType as bh, type RelationFragment as bi, type TableQueryVariables as bj, type Table_ToRelationsQueryVariables as bk, type TableConnectionFragment as bl, type CreateDocumentMutationVariables as bm, type CreateFeedbackMutationVariables as bn, type CreateFolderMutationVariables as bo, type FolderFragment as bp, type CreateInsightMutationVariables as bq, type CreateIntegrationMutationVariables as br, type CreateProjectMutationVariables as bs, type CreateReportMutationVariables as bt, type CreateTableMutationVariables as bu, type CreateUserSkillFileMutationVariables as bv, type UserSkillFileModelFragment as bw, type CreateUserSkillFolderMutationVariables as bx, type UserSkillFolderModelFragment as by, type CubeModelFragment as bz, ChatMessageFromEnum as c, type FeedArtifactDataFragment as c$, PulseEventPriority as c0, PulseEventKind as c1, type PulseEventFragment as c2, type PulseEvent_IntegrationQueryVariables as c3, IntegrationStatus as c4, type IntegrationFragment as c5, type Integration_ProviderQueryVariables as c6, type IntegrationProviderFragment as c7, type IntegrationCatalogQueryVariables as c8, type IntegrationCatalogFragment as c9, type UpdateAgentMutationVariables as cA, type UpdateArtifactNameMutationVariables as cB, type UpdateChatMutationVariables as cC, type UpdateDatabaseMutationVariables as cD, type UpdateDocumentMutationVariables as cE, type UpdateFolderMutationVariables as cF, type UpdateInsightMutationVariables as cG, type UpdateInsightInReportMutationVariables as cH, type UpdateInsightThumbnailMutationVariables as cI, type UpdateInterpMutationVariables as cJ, InterpretationType as cK, AiResourceType as cL, type InterpretationFragment as cM, type UpdateLiveContextMutationVariables as cN, type UpdateProjectMutationVariables as cO, type UpdatePulseTriggerMutationVariables as cP, type PulseTriggerSettingModelFragment as cQ, type UpdateReportMutationVariables as cR, type UpdateTableMutationVariables as cS, type UpdateUserSkillFileMutationVariables as cT, type UpdateUserSkillFolderMutationVariables as cU, type UpsertAiProviderSettingMutationVariables as cV, type ExportQueryVariables as cW, type ExportWithInsightIdQueryVariables as cX, type FeedItemQueryVariables as cY, FeedItemKind as cZ, type FeedDocumentDataFragment as c_, type IntegrationCatalog_ProviderQueryVariables as ca, type DocumentCatalogConnectionFragment as cb, type DocumentCatalogsQueryVariables as cc, type DocumentConnectionFragment as cd, type Document_Format_CatalogQueryVariables as ce, type DocumentsQueryVariables as cf, type ChatStreamClient as cg, type ExecuteChatImportMutationVariables as ch, type GenerateUploadUriMutationVariables as ci, type FileModelFragment as cj, type PreviewChatImportMutationVariables as ck, type ReanalyzeDocumentMutationVariables as cl, type RefineAgentInstructionMutationVariables as cm, type RefineSkillInstructionMutationVariables as cn, type RefreshDatabaseSchemaMutationVariables as co, type RefreshInsightMutationVariables as cp, type RegisterDesktopDeviceMutationVariables as cq, type ReinterpretSourceMutationVariables as cr, type ReinterpretSourcesOfuserMutationVariables as cs, type RelocateInsightMutationVariables as ct, type RemoveInsightFromReportMutationVariables as cu, type ResolvePulseEventMutationVariables as cv, type WorkspaceDeleteScheduleFragment as cw, type SendMessageMutationVariables as cx, type SetDatabasePrimaryKeyMutationVariables as cy, type SyncProjectDesktopBindingMutationVariables as cz, type ChatMessageFragment as d, type PulseAppSummaryQueryVariables as d$, type FeedDatabaseDataFragment as d0, type FeedInsightDataFragment as d1, type FeedIntegrationDataFragment as d2, type FeedProjectDataFragment as d3, type FeedLiveContextDataFragment as d4, type FeedPulseDataFragment as d5, type FeedItemFragment as d6, type FeedItem_ActionQueryVariables as d7, type FeedSendMessageActionFragment as d8, type FeedItem_DataQueryVariables as d9, type GetUsageQueryVariables as dA, type InsightsQueryVariables as dB, type IntegrationQueryVariables as dC, type IntegrationCatalogToolsQueryVariables as dD, type IntegrationCatalogsQueryVariables as dE, type IntegrationCatalogConnectionFragment as dF, type IntegrationsQueryVariables as dG, type IntegrationConnectionFragment as dH, type InterpretationsQueryVariables as dI, type InterpretationConnectionFragment as dJ, type LiveContextsQueryVariables as dK, type LiveContextConnectionFragment as dL, type LocalSandboxDeviceStatusesQueryVariables as dM, LocalSandboxDeviceConnectionState as dN, type LocalSandboxDeviceStatusModelFragment as dO, type NotificationQueryVariables as dP, NotificationCategory as dQ, NotificationPriority as dR, NotificationStatus as dS, type NotificationFragment as dT, type NotificationsQueryVariables as dU, type NotificationConnectionFragment as dV, type NotificationsByReferenceQueryVariables as dW, type PrivacyStatsQueryVariables as dX, type PrivacyStatsFragment as dY, type ProjectsQueryVariables as dZ, type ProjectConnectionFragment as d_, type FeedItemsQueryVariables as da, type FeedConnectionFragment as db, type FileQueryVariables as dc, type FileMetaQueryVariables as dd, type FileUrlsQueryVariables as de, type ResolvedFileUrlFragment as df, type FindFitTierQueryVariables as dg, EntitlementTier as dh, type FolderQueryVariables as di, type FoldersQueryVariables as dj, type FolderConnectionFragment as dk, type GetCapabilityQueryVariables as dl, type GetDevAccessTokenQueryVariables as dm, type GetLimitQueryVariables as dn, type GetRemainingQueryVariables as dp, type GetTokenUsageByModelQueryVariables as dq, type ModelTokenUsageFragment as dr, type GetTokenUsageHistoryQueryVariables as ds, type GetTokenUsageStatusQueryVariables as dt, TokenUsageLimit as du, ActiveWindowType as dv, type WindowDetailTypeFragment as dw, type UsageWindowsStatusTypeFragment as dx, type UsageStatusFragment as dy, type GetTokenUsageStatus_WindowsQueryVariables as dz, type ChatMessage_ArtifactsQueryVariables as e, type Table_Document_FileQueryVariables as e$, type PulseAppSummaryModelFragment as e0, type PulseEventQueryVariables as e1, type PulseEventsQueryVariables as e2, type PulseEventConnectionFragment as e3, type PulseTriggerSettingsQueryVariables as e4, type QueryQueryVariables as e5, type QueryWithInsightIdQueryVariables as e6, type QueryWithMessageIdQueryVariables as e7, type ReportsQueryVariables as e8, type TablesQueryVariables as e9, type McpCodeVerifierFragment as eA, type McpServerFragment as eB, type McpTokensFragment as eC, type McpToolFragment as eD, type MessageEndEventOutputFragment as eE, type MessageStartEventOutputFragment as eF, type ProgressSummaryEventOutputFragment as eG, type Project_DesktopBinding_DeviceQueryVariables as eH, type PulseEvent_Integration_ProviderQueryVariables as eI, type ReasoningEventOutputFragment as eJ, type ResetWorkspaceMutationVariables as eK, type ScheduleWorkspaceDeletionMutationVariables as eL, type TextBlockEventOutputFragment as eM, type TextDeltaEventOutputFragment as eN, type WidgetBlockStartEventOutputFragment as eO, type WidgetHtmlDeltaEventOutputFragment as eP, type WidgetBlockCompleteEventOutputFragment as eQ, type WidgetBlockErrorEventOutputFragment as eR, type ToolStartEventOutputFragment as eS, type ToolInputDeltaEventOutputFragment as eT, type ToolResultArtifactOutputFragment as eU, type ToolResultEventOutputFragment as eV, type StreamEventSchemaAnchorFragment as eW, type SyncEventFragment as eX, type SyncEventCursorFragment as eY, type Table_Database_EngineQueryVariables as eZ, type Table_Document_ContentsQueryVariables as e_, type UserSkillFileQueryVariables as ea, type UserSkillFilesQueryVariables as eb, type UserSkillFolderQueryVariables as ec, type UserSkillFoldersQueryVariables as ed, type WorkspaceDeletionScheduleQueryVariables as ee, type McpAuthUpdatesSubscriptionVariables as ef, McpAuthPhase as eg, type McpAuthUpdateModelFragment as eh, type TokenUsageUpdatesSubscriptionVariables as ei, type EvidenceFragment as ej, type FailedSyncEventIngestionFragment as ek, type StreamMessageContentOutputFragment as el, type StreamMessageOutputFragment as em, type UsageMetaOutputFragment as en, type FinalContentEventOutputFragment as eo, type GetTokenUsageStatus_Windows_DayQueryVariables as ep, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as eq, type GetTokenUsageStatus_Windows_MonthQueryVariables as er, type GetTokenUsageStatus_Windows_WeekQueryVariables as es, type InferenceRequestAuditFragment as et, type Insight_Chat_DesktopDeviceQueryVariables as eu, type Insight_Chat_ProjectQueryVariables as ev, type Integration_Provider_CatalogQueryVariables as ew, type InvocationFragment as ex, type LiveContext_Source_EvidencesQueryVariables as ey, type McpClientInformationFragment as ez, ArtifactKind as f, type Table_Document_FormatQueryVariables as f0, type TokenUsageFragment as f1, type UserSkillFileFragment as f2, type UserSkillFolderFragment as f3, type ActiveChatStreamClient as f4, type ActiveChatStreamListener as f5, type ActiveChatStreamListenerHandlers as f6, AgentOrderByRelevanceFieldEnum as f7, ArtifactOrderByRelevanceFieldEnum as f8, CapabilityType as f9, NullsOrder as fA, ProjectDesktopBindingOrderByRelevanceFieldEnum as fB, ProjectOrderByRelevanceFieldEnum as fC, PulseEventOrderByRelevanceFieldEnum as fD, QueryMode as fE, ReportOrderByRelevanceFieldEnum as fF, SendMessageModel as fG, SortOrder as fH, TableOrderByRelevanceFieldEnum as fI, UsageHistoryGranularity as fJ, createChatStreamClient as fK, createDvinaClient as fL, ChatMessageOrderByRelevanceFieldEnum as fa, ChatOrderByRelevanceFieldEnum as fb, type ChatStreamClientOptions as fc, type ChatStreamEvent as fd, type ChatStreamListener as fe, type ChatStreamListenerHandlers as ff, DatabaseCatalogOrderByRelevanceFieldEnum as fg, DatabaseOrderByRelevanceFieldEnum as fh, DesktopDeviceOrderByRelevanceFieldEnum as fi, DocumentCatalogOrderByRelevanceFieldEnum as fj, DocumentOrderByRelevanceFieldEnum as fk, type DvinaSdkBaseOptions as fl, type DvinaSdkCallbackOptions as fm, type DvinaSdkTokenOptions as fn, FeedItemOrderByRelevanceFieldEnum as fo, FeedbackOrderByRelevanceFieldEnum as fp, FileOrderByRelevanceFieldEnum as fq, FileUrlVariant as fr, FolderOrderByRelevanceFieldEnum as fs, InsightOrderByRelevanceFieldEnum as ft, IntegrationCatalogOrderByRelevanceFieldEnum as fu, IntegrationOrderByRelevanceFieldEnum as fv, InterpretationOrderByRelevanceFieldEnum as fw, LimitType as fx, LiveContextOrderByRelevanceFieldEnum as fy, NotificationOrderByRelevanceFieldEnum 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 };
@@ -4085,6 +4085,44 @@ type UsageMetaOutput = {
4085
4085
  promptTokens: Scalars['Int'];
4086
4086
  totalTokens: Scalars['Int'];
4087
4087
  };
4088
+ type UserAiProviderSettingCreateInput = {
4089
+ apiKey: Scalars['String'];
4090
+ baseUrl: Scalars['String'];
4091
+ enabled?: InputMaybe<Scalars['Boolean']>;
4092
+ id?: InputMaybe<Scalars['String']>;
4093
+ model: Scalars['String'];
4094
+ };
4095
+ type UserAiProviderSettingUpdateInput = {
4096
+ apiKey?: InputMaybe<Scalars['String']>;
4097
+ baseUrl?: InputMaybe<Scalars['String']>;
4098
+ enabled?: InputMaybe<Scalars['Boolean']>;
4099
+ id?: InputMaybe<Scalars['String']>;
4100
+ model?: InputMaybe<Scalars['String']>;
4101
+ };
4102
+ type UserAiProviderSettingWhereInput = {
4103
+ AND?: InputMaybe<Array<UserAiProviderSettingWhereInput>>;
4104
+ NOT?: InputMaybe<Array<UserAiProviderSettingWhereInput>>;
4105
+ OR?: InputMaybe<Array<UserAiProviderSettingWhereInput>>;
4106
+ apiKey?: InputMaybe<StringFilter>;
4107
+ baseUrl?: InputMaybe<StringFilter>;
4108
+ createdAt?: InputMaybe<DateTimeFilter>;
4109
+ enabled?: InputMaybe<BoolFilter>;
4110
+ id?: InputMaybe<StringFilter>;
4111
+ model?: InputMaybe<StringFilter>;
4112
+ updatedAt?: InputMaybe<DateTimeFilter>;
4113
+ };
4114
+ type UserAiProviderSettingWhereUniqueInput = {
4115
+ AND?: InputMaybe<Array<UserAiProviderSettingWhereInput>>;
4116
+ NOT?: InputMaybe<Array<UserAiProviderSettingWhereInput>>;
4117
+ OR?: InputMaybe<Array<UserAiProviderSettingWhereInput>>;
4118
+ apiKey?: InputMaybe<StringFilter>;
4119
+ baseUrl?: InputMaybe<StringFilter>;
4120
+ createdAt?: InputMaybe<DateTimeFilter>;
4121
+ enabled?: InputMaybe<BoolFilter>;
4122
+ id?: InputMaybe<Scalars['String']>;
4123
+ model?: InputMaybe<StringFilter>;
4124
+ updatedAt?: InputMaybe<DateTimeFilter>;
4125
+ };
4088
4126
  type WidgetBlockCompleteEventOutput = {
4089
4127
  __typename?: 'WidgetBlockCompleteEventOutput';
4090
4128
  index: Scalars['Int'];
@@ -4592,18 +4630,31 @@ type DesktopDeviceFragment = {
4592
4630
  platform?: string | null;
4593
4631
  updatedAt: string;
4594
4632
  };
4595
- type DesktopDeviceModelFragment = {
4596
- __typename: 'DesktopDeviceModel';
4597
- appVersion?: string | null;
4598
- deviceId: string;
4599
- deviceLabel: string;
4600
- deviceType?: string | null;
4601
- lastSeenAt?: string | null;
4602
- manufacturer?: string | null;
4603
- modelName?: string | null;
4604
- modelYear?: number | null;
4605
- platform?: string | null;
4606
- state: LocalSandboxDeviceConnectionState;
4633
+ type DesktopDeviceConnectionFragment = {
4634
+ __typename: 'DesktopDeviceConnection';
4635
+ totalCount: number;
4636
+ nodes?: Array<{
4637
+ __typename: 'DesktopDevice';
4638
+ appVersion?: string | null;
4639
+ createdAt: string;
4640
+ deviceLabel: string;
4641
+ deviceType?: string | null;
4642
+ id: string;
4643
+ lastSeenAt?: string | null;
4644
+ macAddress?: string | null;
4645
+ manufacturer?: string | null;
4646
+ modelName?: string | null;
4647
+ modelYear?: number | null;
4648
+ platform?: string | null;
4649
+ updatedAt: string;
4650
+ }> | null;
4651
+ pageInfo: {
4652
+ __typename?: 'PageInfo';
4653
+ endCursor?: string | null;
4654
+ hasNextPage: boolean;
4655
+ hasPreviousPage: boolean;
4656
+ startCursor?: string | null;
4657
+ };
4607
4658
  };
4608
4659
  type DevAccessTokenOutputFragment = {
4609
4660
  __typename: 'DevAccessTokenOutput';
@@ -5507,41 +5558,6 @@ type LiveContextConnectionFragment = {
5507
5558
  startCursor?: string | null;
5508
5559
  };
5509
5560
  };
5510
- type LocalRuntimeDeviceModelFragment = {
5511
- __typename: 'LocalRuntimeDeviceModel';
5512
- deviceId: string;
5513
- deviceType?: string | null;
5514
- isPreferred: boolean;
5515
- isResolved: boolean;
5516
- label: string;
5517
- lastSeenAt?: string | null;
5518
- manufacturer?: string | null;
5519
- modelName?: string | null;
5520
- modelYear?: number | null;
5521
- platform?: string | null;
5522
- state: LocalSandboxDeviceConnectionState;
5523
- };
5524
- type LocalRuntimeOverviewModelFragment = {
5525
- __typename: 'LocalRuntimeOverviewModel';
5526
- connectedDeviceCount: number;
5527
- resolvedDeviceId?: string | null;
5528
- resolvedDeviceLabel?: string | null;
5529
- state: LocalSandboxDeviceConnectionState;
5530
- devices: Array<{
5531
- __typename: 'LocalRuntimeDeviceModel';
5532
- deviceId: string;
5533
- deviceType?: string | null;
5534
- isPreferred: boolean;
5535
- isResolved: boolean;
5536
- label: string;
5537
- lastSeenAt?: string | null;
5538
- manufacturer?: string | null;
5539
- modelName?: string | null;
5540
- modelYear?: number | null;
5541
- platform?: string | null;
5542
- state: LocalSandboxDeviceConnectionState;
5543
- }>;
5544
- };
5545
5561
  type LocalSandboxDeviceStatusModelFragment = {
5546
5562
  __typename: 'LocalSandboxDeviceStatusModel';
5547
5563
  deviceId: string;
@@ -6284,6 +6300,15 @@ type UsageWindowsStatusTypeFragment = {
6284
6300
  windowStart?: string | null;
6285
6301
  } | null;
6286
6302
  };
6303
+ type UserAiProviderSettingFragment = {
6304
+ __typename: 'UserAiProviderSetting';
6305
+ baseUrl: string;
6306
+ createdAt: string;
6307
+ enabled: boolean;
6308
+ id: string;
6309
+ model: string;
6310
+ updatedAt: string;
6311
+ };
6287
6312
  type UserSkillFileFragment = {
6288
6313
  __typename: 'UserSkillFile';
6289
6314
  createdAt: string;
@@ -6450,6 +6475,9 @@ type CreateUserSkillFolderMutationVariables = Exact<{
6450
6475
  type DeleteAgentMutationVariables = Exact<{
6451
6476
  where: AgentWhereUniqueInput;
6452
6477
  }>;
6478
+ type DeleteAiProviderSettingMutationVariables = Exact<{
6479
+ where: UserAiProviderSettingWhereUniqueInput;
6480
+ }>;
6453
6481
  type DeleteArtifactMutationVariables = Exact<{
6454
6482
  where: ArtifactWhereUniqueInput;
6455
6483
  }>;
@@ -6636,6 +6664,11 @@ type UpdateUserSkillFolderMutationVariables = Exact<{
6636
6664
  id: Scalars['ID'];
6637
6665
  path: Scalars['String'];
6638
6666
  }>;
6667
+ type UpsertAiProviderSettingMutationVariables = Exact<{
6668
+ create: UserAiProviderSettingCreateInput;
6669
+ update: UserAiProviderSettingUpdateInput;
6670
+ where: UserAiProviderSettingWhereUniqueInput;
6671
+ }>;
6639
6672
  type AgentQueryVariables = Exact<{
6640
6673
  id: Scalars['ID'];
6641
6674
  }>;
@@ -6656,6 +6689,9 @@ type AgentsQueryVariables = Exact<{
6656
6689
  last?: InputMaybe<Scalars['Int']>;
6657
6690
  orderBy?: InputMaybe<Array<AgentOrderByWithRelationInput> | AgentOrderByWithRelationInput>;
6658
6691
  }>;
6692
+ type AiProviderSettingQueryVariables = Exact<{
6693
+ [key: string]: never;
6694
+ }>;
6659
6695
  type ArtifactQueryVariables = Exact<{
6660
6696
  id: Scalars['ID'];
6661
6697
  }>;
@@ -6835,8 +6871,28 @@ type DatabasesQueryVariables = Exact<{
6835
6871
  last?: InputMaybe<Scalars['Int']>;
6836
6872
  orderBy?: InputMaybe<Array<DatabaseOrderByWithRelationInput> | DatabaseOrderByWithRelationInput>;
6837
6873
  }>;
6874
+ type DesktopDeviceQueryVariables = Exact<{
6875
+ id: Scalars['ID'];
6876
+ }>;
6877
+ type DesktopDevice_ChatsQueryVariables = Exact<{
6878
+ id: Scalars['ID'];
6879
+ after?: InputMaybe<Scalars['String']>;
6880
+ before?: InputMaybe<Scalars['String']>;
6881
+ filter?: InputMaybe<ChatWhereInput>;
6882
+ first?: InputMaybe<Scalars['Int']>;
6883
+ last?: InputMaybe<Scalars['Int']>;
6884
+ orderBy?: InputMaybe<Array<ChatOrderByWithRelationInput> | ChatOrderByWithRelationInput>;
6885
+ }>;
6886
+ type DesktopDevice_DesktopBindingsQueryVariables = Exact<{
6887
+ id: Scalars['ID'];
6888
+ }>;
6838
6889
  type DesktopDevicesQueryVariables = Exact<{
6839
- [key: string]: never;
6890
+ after?: InputMaybe<Scalars['String']>;
6891
+ before?: InputMaybe<Scalars['String']>;
6892
+ filter?: InputMaybe<DesktopDeviceWhereInput>;
6893
+ first?: InputMaybe<Scalars['Int']>;
6894
+ last?: InputMaybe<Scalars['Int']>;
6895
+ orderBy?: InputMaybe<Array<DesktopDeviceOrderByWithRelationInput> | DesktopDeviceOrderByWithRelationInput>;
6840
6896
  }>;
6841
6897
  type DocumentQueryVariables = Exact<{
6842
6898
  id: Scalars['ID'];
@@ -7071,14 +7127,8 @@ type LiveContextsQueryVariables = Exact<{
7071
7127
  last?: InputMaybe<Scalars['Int']>;
7072
7128
  orderBy?: InputMaybe<Array<LiveContextOrderByWithRelationInput> | LiveContextOrderByWithRelationInput>;
7073
7129
  }>;
7074
- type LocalRuntimeOverviewQueryVariables = Exact<{
7075
- preferredDeviceId?: InputMaybe<Scalars['String']>;
7076
- }>;
7077
- type LocalRuntimeOverview_DevicesQueryVariables = Exact<{
7078
- preferredDeviceId?: InputMaybe<Scalars['String']>;
7079
- }>;
7080
- type LocalSandboxDeviceStatusQueryVariables = Exact<{
7081
- deviceId: Scalars['String'];
7130
+ type LocalSandboxDeviceStatusesQueryVariables = Exact<{
7131
+ deviceIds: Array<Scalars['String']> | Scalars['String'];
7082
7132
  }>;
7083
7133
  type NotificationQueryVariables = Exact<{
7084
7134
  id: Scalars['ID'];
@@ -7344,4 +7394,4 @@ interface DvinaClientResult {
7344
7394
  */
7345
7395
  declare function createDvinaClient(options: DvinaSdkOptions): DvinaClientResult;
7346
7396
 
7347
- export { type ProjectFragment as $, type AbortChatMutationVariables as A, type InsightConnectionFragment as B, type ChatMessageQueryVariables as C, type DvinaSdkOptions as D, type Report_LayoutQueryVariables as E, type Artifact_FileQueryVariables as F, type FileFragment as G, type Artifact_MessageQueryVariables as H, type InsightFragment as I, type ChatMessage_ChatQueryVariables as J, type ChatMessage_ContentsQueryVariables as K, ContentBlockType as L, type ContentBlockFragment as M, type ChatMessage_FeedbackQueryVariables as N, FeedbackType as O, Presentation as P, type FeedbackFragment as Q, ReasoningEffort as R, type Chat_MessagesQueryVariables as S, type ChatMessageConnectionFragment as T, type Chat_ProjectQueryVariables as U, type Project_ChatsQueryVariables as V, type Project_DesktopBindingQueryVariables as W, ProjectDesktopContextKind as X, type ProjectDesktopBindingFragment as Y, type ProjectQueryVariables as Z, ProjectSource as _, ActionType as a, type Table_DocumentQueryVariables as a$, type Insight_ReportsQueryVariables as a0, type ReportConnectionFragment as a1, type Insight_ThumbnailFileQueryVariables as a2, type InsightQueryVariables as a3, type ArtifactConnectionFragment as a4, type AddInsightToReportMutationVariables as a5, type AgentQueryVariables as a6, type AgentsQueryVariables as a7, type ArtifactQueryVariables as a8, type Artifact_Chat_DesktopDeviceQueryVariables as a9, type ChatMessagesQueryVariables as aA, type ChatQueryVariables as aB, type ChatTitleEventOutputFragment as aC, type Chat_DesktopDevice_DesktopBindingsQueryVariables as aD, type Chat_Insight_ReportMembersQueryVariables as aE, type Chat_Insight_ThumbnailFileQueryVariables as aF, type Chat_Project_DesktopBindingQueryVariables as aG, type ChatsQueryVariables as aH, type ConnectIntegrationMutationVariables as aI, type CreateIntegrationOutputFragment as aJ, type ConsumePulseEventsMutationVariables as aK, type ContentMaskFragment as aL, type ContinueImportedChatMutationVariables as aM, type ContinueInterpretationMutationVariables as aN, type CreateAgentMutationVariables as aO, type CreateChatMutationVariables as aP, type CreateDatabaseMutationVariables as aQ, type DatabaseFragment as aR, type Database_EngineQueryVariables as aS, type DatabaseEngineFragment as aT, type DatabaseCatalogQueryVariables as aU, type DatabaseCatalogFragment as aV, type DatabaseCatalog_EngineQueryVariables as aW, type Database_TablesQueryVariables as aX, TableStatus as aY, type TableFragment as aZ, type Table_DatabaseQueryVariables as a_, type Artifact_Chat_InsightQueryVariables as aa, type Artifact_Chat_ProjectQueryVariables as ab, type Artifact_Message_ChatQueryVariables as ac, type Artifact_Message_ContentsQueryVariables as ad, type Artifact_Message_FeedbackQueryVariables as ae, type ArtifactsQueryVariables as af, type AudioEventOutputFragment as ag, type CancelOauthFlowMutationVariables as ah, type CancelWorkspaceDeletionMutationVariables as ai, type CandidateFragment as aj, type LiveContextQueryVariables as ak, LiveContextStatus as al, type LiveContextFragment as am, type LiveContext_ItemsQueryVariables as an, FeedActionType as ao, type FeedItemGeneratedFragment as ap, type LiveContext_SourceQueryVariables as aq, type CandidateEvidenceFragment as ar, type ImportedChatSummaryOutputFragment as as, type ChatImportExecuteOutputFragment as at, ChatSourceImportFidelityEnum as au, ChatSourceImportModeEnum as av, type ChatImportPreviewOutputFragment as aw, type ChatMessage_Chat_DesktopDeviceQueryVariables as ax, type ChatMessage_Chat_InsightQueryVariables as ay, type ChatMessage_Chat_ProjectQueryVariables as az, type ActionFragment as b, IntegrationStatus as b$, type DocumentFragment as b0, type Document_ContentsQueryVariables as b1, type DocumentContentFragment as b2, type DocumentQueryVariables as b3, type Document_FileQueryVariables as b4, type Document_FormatQueryVariables as b5, type DocumentFormatFragment as b6, type DocumentCatalogQueryVariables as b7, type DocumentCatalogFragment as b8, type DocumentCatalog_FormatQueryVariables as b9, type Database_Engine_CatalogQueryVariables as bA, type DatabasesQueryVariables as bB, type DeepAnalysisUsageFragment as bC, type DeleteAgentMutationVariables as bD, type DeleteArtifactMutationVariables as bE, type DeleteChatMutationVariables as bF, type DeleteDatabaseMutationVariables as bG, type DeleteDocumentMutationVariables as bH, type DeleteFolderMutationVariables as bI, type DeleteInsightMutationVariables as bJ, type DeleteInsightsMutationVariables as bK, type DeleteIntegrationMutationVariables as bL, type DeleteProjectMutationVariables as bM, type DeleteReportMutationVariables as bN, type DeleteTableMutationVariables as bO, type DeleteUserSkillFileMutationVariables as bP, type DeleteUserSkillFolderMutationVariables as bQ, LocalSandboxDeviceConnectionState as bR, type DesktopDeviceModelFragment as bS, type DesktopDevicesQueryVariables as bT, type DevAccessTokenOutputFragment as bU, type DisconnectIntegrationMutationVariables as bV, type DismissPulseEventMutationVariables as bW, PulseEventPriority as bX, PulseEventKind as bY, type PulseEventFragment as bZ, type PulseEvent_IntegrationQueryVariables as b_, type Document_TablesQueryVariables as ba, type Table_FromRelationsQueryVariables as bb, RelationType as bc, type RelationFragment as bd, type TableQueryVariables as be, type Table_ToRelationsQueryVariables as bf, type TableConnectionFragment as bg, type CreateDocumentMutationVariables as bh, type CreateFeedbackMutationVariables as bi, type CreateFolderMutationVariables as bj, type FolderFragment as bk, type CreateInsightMutationVariables as bl, type CreateIntegrationMutationVariables as bm, type CreateProjectMutationVariables as bn, type CreateReportMutationVariables as bo, type CreateTableMutationVariables as bp, type CreateUserSkillFileMutationVariables as bq, type UserSkillFileModelFragment as br, type CreateUserSkillFolderMutationVariables as bs, type UserSkillFolderModelFragment as bt, type CubeModelFragment as bu, type DatabaseCatalogConnectionFragment as bv, type DatabaseCatalogsQueryVariables as bw, type DatabaseConnectionFragment as bx, type DatabaseQueryVariables as by, type DatabaseSchemaQueryVariables as bz, ChatMessageFromEnum as c, type FeedPulseDataFragment as c$, type IntegrationFragment as c0, type Integration_ProviderQueryVariables as c1, type IntegrationProviderFragment as c2, type IntegrationCatalogQueryVariables as c3, type IntegrationCatalogFragment as c4, type IntegrationCatalog_ProviderQueryVariables as c5, type DocumentCatalogConnectionFragment as c6, type DocumentCatalogsQueryVariables as c7, type DocumentConnectionFragment as c8, type Document_Format_CatalogQueryVariables as c9, type UpdateFolderMutationVariables as cA, type UpdateInsightMutationVariables as cB, type UpdateInsightInReportMutationVariables as cC, type UpdateInsightThumbnailMutationVariables as cD, type UpdateInterpMutationVariables as cE, InterpretationType as cF, AiResourceType as cG, type InterpretationFragment as cH, type UpdateLiveContextMutationVariables as cI, type UpdateProjectMutationVariables as cJ, type UpdatePulseTriggerMutationVariables as cK, type PulseTriggerSettingModelFragment as cL, type UpdateReportMutationVariables as cM, type UpdateTableMutationVariables as cN, type UpdateUserSkillFileMutationVariables as cO, type UpdateUserSkillFolderMutationVariables as cP, type ExportQueryVariables as cQ, type ExportWithInsightIdQueryVariables as cR, type FeedItemQueryVariables as cS, FeedItemKind as cT, type FeedDocumentDataFragment as cU, type FeedArtifactDataFragment as cV, type FeedDatabaseDataFragment as cW, type FeedInsightDataFragment as cX, type FeedIntegrationDataFragment as cY, type FeedProjectDataFragment as cZ, type FeedLiveContextDataFragment as c_, type DocumentsQueryVariables as ca, type ChatStreamClient as cb, type ExecuteChatImportMutationVariables as cc, type GenerateUploadUriMutationVariables as cd, type FileModelFragment as ce, type PreviewChatImportMutationVariables as cf, type ReanalyzeDocumentMutationVariables as cg, type RefineAgentInstructionMutationVariables as ch, type RefineSkillInstructionMutationVariables as ci, type RefreshDatabaseSchemaMutationVariables as cj, type RefreshInsightMutationVariables as ck, type RegisterDesktopDeviceMutationVariables as cl, type ReinterpretSourceMutationVariables as cm, type ReinterpretSourcesOfuserMutationVariables as cn, type RelocateInsightMutationVariables as co, type RemoveInsightFromReportMutationVariables as cp, type ResolvePulseEventMutationVariables as cq, type WorkspaceDeleteScheduleFragment as cr, type SendMessageMutationVariables as cs, type SetDatabasePrimaryKeyMutationVariables as ct, type SyncProjectDesktopBindingMutationVariables as cu, type UpdateAgentMutationVariables as cv, type UpdateArtifactNameMutationVariables as cw, type UpdateChatMutationVariables as cx, type UpdateDatabaseMutationVariables as cy, type UpdateDocumentMutationVariables as cz, type ChatMessageFragment as d, type PulseEventsQueryVariables as d$, type FeedItemFragment as d0, type FeedItem_ActionQueryVariables as d1, type FeedSendMessageActionFragment as d2, type FeedItem_DataQueryVariables as d3, type FeedItemsQueryVariables as d4, type FeedConnectionFragment as d5, type FileQueryVariables as d6, type FileMetaQueryVariables as d7, type FileUrlsQueryVariables as d8, type ResolvedFileUrlFragment as d9, type IntegrationsQueryVariables as dA, type IntegrationConnectionFragment as dB, type InterpretationsQueryVariables as dC, type InterpretationConnectionFragment as dD, type LiveContextsQueryVariables as dE, type LiveContextConnectionFragment as dF, type LocalRuntimeOverviewQueryVariables as dG, type LocalRuntimeDeviceModelFragment as dH, type LocalRuntimeOverviewModelFragment as dI, type LocalRuntimeOverview_DevicesQueryVariables as dJ, type LocalSandboxDeviceStatusQueryVariables as dK, type LocalSandboxDeviceStatusModelFragment as dL, type NotificationQueryVariables as dM, NotificationCategory as dN, NotificationPriority as dO, NotificationStatus as dP, type NotificationFragment as dQ, type NotificationsQueryVariables as dR, type NotificationConnectionFragment as dS, type NotificationsByReferenceQueryVariables as dT, type PrivacyStatsQueryVariables as dU, type PrivacyStatsFragment as dV, type ProjectsQueryVariables as dW, type ProjectConnectionFragment as dX, type PulseAppSummaryQueryVariables as dY, type PulseAppSummaryModelFragment as dZ, type PulseEventQueryVariables as d_, type FindFitTierQueryVariables as da, EntitlementTier as db, type FolderQueryVariables as dc, type FoldersQueryVariables as dd, type FolderConnectionFragment as de, type GetCapabilityQueryVariables as df, type GetDevAccessTokenQueryVariables as dg, type GetLimitQueryVariables as dh, type GetRemainingQueryVariables as di, type GetTokenUsageByModelQueryVariables as dj, type ModelTokenUsageFragment as dk, type GetTokenUsageHistoryQueryVariables as dl, type GetTokenUsageStatusQueryVariables as dm, TokenUsageLimit as dn, ActiveWindowType as dp, type WindowDetailTypeFragment as dq, type UsageWindowsStatusTypeFragment as dr, type UsageStatusFragment as ds, type GetTokenUsageStatus_WindowsQueryVariables as dt, type GetUsageQueryVariables as du, type InsightsQueryVariables as dv, type IntegrationQueryVariables as dw, type IntegrationCatalogToolsQueryVariables as dx, type IntegrationCatalogsQueryVariables as dy, type IntegrationCatalogConnectionFragment as dz, type ChatMessage_ArtifactsQueryVariables as e, type UserSkillFileFragment as e$, type PulseEventConnectionFragment as e0, type PulseTriggerSettingsQueryVariables as e1, type QueryQueryVariables as e2, type QueryWithInsightIdQueryVariables as e3, type QueryWithMessageIdQueryVariables as e4, type ReportsQueryVariables as e5, type TablesQueryVariables as e6, type UserSkillFileQueryVariables as e7, type UserSkillFilesQueryVariables as e8, type UserSkillFolderQueryVariables as e9, type McpToolFragment as eA, type MessageEndEventOutputFragment as eB, type MessageStartEventOutputFragment as eC, type ProgressSummaryEventOutputFragment as eD, type Project_DesktopBinding_DeviceQueryVariables as eE, type PulseEvent_Integration_ProviderQueryVariables as eF, type ReasoningEventOutputFragment as eG, type ResetWorkspaceMutationVariables as eH, type ScheduleWorkspaceDeletionMutationVariables as eI, type TextBlockEventOutputFragment as eJ, type TextDeltaEventOutputFragment as eK, type WidgetBlockStartEventOutputFragment as eL, type WidgetHtmlDeltaEventOutputFragment as eM, type WidgetBlockCompleteEventOutputFragment as eN, type WidgetBlockErrorEventOutputFragment as eO, type ToolStartEventOutputFragment as eP, type ToolInputDeltaEventOutputFragment as eQ, type ToolResultArtifactOutputFragment as eR, type ToolResultEventOutputFragment as eS, type StreamEventSchemaAnchorFragment as eT, type SyncEventFragment as eU, type SyncEventCursorFragment as eV, type Table_Database_EngineQueryVariables as eW, type Table_Document_ContentsQueryVariables as eX, type Table_Document_FileQueryVariables as eY, type Table_Document_FormatQueryVariables as eZ, type TokenUsageFragment as e_, type UserSkillFoldersQueryVariables as ea, type WorkspaceDeletionScheduleQueryVariables as eb, type McpAuthUpdatesSubscriptionVariables as ec, McpAuthPhase as ed, type McpAuthUpdateModelFragment as ee, type TokenUsageUpdatesSubscriptionVariables as ef, type EvidenceFragment as eg, type FailedSyncEventIngestionFragment as eh, type StreamMessageContentOutputFragment as ei, type StreamMessageOutputFragment as ej, type UsageMetaOutputFragment as ek, type FinalContentEventOutputFragment as el, type GetTokenUsageStatus_Windows_DayQueryVariables as em, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as en, type GetTokenUsageStatus_Windows_MonthQueryVariables as eo, type GetTokenUsageStatus_Windows_WeekQueryVariables as ep, type InferenceRequestAuditFragment as eq, type Insight_Chat_DesktopDeviceQueryVariables as er, type Insight_Chat_ProjectQueryVariables as es, type Integration_Provider_CatalogQueryVariables as et, type InvocationFragment as eu, type LiveContext_Source_EvidencesQueryVariables as ev, type McpClientInformationFragment as ew, type McpCodeVerifierFragment as ex, type McpServerFragment as ey, type McpTokensFragment as ez, ArtifactKind as f, type UserSkillFolderFragment as f0, type ActiveChatStreamClient as f1, type ActiveChatStreamListener as f2, type ActiveChatStreamListenerHandlers as f3, AgentOrderByRelevanceFieldEnum as f4, ArtifactOrderByRelevanceFieldEnum as f5, CapabilityType as f6, ChatMessageOrderByRelevanceFieldEnum as f7, ChatOrderByRelevanceFieldEnum as f8, type ChatStreamClientOptions as f9, PulseEventOrderByRelevanceFieldEnum as fA, QueryMode as fB, ReportOrderByRelevanceFieldEnum as fC, SendMessageModel as fD, SortOrder as fE, TableOrderByRelevanceFieldEnum as fF, UsageHistoryGranularity as fG, createChatStreamClient as fH, createDvinaClient as fI, type ChatStreamEvent as fa, type ChatStreamListener as fb, type ChatStreamListenerHandlers as fc, DatabaseCatalogOrderByRelevanceFieldEnum as fd, DatabaseOrderByRelevanceFieldEnum as fe, DesktopDeviceOrderByRelevanceFieldEnum as ff, DocumentCatalogOrderByRelevanceFieldEnum as fg, DocumentOrderByRelevanceFieldEnum as fh, type DvinaSdkBaseOptions as fi, type DvinaSdkCallbackOptions as fj, type DvinaSdkTokenOptions as fk, FeedItemOrderByRelevanceFieldEnum as fl, FeedbackOrderByRelevanceFieldEnum as fm, FileOrderByRelevanceFieldEnum as fn, FileUrlVariant as fo, FolderOrderByRelevanceFieldEnum as fp, InsightOrderByRelevanceFieldEnum as fq, IntegrationCatalogOrderByRelevanceFieldEnum as fr, IntegrationOrderByRelevanceFieldEnum as fs, InterpretationOrderByRelevanceFieldEnum as ft, LimitType as fu, LiveContextOrderByRelevanceFieldEnum as fv, NotificationOrderByRelevanceFieldEnum as fw, NullsOrder as fx, ProjectDesktopBindingOrderByRelevanceFieldEnum as fy, ProjectOrderByRelevanceFieldEnum 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 Chat_InsightQueryVariables as s, type Insight_ChatQueryVariables as t, type Insight_ReportMembersQueryVariables as u, ReportMemberSize as v, type ReportMemberFragment as w, type ReportQueryVariables as x, type ReportFragment as y, type Report_InsightsQueryVariables as z };
7397
+ export { type Insight_ThumbnailFileQueryVariables as $, type AbortChatMutationVariables as A, type Artifact_FileQueryVariables as B, type ChatMessageQueryVariables as C, type DvinaSdkOptions as D, type Artifact_MessageQueryVariables as E, type FileFragment as F, type ChatMessage_ChatQueryVariables as G, type ChatMessage_ContentsQueryVariables as H, ContentBlockType as I, type ContentBlockFragment as J, type ChatMessage_FeedbackQueryVariables as K, FeedbackType as L, type FeedbackFragment as M, type Chat_InsightQueryVariables as N, type Insight_ChatQueryVariables as O, ProjectDesktopContextKind as P, type Insight_ReportMembersQueryVariables as Q, ReasoningEffort as R, ReportMemberSize as S, Presentation as T, type ReportMemberFragment as U, type ReportQueryVariables as V, type ReportFragment as W, type Report_InsightsQueryVariables as X, type InsightFragment as Y, type Insight_ReportsQueryVariables as Z, type ReportConnectionFragment as _, ActionType as a, type DatabaseCatalog_EngineQueryVariables as a$, type InsightConnectionFragment as a0, type Report_LayoutQueryVariables as a1, type InsightQueryVariables as a2, type Chat_MessagesQueryVariables as a3, type ChatMessageConnectionFragment as a4, type Chat_ProjectQueryVariables as a5, type DesktopDeviceQueryVariables as a6, type ArtifactConnectionFragment as a7, type AddInsightToReportMutationVariables as a8, type AgentQueryVariables as a9, ChatSourceImportModeEnum as aA, type ChatImportPreviewOutputFragment as aB, type ChatMessage_Chat_DesktopDeviceQueryVariables as aC, type ChatMessage_Chat_InsightQueryVariables as aD, type ChatMessage_Chat_ProjectQueryVariables as aE, type ChatMessagesQueryVariables as aF, type ChatQueryVariables as aG, type ChatTitleEventOutputFragment as aH, type Chat_DesktopDevice_DesktopBindingsQueryVariables as aI, type Chat_Insight_ReportMembersQueryVariables as aJ, type Chat_Insight_ThumbnailFileQueryVariables as aK, type Chat_Project_DesktopBindingQueryVariables as aL, type ChatsQueryVariables as aM, type ConnectIntegrationMutationVariables as aN, type CreateIntegrationOutputFragment as aO, type ConsumePulseEventsMutationVariables as aP, type ContentMaskFragment as aQ, type ContinueImportedChatMutationVariables as aR, type ContinueInterpretationMutationVariables as aS, type CreateAgentMutationVariables as aT, type CreateChatMutationVariables as aU, type CreateDatabaseMutationVariables as aV, type DatabaseFragment as aW, type Database_EngineQueryVariables as aX, type DatabaseEngineFragment as aY, type DatabaseCatalogQueryVariables as aZ, type DatabaseCatalogFragment as a_, type AgentsQueryVariables as aa, type AiProviderSettingQueryVariables as ab, type UserAiProviderSettingFragment as ac, type ArtifactQueryVariables as ad, type Artifact_Chat_DesktopDeviceQueryVariables as ae, type Artifact_Chat_InsightQueryVariables as af, type Artifact_Chat_ProjectQueryVariables as ag, type Artifact_Message_ChatQueryVariables as ah, type Artifact_Message_ContentsQueryVariables as ai, type Artifact_Message_FeedbackQueryVariables as aj, type ArtifactsQueryVariables as ak, type AudioEventOutputFragment as al, type CancelOauthFlowMutationVariables as am, type CancelWorkspaceDeletionMutationVariables as an, type CandidateFragment as ao, type LiveContextQueryVariables as ap, LiveContextStatus as aq, type LiveContextFragment as ar, type LiveContext_ItemsQueryVariables as as, FeedActionType as at, type FeedItemGeneratedFragment as au, type LiveContext_SourceQueryVariables as av, type CandidateEvidenceFragment as aw, type ImportedChatSummaryOutputFragment as ax, type ChatImportExecuteOutputFragment as ay, ChatSourceImportFidelityEnum as az, type ActionFragment as b, type DismissPulseEventMutationVariables as b$, type Database_TablesQueryVariables as b0, TableStatus as b1, type TableFragment as b2, type Table_DatabaseQueryVariables as b3, type Table_DocumentQueryVariables as b4, type DocumentFragment as b5, type Document_ContentsQueryVariables as b6, type DocumentContentFragment as b7, type DocumentQueryVariables as b8, type Document_FileQueryVariables as b9, type DatabaseCatalogConnectionFragment as bA, type DatabaseCatalogsQueryVariables as bB, type DatabaseConnectionFragment as bC, type DatabaseQueryVariables as bD, type DatabaseSchemaQueryVariables as bE, type Database_Engine_CatalogQueryVariables as bF, type DatabasesQueryVariables as bG, type DeepAnalysisUsageFragment as bH, type DeleteAgentMutationVariables as bI, type DeleteAiProviderSettingMutationVariables as bJ, type DeleteArtifactMutationVariables as bK, type DeleteChatMutationVariables as bL, type DeleteDatabaseMutationVariables as bM, type DeleteDocumentMutationVariables as bN, type DeleteFolderMutationVariables as bO, type DeleteInsightMutationVariables as bP, type DeleteInsightsMutationVariables as bQ, type DeleteIntegrationMutationVariables as bR, type DeleteProjectMutationVariables as bS, type DeleteReportMutationVariables as bT, type DeleteTableMutationVariables as bU, type DeleteUserSkillFileMutationVariables as bV, type DeleteUserSkillFolderMutationVariables as bW, type DesktopDeviceConnectionFragment as bX, type DesktopDevicesQueryVariables as bY, type DevAccessTokenOutputFragment as bZ, type DisconnectIntegrationMutationVariables as b_, type Document_FormatQueryVariables as ba, type DocumentFormatFragment as bb, type DocumentCatalogQueryVariables as bc, type DocumentCatalogFragment as bd, type DocumentCatalog_FormatQueryVariables as be, type Document_TablesQueryVariables as bf, type Table_FromRelationsQueryVariables as bg, RelationType as bh, type RelationFragment as bi, type TableQueryVariables as bj, type Table_ToRelationsQueryVariables as bk, type TableConnectionFragment as bl, type CreateDocumentMutationVariables as bm, type CreateFeedbackMutationVariables as bn, type CreateFolderMutationVariables as bo, type FolderFragment as bp, type CreateInsightMutationVariables as bq, type CreateIntegrationMutationVariables as br, type CreateProjectMutationVariables as bs, type CreateReportMutationVariables as bt, type CreateTableMutationVariables as bu, type CreateUserSkillFileMutationVariables as bv, type UserSkillFileModelFragment as bw, type CreateUserSkillFolderMutationVariables as bx, type UserSkillFolderModelFragment as by, type CubeModelFragment as bz, ChatMessageFromEnum as c, type FeedArtifactDataFragment as c$, PulseEventPriority as c0, PulseEventKind as c1, type PulseEventFragment as c2, type PulseEvent_IntegrationQueryVariables as c3, IntegrationStatus as c4, type IntegrationFragment as c5, type Integration_ProviderQueryVariables as c6, type IntegrationProviderFragment as c7, type IntegrationCatalogQueryVariables as c8, type IntegrationCatalogFragment as c9, type UpdateAgentMutationVariables as cA, type UpdateArtifactNameMutationVariables as cB, type UpdateChatMutationVariables as cC, type UpdateDatabaseMutationVariables as cD, type UpdateDocumentMutationVariables as cE, type UpdateFolderMutationVariables as cF, type UpdateInsightMutationVariables as cG, type UpdateInsightInReportMutationVariables as cH, type UpdateInsightThumbnailMutationVariables as cI, type UpdateInterpMutationVariables as cJ, InterpretationType as cK, AiResourceType as cL, type InterpretationFragment as cM, type UpdateLiveContextMutationVariables as cN, type UpdateProjectMutationVariables as cO, type UpdatePulseTriggerMutationVariables as cP, type PulseTriggerSettingModelFragment as cQ, type UpdateReportMutationVariables as cR, type UpdateTableMutationVariables as cS, type UpdateUserSkillFileMutationVariables as cT, type UpdateUserSkillFolderMutationVariables as cU, type UpsertAiProviderSettingMutationVariables as cV, type ExportQueryVariables as cW, type ExportWithInsightIdQueryVariables as cX, type FeedItemQueryVariables as cY, FeedItemKind as cZ, type FeedDocumentDataFragment as c_, type IntegrationCatalog_ProviderQueryVariables as ca, type DocumentCatalogConnectionFragment as cb, type DocumentCatalogsQueryVariables as cc, type DocumentConnectionFragment as cd, type Document_Format_CatalogQueryVariables as ce, type DocumentsQueryVariables as cf, type ChatStreamClient as cg, type ExecuteChatImportMutationVariables as ch, type GenerateUploadUriMutationVariables as ci, type FileModelFragment as cj, type PreviewChatImportMutationVariables as ck, type ReanalyzeDocumentMutationVariables as cl, type RefineAgentInstructionMutationVariables as cm, type RefineSkillInstructionMutationVariables as cn, type RefreshDatabaseSchemaMutationVariables as co, type RefreshInsightMutationVariables as cp, type RegisterDesktopDeviceMutationVariables as cq, type ReinterpretSourceMutationVariables as cr, type ReinterpretSourcesOfuserMutationVariables as cs, type RelocateInsightMutationVariables as ct, type RemoveInsightFromReportMutationVariables as cu, type ResolvePulseEventMutationVariables as cv, type WorkspaceDeleteScheduleFragment as cw, type SendMessageMutationVariables as cx, type SetDatabasePrimaryKeyMutationVariables as cy, type SyncProjectDesktopBindingMutationVariables as cz, type ChatMessageFragment as d, type PulseAppSummaryQueryVariables as d$, type FeedDatabaseDataFragment as d0, type FeedInsightDataFragment as d1, type FeedIntegrationDataFragment as d2, type FeedProjectDataFragment as d3, type FeedLiveContextDataFragment as d4, type FeedPulseDataFragment as d5, type FeedItemFragment as d6, type FeedItem_ActionQueryVariables as d7, type FeedSendMessageActionFragment as d8, type FeedItem_DataQueryVariables as d9, type GetUsageQueryVariables as dA, type InsightsQueryVariables as dB, type IntegrationQueryVariables as dC, type IntegrationCatalogToolsQueryVariables as dD, type IntegrationCatalogsQueryVariables as dE, type IntegrationCatalogConnectionFragment as dF, type IntegrationsQueryVariables as dG, type IntegrationConnectionFragment as dH, type InterpretationsQueryVariables as dI, type InterpretationConnectionFragment as dJ, type LiveContextsQueryVariables as dK, type LiveContextConnectionFragment as dL, type LocalSandboxDeviceStatusesQueryVariables as dM, LocalSandboxDeviceConnectionState as dN, type LocalSandboxDeviceStatusModelFragment as dO, type NotificationQueryVariables as dP, NotificationCategory as dQ, NotificationPriority as dR, NotificationStatus as dS, type NotificationFragment as dT, type NotificationsQueryVariables as dU, type NotificationConnectionFragment as dV, type NotificationsByReferenceQueryVariables as dW, type PrivacyStatsQueryVariables as dX, type PrivacyStatsFragment as dY, type ProjectsQueryVariables as dZ, type ProjectConnectionFragment as d_, type FeedItemsQueryVariables as da, type FeedConnectionFragment as db, type FileQueryVariables as dc, type FileMetaQueryVariables as dd, type FileUrlsQueryVariables as de, type ResolvedFileUrlFragment as df, type FindFitTierQueryVariables as dg, EntitlementTier as dh, type FolderQueryVariables as di, type FoldersQueryVariables as dj, type FolderConnectionFragment as dk, type GetCapabilityQueryVariables as dl, type GetDevAccessTokenQueryVariables as dm, type GetLimitQueryVariables as dn, type GetRemainingQueryVariables as dp, type GetTokenUsageByModelQueryVariables as dq, type ModelTokenUsageFragment as dr, type GetTokenUsageHistoryQueryVariables as ds, type GetTokenUsageStatusQueryVariables as dt, TokenUsageLimit as du, ActiveWindowType as dv, type WindowDetailTypeFragment as dw, type UsageWindowsStatusTypeFragment as dx, type UsageStatusFragment as dy, type GetTokenUsageStatus_WindowsQueryVariables as dz, type ChatMessage_ArtifactsQueryVariables as e, type Table_Document_FileQueryVariables as e$, type PulseAppSummaryModelFragment as e0, type PulseEventQueryVariables as e1, type PulseEventsQueryVariables as e2, type PulseEventConnectionFragment as e3, type PulseTriggerSettingsQueryVariables as e4, type QueryQueryVariables as e5, type QueryWithInsightIdQueryVariables as e6, type QueryWithMessageIdQueryVariables as e7, type ReportsQueryVariables as e8, type TablesQueryVariables as e9, type McpCodeVerifierFragment as eA, type McpServerFragment as eB, type McpTokensFragment as eC, type McpToolFragment as eD, type MessageEndEventOutputFragment as eE, type MessageStartEventOutputFragment as eF, type ProgressSummaryEventOutputFragment as eG, type Project_DesktopBinding_DeviceQueryVariables as eH, type PulseEvent_Integration_ProviderQueryVariables as eI, type ReasoningEventOutputFragment as eJ, type ResetWorkspaceMutationVariables as eK, type ScheduleWorkspaceDeletionMutationVariables as eL, type TextBlockEventOutputFragment as eM, type TextDeltaEventOutputFragment as eN, type WidgetBlockStartEventOutputFragment as eO, type WidgetHtmlDeltaEventOutputFragment as eP, type WidgetBlockCompleteEventOutputFragment as eQ, type WidgetBlockErrorEventOutputFragment as eR, type ToolStartEventOutputFragment as eS, type ToolInputDeltaEventOutputFragment as eT, type ToolResultArtifactOutputFragment as eU, type ToolResultEventOutputFragment as eV, type StreamEventSchemaAnchorFragment as eW, type SyncEventFragment as eX, type SyncEventCursorFragment as eY, type Table_Database_EngineQueryVariables as eZ, type Table_Document_ContentsQueryVariables as e_, type UserSkillFileQueryVariables as ea, type UserSkillFilesQueryVariables as eb, type UserSkillFolderQueryVariables as ec, type UserSkillFoldersQueryVariables as ed, type WorkspaceDeletionScheduleQueryVariables as ee, type McpAuthUpdatesSubscriptionVariables as ef, McpAuthPhase as eg, type McpAuthUpdateModelFragment as eh, type TokenUsageUpdatesSubscriptionVariables as ei, type EvidenceFragment as ej, type FailedSyncEventIngestionFragment as ek, type StreamMessageContentOutputFragment as el, type StreamMessageOutputFragment as em, type UsageMetaOutputFragment as en, type FinalContentEventOutputFragment as eo, type GetTokenUsageStatus_Windows_DayQueryVariables as ep, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as eq, type GetTokenUsageStatus_Windows_MonthQueryVariables as er, type GetTokenUsageStatus_Windows_WeekQueryVariables as es, type InferenceRequestAuditFragment as et, type Insight_Chat_DesktopDeviceQueryVariables as eu, type Insight_Chat_ProjectQueryVariables as ev, type Integration_Provider_CatalogQueryVariables as ew, type InvocationFragment as ex, type LiveContext_Source_EvidencesQueryVariables as ey, type McpClientInformationFragment as ez, ArtifactKind as f, type Table_Document_FormatQueryVariables as f0, type TokenUsageFragment as f1, type UserSkillFileFragment as f2, type UserSkillFolderFragment as f3, type ActiveChatStreamClient as f4, type ActiveChatStreamListener as f5, type ActiveChatStreamListenerHandlers as f6, AgentOrderByRelevanceFieldEnum as f7, ArtifactOrderByRelevanceFieldEnum as f8, CapabilityType as f9, NullsOrder as fA, ProjectDesktopBindingOrderByRelevanceFieldEnum as fB, ProjectOrderByRelevanceFieldEnum as fC, PulseEventOrderByRelevanceFieldEnum as fD, QueryMode as fE, ReportOrderByRelevanceFieldEnum as fF, SendMessageModel as fG, SortOrder as fH, TableOrderByRelevanceFieldEnum as fI, UsageHistoryGranularity as fJ, createChatStreamClient as fK, createDvinaClient as fL, ChatMessageOrderByRelevanceFieldEnum as fa, ChatOrderByRelevanceFieldEnum as fb, type ChatStreamClientOptions as fc, type ChatStreamEvent as fd, type ChatStreamListener as fe, type ChatStreamListenerHandlers as ff, DatabaseCatalogOrderByRelevanceFieldEnum as fg, DatabaseOrderByRelevanceFieldEnum as fh, DesktopDeviceOrderByRelevanceFieldEnum as fi, DocumentCatalogOrderByRelevanceFieldEnum as fj, DocumentOrderByRelevanceFieldEnum as fk, type DvinaSdkBaseOptions as fl, type DvinaSdkCallbackOptions as fm, type DvinaSdkTokenOptions as fn, FeedItemOrderByRelevanceFieldEnum as fo, FeedbackOrderByRelevanceFieldEnum as fp, FileOrderByRelevanceFieldEnum as fq, FileUrlVariant as fr, FolderOrderByRelevanceFieldEnum as fs, InsightOrderByRelevanceFieldEnum as ft, IntegrationCatalogOrderByRelevanceFieldEnum as fu, IntegrationOrderByRelevanceFieldEnum as fv, InterpretationOrderByRelevanceFieldEnum as fw, LimitType as fx, LiveContextOrderByRelevanceFieldEnum as fy, NotificationOrderByRelevanceFieldEnum 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 };