@dvina/sdk 4.1.13 → 4.1.21

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 (40) hide show
  1. package/dist/_generated_documents-4Z6CHYNG.js +4 -0
  2. package/dist/{_generated_documents-DDOM6L4I.js.map → _generated_documents-4Z6CHYNG.js.map} +1 -1
  3. package/dist/{_generated_documents-P2JDS76B.cjs → _generated_documents-Q4R4ODUS.cjs} +638 -630
  4. package/dist/{_generated_documents-P2JDS76B.cjs.map → _generated_documents-Q4R4ODUS.cjs.map} +1 -1
  5. package/dist/adapters/angular/index.cjs +4 -4
  6. package/dist/adapters/angular/index.cjs.map +1 -1
  7. package/dist/adapters/angular/index.d.cts +4 -4
  8. package/dist/adapters/angular/index.d.ts +4 -4
  9. package/dist/adapters/angular/index.js +2 -2
  10. package/dist/adapters/angular/index.js.map +1 -1
  11. package/dist/adapters/react/index.d.cts +1 -1
  12. package/dist/adapters/react/index.d.ts +1 -1
  13. package/dist/{chunk-5WZGNZOT.js → chunk-3SQWSIES.js} +226 -300
  14. package/dist/chunk-3SQWSIES.js.map +1 -0
  15. package/dist/{chunk-4QI6ACRB.js → chunk-OW5ABYGY.js} +5 -3
  16. package/dist/chunk-OW5ABYGY.js.map +1 -0
  17. package/dist/{chunk-3NVTNOPC.cjs → chunk-QDXQ3Y7H.cjs} +835 -906
  18. package/dist/chunk-QDXQ3Y7H.cjs.map +1 -0
  19. package/dist/{chunk-ULLPEHMQ.cjs → chunk-QKUK3UYB.cjs} +6 -2
  20. package/dist/chunk-QKUK3UYB.cjs.map +1 -0
  21. package/dist/{client-DTPpI37c.d.ts → client-BXO9_63Y.d.ts} +69 -14
  22. package/dist/{client-9HS5mnLX.d.cts → client-CowNNxM_.d.cts} +69 -14
  23. package/dist/{index-C3J-qQro.d.cts → index-CCRTPWIw.d.cts} +2 -2
  24. package/dist/{index-GgmBwFza.d.ts → index-DcgFvhc1.d.ts} +2 -2
  25. package/dist/index.cjs +480 -468
  26. package/dist/index.d.cts +22 -10
  27. package/dist/index.d.ts +22 -10
  28. package/dist/index.js +2 -2
  29. package/dist/pagination/index.d.cts +3 -3
  30. package/dist/pagination/index.d.ts +3 -3
  31. package/dist/{sync-engine-CgKa-lWc.d.ts → sync-engine-BHsj_bC-.d.ts} +18 -6
  32. package/dist/{sync-engine-q1n4rVzP.d.cts → sync-engine-F0397ofh.d.cts} +18 -6
  33. package/dist/{types-k6gSbuaF.d.cts → types-Chg8ASmf.d.cts} +6 -2
  34. package/dist/{types-k6gSbuaF.d.ts → types-Chg8ASmf.d.ts} +6 -2
  35. package/package.json +1 -1
  36. package/dist/_generated_documents-DDOM6L4I.js +0 -4
  37. package/dist/chunk-3NVTNOPC.cjs.map +0 -1
  38. package/dist/chunk-4QI6ACRB.js.map +0 -1
  39. package/dist/chunk-5WZGNZOT.js.map +0 -1
  40. package/dist/chunk-ULLPEHMQ.cjs.map +0 -1
@@ -1,6 +1,6 @@
1
1
  import { D as DvinaError } from './error-CsVoUTY8.js';
2
- import { a as DvinaRequest, b as DvinaSubscribe } from './types-k6gSbuaF.js';
3
- import { S as SyncEngine } from './sync-engine-CgKa-lWc.js';
2
+ import { D as DvinaAsyncRef, b as DvinaRequest, c as DvinaSubscribe } from './types-Chg8ASmf.js';
3
+ import { R as RealtimeEventTopic, S as SyncEngine } from './sync-engine-BHsj_bC-.js';
4
4
  import { I as InferenceClient } from './client-Bb2gD6Iz.js';
5
5
  import { BillingClient } from './billing/index.js';
6
6
 
@@ -6863,6 +6863,9 @@ type CancelOauthFlowMutationVariables = Exact<{
6863
6863
  type CancelWorkspaceDeletionMutationVariables = Exact<{
6864
6864
  [key: string]: never;
6865
6865
  }>;
6866
+ type CloseActiveTabsMutationVariables = Exact<{
6867
+ chatIds: Array<Scalars['ID']> | Scalars['ID'];
6868
+ }>;
6866
6869
  type ConnectIntegrationMutationVariables = Exact<{
6867
6870
  providerKey: Scalars['String'];
6868
6871
  }>;
@@ -6988,6 +6991,9 @@ type GenerateUploadUriMutationVariables = Exact<{
6988
6991
  type MigrateLegacyCodeChatsMutationVariables = Exact<{
6989
6992
  input: LegacyCodeMigrationInput;
6990
6993
  }>;
6994
+ type OpenActiveTabMutationVariables = Exact<{
6995
+ chatId: Scalars['ID'];
6996
+ }>;
6991
6997
  type PreviewChatImportMutationVariables = Exact<{
6992
6998
  input: ChatImportPreviewInput;
6993
6999
  }>;
@@ -7774,18 +7780,7 @@ interface ChatStreamListener {
7774
7780
  readonly chatId: string;
7775
7781
  stop(): void;
7776
7782
  }
7777
- interface ActiveChatStreamListenerHandlers {
7778
- error?: (error: unknown) => void;
7779
- next: (chatIds: readonly string[]) => void;
7780
- }
7781
- interface ActiveChatStreamListener {
7782
- stop(): void;
7783
- }
7784
- interface ActiveChatStreamClient {
7785
- listen(handlers: ActiveChatStreamListenerHandlers): ActiveChatStreamListener;
7786
- }
7787
7783
  interface ChatStreamClient {
7788
- active: ActiveChatStreamClient;
7789
7784
  listen(chatId: string, handlers: ChatStreamListenerHandlers): ChatStreamListener;
7790
7785
  stream(chatId: string): AsyncIterable<ChatStreamEvent>;
7791
7786
  reconnectAll(): void;
@@ -7793,6 +7788,64 @@ interface ChatStreamClient {
7793
7788
  }
7794
7789
  declare function createChatStreamClient(options: ChatStreamClientOptions): ChatStreamClient;
7795
7790
 
7791
+ interface ActiveChatsSnapshot {
7792
+ chatIds: string[];
7793
+ }
7794
+ interface ActiveTabsSnapshot {
7795
+ tabs: Array<{
7796
+ createdAt: string;
7797
+ id: string;
7798
+ name: string;
7799
+ projectId: string | null;
7800
+ sourceProvider: string | null;
7801
+ updatedAt: string;
7802
+ }>;
7803
+ }
7804
+ interface DevicePresenceSnapshot {
7805
+ devices: Array<{
7806
+ deviceId: string;
7807
+ lastSeenAt: string | null;
7808
+ state: 'connected' | 'disconnected' | 'unavailable';
7809
+ }>;
7810
+ }
7811
+ interface RealtimeTopicData {
7812
+ 'active-chats': ActiveChatsSnapshot;
7813
+ 'active-tabs': ActiveTabsSnapshot;
7814
+ 'desktop-device-presence': DevicePresenceSnapshot;
7815
+ }
7816
+ /**
7817
+ * Realtime topic event envelope. `type` is intentionally open-ended so new
7818
+ * server event kinds can be introduced without changing the transport API.
7819
+ */
7820
+ interface DvinaRealtimeEvent<TData, TType extends string = string> {
7821
+ type: TType;
7822
+ data: TData;
7823
+ }
7824
+ type ActiveChatsEvent = DvinaRealtimeEvent<ActiveChatsSnapshot>;
7825
+ type ActiveTabsEvent = DvinaRealtimeEvent<ActiveTabsSnapshot>;
7826
+ type DevicePresenceEvent = DvinaRealtimeEvent<DevicePresenceSnapshot>;
7827
+ type DvinaEventRef<T> = DvinaAsyncRef<T>;
7828
+ interface DvinaEventTopic<T> {
7829
+ watch(): DvinaEventRef<T>;
7830
+ }
7831
+ interface DvinaEvents {
7832
+ activeChats(): DvinaEventTopic<ActiveChatsEvent>;
7833
+ activeTabs(): DvinaEventTopic<ActiveTabsEvent>;
7834
+ devicePresence(): DvinaEventTopic<DevicePresenceEvent>;
7835
+ }
7836
+ interface RealtimeEventController {
7837
+ subscribe(topic: RealtimeEventTopic): void;
7838
+ unsubscribe(topic: RealtimeEventTopic): void;
7839
+ }
7840
+ interface RealtimeTransportEvent {
7841
+ topic: RealtimeEventTopic;
7842
+ type: string;
7843
+ data: unknown;
7844
+ }
7845
+ declare function createDvinaEvents(controller: RealtimeEventController): DvinaEvents & {
7846
+ dispatch(event: RealtimeTransportEvent): void;
7847
+ };
7848
+
7796
7849
  type DvinaSdkLifecycleHint = 'network-restored' | 'app-resumed' | 'became-active';
7797
7850
  interface DvinaSdkLifecycle {
7798
7851
  hint(reason: DvinaSdkLifecycleHint): void;
@@ -7862,6 +7915,8 @@ interface DvinaClientResult {
7862
7915
  billing: BillingClient;
7863
7916
  /** Semantic lifecycle bridge for connectivity and foreground recovery hints. */
7864
7917
  lifecycle: DvinaSdkLifecycle;
7918
+ /** User-scoped realtime event topics delivered through the sync SSE connection. */
7919
+ events: DvinaEvents;
7865
7920
  /** The resolved base URL (e.g. 'api.dvina.ai'). Used by models to resolve relative asset paths. */
7866
7921
  baseUrl: string;
7867
7922
  }
@@ -7871,4 +7926,4 @@ interface DvinaClientResult {
7871
7926
  */
7872
7927
  declare function createDvinaClient(options: DvinaSdkOptions): DvinaClientResult;
7873
7928
 
7874
- export { type Insight_ReportsQueryVariables 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 ContentBlockAgentOutputFragment as K, type ContentBlockFragment as L, type ChatMessage_FeedbackQueryVariables as M, FeedbackType as N, type FeedbackFragment as O, ProjectDesktopContextKind as P, type Chat_InsightQueryVariables as Q, ReasoningEffort as R, type Insight_ChatQueryVariables as S, type Insight_ReportMembersQueryVariables as T, ReportMemberSize as U, Presentation as V, type ReportMemberFragment as W, type ReportQueryVariables as X, type ReportFragment as Y, type Report_InsightsQueryVariables as Z, type InsightFragment as _, ActionType as a, type DatabaseEngineFragment as a$, type ReportConnectionFragment as a0, type Insight_ThumbnailFileQueryVariables as a1, type InsightConnectionFragment as a2, type Report_LayoutQueryVariables as a3, type InsightQueryVariables as a4, type Chat_MessagesQueryVariables as a5, type ChatMessageConnectionFragment as a6, type Chat_ProjectQueryVariables as a7, type DesktopDeviceQueryVariables as a8, type ArtifactConnectionFragment as a9, type ChatImportExecuteOutputFragment as aA, ChatSourceImportFidelityEnum as aB, ChatSourceImportModeEnum as aC, type ChatImportPreviewOutputFragment as aD, type ChatMessage_Chat_DesktopDeviceQueryVariables as aE, type ChatMessage_Chat_InsightQueryVariables as aF, type ChatMessage_Chat_ProjectQueryVariables as aG, type ChatMessagesQueryVariables as aH, type ChatQueryVariables as aI, type ChatTitleEventOutputFragment as aJ, type Chat_DesktopDevice_DesktopBindingsQueryVariables as aK, type Chat_Insight_ReportMembersQueryVariables as aL, type Chat_Insight_ThumbnailFileQueryVariables as aM, type Chat_Project_DesktopBindingQueryVariables as aN, type ChatsQueryVariables as aO, type ConnectIntegrationMutationVariables as aP, type CreateIntegrationOutputFragment as aQ, type ConsumePulseEventsMutationVariables as aR, type ContentMaskFragment as aS, type ContextUsageEventOutputFragment as aT, type ContinueImportedChatMutationVariables as aU, type ContinueInterpretationMutationVariables as aV, type CreateAgentMutationVariables as aW, type CreateChatMutationVariables as aX, type CreateDatabaseMutationVariables as aY, type DatabaseFragment as aZ, type Database_EngineQueryVariables as a_, type AddInsightToReportMutationVariables as aa, type AgentQueryVariables as ab, type AgentsQueryVariables as ac, type AiProviderSettingQueryVariables as ad, type UserAiProviderSettingFragment as ae, type ArtifactQueryVariables as af, type Artifact_Chat_DesktopDeviceQueryVariables as ag, type Artifact_Chat_InsightQueryVariables as ah, type Artifact_Chat_ProjectQueryVariables as ai, type Artifact_Message_ChatQueryVariables as aj, type Artifact_Message_ContentsQueryVariables as ak, type Artifact_Message_FeedbackQueryVariables as al, type ArtifactsQueryVariables as am, type AudioEventOutputFragment as an, type CancelOauthFlowMutationVariables as ao, type CancelWorkspaceDeletionMutationVariables as ap, type CandidateFragment as aq, type LiveContextQueryVariables as ar, LiveContextStatus as as, type LiveContextFragment as at, type LiveContext_ItemsQueryVariables as au, FeedActionType as av, type FeedItemGeneratedFragment as aw, type LiveContext_SourceQueryVariables as ax, type CandidateEvidenceFragment as ay, type ImportedChatSummaryOutputFragment as az, type ActionFragment as b, type DesktopDeviceConnectionFragment as b$, type DatabaseCatalogQueryVariables as b0, type DatabaseCatalogFragment as b1, type DatabaseCatalog_EngineQueryVariables as b2, type Database_TablesQueryVariables as b3, TableStatus as b4, type TableFragment as b5, type Table_DatabaseQueryVariables as b6, type Table_DocumentQueryVariables as b7, type DocumentFragment as b8, type Document_ContentsQueryVariables as b9, type CreateUserSkillFolderMutationVariables as bA, type UserSkillFolderModelFragment as bB, type CubeModelFragment as bC, type DatabaseCatalogConnectionFragment as bD, type DatabaseCatalogsQueryVariables as bE, type DatabaseConnectionFragment as bF, type DatabaseQueryVariables as bG, type DatabaseSchemaQueryVariables as bH, type Database_Engine_CatalogQueryVariables as bI, type DatabasesQueryVariables as bJ, type DeepAnalysisUsageFragment as bK, type DeleteAgentMutationVariables as bL, type DeleteAiProviderSettingMutationVariables as bM, type DeleteArtifactMutationVariables as bN, type DeleteChatMutationVariables as bO, type DeleteDatabaseMutationVariables as bP, type DeleteDocumentMutationVariables as bQ, type DeleteFolderMutationVariables as bR, type DeleteInsightMutationVariables as bS, type DeleteInsightsMutationVariables as bT, type DeleteIntegrationMutationVariables as bU, type DeleteProjectMutationVariables as bV, type DeleteReportMutationVariables as bW, type DeleteSavedAiProviderModelMutationVariables as bX, type DeleteTableMutationVariables as bY, type DeleteUserSkillFileMutationVariables as bZ, type DeleteUserSkillFolderMutationVariables as b_, type DocumentContentFragment as ba, type DocumentQueryVariables as bb, type Document_FileQueryVariables as bc, type Document_FormatQueryVariables as bd, type DocumentFormatFragment as be, type DocumentCatalogQueryVariables as bf, type DocumentCatalogFragment as bg, type DocumentCatalog_FormatQueryVariables as bh, type Document_TablesQueryVariables as bi, type Table_FromRelationsQueryVariables as bj, RelationType as bk, type RelationFragment as bl, type TableQueryVariables as bm, type Table_ToRelationsQueryVariables as bn, type TableConnectionFragment as bo, type CreateDocumentMutationVariables as bp, type CreateFeedbackMutationVariables as bq, type CreateFolderMutationVariables as br, type FolderFragment as bs, type CreateInsightMutationVariables as bt, type CreateIntegrationMutationVariables as bu, type CreateProjectMutationVariables as bv, type CreateReportMutationVariables as bw, type CreateTableMutationVariables as bx, type CreateUserSkillFileMutationVariables as by, type UserSkillFileModelFragment as bz, ChatMessageFromEnum as c, type UpdateUserSkillFileMutationVariables as c$, type DesktopDevicesQueryVariables as c0, type DevAccessTokenOutputFragment as c1, type DisconnectIntegrationMutationVariables as c2, type DismissPulseEventMutationVariables as c3, PulseEventPriority as c4, PulseEventKind as c5, type PulseEventFragment as c6, type PulseEvent_IntegrationQueryVariables as c7, IntegrationStatus as c8, type IntegrationFragment as c9, type ReinterpretSourcesOfuserMutationVariables as cA, type RelocateInsightMutationVariables as cB, type RemoveInsightFromReportMutationVariables as cC, type ResolvePulseEventMutationVariables as cD, type WorkspaceDeleteScheduleFragment as cE, type SendMessageMutationVariables as cF, type SetDatabasePrimaryKeyMutationVariables as cG, type SyncProjectDesktopBindingMutationVariables as cH, type UpdateAgentMutationVariables as cI, type UpdateArtifactNameMutationVariables as cJ, type UpdateChatMutationVariables as cK, type UpdateDatabaseMutationVariables as cL, type UpdateDocumentMutationVariables as cM, type UpdateFolderMutationVariables as cN, type UpdateInsightMutationVariables as cO, type UpdateInsightInReportMutationVariables as cP, type UpdateInsightThumbnailMutationVariables as cQ, type UpdateInterpMutationVariables as cR, InterpretationType as cS, AiResourceType as cT, type InterpretationFragment as cU, type UpdateLiveContextMutationVariables as cV, type UpdateProjectMutationVariables as cW, type UpdatePulseTriggerMutationVariables as cX, type PulseTriggerSettingModelFragment as cY, type UpdateReportMutationVariables as cZ, type UpdateTableMutationVariables as c_, type Integration_ProviderQueryVariables as ca, type IntegrationProviderFragment as cb, type IntegrationCatalogQueryVariables as cc, type IntegrationCatalogFragment as cd, type IntegrationCatalog_ProviderQueryVariables as ce, type DocumentCatalogConnectionFragment as cf, type DocumentCatalogsQueryVariables as cg, type DocumentConnectionFragment as ch, type Document_Format_CatalogQueryVariables as ci, type DocumentsQueryVariables as cj, type ChatStreamClient as ck, type DvinaSdkLifecycle as cl, type ExecuteChatImportMutationVariables as cm, type GenerateUploadUriMutationVariables as cn, type FileModelFragment as co, type MigrateLegacyCodeChatsMutationVariables as cp, type LegacyCodeMigratedChatSummaryOutputFragment as cq, type LegacyCodeMigrationOutputFragment as cr, type PreviewChatImportMutationVariables as cs, type ReanalyzeDocumentMutationVariables as ct, type RefineAgentInstructionMutationVariables as cu, type RefineSkillInstructionMutationVariables as cv, type RefreshDatabaseSchemaMutationVariables as cw, type RefreshInsightMutationVariables as cx, type RegisterDesktopDeviceMutationVariables as cy, type ReinterpretSourceMutationVariables as cz, type ChatMessageFragment as d, NotificationStatus as d$, type UpdateUserSkillFolderMutationVariables as d0, type UpsertAiProviderSettingMutationVariables as d1, type UpsertWorkspaceAiModelMutationVariables as d2, type ExportQueryVariables as d3, type ExportWithInsightIdQueryVariables as d4, type FeedItemQueryVariables as d5, FeedItemKind as d6, type FeedDocumentDataFragment as d7, type FeedArtifactDataFragment as d8, type FeedDatabaseDataFragment as d9, type ModelTokenUsageFragment as dA, type GetTokenUsageHistoryQueryVariables as dB, type GetTokenUsageStatusQueryVariables as dC, TokenUsageLimit as dD, ActiveWindowType as dE, type WindowDetailTypeFragment as dF, type UsageWindowsStatusTypeFragment as dG, type UsageStatusFragment as dH, type GetTokenUsageStatus_WindowsQueryVariables as dI, type GetUsageQueryVariables as dJ, type InsightsQueryVariables as dK, type IntegrationQueryVariables as dL, type IntegrationCatalogToolsQueryVariables as dM, type IntegrationCatalogsQueryVariables as dN, type IntegrationCatalogConnectionFragment as dO, type IntegrationsQueryVariables as dP, type IntegrationConnectionFragment as dQ, type InterpretationsQueryVariables as dR, type InterpretationConnectionFragment as dS, type LiveContextsQueryVariables as dT, type LiveContextConnectionFragment as dU, type LocalSandboxDeviceStatusesQueryVariables as dV, LocalSandboxDeviceConnectionState as dW, type LocalSandboxDeviceStatusModelFragment as dX, type NotificationQueryVariables as dY, NotificationCategory as dZ, NotificationPriority as d_, type FeedInsightDataFragment as da, type FeedIntegrationDataFragment as db, type FeedProjectDataFragment as dc, type FeedLiveContextDataFragment as dd, type FeedPulseDataFragment as de, type FeedItemFragment as df, type FeedItem_ActionQueryVariables as dg, type FeedSendMessageActionFragment as dh, type FeedItem_DataQueryVariables as di, type FeedItemsQueryVariables as dj, type FeedConnectionFragment as dk, type FileQueryVariables as dl, type FileMetaQueryVariables as dm, type FileUrlsQueryVariables as dn, type ResolvedFileUrlFragment as dp, type FindFitTierQueryVariables as dq, EntitlementTier as dr, type FolderQueryVariables as ds, type FoldersQueryVariables as dt, type FolderConnectionFragment as du, type GetCapabilityQueryVariables as dv, type GetDevAccessTokenQueryVariables as dw, type GetLimitQueryVariables as dx, type GetRemainingQueryVariables as dy, type GetTokenUsageByModelQueryVariables as dz, type ChatMessage_ArtifactsQueryVariables as e, type ResetWorkspaceMutationVariables as e$, type NotificationFragment as e0, type NotificationsQueryVariables as e1, type NotificationConnectionFragment as e2, type NotificationsByReferenceQueryVariables as e3, type PrivacyStatsQueryVariables as e4, type PrivacyStatsFragment as e5, type ProjectsQueryVariables as e6, type ProjectConnectionFragment as e7, type PulseAppSummaryQueryVariables as e8, type PulseAppSummaryModelFragment as e9, type PrivacyStatsOutputFragment as eA, type FinalContentEventOutputFragment as eB, type GetTokenUsageStatus_Windows_DayQueryVariables as eC, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as eD, type GetTokenUsageStatus_Windows_MonthQueryVariables as eE, type GetTokenUsageStatus_Windows_WeekQueryVariables as eF, type InferenceRequestAuditFragment as eG, type Insight_Chat_DesktopDeviceQueryVariables as eH, type Insight_Chat_ProjectQueryVariables as eI, type Integration_Provider_CatalogQueryVariables as eJ, type InterruptEventOutputFragment as eK, type InvocationFragment as eL, type LiveContext_Source_EvidencesQueryVariables as eM, type ManagedChatModelsQueryVariables as eN, type McpClientInformationFragment as eO, type McpCodeVerifierFragment as eP, type McpServerFragment as eQ, type McpTokensFragment as eR, type McpToolFragment as eS, type MessageEndEventOutputFragment as eT, type MessageStartEventOutputFragment as eU, type PrivacyStatsTotalsDeltaOutputFragment as eV, type PrivacyStatsEventOutputFragment as eW, type ProgressSummaryEventOutputFragment as eX, type Project_DesktopBinding_DeviceQueryVariables as eY, type PulseEvent_Integration_ProviderQueryVariables as eZ, type ReasoningEventOutputFragment as e_, type PulseEventQueryVariables as ea, type PulseEventsQueryVariables as eb, type PulseEventConnectionFragment as ec, type PulseTriggerSettingsQueryVariables as ed, type QueryQueryVariables as ee, type QueryWithInsightIdQueryVariables as ef, type QueryWithMessageIdQueryVariables as eg, type ReportsQueryVariables as eh, type SkillCatalogQueryVariables as ei, SkillCatalogSource as ej, type SkillCatalogItemFragment as ek, type TablesQueryVariables as el, type UserSkillFileQueryVariables as em, type UserSkillFilesQueryVariables as en, type UserSkillFolderQueryVariables as eo, type UserSkillFoldersQueryVariables as ep, type WorkspaceDeletionScheduleQueryVariables as eq, type McpAuthUpdatesSubscriptionVariables as er, McpAuthPhase as es, type McpAuthUpdateModelFragment as et, type TokenUsageUpdatesSubscriptionVariables as eu, type EvidenceFragment as ev, type FailedSyncEventIngestionFragment as ew, type StreamMessageContentOutputFragment as ex, type StreamMessageOutputFragment as ey, type UsageMetaOutputFragment as ez, ArtifactKind as f, SortOrder as f$, type ScheduleWorkspaceDeletionMutationVariables as f0, type TextBlockEventOutputFragment as f1, type TextDeltaEventOutputFragment as f2, type WidgetBlockStartEventOutputFragment as f3, type WidgetHtmlDeltaEventOutputFragment as f4, type WidgetBlockCompleteEventOutputFragment as f5, type WidgetBlockErrorEventOutputFragment as f6, type ToolStartEventOutputFragment as f7, type ToolInputDeltaEventOutputFragment as f8, type ToolResultArtifactOutputFragment as f9, DatabaseOrderByRelevanceFieldEnum as fA, DesktopDeviceOrderByRelevanceFieldEnum as fB, DocumentCatalogOrderByRelevanceFieldEnum as fC, DocumentOrderByRelevanceFieldEnum as fD, type DvinaSdkBaseOptions as fE, type DvinaSdkCallbackOptions as fF, type DvinaSdkLifecycleHint as fG, type DvinaSdkTokenOptions as fH, FeedItemOrderByRelevanceFieldEnum as fI, FeedbackOrderByRelevanceFieldEnum as fJ, FileOrderByRelevanceFieldEnum as fK, FileUrlVariant as fL, FolderOrderByRelevanceFieldEnum as fM, InsightOrderByRelevanceFieldEnum as fN, IntegrationCatalogOrderByRelevanceFieldEnum as fO, IntegrationOrderByRelevanceFieldEnum as fP, InterpretationOrderByRelevanceFieldEnum as fQ, LimitType as fR, LiveContextOrderByRelevanceFieldEnum as fS, NotificationOrderByRelevanceFieldEnum as fT, NullsOrder as fU, ProjectDesktopBindingOrderByRelevanceFieldEnum as fV, ProjectOrderByRelevanceFieldEnum as fW, PulseEventOrderByRelevanceFieldEnum as fX, QueryMode as fY, ReportOrderByRelevanceFieldEnum as fZ, SendMessageModel as f_, type ToolResultEventOutputFragment as fa, type StreamEventSchemaAnchorFragment as fb, type SyncEventFragment as fc, type SyncEventCursorFragment as fd, type Table_Database_EngineQueryVariables as fe, type Table_Document_ContentsQueryVariables as ff, type Table_Document_FileQueryVariables as fg, type Table_Document_FormatQueryVariables as fh, type TokenUsageFragment as fi, type UserSkillFileFragment as fj, type UserSkillFolderFragment as fk, type WorkspaceAiModelQueryVariables as fl, type WorkspaceAiModelSettingFragment as fm, type ActiveChatStreamClient as fn, type ActiveChatStreamListener as fo, type ActiveChatStreamListenerHandlers as fp, AgentOrderByRelevanceFieldEnum as fq, ArtifactOrderByRelevanceFieldEnum as fr, CapabilityType as fs, ChatMessageOrderByRelevanceFieldEnum as ft, ChatOrderByRelevanceFieldEnum as fu, type ChatStreamClientOptions as fv, type ChatStreamEvent as fw, type ChatStreamListener as fx, type ChatStreamListenerHandlers as fy, DatabaseCatalogOrderByRelevanceFieldEnum as fz, type ArtifactFragment as g, TableOrderByRelevanceFieldEnum as g0, UsageHistoryGranularity as g1, createChatStreamClient as g2, createDvinaClient as g3, 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 };
7929
+ export { type Insight_ReportsQueryVariables 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 ContentBlockAgentOutputFragment as K, type ContentBlockFragment as L, type ChatMessage_FeedbackQueryVariables as M, FeedbackType as N, type FeedbackFragment as O, ProjectDesktopContextKind as P, type Chat_InsightQueryVariables as Q, ReasoningEffort as R, type Insight_ChatQueryVariables as S, type Insight_ReportMembersQueryVariables as T, ReportMemberSize as U, Presentation as V, type ReportMemberFragment as W, type ReportQueryVariables as X, type ReportFragment as Y, type Report_InsightsQueryVariables as Z, type InsightFragment as _, ActionType as a, type Database_EngineQueryVariables as a$, type ReportConnectionFragment as a0, type Insight_ThumbnailFileQueryVariables as a1, type InsightConnectionFragment as a2, type Report_LayoutQueryVariables as a3, type InsightQueryVariables as a4, type Chat_MessagesQueryVariables as a5, type ChatMessageConnectionFragment as a6, type Chat_ProjectQueryVariables as a7, type DesktopDeviceQueryVariables as a8, type ArtifactConnectionFragment as a9, type ChatImportExecuteOutputFragment as aA, ChatSourceImportFidelityEnum as aB, ChatSourceImportModeEnum as aC, type ChatImportPreviewOutputFragment as aD, type ChatMessage_Chat_DesktopDeviceQueryVariables as aE, type ChatMessage_Chat_InsightQueryVariables as aF, type ChatMessage_Chat_ProjectQueryVariables as aG, type ChatMessagesQueryVariables as aH, type ChatQueryVariables as aI, type ChatTitleEventOutputFragment as aJ, type Chat_DesktopDevice_DesktopBindingsQueryVariables as aK, type Chat_Insight_ReportMembersQueryVariables as aL, type Chat_Insight_ThumbnailFileQueryVariables as aM, type Chat_Project_DesktopBindingQueryVariables as aN, type ChatsQueryVariables as aO, type CloseActiveTabsMutationVariables as aP, type ConnectIntegrationMutationVariables as aQ, type CreateIntegrationOutputFragment as aR, type ConsumePulseEventsMutationVariables as aS, type ContentMaskFragment as aT, type ContextUsageEventOutputFragment as aU, type ContinueImportedChatMutationVariables as aV, type ContinueInterpretationMutationVariables as aW, type CreateAgentMutationVariables as aX, type CreateChatMutationVariables as aY, type CreateDatabaseMutationVariables as aZ, type DatabaseFragment as a_, type AddInsightToReportMutationVariables as aa, type AgentQueryVariables as ab, type AgentsQueryVariables as ac, type AiProviderSettingQueryVariables as ad, type UserAiProviderSettingFragment as ae, type ArtifactQueryVariables as af, type Artifact_Chat_DesktopDeviceQueryVariables as ag, type Artifact_Chat_InsightQueryVariables as ah, type Artifact_Chat_ProjectQueryVariables as ai, type Artifact_Message_ChatQueryVariables as aj, type Artifact_Message_ContentsQueryVariables as ak, type Artifact_Message_FeedbackQueryVariables as al, type ArtifactsQueryVariables as am, type AudioEventOutputFragment as an, type CancelOauthFlowMutationVariables as ao, type CancelWorkspaceDeletionMutationVariables as ap, type CandidateFragment as aq, type LiveContextQueryVariables as ar, LiveContextStatus as as, type LiveContextFragment as at, type LiveContext_ItemsQueryVariables as au, FeedActionType as av, type FeedItemGeneratedFragment as aw, type LiveContext_SourceQueryVariables as ax, type CandidateEvidenceFragment as ay, type ImportedChatSummaryOutputFragment as az, type ActionFragment as b, type DeleteUserSkillFolderMutationVariables as b$, type DatabaseEngineFragment as b0, type DatabaseCatalogQueryVariables as b1, type DatabaseCatalogFragment as b2, type DatabaseCatalog_EngineQueryVariables as b3, type Database_TablesQueryVariables as b4, TableStatus as b5, type TableFragment as b6, type Table_DatabaseQueryVariables as b7, type Table_DocumentQueryVariables as b8, type DocumentFragment as b9, type UserSkillFileModelFragment as bA, type CreateUserSkillFolderMutationVariables as bB, type UserSkillFolderModelFragment as bC, type CubeModelFragment as bD, type DatabaseCatalogConnectionFragment as bE, type DatabaseCatalogsQueryVariables as bF, type DatabaseConnectionFragment as bG, type DatabaseQueryVariables as bH, type DatabaseSchemaQueryVariables as bI, type Database_Engine_CatalogQueryVariables as bJ, type DatabasesQueryVariables as bK, type DeepAnalysisUsageFragment as bL, type DeleteAgentMutationVariables as bM, type DeleteAiProviderSettingMutationVariables as bN, type DeleteArtifactMutationVariables as bO, type DeleteChatMutationVariables as bP, type DeleteDatabaseMutationVariables as bQ, type DeleteDocumentMutationVariables as bR, type DeleteFolderMutationVariables as bS, type DeleteInsightMutationVariables as bT, type DeleteInsightsMutationVariables as bU, type DeleteIntegrationMutationVariables as bV, type DeleteProjectMutationVariables as bW, type DeleteReportMutationVariables as bX, type DeleteSavedAiProviderModelMutationVariables as bY, type DeleteTableMutationVariables as bZ, type DeleteUserSkillFileMutationVariables as b_, type Document_ContentsQueryVariables as ba, type DocumentContentFragment as bb, type DocumentQueryVariables as bc, type Document_FileQueryVariables as bd, type Document_FormatQueryVariables as be, type DocumentFormatFragment as bf, type DocumentCatalogQueryVariables as bg, type DocumentCatalogFragment as bh, type DocumentCatalog_FormatQueryVariables as bi, type Document_TablesQueryVariables as bj, type Table_FromRelationsQueryVariables as bk, RelationType as bl, type RelationFragment as bm, type TableQueryVariables as bn, type Table_ToRelationsQueryVariables as bo, type TableConnectionFragment as bp, type CreateDocumentMutationVariables as bq, type CreateFeedbackMutationVariables as br, type CreateFolderMutationVariables as bs, type FolderFragment as bt, type CreateInsightMutationVariables as bu, type CreateIntegrationMutationVariables as bv, type CreateProjectMutationVariables as bw, type CreateReportMutationVariables as bx, type CreateTableMutationVariables as by, type CreateUserSkillFileMutationVariables as bz, ChatMessageFromEnum as c, type PulseTriggerSettingModelFragment as c$, type DesktopDeviceConnectionFragment as c0, type DesktopDevicesQueryVariables as c1, type DevAccessTokenOutputFragment as c2, type DisconnectIntegrationMutationVariables as c3, type DismissPulseEventMutationVariables as c4, PulseEventPriority as c5, PulseEventKind as c6, type PulseEventFragment as c7, type PulseEvent_IntegrationQueryVariables as c8, IntegrationStatus as c9, type RefreshInsightMutationVariables as cA, type RegisterDesktopDeviceMutationVariables as cB, type ReinterpretSourceMutationVariables as cC, type ReinterpretSourcesOfuserMutationVariables as cD, type RelocateInsightMutationVariables as cE, type RemoveInsightFromReportMutationVariables as cF, type ResolvePulseEventMutationVariables as cG, type WorkspaceDeleteScheduleFragment as cH, type SendMessageMutationVariables as cI, type SetDatabasePrimaryKeyMutationVariables as cJ, type SyncProjectDesktopBindingMutationVariables as cK, type UpdateAgentMutationVariables as cL, type UpdateArtifactNameMutationVariables as cM, type UpdateChatMutationVariables as cN, type UpdateDatabaseMutationVariables as cO, type UpdateDocumentMutationVariables as cP, type UpdateFolderMutationVariables as cQ, type UpdateInsightMutationVariables as cR, type UpdateInsightInReportMutationVariables as cS, type UpdateInsightThumbnailMutationVariables as cT, type UpdateInterpMutationVariables as cU, InterpretationType as cV, AiResourceType as cW, type InterpretationFragment as cX, type UpdateLiveContextMutationVariables as cY, type UpdateProjectMutationVariables as cZ, type UpdatePulseTriggerMutationVariables as c_, type IntegrationFragment as ca, type Integration_ProviderQueryVariables as cb, type IntegrationProviderFragment as cc, type IntegrationCatalogQueryVariables as cd, type IntegrationCatalogFragment as ce, type IntegrationCatalog_ProviderQueryVariables as cf, type DocumentCatalogConnectionFragment as cg, type DocumentCatalogsQueryVariables as ch, type DocumentConnectionFragment as ci, type Document_Format_CatalogQueryVariables as cj, type DocumentsQueryVariables as ck, type ChatStreamClient as cl, type DvinaSdkLifecycle as cm, type DvinaEvents as cn, type ExecuteChatImportMutationVariables as co, type GenerateUploadUriMutationVariables as cp, type FileModelFragment as cq, type MigrateLegacyCodeChatsMutationVariables as cr, type LegacyCodeMigratedChatSummaryOutputFragment as cs, type LegacyCodeMigrationOutputFragment as ct, type OpenActiveTabMutationVariables as cu, type PreviewChatImportMutationVariables as cv, type ReanalyzeDocumentMutationVariables as cw, type RefineAgentInstructionMutationVariables as cx, type RefineSkillInstructionMutationVariables as cy, type RefreshDatabaseSchemaMutationVariables as cz, type ChatMessageFragment as d, type NotificationQueryVariables as d$, type UpdateReportMutationVariables as d0, type UpdateTableMutationVariables as d1, type UpdateUserSkillFileMutationVariables as d2, type UpdateUserSkillFolderMutationVariables as d3, type UpsertAiProviderSettingMutationVariables as d4, type UpsertWorkspaceAiModelMutationVariables as d5, type ExportQueryVariables as d6, type ExportWithInsightIdQueryVariables as d7, type FeedItemQueryVariables as d8, FeedItemKind as d9, type GetLimitQueryVariables as dA, type GetRemainingQueryVariables as dB, type GetTokenUsageByModelQueryVariables as dC, type ModelTokenUsageFragment as dD, type GetTokenUsageHistoryQueryVariables as dE, type GetTokenUsageStatusQueryVariables as dF, TokenUsageLimit as dG, ActiveWindowType as dH, type WindowDetailTypeFragment as dI, type UsageWindowsStatusTypeFragment as dJ, type UsageStatusFragment as dK, type GetTokenUsageStatus_WindowsQueryVariables as dL, type GetUsageQueryVariables as dM, type InsightsQueryVariables as dN, type IntegrationQueryVariables as dO, type IntegrationCatalogToolsQueryVariables as dP, type IntegrationCatalogsQueryVariables as dQ, type IntegrationCatalogConnectionFragment as dR, type IntegrationsQueryVariables as dS, type IntegrationConnectionFragment as dT, type InterpretationsQueryVariables as dU, type InterpretationConnectionFragment as dV, type LiveContextsQueryVariables as dW, type LiveContextConnectionFragment as dX, type LocalSandboxDeviceStatusesQueryVariables as dY, LocalSandboxDeviceConnectionState as dZ, type LocalSandboxDeviceStatusModelFragment as d_, type FeedDocumentDataFragment as da, type FeedArtifactDataFragment as db, type FeedDatabaseDataFragment as dc, type FeedInsightDataFragment as dd, type FeedIntegrationDataFragment as de, type FeedProjectDataFragment as df, type FeedLiveContextDataFragment as dg, type FeedPulseDataFragment as dh, type FeedItemFragment as di, type FeedItem_ActionQueryVariables as dj, type FeedSendMessageActionFragment as dk, type FeedItem_DataQueryVariables as dl, type FeedItemsQueryVariables as dm, type FeedConnectionFragment as dn, type FileQueryVariables as dp, type FileMetaQueryVariables as dq, type FileUrlsQueryVariables as dr, type ResolvedFileUrlFragment as ds, type FindFitTierQueryVariables as dt, EntitlementTier as du, type FolderQueryVariables as dv, type FoldersQueryVariables as dw, type FolderConnectionFragment as dx, type GetCapabilityQueryVariables as dy, type GetDevAccessTokenQueryVariables as dz, type ChatMessage_ArtifactsQueryVariables as e, type Project_DesktopBinding_DeviceQueryVariables as e$, NotificationCategory as e0, NotificationPriority as e1, NotificationStatus as e2, type NotificationFragment as e3, type NotificationsQueryVariables as e4, type NotificationConnectionFragment as e5, type NotificationsByReferenceQueryVariables as e6, type PrivacyStatsQueryVariables as e7, type PrivacyStatsFragment as e8, type ProjectsQueryVariables as e9, type StreamMessageContentOutputFragment as eA, type StreamMessageOutputFragment as eB, type UsageMetaOutputFragment as eC, type PrivacyStatsOutputFragment as eD, type FinalContentEventOutputFragment as eE, type GetTokenUsageStatus_Windows_DayQueryVariables as eF, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as eG, type GetTokenUsageStatus_Windows_MonthQueryVariables as eH, type GetTokenUsageStatus_Windows_WeekQueryVariables as eI, type InferenceRequestAuditFragment as eJ, type Insight_Chat_DesktopDeviceQueryVariables as eK, type Insight_Chat_ProjectQueryVariables as eL, type Integration_Provider_CatalogQueryVariables as eM, type InterruptEventOutputFragment as eN, type InvocationFragment as eO, type LiveContext_Source_EvidencesQueryVariables as eP, type ManagedChatModelsQueryVariables as eQ, type McpClientInformationFragment as eR, type McpCodeVerifierFragment as eS, type McpServerFragment as eT, type McpTokensFragment as eU, type McpToolFragment as eV, type MessageEndEventOutputFragment as eW, type MessageStartEventOutputFragment as eX, type PrivacyStatsTotalsDeltaOutputFragment as eY, type PrivacyStatsEventOutputFragment as eZ, type ProgressSummaryEventOutputFragment as e_, type ProjectConnectionFragment as ea, type PulseAppSummaryQueryVariables as eb, type PulseAppSummaryModelFragment as ec, type PulseEventQueryVariables as ed, type PulseEventsQueryVariables as ee, type PulseEventConnectionFragment as ef, type PulseTriggerSettingsQueryVariables as eg, type QueryQueryVariables as eh, type QueryWithInsightIdQueryVariables as ei, type QueryWithMessageIdQueryVariables as ej, type ReportsQueryVariables as ek, type SkillCatalogQueryVariables as el, SkillCatalogSource as em, type SkillCatalogItemFragment as en, type TablesQueryVariables as eo, type UserSkillFileQueryVariables as ep, type UserSkillFilesQueryVariables as eq, type UserSkillFolderQueryVariables as er, type UserSkillFoldersQueryVariables as es, type WorkspaceDeletionScheduleQueryVariables as et, type McpAuthUpdatesSubscriptionVariables as eu, McpAuthPhase as ev, type McpAuthUpdateModelFragment as ew, type TokenUsageUpdatesSubscriptionVariables as ex, type EvidenceFragment as ey, type FailedSyncEventIngestionFragment as ez, ArtifactKind as f, LiveContextOrderByRelevanceFieldEnum as f$, type PulseEvent_Integration_ProviderQueryVariables as f0, type ReasoningEventOutputFragment as f1, type ResetWorkspaceMutationVariables as f2, type ScheduleWorkspaceDeletionMutationVariables as f3, type TextBlockEventOutputFragment as f4, type TextDeltaEventOutputFragment as f5, type WidgetBlockStartEventOutputFragment as f6, type WidgetHtmlDeltaEventOutputFragment as f7, type WidgetBlockCompleteEventOutputFragment as f8, type WidgetBlockErrorEventOutputFragment as f9, type ChatStreamEvent as fA, type ChatStreamListener as fB, type ChatStreamListenerHandlers as fC, DatabaseCatalogOrderByRelevanceFieldEnum as fD, DatabaseOrderByRelevanceFieldEnum as fE, DesktopDeviceOrderByRelevanceFieldEnum as fF, type DevicePresenceEvent as fG, type DevicePresenceSnapshot as fH, DocumentCatalogOrderByRelevanceFieldEnum as fI, DocumentOrderByRelevanceFieldEnum as fJ, type DvinaEventRef as fK, type DvinaEventTopic as fL, type DvinaRealtimeEvent as fM, type DvinaSdkBaseOptions as fN, type DvinaSdkCallbackOptions as fO, type DvinaSdkLifecycleHint as fP, type DvinaSdkTokenOptions as fQ, FeedItemOrderByRelevanceFieldEnum as fR, FeedbackOrderByRelevanceFieldEnum as fS, FileOrderByRelevanceFieldEnum as fT, FileUrlVariant as fU, FolderOrderByRelevanceFieldEnum as fV, InsightOrderByRelevanceFieldEnum as fW, IntegrationCatalogOrderByRelevanceFieldEnum as fX, IntegrationOrderByRelevanceFieldEnum as fY, InterpretationOrderByRelevanceFieldEnum as fZ, LimitType as f_, type ToolStartEventOutputFragment as fa, type ToolInputDeltaEventOutputFragment as fb, type ToolResultArtifactOutputFragment as fc, type ToolResultEventOutputFragment as fd, type StreamEventSchemaAnchorFragment as fe, type SyncEventFragment as ff, type SyncEventCursorFragment as fg, type Table_Database_EngineQueryVariables as fh, type Table_Document_ContentsQueryVariables as fi, type Table_Document_FileQueryVariables as fj, type Table_Document_FormatQueryVariables as fk, type TokenUsageFragment as fl, type UserSkillFileFragment as fm, type UserSkillFolderFragment as fn, type WorkspaceAiModelQueryVariables as fo, type WorkspaceAiModelSettingFragment as fp, type ActiveChatsEvent as fq, type ActiveChatsSnapshot as fr, type ActiveTabsEvent as fs, type ActiveTabsSnapshot as ft, AgentOrderByRelevanceFieldEnum as fu, ArtifactOrderByRelevanceFieldEnum as fv, CapabilityType as fw, ChatMessageOrderByRelevanceFieldEnum as fx, ChatOrderByRelevanceFieldEnum as fy, type ChatStreamClientOptions as fz, type ArtifactFragment as g, NotificationOrderByRelevanceFieldEnum as g0, NullsOrder as g1, ProjectDesktopBindingOrderByRelevanceFieldEnum as g2, ProjectOrderByRelevanceFieldEnum as g3, PulseEventOrderByRelevanceFieldEnum as g4, QueryMode as g5, type RealtimeTopicData as g6, ReportOrderByRelevanceFieldEnum as g7, SendMessageModel as g8, SortOrder as g9, TableOrderByRelevanceFieldEnum as ga, UsageHistoryGranularity as gb, createChatStreamClient as gc, createDvinaClient as gd, createDvinaEvents as ge, 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 };
@@ -1,6 +1,6 @@
1
1
  import { D as DvinaError } from './error-CsVoUTY8.cjs';
2
- import { a as DvinaRequest, b as DvinaSubscribe } from './types-k6gSbuaF.cjs';
3
- import { S as SyncEngine } from './sync-engine-q1n4rVzP.cjs';
2
+ import { D as DvinaAsyncRef, b as DvinaRequest, c as DvinaSubscribe } from './types-Chg8ASmf.cjs';
3
+ import { R as RealtimeEventTopic, S as SyncEngine } from './sync-engine-F0397ofh.cjs';
4
4
  import { I as InferenceClient } from './client-Bb2gD6Iz.cjs';
5
5
  import { BillingClient } from './billing/index.cjs';
6
6
 
@@ -6863,6 +6863,9 @@ type CancelOauthFlowMutationVariables = Exact<{
6863
6863
  type CancelWorkspaceDeletionMutationVariables = Exact<{
6864
6864
  [key: string]: never;
6865
6865
  }>;
6866
+ type CloseActiveTabsMutationVariables = Exact<{
6867
+ chatIds: Array<Scalars['ID']> | Scalars['ID'];
6868
+ }>;
6866
6869
  type ConnectIntegrationMutationVariables = Exact<{
6867
6870
  providerKey: Scalars['String'];
6868
6871
  }>;
@@ -6988,6 +6991,9 @@ type GenerateUploadUriMutationVariables = Exact<{
6988
6991
  type MigrateLegacyCodeChatsMutationVariables = Exact<{
6989
6992
  input: LegacyCodeMigrationInput;
6990
6993
  }>;
6994
+ type OpenActiveTabMutationVariables = Exact<{
6995
+ chatId: Scalars['ID'];
6996
+ }>;
6991
6997
  type PreviewChatImportMutationVariables = Exact<{
6992
6998
  input: ChatImportPreviewInput;
6993
6999
  }>;
@@ -7774,18 +7780,7 @@ interface ChatStreamListener {
7774
7780
  readonly chatId: string;
7775
7781
  stop(): void;
7776
7782
  }
7777
- interface ActiveChatStreamListenerHandlers {
7778
- error?: (error: unknown) => void;
7779
- next: (chatIds: readonly string[]) => void;
7780
- }
7781
- interface ActiveChatStreamListener {
7782
- stop(): void;
7783
- }
7784
- interface ActiveChatStreamClient {
7785
- listen(handlers: ActiveChatStreamListenerHandlers): ActiveChatStreamListener;
7786
- }
7787
7783
  interface ChatStreamClient {
7788
- active: ActiveChatStreamClient;
7789
7784
  listen(chatId: string, handlers: ChatStreamListenerHandlers): ChatStreamListener;
7790
7785
  stream(chatId: string): AsyncIterable<ChatStreamEvent>;
7791
7786
  reconnectAll(): void;
@@ -7793,6 +7788,64 @@ interface ChatStreamClient {
7793
7788
  }
7794
7789
  declare function createChatStreamClient(options: ChatStreamClientOptions): ChatStreamClient;
7795
7790
 
7791
+ interface ActiveChatsSnapshot {
7792
+ chatIds: string[];
7793
+ }
7794
+ interface ActiveTabsSnapshot {
7795
+ tabs: Array<{
7796
+ createdAt: string;
7797
+ id: string;
7798
+ name: string;
7799
+ projectId: string | null;
7800
+ sourceProvider: string | null;
7801
+ updatedAt: string;
7802
+ }>;
7803
+ }
7804
+ interface DevicePresenceSnapshot {
7805
+ devices: Array<{
7806
+ deviceId: string;
7807
+ lastSeenAt: string | null;
7808
+ state: 'connected' | 'disconnected' | 'unavailable';
7809
+ }>;
7810
+ }
7811
+ interface RealtimeTopicData {
7812
+ 'active-chats': ActiveChatsSnapshot;
7813
+ 'active-tabs': ActiveTabsSnapshot;
7814
+ 'desktop-device-presence': DevicePresenceSnapshot;
7815
+ }
7816
+ /**
7817
+ * Realtime topic event envelope. `type` is intentionally open-ended so new
7818
+ * server event kinds can be introduced without changing the transport API.
7819
+ */
7820
+ interface DvinaRealtimeEvent<TData, TType extends string = string> {
7821
+ type: TType;
7822
+ data: TData;
7823
+ }
7824
+ type ActiveChatsEvent = DvinaRealtimeEvent<ActiveChatsSnapshot>;
7825
+ type ActiveTabsEvent = DvinaRealtimeEvent<ActiveTabsSnapshot>;
7826
+ type DevicePresenceEvent = DvinaRealtimeEvent<DevicePresenceSnapshot>;
7827
+ type DvinaEventRef<T> = DvinaAsyncRef<T>;
7828
+ interface DvinaEventTopic<T> {
7829
+ watch(): DvinaEventRef<T>;
7830
+ }
7831
+ interface DvinaEvents {
7832
+ activeChats(): DvinaEventTopic<ActiveChatsEvent>;
7833
+ activeTabs(): DvinaEventTopic<ActiveTabsEvent>;
7834
+ devicePresence(): DvinaEventTopic<DevicePresenceEvent>;
7835
+ }
7836
+ interface RealtimeEventController {
7837
+ subscribe(topic: RealtimeEventTopic): void;
7838
+ unsubscribe(topic: RealtimeEventTopic): void;
7839
+ }
7840
+ interface RealtimeTransportEvent {
7841
+ topic: RealtimeEventTopic;
7842
+ type: string;
7843
+ data: unknown;
7844
+ }
7845
+ declare function createDvinaEvents(controller: RealtimeEventController): DvinaEvents & {
7846
+ dispatch(event: RealtimeTransportEvent): void;
7847
+ };
7848
+
7796
7849
  type DvinaSdkLifecycleHint = 'network-restored' | 'app-resumed' | 'became-active';
7797
7850
  interface DvinaSdkLifecycle {
7798
7851
  hint(reason: DvinaSdkLifecycleHint): void;
@@ -7862,6 +7915,8 @@ interface DvinaClientResult {
7862
7915
  billing: BillingClient;
7863
7916
  /** Semantic lifecycle bridge for connectivity and foreground recovery hints. */
7864
7917
  lifecycle: DvinaSdkLifecycle;
7918
+ /** User-scoped realtime event topics delivered through the sync SSE connection. */
7919
+ events: DvinaEvents;
7865
7920
  /** The resolved base URL (e.g. 'api.dvina.ai'). Used by models to resolve relative asset paths. */
7866
7921
  baseUrl: string;
7867
7922
  }
@@ -7871,4 +7926,4 @@ interface DvinaClientResult {
7871
7926
  */
7872
7927
  declare function createDvinaClient(options: DvinaSdkOptions): DvinaClientResult;
7873
7928
 
7874
- export { type Insight_ReportsQueryVariables 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 ContentBlockAgentOutputFragment as K, type ContentBlockFragment as L, type ChatMessage_FeedbackQueryVariables as M, FeedbackType as N, type FeedbackFragment as O, ProjectDesktopContextKind as P, type Chat_InsightQueryVariables as Q, ReasoningEffort as R, type Insight_ChatQueryVariables as S, type Insight_ReportMembersQueryVariables as T, ReportMemberSize as U, Presentation as V, type ReportMemberFragment as W, type ReportQueryVariables as X, type ReportFragment as Y, type Report_InsightsQueryVariables as Z, type InsightFragment as _, ActionType as a, type DatabaseEngineFragment as a$, type ReportConnectionFragment as a0, type Insight_ThumbnailFileQueryVariables as a1, type InsightConnectionFragment as a2, type Report_LayoutQueryVariables as a3, type InsightQueryVariables as a4, type Chat_MessagesQueryVariables as a5, type ChatMessageConnectionFragment as a6, type Chat_ProjectQueryVariables as a7, type DesktopDeviceQueryVariables as a8, type ArtifactConnectionFragment as a9, type ChatImportExecuteOutputFragment as aA, ChatSourceImportFidelityEnum as aB, ChatSourceImportModeEnum as aC, type ChatImportPreviewOutputFragment as aD, type ChatMessage_Chat_DesktopDeviceQueryVariables as aE, type ChatMessage_Chat_InsightQueryVariables as aF, type ChatMessage_Chat_ProjectQueryVariables as aG, type ChatMessagesQueryVariables as aH, type ChatQueryVariables as aI, type ChatTitleEventOutputFragment as aJ, type Chat_DesktopDevice_DesktopBindingsQueryVariables as aK, type Chat_Insight_ReportMembersQueryVariables as aL, type Chat_Insight_ThumbnailFileQueryVariables as aM, type Chat_Project_DesktopBindingQueryVariables as aN, type ChatsQueryVariables as aO, type ConnectIntegrationMutationVariables as aP, type CreateIntegrationOutputFragment as aQ, type ConsumePulseEventsMutationVariables as aR, type ContentMaskFragment as aS, type ContextUsageEventOutputFragment as aT, type ContinueImportedChatMutationVariables as aU, type ContinueInterpretationMutationVariables as aV, type CreateAgentMutationVariables as aW, type CreateChatMutationVariables as aX, type CreateDatabaseMutationVariables as aY, type DatabaseFragment as aZ, type Database_EngineQueryVariables as a_, type AddInsightToReportMutationVariables as aa, type AgentQueryVariables as ab, type AgentsQueryVariables as ac, type AiProviderSettingQueryVariables as ad, type UserAiProviderSettingFragment as ae, type ArtifactQueryVariables as af, type Artifact_Chat_DesktopDeviceQueryVariables as ag, type Artifact_Chat_InsightQueryVariables as ah, type Artifact_Chat_ProjectQueryVariables as ai, type Artifact_Message_ChatQueryVariables as aj, type Artifact_Message_ContentsQueryVariables as ak, type Artifact_Message_FeedbackQueryVariables as al, type ArtifactsQueryVariables as am, type AudioEventOutputFragment as an, type CancelOauthFlowMutationVariables as ao, type CancelWorkspaceDeletionMutationVariables as ap, type CandidateFragment as aq, type LiveContextQueryVariables as ar, LiveContextStatus as as, type LiveContextFragment as at, type LiveContext_ItemsQueryVariables as au, FeedActionType as av, type FeedItemGeneratedFragment as aw, type LiveContext_SourceQueryVariables as ax, type CandidateEvidenceFragment as ay, type ImportedChatSummaryOutputFragment as az, type ActionFragment as b, type DesktopDeviceConnectionFragment as b$, type DatabaseCatalogQueryVariables as b0, type DatabaseCatalogFragment as b1, type DatabaseCatalog_EngineQueryVariables as b2, type Database_TablesQueryVariables as b3, TableStatus as b4, type TableFragment as b5, type Table_DatabaseQueryVariables as b6, type Table_DocumentQueryVariables as b7, type DocumentFragment as b8, type Document_ContentsQueryVariables as b9, type CreateUserSkillFolderMutationVariables as bA, type UserSkillFolderModelFragment as bB, type CubeModelFragment as bC, type DatabaseCatalogConnectionFragment as bD, type DatabaseCatalogsQueryVariables as bE, type DatabaseConnectionFragment as bF, type DatabaseQueryVariables as bG, type DatabaseSchemaQueryVariables as bH, type Database_Engine_CatalogQueryVariables as bI, type DatabasesQueryVariables as bJ, type DeepAnalysisUsageFragment as bK, type DeleteAgentMutationVariables as bL, type DeleteAiProviderSettingMutationVariables as bM, type DeleteArtifactMutationVariables as bN, type DeleteChatMutationVariables as bO, type DeleteDatabaseMutationVariables as bP, type DeleteDocumentMutationVariables as bQ, type DeleteFolderMutationVariables as bR, type DeleteInsightMutationVariables as bS, type DeleteInsightsMutationVariables as bT, type DeleteIntegrationMutationVariables as bU, type DeleteProjectMutationVariables as bV, type DeleteReportMutationVariables as bW, type DeleteSavedAiProviderModelMutationVariables as bX, type DeleteTableMutationVariables as bY, type DeleteUserSkillFileMutationVariables as bZ, type DeleteUserSkillFolderMutationVariables as b_, type DocumentContentFragment as ba, type DocumentQueryVariables as bb, type Document_FileQueryVariables as bc, type Document_FormatQueryVariables as bd, type DocumentFormatFragment as be, type DocumentCatalogQueryVariables as bf, type DocumentCatalogFragment as bg, type DocumentCatalog_FormatQueryVariables as bh, type Document_TablesQueryVariables as bi, type Table_FromRelationsQueryVariables as bj, RelationType as bk, type RelationFragment as bl, type TableQueryVariables as bm, type Table_ToRelationsQueryVariables as bn, type TableConnectionFragment as bo, type CreateDocumentMutationVariables as bp, type CreateFeedbackMutationVariables as bq, type CreateFolderMutationVariables as br, type FolderFragment as bs, type CreateInsightMutationVariables as bt, type CreateIntegrationMutationVariables as bu, type CreateProjectMutationVariables as bv, type CreateReportMutationVariables as bw, type CreateTableMutationVariables as bx, type CreateUserSkillFileMutationVariables as by, type UserSkillFileModelFragment as bz, ChatMessageFromEnum as c, type UpdateUserSkillFileMutationVariables as c$, type DesktopDevicesQueryVariables as c0, type DevAccessTokenOutputFragment as c1, type DisconnectIntegrationMutationVariables as c2, type DismissPulseEventMutationVariables as c3, PulseEventPriority as c4, PulseEventKind as c5, type PulseEventFragment as c6, type PulseEvent_IntegrationQueryVariables as c7, IntegrationStatus as c8, type IntegrationFragment as c9, type ReinterpretSourcesOfuserMutationVariables as cA, type RelocateInsightMutationVariables as cB, type RemoveInsightFromReportMutationVariables as cC, type ResolvePulseEventMutationVariables as cD, type WorkspaceDeleteScheduleFragment as cE, type SendMessageMutationVariables as cF, type SetDatabasePrimaryKeyMutationVariables as cG, type SyncProjectDesktopBindingMutationVariables as cH, type UpdateAgentMutationVariables as cI, type UpdateArtifactNameMutationVariables as cJ, type UpdateChatMutationVariables as cK, type UpdateDatabaseMutationVariables as cL, type UpdateDocumentMutationVariables as cM, type UpdateFolderMutationVariables as cN, type UpdateInsightMutationVariables as cO, type UpdateInsightInReportMutationVariables as cP, type UpdateInsightThumbnailMutationVariables as cQ, type UpdateInterpMutationVariables as cR, InterpretationType as cS, AiResourceType as cT, type InterpretationFragment as cU, type UpdateLiveContextMutationVariables as cV, type UpdateProjectMutationVariables as cW, type UpdatePulseTriggerMutationVariables as cX, type PulseTriggerSettingModelFragment as cY, type UpdateReportMutationVariables as cZ, type UpdateTableMutationVariables as c_, type Integration_ProviderQueryVariables as ca, type IntegrationProviderFragment as cb, type IntegrationCatalogQueryVariables as cc, type IntegrationCatalogFragment as cd, type IntegrationCatalog_ProviderQueryVariables as ce, type DocumentCatalogConnectionFragment as cf, type DocumentCatalogsQueryVariables as cg, type DocumentConnectionFragment as ch, type Document_Format_CatalogQueryVariables as ci, type DocumentsQueryVariables as cj, type ChatStreamClient as ck, type DvinaSdkLifecycle as cl, type ExecuteChatImportMutationVariables as cm, type GenerateUploadUriMutationVariables as cn, type FileModelFragment as co, type MigrateLegacyCodeChatsMutationVariables as cp, type LegacyCodeMigratedChatSummaryOutputFragment as cq, type LegacyCodeMigrationOutputFragment as cr, type PreviewChatImportMutationVariables as cs, type ReanalyzeDocumentMutationVariables as ct, type RefineAgentInstructionMutationVariables as cu, type RefineSkillInstructionMutationVariables as cv, type RefreshDatabaseSchemaMutationVariables as cw, type RefreshInsightMutationVariables as cx, type RegisterDesktopDeviceMutationVariables as cy, type ReinterpretSourceMutationVariables as cz, type ChatMessageFragment as d, NotificationStatus as d$, type UpdateUserSkillFolderMutationVariables as d0, type UpsertAiProviderSettingMutationVariables as d1, type UpsertWorkspaceAiModelMutationVariables as d2, type ExportQueryVariables as d3, type ExportWithInsightIdQueryVariables as d4, type FeedItemQueryVariables as d5, FeedItemKind as d6, type FeedDocumentDataFragment as d7, type FeedArtifactDataFragment as d8, type FeedDatabaseDataFragment as d9, type ModelTokenUsageFragment as dA, type GetTokenUsageHistoryQueryVariables as dB, type GetTokenUsageStatusQueryVariables as dC, TokenUsageLimit as dD, ActiveWindowType as dE, type WindowDetailTypeFragment as dF, type UsageWindowsStatusTypeFragment as dG, type UsageStatusFragment as dH, type GetTokenUsageStatus_WindowsQueryVariables as dI, type GetUsageQueryVariables as dJ, type InsightsQueryVariables as dK, type IntegrationQueryVariables as dL, type IntegrationCatalogToolsQueryVariables as dM, type IntegrationCatalogsQueryVariables as dN, type IntegrationCatalogConnectionFragment as dO, type IntegrationsQueryVariables as dP, type IntegrationConnectionFragment as dQ, type InterpretationsQueryVariables as dR, type InterpretationConnectionFragment as dS, type LiveContextsQueryVariables as dT, type LiveContextConnectionFragment as dU, type LocalSandboxDeviceStatusesQueryVariables as dV, LocalSandboxDeviceConnectionState as dW, type LocalSandboxDeviceStatusModelFragment as dX, type NotificationQueryVariables as dY, NotificationCategory as dZ, NotificationPriority as d_, type FeedInsightDataFragment as da, type FeedIntegrationDataFragment as db, type FeedProjectDataFragment as dc, type FeedLiveContextDataFragment as dd, type FeedPulseDataFragment as de, type FeedItemFragment as df, type FeedItem_ActionQueryVariables as dg, type FeedSendMessageActionFragment as dh, type FeedItem_DataQueryVariables as di, type FeedItemsQueryVariables as dj, type FeedConnectionFragment as dk, type FileQueryVariables as dl, type FileMetaQueryVariables as dm, type FileUrlsQueryVariables as dn, type ResolvedFileUrlFragment as dp, type FindFitTierQueryVariables as dq, EntitlementTier as dr, type FolderQueryVariables as ds, type FoldersQueryVariables as dt, type FolderConnectionFragment as du, type GetCapabilityQueryVariables as dv, type GetDevAccessTokenQueryVariables as dw, type GetLimitQueryVariables as dx, type GetRemainingQueryVariables as dy, type GetTokenUsageByModelQueryVariables as dz, type ChatMessage_ArtifactsQueryVariables as e, type ResetWorkspaceMutationVariables as e$, type NotificationFragment as e0, type NotificationsQueryVariables as e1, type NotificationConnectionFragment as e2, type NotificationsByReferenceQueryVariables as e3, type PrivacyStatsQueryVariables as e4, type PrivacyStatsFragment as e5, type ProjectsQueryVariables as e6, type ProjectConnectionFragment as e7, type PulseAppSummaryQueryVariables as e8, type PulseAppSummaryModelFragment as e9, type PrivacyStatsOutputFragment as eA, type FinalContentEventOutputFragment as eB, type GetTokenUsageStatus_Windows_DayQueryVariables as eC, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as eD, type GetTokenUsageStatus_Windows_MonthQueryVariables as eE, type GetTokenUsageStatus_Windows_WeekQueryVariables as eF, type InferenceRequestAuditFragment as eG, type Insight_Chat_DesktopDeviceQueryVariables as eH, type Insight_Chat_ProjectQueryVariables as eI, type Integration_Provider_CatalogQueryVariables as eJ, type InterruptEventOutputFragment as eK, type InvocationFragment as eL, type LiveContext_Source_EvidencesQueryVariables as eM, type ManagedChatModelsQueryVariables as eN, type McpClientInformationFragment as eO, type McpCodeVerifierFragment as eP, type McpServerFragment as eQ, type McpTokensFragment as eR, type McpToolFragment as eS, type MessageEndEventOutputFragment as eT, type MessageStartEventOutputFragment as eU, type PrivacyStatsTotalsDeltaOutputFragment as eV, type PrivacyStatsEventOutputFragment as eW, type ProgressSummaryEventOutputFragment as eX, type Project_DesktopBinding_DeviceQueryVariables as eY, type PulseEvent_Integration_ProviderQueryVariables as eZ, type ReasoningEventOutputFragment as e_, type PulseEventQueryVariables as ea, type PulseEventsQueryVariables as eb, type PulseEventConnectionFragment as ec, type PulseTriggerSettingsQueryVariables as ed, type QueryQueryVariables as ee, type QueryWithInsightIdQueryVariables as ef, type QueryWithMessageIdQueryVariables as eg, type ReportsQueryVariables as eh, type SkillCatalogQueryVariables as ei, SkillCatalogSource as ej, type SkillCatalogItemFragment as ek, type TablesQueryVariables as el, type UserSkillFileQueryVariables as em, type UserSkillFilesQueryVariables as en, type UserSkillFolderQueryVariables as eo, type UserSkillFoldersQueryVariables as ep, type WorkspaceDeletionScheduleQueryVariables as eq, type McpAuthUpdatesSubscriptionVariables as er, McpAuthPhase as es, type McpAuthUpdateModelFragment as et, type TokenUsageUpdatesSubscriptionVariables as eu, type EvidenceFragment as ev, type FailedSyncEventIngestionFragment as ew, type StreamMessageContentOutputFragment as ex, type StreamMessageOutputFragment as ey, type UsageMetaOutputFragment as ez, ArtifactKind as f, SortOrder as f$, type ScheduleWorkspaceDeletionMutationVariables as f0, type TextBlockEventOutputFragment as f1, type TextDeltaEventOutputFragment as f2, type WidgetBlockStartEventOutputFragment as f3, type WidgetHtmlDeltaEventOutputFragment as f4, type WidgetBlockCompleteEventOutputFragment as f5, type WidgetBlockErrorEventOutputFragment as f6, type ToolStartEventOutputFragment as f7, type ToolInputDeltaEventOutputFragment as f8, type ToolResultArtifactOutputFragment as f9, DatabaseOrderByRelevanceFieldEnum as fA, DesktopDeviceOrderByRelevanceFieldEnum as fB, DocumentCatalogOrderByRelevanceFieldEnum as fC, DocumentOrderByRelevanceFieldEnum as fD, type DvinaSdkBaseOptions as fE, type DvinaSdkCallbackOptions as fF, type DvinaSdkLifecycleHint as fG, type DvinaSdkTokenOptions as fH, FeedItemOrderByRelevanceFieldEnum as fI, FeedbackOrderByRelevanceFieldEnum as fJ, FileOrderByRelevanceFieldEnum as fK, FileUrlVariant as fL, FolderOrderByRelevanceFieldEnum as fM, InsightOrderByRelevanceFieldEnum as fN, IntegrationCatalogOrderByRelevanceFieldEnum as fO, IntegrationOrderByRelevanceFieldEnum as fP, InterpretationOrderByRelevanceFieldEnum as fQ, LimitType as fR, LiveContextOrderByRelevanceFieldEnum as fS, NotificationOrderByRelevanceFieldEnum as fT, NullsOrder as fU, ProjectDesktopBindingOrderByRelevanceFieldEnum as fV, ProjectOrderByRelevanceFieldEnum as fW, PulseEventOrderByRelevanceFieldEnum as fX, QueryMode as fY, ReportOrderByRelevanceFieldEnum as fZ, SendMessageModel as f_, type ToolResultEventOutputFragment as fa, type StreamEventSchemaAnchorFragment as fb, type SyncEventFragment as fc, type SyncEventCursorFragment as fd, type Table_Database_EngineQueryVariables as fe, type Table_Document_ContentsQueryVariables as ff, type Table_Document_FileQueryVariables as fg, type Table_Document_FormatQueryVariables as fh, type TokenUsageFragment as fi, type UserSkillFileFragment as fj, type UserSkillFolderFragment as fk, type WorkspaceAiModelQueryVariables as fl, type WorkspaceAiModelSettingFragment as fm, type ActiveChatStreamClient as fn, type ActiveChatStreamListener as fo, type ActiveChatStreamListenerHandlers as fp, AgentOrderByRelevanceFieldEnum as fq, ArtifactOrderByRelevanceFieldEnum as fr, CapabilityType as fs, ChatMessageOrderByRelevanceFieldEnum as ft, ChatOrderByRelevanceFieldEnum as fu, type ChatStreamClientOptions as fv, type ChatStreamEvent as fw, type ChatStreamListener as fx, type ChatStreamListenerHandlers as fy, DatabaseCatalogOrderByRelevanceFieldEnum as fz, type ArtifactFragment as g, TableOrderByRelevanceFieldEnum as g0, UsageHistoryGranularity as g1, createChatStreamClient as g2, createDvinaClient as g3, 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 };
7929
+ export { type Insight_ReportsQueryVariables 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 ContentBlockAgentOutputFragment as K, type ContentBlockFragment as L, type ChatMessage_FeedbackQueryVariables as M, FeedbackType as N, type FeedbackFragment as O, ProjectDesktopContextKind as P, type Chat_InsightQueryVariables as Q, ReasoningEffort as R, type Insight_ChatQueryVariables as S, type Insight_ReportMembersQueryVariables as T, ReportMemberSize as U, Presentation as V, type ReportMemberFragment as W, type ReportQueryVariables as X, type ReportFragment as Y, type Report_InsightsQueryVariables as Z, type InsightFragment as _, ActionType as a, type Database_EngineQueryVariables as a$, type ReportConnectionFragment as a0, type Insight_ThumbnailFileQueryVariables as a1, type InsightConnectionFragment as a2, type Report_LayoutQueryVariables as a3, type InsightQueryVariables as a4, type Chat_MessagesQueryVariables as a5, type ChatMessageConnectionFragment as a6, type Chat_ProjectQueryVariables as a7, type DesktopDeviceQueryVariables as a8, type ArtifactConnectionFragment as a9, type ChatImportExecuteOutputFragment as aA, ChatSourceImportFidelityEnum as aB, ChatSourceImportModeEnum as aC, type ChatImportPreviewOutputFragment as aD, type ChatMessage_Chat_DesktopDeviceQueryVariables as aE, type ChatMessage_Chat_InsightQueryVariables as aF, type ChatMessage_Chat_ProjectQueryVariables as aG, type ChatMessagesQueryVariables as aH, type ChatQueryVariables as aI, type ChatTitleEventOutputFragment as aJ, type Chat_DesktopDevice_DesktopBindingsQueryVariables as aK, type Chat_Insight_ReportMembersQueryVariables as aL, type Chat_Insight_ThumbnailFileQueryVariables as aM, type Chat_Project_DesktopBindingQueryVariables as aN, type ChatsQueryVariables as aO, type CloseActiveTabsMutationVariables as aP, type ConnectIntegrationMutationVariables as aQ, type CreateIntegrationOutputFragment as aR, type ConsumePulseEventsMutationVariables as aS, type ContentMaskFragment as aT, type ContextUsageEventOutputFragment as aU, type ContinueImportedChatMutationVariables as aV, type ContinueInterpretationMutationVariables as aW, type CreateAgentMutationVariables as aX, type CreateChatMutationVariables as aY, type CreateDatabaseMutationVariables as aZ, type DatabaseFragment as a_, type AddInsightToReportMutationVariables as aa, type AgentQueryVariables as ab, type AgentsQueryVariables as ac, type AiProviderSettingQueryVariables as ad, type UserAiProviderSettingFragment as ae, type ArtifactQueryVariables as af, type Artifact_Chat_DesktopDeviceQueryVariables as ag, type Artifact_Chat_InsightQueryVariables as ah, type Artifact_Chat_ProjectQueryVariables as ai, type Artifact_Message_ChatQueryVariables as aj, type Artifact_Message_ContentsQueryVariables as ak, type Artifact_Message_FeedbackQueryVariables as al, type ArtifactsQueryVariables as am, type AudioEventOutputFragment as an, type CancelOauthFlowMutationVariables as ao, type CancelWorkspaceDeletionMutationVariables as ap, type CandidateFragment as aq, type LiveContextQueryVariables as ar, LiveContextStatus as as, type LiveContextFragment as at, type LiveContext_ItemsQueryVariables as au, FeedActionType as av, type FeedItemGeneratedFragment as aw, type LiveContext_SourceQueryVariables as ax, type CandidateEvidenceFragment as ay, type ImportedChatSummaryOutputFragment as az, type ActionFragment as b, type DeleteUserSkillFolderMutationVariables as b$, type DatabaseEngineFragment as b0, type DatabaseCatalogQueryVariables as b1, type DatabaseCatalogFragment as b2, type DatabaseCatalog_EngineQueryVariables as b3, type Database_TablesQueryVariables as b4, TableStatus as b5, type TableFragment as b6, type Table_DatabaseQueryVariables as b7, type Table_DocumentQueryVariables as b8, type DocumentFragment as b9, type UserSkillFileModelFragment as bA, type CreateUserSkillFolderMutationVariables as bB, type UserSkillFolderModelFragment as bC, type CubeModelFragment as bD, type DatabaseCatalogConnectionFragment as bE, type DatabaseCatalogsQueryVariables as bF, type DatabaseConnectionFragment as bG, type DatabaseQueryVariables as bH, type DatabaseSchemaQueryVariables as bI, type Database_Engine_CatalogQueryVariables as bJ, type DatabasesQueryVariables as bK, type DeepAnalysisUsageFragment as bL, type DeleteAgentMutationVariables as bM, type DeleteAiProviderSettingMutationVariables as bN, type DeleteArtifactMutationVariables as bO, type DeleteChatMutationVariables as bP, type DeleteDatabaseMutationVariables as bQ, type DeleteDocumentMutationVariables as bR, type DeleteFolderMutationVariables as bS, type DeleteInsightMutationVariables as bT, type DeleteInsightsMutationVariables as bU, type DeleteIntegrationMutationVariables as bV, type DeleteProjectMutationVariables as bW, type DeleteReportMutationVariables as bX, type DeleteSavedAiProviderModelMutationVariables as bY, type DeleteTableMutationVariables as bZ, type DeleteUserSkillFileMutationVariables as b_, type Document_ContentsQueryVariables as ba, type DocumentContentFragment as bb, type DocumentQueryVariables as bc, type Document_FileQueryVariables as bd, type Document_FormatQueryVariables as be, type DocumentFormatFragment as bf, type DocumentCatalogQueryVariables as bg, type DocumentCatalogFragment as bh, type DocumentCatalog_FormatQueryVariables as bi, type Document_TablesQueryVariables as bj, type Table_FromRelationsQueryVariables as bk, RelationType as bl, type RelationFragment as bm, type TableQueryVariables as bn, type Table_ToRelationsQueryVariables as bo, type TableConnectionFragment as bp, type CreateDocumentMutationVariables as bq, type CreateFeedbackMutationVariables as br, type CreateFolderMutationVariables as bs, type FolderFragment as bt, type CreateInsightMutationVariables as bu, type CreateIntegrationMutationVariables as bv, type CreateProjectMutationVariables as bw, type CreateReportMutationVariables as bx, type CreateTableMutationVariables as by, type CreateUserSkillFileMutationVariables as bz, ChatMessageFromEnum as c, type PulseTriggerSettingModelFragment as c$, type DesktopDeviceConnectionFragment as c0, type DesktopDevicesQueryVariables as c1, type DevAccessTokenOutputFragment as c2, type DisconnectIntegrationMutationVariables as c3, type DismissPulseEventMutationVariables as c4, PulseEventPriority as c5, PulseEventKind as c6, type PulseEventFragment as c7, type PulseEvent_IntegrationQueryVariables as c8, IntegrationStatus as c9, type RefreshInsightMutationVariables as cA, type RegisterDesktopDeviceMutationVariables as cB, type ReinterpretSourceMutationVariables as cC, type ReinterpretSourcesOfuserMutationVariables as cD, type RelocateInsightMutationVariables as cE, type RemoveInsightFromReportMutationVariables as cF, type ResolvePulseEventMutationVariables as cG, type WorkspaceDeleteScheduleFragment as cH, type SendMessageMutationVariables as cI, type SetDatabasePrimaryKeyMutationVariables as cJ, type SyncProjectDesktopBindingMutationVariables as cK, type UpdateAgentMutationVariables as cL, type UpdateArtifactNameMutationVariables as cM, type UpdateChatMutationVariables as cN, type UpdateDatabaseMutationVariables as cO, type UpdateDocumentMutationVariables as cP, type UpdateFolderMutationVariables as cQ, type UpdateInsightMutationVariables as cR, type UpdateInsightInReportMutationVariables as cS, type UpdateInsightThumbnailMutationVariables as cT, type UpdateInterpMutationVariables as cU, InterpretationType as cV, AiResourceType as cW, type InterpretationFragment as cX, type UpdateLiveContextMutationVariables as cY, type UpdateProjectMutationVariables as cZ, type UpdatePulseTriggerMutationVariables as c_, type IntegrationFragment as ca, type Integration_ProviderQueryVariables as cb, type IntegrationProviderFragment as cc, type IntegrationCatalogQueryVariables as cd, type IntegrationCatalogFragment as ce, type IntegrationCatalog_ProviderQueryVariables as cf, type DocumentCatalogConnectionFragment as cg, type DocumentCatalogsQueryVariables as ch, type DocumentConnectionFragment as ci, type Document_Format_CatalogQueryVariables as cj, type DocumentsQueryVariables as ck, type ChatStreamClient as cl, type DvinaSdkLifecycle as cm, type DvinaEvents as cn, type ExecuteChatImportMutationVariables as co, type GenerateUploadUriMutationVariables as cp, type FileModelFragment as cq, type MigrateLegacyCodeChatsMutationVariables as cr, type LegacyCodeMigratedChatSummaryOutputFragment as cs, type LegacyCodeMigrationOutputFragment as ct, type OpenActiveTabMutationVariables as cu, type PreviewChatImportMutationVariables as cv, type ReanalyzeDocumentMutationVariables as cw, type RefineAgentInstructionMutationVariables as cx, type RefineSkillInstructionMutationVariables as cy, type RefreshDatabaseSchemaMutationVariables as cz, type ChatMessageFragment as d, type NotificationQueryVariables as d$, type UpdateReportMutationVariables as d0, type UpdateTableMutationVariables as d1, type UpdateUserSkillFileMutationVariables as d2, type UpdateUserSkillFolderMutationVariables as d3, type UpsertAiProviderSettingMutationVariables as d4, type UpsertWorkspaceAiModelMutationVariables as d5, type ExportQueryVariables as d6, type ExportWithInsightIdQueryVariables as d7, type FeedItemQueryVariables as d8, FeedItemKind as d9, type GetLimitQueryVariables as dA, type GetRemainingQueryVariables as dB, type GetTokenUsageByModelQueryVariables as dC, type ModelTokenUsageFragment as dD, type GetTokenUsageHistoryQueryVariables as dE, type GetTokenUsageStatusQueryVariables as dF, TokenUsageLimit as dG, ActiveWindowType as dH, type WindowDetailTypeFragment as dI, type UsageWindowsStatusTypeFragment as dJ, type UsageStatusFragment as dK, type GetTokenUsageStatus_WindowsQueryVariables as dL, type GetUsageQueryVariables as dM, type InsightsQueryVariables as dN, type IntegrationQueryVariables as dO, type IntegrationCatalogToolsQueryVariables as dP, type IntegrationCatalogsQueryVariables as dQ, type IntegrationCatalogConnectionFragment as dR, type IntegrationsQueryVariables as dS, type IntegrationConnectionFragment as dT, type InterpretationsQueryVariables as dU, type InterpretationConnectionFragment as dV, type LiveContextsQueryVariables as dW, type LiveContextConnectionFragment as dX, type LocalSandboxDeviceStatusesQueryVariables as dY, LocalSandboxDeviceConnectionState as dZ, type LocalSandboxDeviceStatusModelFragment as d_, type FeedDocumentDataFragment as da, type FeedArtifactDataFragment as db, type FeedDatabaseDataFragment as dc, type FeedInsightDataFragment as dd, type FeedIntegrationDataFragment as de, type FeedProjectDataFragment as df, type FeedLiveContextDataFragment as dg, type FeedPulseDataFragment as dh, type FeedItemFragment as di, type FeedItem_ActionQueryVariables as dj, type FeedSendMessageActionFragment as dk, type FeedItem_DataQueryVariables as dl, type FeedItemsQueryVariables as dm, type FeedConnectionFragment as dn, type FileQueryVariables as dp, type FileMetaQueryVariables as dq, type FileUrlsQueryVariables as dr, type ResolvedFileUrlFragment as ds, type FindFitTierQueryVariables as dt, EntitlementTier as du, type FolderQueryVariables as dv, type FoldersQueryVariables as dw, type FolderConnectionFragment as dx, type GetCapabilityQueryVariables as dy, type GetDevAccessTokenQueryVariables as dz, type ChatMessage_ArtifactsQueryVariables as e, type Project_DesktopBinding_DeviceQueryVariables as e$, NotificationCategory as e0, NotificationPriority as e1, NotificationStatus as e2, type NotificationFragment as e3, type NotificationsQueryVariables as e4, type NotificationConnectionFragment as e5, type NotificationsByReferenceQueryVariables as e6, type PrivacyStatsQueryVariables as e7, type PrivacyStatsFragment as e8, type ProjectsQueryVariables as e9, type StreamMessageContentOutputFragment as eA, type StreamMessageOutputFragment as eB, type UsageMetaOutputFragment as eC, type PrivacyStatsOutputFragment as eD, type FinalContentEventOutputFragment as eE, type GetTokenUsageStatus_Windows_DayQueryVariables as eF, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as eG, type GetTokenUsageStatus_Windows_MonthQueryVariables as eH, type GetTokenUsageStatus_Windows_WeekQueryVariables as eI, type InferenceRequestAuditFragment as eJ, type Insight_Chat_DesktopDeviceQueryVariables as eK, type Insight_Chat_ProjectQueryVariables as eL, type Integration_Provider_CatalogQueryVariables as eM, type InterruptEventOutputFragment as eN, type InvocationFragment as eO, type LiveContext_Source_EvidencesQueryVariables as eP, type ManagedChatModelsQueryVariables as eQ, type McpClientInformationFragment as eR, type McpCodeVerifierFragment as eS, type McpServerFragment as eT, type McpTokensFragment as eU, type McpToolFragment as eV, type MessageEndEventOutputFragment as eW, type MessageStartEventOutputFragment as eX, type PrivacyStatsTotalsDeltaOutputFragment as eY, type PrivacyStatsEventOutputFragment as eZ, type ProgressSummaryEventOutputFragment as e_, type ProjectConnectionFragment as ea, type PulseAppSummaryQueryVariables as eb, type PulseAppSummaryModelFragment as ec, type PulseEventQueryVariables as ed, type PulseEventsQueryVariables as ee, type PulseEventConnectionFragment as ef, type PulseTriggerSettingsQueryVariables as eg, type QueryQueryVariables as eh, type QueryWithInsightIdQueryVariables as ei, type QueryWithMessageIdQueryVariables as ej, type ReportsQueryVariables as ek, type SkillCatalogQueryVariables as el, SkillCatalogSource as em, type SkillCatalogItemFragment as en, type TablesQueryVariables as eo, type UserSkillFileQueryVariables as ep, type UserSkillFilesQueryVariables as eq, type UserSkillFolderQueryVariables as er, type UserSkillFoldersQueryVariables as es, type WorkspaceDeletionScheduleQueryVariables as et, type McpAuthUpdatesSubscriptionVariables as eu, McpAuthPhase as ev, type McpAuthUpdateModelFragment as ew, type TokenUsageUpdatesSubscriptionVariables as ex, type EvidenceFragment as ey, type FailedSyncEventIngestionFragment as ez, ArtifactKind as f, LiveContextOrderByRelevanceFieldEnum as f$, type PulseEvent_Integration_ProviderQueryVariables as f0, type ReasoningEventOutputFragment as f1, type ResetWorkspaceMutationVariables as f2, type ScheduleWorkspaceDeletionMutationVariables as f3, type TextBlockEventOutputFragment as f4, type TextDeltaEventOutputFragment as f5, type WidgetBlockStartEventOutputFragment as f6, type WidgetHtmlDeltaEventOutputFragment as f7, type WidgetBlockCompleteEventOutputFragment as f8, type WidgetBlockErrorEventOutputFragment as f9, type ChatStreamEvent as fA, type ChatStreamListener as fB, type ChatStreamListenerHandlers as fC, DatabaseCatalogOrderByRelevanceFieldEnum as fD, DatabaseOrderByRelevanceFieldEnum as fE, DesktopDeviceOrderByRelevanceFieldEnum as fF, type DevicePresenceEvent as fG, type DevicePresenceSnapshot as fH, DocumentCatalogOrderByRelevanceFieldEnum as fI, DocumentOrderByRelevanceFieldEnum as fJ, type DvinaEventRef as fK, type DvinaEventTopic as fL, type DvinaRealtimeEvent as fM, type DvinaSdkBaseOptions as fN, type DvinaSdkCallbackOptions as fO, type DvinaSdkLifecycleHint as fP, type DvinaSdkTokenOptions as fQ, FeedItemOrderByRelevanceFieldEnum as fR, FeedbackOrderByRelevanceFieldEnum as fS, FileOrderByRelevanceFieldEnum as fT, FileUrlVariant as fU, FolderOrderByRelevanceFieldEnum as fV, InsightOrderByRelevanceFieldEnum as fW, IntegrationCatalogOrderByRelevanceFieldEnum as fX, IntegrationOrderByRelevanceFieldEnum as fY, InterpretationOrderByRelevanceFieldEnum as fZ, LimitType as f_, type ToolStartEventOutputFragment as fa, type ToolInputDeltaEventOutputFragment as fb, type ToolResultArtifactOutputFragment as fc, type ToolResultEventOutputFragment as fd, type StreamEventSchemaAnchorFragment as fe, type SyncEventFragment as ff, type SyncEventCursorFragment as fg, type Table_Database_EngineQueryVariables as fh, type Table_Document_ContentsQueryVariables as fi, type Table_Document_FileQueryVariables as fj, type Table_Document_FormatQueryVariables as fk, type TokenUsageFragment as fl, type UserSkillFileFragment as fm, type UserSkillFolderFragment as fn, type WorkspaceAiModelQueryVariables as fo, type WorkspaceAiModelSettingFragment as fp, type ActiveChatsEvent as fq, type ActiveChatsSnapshot as fr, type ActiveTabsEvent as fs, type ActiveTabsSnapshot as ft, AgentOrderByRelevanceFieldEnum as fu, ArtifactOrderByRelevanceFieldEnum as fv, CapabilityType as fw, ChatMessageOrderByRelevanceFieldEnum as fx, ChatOrderByRelevanceFieldEnum as fy, type ChatStreamClientOptions as fz, type ArtifactFragment as g, NotificationOrderByRelevanceFieldEnum as g0, NullsOrder as g1, ProjectDesktopBindingOrderByRelevanceFieldEnum as g2, ProjectOrderByRelevanceFieldEnum as g3, PulseEventOrderByRelevanceFieldEnum as g4, QueryMode as g5, type RealtimeTopicData as g6, ReportOrderByRelevanceFieldEnum as g7, SendMessageModel as g8, SortOrder as g9, TableOrderByRelevanceFieldEnum as ga, UsageHistoryGranularity as gb, createChatStreamClient as gc, createDvinaClient as gd, createDvinaEvents as ge, 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 };
@@ -1,5 +1,5 @@
1
- import { a as DvinaRequest, b as DvinaSubscribe, P as PageInfoData, C as ConnectionVariables, F as FetchOptions } from './types-k6gSbuaF.cjs';
2
- import { S as SyncEngine } from './sync-engine-q1n4rVzP.cjs';
1
+ import { b as DvinaRequest, c as DvinaSubscribe, P as PageInfoData, C as ConnectionVariables, F as FetchOptions } from './types-Chg8ASmf.cjs';
2
+ import { S as SyncEngine } from './sync-engine-F0397ofh.cjs';
3
3
 
4
4
  /**
5
5
  * Base class that holds the transport functions.
@@ -1,5 +1,5 @@
1
- import { a as DvinaRequest, b as DvinaSubscribe, P as PageInfoData, C as ConnectionVariables, F as FetchOptions } from './types-k6gSbuaF.js';
2
- import { S as SyncEngine } from './sync-engine-CgKa-lWc.js';
1
+ import { b as DvinaRequest, c as DvinaSubscribe, P as PageInfoData, C as ConnectionVariables, F as FetchOptions } from './types-Chg8ASmf.js';
2
+ import { S as SyncEngine } from './sync-engine-BHsj_bC-.js';
3
3
 
4
4
  /**
5
5
  * Base class that holds the transport functions.