@dvina/sdk 4.1.15 → 4.1.27

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-P2JDS76B.cjs → _generated_documents-KLH52A3M.cjs} +640 -636
  2. package/dist/{_generated_documents-P2JDS76B.cjs.map → _generated_documents-KLH52A3M.cjs.map} +1 -1
  3. package/dist/_generated_documents-ZNM3EFLS.js +4 -0
  4. package/dist/{_generated_documents-DDOM6L4I.js.map → _generated_documents-ZNM3EFLS.js.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-3NVTNOPC.cjs → chunk-2OCI54KK.cjs} +846 -932
  14. package/dist/chunk-2OCI54KK.cjs.map +1 -0
  15. package/dist/{chunk-4QI6ACRB.js → chunk-5U2BUOJM.js} +8 -7
  16. package/dist/chunk-5U2BUOJM.js.map +1 -0
  17. package/dist/{chunk-ULLPEHMQ.cjs → chunk-FPS5J2ZD.cjs} +10 -8
  18. package/dist/chunk-FPS5J2ZD.cjs.map +1 -0
  19. package/dist/{chunk-5WZGNZOT.js → chunk-UOUO6FEI.js} +236 -324
  20. package/dist/chunk-UOUO6FEI.js.map +1 -0
  21. package/dist/{client-9HS5mnLX.d.cts → client-BfLLVq_u.d.cts} +76 -71
  22. package/dist/{client-DTPpI37c.d.ts → client-Da1MV84R.d.ts} +76 -71
  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 +482 -474
  26. package/dist/index.d.cts +28 -23
  27. package/dist/index.d.ts +28 -23
  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
@@ -2,7 +2,7 @@ import { DocumentNode } from 'graphql';
2
2
  import * as dexie from 'dexie';
3
3
  import { Dexie, Table } from 'dexie';
4
4
  import { D as DvinaError, a as DvinaAuthenticationError } from './error-CsVoUTY8.js';
5
- import { D as DvinaQueryRef, M as MutationOptions } from './types-k6gSbuaF.js';
5
+ import { a as DvinaQueryRef, M as MutationOptions } from './types-Chg8ASmf.js';
6
6
 
7
7
  /** Cached result metadata for a specific query + variables combination */
8
8
  interface QueryResultEntry {
@@ -196,6 +196,12 @@ interface SseQueryEvent {
196
196
  entityId?: string;
197
197
  entityType: string;
198
198
  }
199
+ type RealtimeEventTopic = 'active-chats' | 'active-tabs' | 'desktop-device-presence';
200
+ interface SseRealtimeEvent {
201
+ topic: RealtimeEventTopic;
202
+ type: string;
203
+ data: unknown;
204
+ }
199
205
  interface SubscriptionDescriptor {
200
206
  id: string;
201
207
  entityType: string;
@@ -211,10 +217,12 @@ interface SseTransportOptions {
211
217
  getToken: (options?: {
212
218
  forceRefresh?: boolean;
213
219
  }) => Promise<string>;
214
- /** Called when a sync event is received */
215
- onEvent: (event: SseSyncEvent) => void;
216
- /** Called when a query event is received (server-driven subscription update) */
217
- onQueryEvent?: (event: SseQueryEvent) => void;
220
+ /** Called when a sync event is received. Processing is awaited to preserve stream order. */
221
+ onEvent: (event: SseSyncEvent) => void | Promise<void>;
222
+ /** Called when a query event is received (server-driven subscription update). Processing is awaited to preserve stream order. */
223
+ onQueryEvent?: (event: SseQueryEvent) => void | Promise<void>;
224
+ /** Called when a user-scoped realtime event is received. Processing is awaited to preserve stream order. */
225
+ onRealtimeEvent?: (event: SseRealtimeEvent) => void | Promise<void>;
218
226
  /** Called when the initial cursor is received (fresh connection) */
219
227
  onCursor?: (syncId: string) => void;
220
228
  /** Called when the server signals that the sync gap is unrecoverable and a full resync is needed */
@@ -239,6 +247,10 @@ interface SseTransport {
239
247
  subscribe(descriptor: SubscriptionDescriptor): void;
240
248
  /** Unregister a query subscription (fire-and-forget POST) */
241
249
  unsubscribe(subscriptionId: string): void;
250
+ /** Register a realtime event topic on the existing sync stream. */
251
+ subscribeEvent(topic: RealtimeEventTopic): void;
252
+ /** Unregister a realtime event topic from the existing sync stream. */
253
+ unsubscribeEvent(topic: RealtimeEventTopic): void;
242
254
  }
243
255
  declare function createSseTransport(options: SseTransportOptions): SseTransport;
244
256
 
@@ -461,4 +473,4 @@ declare class SyncEngine {
461
473
  private _processSyncDelete;
462
474
  }
463
475
 
464
- export { type CacheRule as C, DvinaDatabase as D, SyncEngine as S, type CacheRuleCreate as a, type CacheRuleDelete as b, createHttpTransport as c, type CacheRuleUpdate as d, type SseQueryEvent as e, type SseSyncEvent as f, type SseTransport as g, type SseTransportOptions as h, type SubscriptionDescriptor as i, closeDatabase as j, createSseTransport as k, deleteDatabase as l, getOrCreateDatabase as m };
476
+ export { type CacheRule as C, DvinaDatabase as D, type RealtimeEventTopic as R, SyncEngine as S, type SseRealtimeEvent as a, type CacheRuleCreate as b, createHttpTransport as c, type CacheRuleDelete as d, type CacheRuleUpdate as e, type SseQueryEvent as f, type SseSyncEvent as g, type SseTransport as h, type SseTransportOptions as i, type SubscriptionDescriptor as j, closeDatabase as k, createSseTransport as l, deleteDatabase as m, getOrCreateDatabase as n };
@@ -2,7 +2,7 @@ import { DocumentNode } from 'graphql';
2
2
  import * as dexie from 'dexie';
3
3
  import { Dexie, Table } from 'dexie';
4
4
  import { D as DvinaError, a as DvinaAuthenticationError } from './error-CsVoUTY8.cjs';
5
- import { D as DvinaQueryRef, M as MutationOptions } from './types-k6gSbuaF.cjs';
5
+ import { a as DvinaQueryRef, M as MutationOptions } from './types-Chg8ASmf.cjs';
6
6
 
7
7
  /** Cached result metadata for a specific query + variables combination */
8
8
  interface QueryResultEntry {
@@ -196,6 +196,12 @@ interface SseQueryEvent {
196
196
  entityId?: string;
197
197
  entityType: string;
198
198
  }
199
+ type RealtimeEventTopic = 'active-chats' | 'active-tabs' | 'desktop-device-presence';
200
+ interface SseRealtimeEvent {
201
+ topic: RealtimeEventTopic;
202
+ type: string;
203
+ data: unknown;
204
+ }
199
205
  interface SubscriptionDescriptor {
200
206
  id: string;
201
207
  entityType: string;
@@ -211,10 +217,12 @@ interface SseTransportOptions {
211
217
  getToken: (options?: {
212
218
  forceRefresh?: boolean;
213
219
  }) => Promise<string>;
214
- /** Called when a sync event is received */
215
- onEvent: (event: SseSyncEvent) => void;
216
- /** Called when a query event is received (server-driven subscription update) */
217
- onQueryEvent?: (event: SseQueryEvent) => void;
220
+ /** Called when a sync event is received. Processing is awaited to preserve stream order. */
221
+ onEvent: (event: SseSyncEvent) => void | Promise<void>;
222
+ /** Called when a query event is received (server-driven subscription update). Processing is awaited to preserve stream order. */
223
+ onQueryEvent?: (event: SseQueryEvent) => void | Promise<void>;
224
+ /** Called when a user-scoped realtime event is received. Processing is awaited to preserve stream order. */
225
+ onRealtimeEvent?: (event: SseRealtimeEvent) => void | Promise<void>;
218
226
  /** Called when the initial cursor is received (fresh connection) */
219
227
  onCursor?: (syncId: string) => void;
220
228
  /** Called when the server signals that the sync gap is unrecoverable and a full resync is needed */
@@ -239,6 +247,10 @@ interface SseTransport {
239
247
  subscribe(descriptor: SubscriptionDescriptor): void;
240
248
  /** Unregister a query subscription (fire-and-forget POST) */
241
249
  unsubscribe(subscriptionId: string): void;
250
+ /** Register a realtime event topic on the existing sync stream. */
251
+ subscribeEvent(topic: RealtimeEventTopic): void;
252
+ /** Unregister a realtime event topic from the existing sync stream. */
253
+ unsubscribeEvent(topic: RealtimeEventTopic): void;
242
254
  }
243
255
  declare function createSseTransport(options: SseTransportOptions): SseTransport;
244
256
 
@@ -461,4 +473,4 @@ declare class SyncEngine {
461
473
  private _processSyncDelete;
462
474
  }
463
475
 
464
- export { type CacheRule as C, DvinaDatabase as D, SyncEngine as S, type CacheRuleCreate as a, type CacheRuleDelete as b, createHttpTransport as c, type CacheRuleUpdate as d, type SseQueryEvent as e, type SseSyncEvent as f, type SseTransport as g, type SseTransportOptions as h, type SubscriptionDescriptor as i, closeDatabase as j, createSseTransport as k, deleteDatabase as l, getOrCreateDatabase as m };
476
+ export { type CacheRule as C, DvinaDatabase as D, type RealtimeEventTopic as R, SyncEngine as S, type SseRealtimeEvent as a, type CacheRuleCreate as b, createHttpTransport as c, type CacheRuleDelete as d, type CacheRuleUpdate as e, type SseQueryEvent as f, type SseSyncEvent as g, type SseTransport as h, type SseTransportOptions as i, type SubscriptionDescriptor as j, closeDatabase as k, createSseTransport as l, deleteDatabase as m, getOrCreateDatabase as n };
@@ -50,9 +50,13 @@ type DvinaSubscribe = <T>(document: DocumentNode, variables?: Record<string, unk
50
50
  * // template: {{ reports()?.nodes }}
51
51
  * ```
52
52
  */
53
- interface DvinaQueryRef<T> extends AsyncIterable<T> {
53
+ interface DvinaAsyncRef<T> extends AsyncIterable<T> {
54
54
  /** The most recently emitted value, or `undefined` if no value has been emitted yet. */
55
55
  readonly current: T | undefined;
56
+ /** Dispose of this ref and terminate active async iteration. */
57
+ dispose(): void;
58
+ }
59
+ interface DvinaQueryRef<T> extends DvinaAsyncRef<T> {
56
60
  /** Force re-fetch from network, replacing cached data. New value will be yielded. */
57
61
  refetch(variables?: Record<string, unknown>): Promise<T>;
58
62
  /** Fetch additional pages and merge into cache. New value will be yielded. */
@@ -109,4 +113,4 @@ interface PageInfoData {
109
113
  endCursor?: string | null;
110
114
  }
111
115
 
112
- export type { ConnectionVariables as C, DvinaQueryRef as D, FetchOptions as F, MutationOptions as M, PageInfoData as P, WithIncludes as W, DvinaRequest as a, DvinaSubscribe as b, ConnectionWithNodes as c };
116
+ export type { ConnectionVariables as C, DvinaAsyncRef as D, FetchOptions as F, MutationOptions as M, PageInfoData as P, WithIncludes as W, DvinaQueryRef as a, DvinaRequest as b, DvinaSubscribe as c, ConnectionWithNodes as d };
@@ -50,9 +50,13 @@ type DvinaSubscribe = <T>(document: DocumentNode, variables?: Record<string, unk
50
50
  * // template: {{ reports()?.nodes }}
51
51
  * ```
52
52
  */
53
- interface DvinaQueryRef<T> extends AsyncIterable<T> {
53
+ interface DvinaAsyncRef<T> extends AsyncIterable<T> {
54
54
  /** The most recently emitted value, or `undefined` if no value has been emitted yet. */
55
55
  readonly current: T | undefined;
56
+ /** Dispose of this ref and terminate active async iteration. */
57
+ dispose(): void;
58
+ }
59
+ interface DvinaQueryRef<T> extends DvinaAsyncRef<T> {
56
60
  /** Force re-fetch from network, replacing cached data. New value will be yielded. */
57
61
  refetch(variables?: Record<string, unknown>): Promise<T>;
58
62
  /** Fetch additional pages and merge into cache. New value will be yielded. */
@@ -109,4 +113,4 @@ interface PageInfoData {
109
113
  endCursor?: string | null;
110
114
  }
111
115
 
112
- export type { ConnectionVariables as C, DvinaQueryRef as D, FetchOptions as F, MutationOptions as M, PageInfoData as P, WithIncludes as W, DvinaRequest as a, DvinaSubscribe as b, ConnectionWithNodes as c };
116
+ export type { ConnectionVariables as C, DvinaAsyncRef as D, FetchOptions as F, MutationOptions as M, PageInfoData as P, WithIncludes as W, DvinaQueryRef as a, DvinaRequest as b, DvinaSubscribe as c, ConnectionWithNodes as d };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dvina/sdk",
3
- "version": "4.1.15",
3
+ "version": "4.1.27",
4
4
  "description": "Type-safe SDK for the Dvina GraphQL API",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
@@ -1,4 +0,0 @@
1
- export { AbortChatDocument, ActionAvgAggregateFragmentDoc, ActionCountAggregateFragmentDoc, ActionFragmentDoc, ActionMaxAggregateFragmentDoc, ActionMinAggregateFragmentDoc, ActionSumAggregateFragmentDoc, ActionType, ActiveWindowType, AddInsightToReportDocument, AgentConnectionFragmentDoc, AgentCountAggregateFragmentDoc, AgentDocument, AgentFragmentDoc, AgentMaxAggregateFragmentDoc, AgentMinAggregateFragmentDoc, AgentOrderByRelevanceFieldEnum, Agent_ChatsDocument, AgentsDocument, AiProviderSettingDocument, AiResourceType, ArtifactConnectionFragmentDoc, ArtifactCountAggregateFragmentDoc, ArtifactDocument, ArtifactFragmentDoc, ArtifactKind, ArtifactMaxAggregateFragmentDoc, ArtifactMinAggregateFragmentDoc, ArtifactOrderByRelevanceFieldEnum, Artifact_ChatDocument, Artifact_Chat_DesktopDeviceDocument, Artifact_Chat_InsightDocument, Artifact_Chat_ProjectDocument, Artifact_FileDocument, Artifact_MessageDocument, Artifact_Message_ChatDocument, Artifact_Message_ContentsDocument, Artifact_Message_FeedbackDocument, ArtifactsDocument, AudioEventOutputFragmentDoc, CancelOauthFlowDocument, CancelWorkspaceDeletionDocument, CandidateCountAggregateFragmentDoc, CandidateEvidenceCountAggregateFragmentDoc, CandidateEvidenceFragmentDoc, CandidateEvidenceMaxAggregateFragmentDoc, CandidateEvidenceMinAggregateFragmentDoc, CandidateFragmentDoc, CandidateMaxAggregateFragmentDoc, CandidateMinAggregateFragmentDoc, CapabilityType, ChatConnectionFragmentDoc, ChatCountAggregateFragmentDoc, ChatDocument, ChatFragmentDoc, ChatImportExecuteOutputFragmentDoc, ChatImportPreviewOutputFragmentDoc, ChatMaxAggregateFragmentDoc, ChatMessageConnectionFragmentDoc, ChatMessageCountAggregateFragmentDoc, ChatMessageDocument, ChatMessageFragmentDoc, ChatMessageFromEnum, ChatMessageMaxAggregateFragmentDoc, ChatMessageMinAggregateFragmentDoc, ChatMessageOrderByRelevanceFieldEnum, ChatMessage_ArtifactsDocument, ChatMessage_ChatDocument, ChatMessage_Chat_DesktopDeviceDocument, ChatMessage_Chat_InsightDocument, ChatMessage_Chat_ProjectDocument, ChatMessage_ContentsDocument, ChatMessage_Contents_AgentDocument, ChatMessage_Contents_MasksDocument, ChatMessage_FeedbackDocument, ChatMessagesDocument, ChatMinAggregateFragmentDoc, ChatOrderByRelevanceFieldEnum, ChatSourceImportFidelityEnum, ChatSourceImportModeEnum, ChatSourceProviderEnum, ChatTitleEventOutputFragmentDoc, ChatWorkspaceMode, Chat_AgentsDocument, Chat_ArtifactsDocument, Chat_DesktopDeviceDocument, Chat_DesktopDevice_DesktopBindingsDocument, Chat_InsightDocument, Chat_Insight_ReportMembersDocument, Chat_Insight_ThumbnailFileDocument, Chat_MessagesDocument, Chat_ProjectDocument, Chat_Project_DesktopBindingDocument, ChatsDocument, ConnectIntegrationDocument, ConsumePulseEventsDocument, ContentBlockAgentOutputFragmentDoc, ContentBlockAvgAggregateFragmentDoc, ContentBlockCountAggregateFragmentDoc, ContentBlockFragmentDoc, ContentBlockMaxAggregateFragmentDoc, ContentBlockMinAggregateFragmentDoc, ContentBlockSumAggregateFragmentDoc, ContentBlockType, ContentMaskCountAggregateFragmentDoc, ContentMaskFragmentDoc, ContentMaskMaxAggregateFragmentDoc, ContentMaskMinAggregateFragmentDoc, ContextUsageEventOutputFragmentDoc, ContinueImportedChatDocument, ContinueInterpretationDocument, CreateAgentDocument, CreateChatDocument, CreateDatabaseDocument, CreateDocumentDocument, CreateFeedbackDocument, CreateFolderDocument, CreateInsightDocument, CreateIntegrationDocument, CreateIntegrationOutputFragmentDoc, CreateProjectDocument, CreateReportDocument, CreateTableDocument, CreateUserSkillFileDocument, CreateUserSkillFolderDocument, CubeModelCountAggregateFragmentDoc, CubeModelFragmentDoc, CubeModelMaxAggregateFragmentDoc, CubeModelMinAggregateFragmentDoc, DatabaseCatalogAvgAggregateFragmentDoc, DatabaseCatalogConnectionFragmentDoc, DatabaseCatalogCountAggregateFragmentDoc, DatabaseCatalogDocument, DatabaseCatalogFragmentDoc, DatabaseCatalogMaxAggregateFragmentDoc, DatabaseCatalogMinAggregateFragmentDoc, DatabaseCatalogOrderByRelevanceFieldEnum, DatabaseCatalogSumAggregateFragmentDoc, DatabaseCatalog_EngineDocument, DatabaseCatalogsDocument, DatabaseConnectionFragmentDoc, DatabaseCountAggregateFragmentDoc, DatabaseDocument, DatabaseEngineCountAggregateFragmentDoc, DatabaseEngineFragmentDoc, DatabaseEngineMaxAggregateFragmentDoc, DatabaseEngineMinAggregateFragmentDoc, DatabaseFragmentDoc, DatabaseMaxAggregateFragmentDoc, DatabaseMinAggregateFragmentDoc, DatabaseOrderByRelevanceFieldEnum, DatabaseSchemaDocument, Database_EngineDocument, Database_Engine_CatalogDocument, Database_TablesDocument, DatabasesDocument, DeepAnalysisUsageAvgAggregateFragmentDoc, DeepAnalysisUsageCountAggregateFragmentDoc, DeepAnalysisUsageFragmentDoc, DeepAnalysisUsageMaxAggregateFragmentDoc, DeepAnalysisUsageMinAggregateFragmentDoc, DeepAnalysisUsageSumAggregateFragmentDoc, DeleteAgentDocument, DeleteAiProviderSettingDocument, DeleteArtifactDocument, DeleteChatDocument, DeleteDatabaseDocument, DeleteDocumentDocument, DeleteFolderDocument, DeleteInsightDocument, DeleteInsightsDocument, DeleteIntegrationDocument, DeleteProjectDocument, DeleteReportDocument, DeleteSavedAiProviderModelDocument, DeleteTableDocument, DeleteUserSkillFileDocument, DeleteUserSkillFolderDocument, DesktopDeviceAvgAggregateFragmentDoc, DesktopDeviceConnectionFragmentDoc, DesktopDeviceCountAggregateFragmentDoc, DesktopDeviceDocument, DesktopDeviceFragmentDoc, DesktopDeviceMaxAggregateFragmentDoc, DesktopDeviceMinAggregateFragmentDoc, DesktopDeviceOrderByRelevanceFieldEnum, DesktopDeviceSumAggregateFragmentDoc, DesktopDevice_ChatsDocument, DesktopDevice_DesktopBindingsDocument, DesktopDevice_DesktopBindings_ProjectDocument, DesktopDevicesDocument, DevAccessTokenOutputFragmentDoc, DisconnectIntegrationDocument, DismissPulseEventDocument, DocumentCatalogAvgAggregateFragmentDoc, DocumentCatalogConnectionFragmentDoc, DocumentCatalogCountAggregateFragmentDoc, DocumentCatalogDocument, DocumentCatalogFragmentDoc, DocumentCatalogMaxAggregateFragmentDoc, DocumentCatalogMinAggregateFragmentDoc, DocumentCatalogOrderByRelevanceFieldEnum, DocumentCatalogSumAggregateFragmentDoc, DocumentCatalog_FormatDocument, DocumentCatalogsDocument, DocumentConnectionFragmentDoc, DocumentContentAvgAggregateFragmentDoc, DocumentContentCountAggregateFragmentDoc, DocumentContentFragmentDoc, DocumentContentMaxAggregateFragmentDoc, DocumentContentMinAggregateFragmentDoc, DocumentContentSumAggregateFragmentDoc, DocumentCountAggregateFragmentDoc, DocumentDocument, DocumentFormatCountAggregateFragmentDoc, DocumentFormatFragmentDoc, DocumentFormatMaxAggregateFragmentDoc, DocumentFormatMinAggregateFragmentDoc, DocumentFragmentDoc, DocumentMaxAggregateFragmentDoc, DocumentMinAggregateFragmentDoc, DocumentOrderByRelevanceFieldEnum, Document_ContentsDocument, Document_FileDocument, Document_FormatDocument, Document_Format_CatalogDocument, Document_TablesDocument, DocumentsDocument, EntitlementTier, EvidenceCountAggregateFragmentDoc, EvidenceFragmentDoc, EvidenceMaxAggregateFragmentDoc, EvidenceMinAggregateFragmentDoc, ExecuteChatImportDocument, ExportDocument, ExportWithInsightIdDocument, FailedSyncEventIngestionAvgAggregateFragmentDoc, FailedSyncEventIngestionCountAggregateFragmentDoc, FailedSyncEventIngestionFragmentDoc, FailedSyncEventIngestionMaxAggregateFragmentDoc, FailedSyncEventIngestionMinAggregateFragmentDoc, FailedSyncEventIngestionSumAggregateFragmentDoc, FeedActionType, FeedArtifactDataFragmentDoc, FeedConnectionFragmentDoc, FeedDatabaseDataFragmentDoc, FeedDocumentDataFragmentDoc, FeedInsightDataFragmentDoc, FeedIntegrationDataFragmentDoc, FeedItemCountAggregateFragmentDoc, FeedItemDocument, FeedItemFragmentDoc, FeedItemGeneratedFragmentDoc, FeedItemKind, FeedItemMaxAggregateFragmentDoc, FeedItemMinAggregateFragmentDoc, FeedItemOrderByRelevanceFieldEnum, FeedItem_ActionDocument, FeedItem_DataDocument, FeedItemsDocument, FeedLiveContextDataFragmentDoc, FeedProjectDataFragmentDoc, FeedPulseDataFragmentDoc, FeedSendMessageActionFragmentDoc, FeedbackCountAggregateFragmentDoc, FeedbackFragmentDoc, FeedbackMaxAggregateFragmentDoc, FeedbackMinAggregateFragmentDoc, FeedbackOrderByRelevanceFieldEnum, FeedbackType, FileAvgAggregateFragmentDoc, FileCountAggregateFragmentDoc, FileDocument, FileFragmentDoc, FileMaxAggregateFragmentDoc, FileMetaDocument, FileMinAggregateFragmentDoc, FileModelFragmentDoc, FileOrderByRelevanceFieldEnum, FileSumAggregateFragmentDoc, FileUrlVariant, FileUrlsDocument, FinalContentEventOutputFragmentDoc, FindFitTierDocument, FolderConnectionFragmentDoc, FolderCountAggregateFragmentDoc, FolderDocument, FolderFragmentDoc, FolderMaxAggregateFragmentDoc, FolderMinAggregateFragmentDoc, FolderOrderByRelevanceFieldEnum, FoldersDocument, GenerateUploadUriDocument, GetCapabilityDocument, GetDevAccessTokenDocument, GetLimitDocument, GetRemainingDocument, GetTokenUsageByModelDocument, GetTokenUsageHistoryDocument, GetTokenUsageStatusDocument, GetTokenUsageStatus_WindowsDocument, GetTokenUsageStatus_Windows_DayDocument, GetTokenUsageStatus_Windows_FiveHourDocument, GetTokenUsageStatus_Windows_MonthDocument, GetTokenUsageStatus_Windows_WeekDocument, GetUsageDocument, ImportedChatSummaryOutputFragmentDoc, InferenceRequestAuditAvgAggregateFragmentDoc, InferenceRequestAuditCountAggregateFragmentDoc, InferenceRequestAuditFragmentDoc, InferenceRequestAuditMaxAggregateFragmentDoc, InferenceRequestAuditMinAggregateFragmentDoc, InferenceRequestAuditSumAggregateFragmentDoc, InsightConnectionFragmentDoc, InsightCountAggregateFragmentDoc, InsightDocument, InsightFragmentDoc, InsightMaxAggregateFragmentDoc, InsightMinAggregateFragmentDoc, InsightOrderByRelevanceFieldEnum, Insight_ChatDocument, Insight_Chat_DesktopDeviceDocument, Insight_Chat_ProjectDocument, Insight_ReportMembersDocument, Insight_ReportMembers_ReportDocument, Insight_ReportsDocument, Insight_ThumbnailFileDocument, InsightsDocument, IntegrationAvgAggregateFragmentDoc, IntegrationCatalogAvgAggregateFragmentDoc, IntegrationCatalogConnectionFragmentDoc, IntegrationCatalogCountAggregateFragmentDoc, IntegrationCatalogDocument, IntegrationCatalogFragmentDoc, IntegrationCatalogMaxAggregateFragmentDoc, IntegrationCatalogMinAggregateFragmentDoc, IntegrationCatalogOrderByRelevanceFieldEnum, IntegrationCatalogSumAggregateFragmentDoc, IntegrationCatalogToolsDocument, IntegrationCatalog_ProviderDocument, IntegrationCatalogsDocument, IntegrationConnectionFragmentDoc, IntegrationCountAggregateFragmentDoc, IntegrationDocument, IntegrationFragmentDoc, IntegrationMaxAggregateFragmentDoc, IntegrationMinAggregateFragmentDoc, IntegrationOrderByRelevanceFieldEnum, IntegrationProviderCountAggregateFragmentDoc, IntegrationProviderFragmentDoc, IntegrationProviderMaxAggregateFragmentDoc, IntegrationProviderMinAggregateFragmentDoc, IntegrationStatus, IntegrationSumAggregateFragmentDoc, Integration_ProviderDocument, Integration_Provider_CatalogDocument, IntegrationsDocument, InterpretationConnectionFragmentDoc, InterpretationCountAggregateFragmentDoc, InterpretationFragmentDoc, InterpretationMaxAggregateFragmentDoc, InterpretationMinAggregateFragmentDoc, InterpretationOrderByRelevanceFieldEnum, InterpretationType, InterpretationsDocument, InterruptEventOutputFragmentDoc, InvocationAvgAggregateFragmentDoc, InvocationCountAggregateFragmentDoc, InvocationFragmentDoc, InvocationMaxAggregateFragmentDoc, InvocationMinAggregateFragmentDoc, InvocationSumAggregateFragmentDoc, LegacyCodeMigratedChatSummaryOutputFragmentDoc, LegacyCodeMigrationOutputFragmentDoc, LimitType, LiveContextConnectionFragmentDoc, LiveContextCountAggregateFragmentDoc, LiveContextDocument, LiveContextFragmentDoc, LiveContextMaxAggregateFragmentDoc, LiveContextMinAggregateFragmentDoc, LiveContextOrderByRelevanceFieldEnum, LiveContextStatus, LiveContext_ItemsDocument, LiveContext_SourceDocument, LiveContext_Source_EvidencesDocument, LiveContextsDocument, LocalSandboxDeviceConnectionState, LocalSandboxDeviceStatusModelFragmentDoc, LocalSandboxDeviceStatusesDocument, ManagedChatModelsDocument, McpAuthPhase, McpAuthUpdateModelFragmentDoc, McpAuthUpdatesDocument, McpClientInformationCountAggregateFragmentDoc, McpClientInformationFragmentDoc, McpClientInformationMaxAggregateFragmentDoc, McpClientInformationMinAggregateFragmentDoc, McpCodeVerifierCountAggregateFragmentDoc, McpCodeVerifierFragmentDoc, McpCodeVerifierMaxAggregateFragmentDoc, McpCodeVerifierMinAggregateFragmentDoc, McpServerCountAggregateFragmentDoc, McpServerFragmentDoc, McpServerMaxAggregateFragmentDoc, McpServerMinAggregateFragmentDoc, McpTokensCountAggregateFragmentDoc, McpTokensFragmentDoc, McpTokensMaxAggregateFragmentDoc, McpTokensMinAggregateFragmentDoc, McpToolCountAggregateFragmentDoc, McpToolFragmentDoc, McpToolMaxAggregateFragmentDoc, McpToolMinAggregateFragmentDoc, MessageEndEventOutputFragmentDoc, MessageStartEventOutputFragmentDoc, MigrateLegacyCodeChatsDocument, ModelTokenUsageFragmentDoc, NotificationCategory, NotificationConnectionFragmentDoc, NotificationCountAggregateFragmentDoc, NotificationDocument, NotificationFragmentDoc, NotificationMaxAggregateFragmentDoc, NotificationMinAggregateFragmentDoc, NotificationOrderByRelevanceFieldEnum, NotificationPriority, NotificationStatus, NotificationsByReferenceDocument, NotificationsDocument, NullsOrder, PageInfoFragmentDoc, Presentation, PreviewChatImportDocument, PrivacyStatsDocument, PrivacyStatsEventOutputFragmentDoc, PrivacyStatsFragmentDoc, PrivacyStatsOutputFragmentDoc, PrivacyStatsTotalsDeltaOutputFragmentDoc, ProgressSummaryEventOutputFragmentDoc, ProjectConnectionFragmentDoc, ProjectCountAggregateFragmentDoc, ProjectDesktopBindingCountAggregateFragmentDoc, ProjectDesktopBindingFragmentDoc, ProjectDesktopBindingMaxAggregateFragmentDoc, ProjectDesktopBindingMinAggregateFragmentDoc, ProjectDesktopBindingOrderByRelevanceFieldEnum, ProjectDesktopContextKind, ProjectDocument, ProjectFragmentDoc, ProjectMaxAggregateFragmentDoc, ProjectMinAggregateFragmentDoc, ProjectOrderByRelevanceFieldEnum, ProjectSource, Project_ChatsDocument, Project_DesktopBindingDocument, Project_DesktopBinding_DeviceDocument, ProjectsDocument, PulseAppSummaryDocument, PulseAppSummaryModelFragmentDoc, PulseEventConnectionFragmentDoc, PulseEventCountAggregateFragmentDoc, PulseEventDocument, PulseEventFragmentDoc, PulseEventKind, PulseEventMaxAggregateFragmentDoc, PulseEventMinAggregateFragmentDoc, PulseEventOrderByRelevanceFieldEnum, PulseEventPriority, PulseEvent_IntegrationDocument, PulseEvent_Integration_ProviderDocument, PulseEventsDocument, PulseTriggerSettingModelFragmentDoc, PulseTriggerSettingsDocument, QueryDocument, QueryMode, QueryWithInsightIdDocument, QueryWithMessageIdDocument, ReanalyzeDocumentDocument, ReasoningEffort, ReasoningEventOutputFragmentDoc, RefineAgentInstructionDocument, RefineSkillInstructionDocument, RefreshDatabaseSchemaDocument, RefreshInsightDocument, RegisterDesktopDeviceDocument, ReinterpretSourceDocument, ReinterpretSourcesOfuserDocument, RelationCountAggregateFragmentDoc, RelationFragmentDoc, RelationMaxAggregateFragmentDoc, RelationMinAggregateFragmentDoc, RelationType, RelocateInsightDocument, RemoveInsightFromReportDocument, ReportConnectionFragmentDoc, ReportCountAggregateFragmentDoc, ReportDocument, ReportFragmentDoc, ReportMaxAggregateFragmentDoc, ReportMemberAvgAggregateFragmentDoc, ReportMemberCountAggregateFragmentDoc, ReportMemberFragmentDoc, ReportMemberMaxAggregateFragmentDoc, ReportMemberMinAggregateFragmentDoc, ReportMemberSize, ReportMemberSumAggregateFragmentDoc, ReportMinAggregateFragmentDoc, ReportOrderByRelevanceFieldEnum, Report_InsightsDocument, Report_LayoutDocument, Report_Layout_InsightDocument, ReportsDocument, ResetWorkspaceDocument, ResolvePulseEventDocument, ResolvedFileUrlFragmentDoc, ScheduleWorkspaceDeletionDocument, SendMessageDocument, SendMessageModel, SetDatabasePrimaryKeyDocument, SkillCatalogDocument, SkillCatalogItemFragmentDoc, SkillCatalogSource, SortOrder, StreamEventSchemaAnchorFragmentDoc, StreamMessageContentOutputFragmentDoc, StreamMessageOutputFragmentDoc, SyncEventAvgAggregateFragmentDoc, SyncEventCountAggregateFragmentDoc, SyncEventCursorAvgAggregateFragmentDoc, SyncEventCursorCountAggregateFragmentDoc, SyncEventCursorFragmentDoc, SyncEventCursorMaxAggregateFragmentDoc, SyncEventCursorMinAggregateFragmentDoc, SyncEventCursorSumAggregateFragmentDoc, SyncEventFragmentDoc, SyncEventMaxAggregateFragmentDoc, SyncEventMinAggregateFragmentDoc, SyncEventSumAggregateFragmentDoc, SyncProjectDesktopBindingDocument, TableConnectionFragmentDoc, TableCountAggregateFragmentDoc, TableDocument, TableFragmentDoc, TableMaxAggregateFragmentDoc, TableMinAggregateFragmentDoc, TableOrderByRelevanceFieldEnum, TableStatus, Table_DatabaseDocument, Table_Database_EngineDocument, Table_DocumentDocument, Table_Document_ContentsDocument, Table_Document_FileDocument, Table_Document_FormatDocument, Table_FromRelationsDocument, Table_ToRelationsDocument, TablesDocument, TextBlockEventOutputFragmentDoc, TextDeltaEventOutputFragmentDoc, TokenUsageAvgAggregateFragmentDoc, TokenUsageCountAggregateFragmentDoc, TokenUsageFragmentDoc, TokenUsageLimit, TokenUsageMaxAggregateFragmentDoc, TokenUsageMinAggregateFragmentDoc, TokenUsageSumAggregateFragmentDoc, TokenUsageUpdatesDocument, ToolInputDeltaEventOutputFragmentDoc, ToolResultArtifactOutputFragmentDoc, ToolResultEventOutputFragmentDoc, ToolStartEventOutputFragmentDoc, UpdateAgentDocument, UpdateArtifactNameDocument, UpdateChatDocument, UpdateDatabaseDocument, UpdateDocumentDocument, UpdateFolderDocument, UpdateInsightDocument, UpdateInsightInReportDocument, UpdateInsightThumbnailDocument, UpdateInterpDocument, UpdateLiveContextDocument, UpdateProjectDocument, UpdatePulseTriggerDocument, UpdateReportDocument, UpdateTableDocument, UpdateUserSkillFileDocument, UpdateUserSkillFolderDocument, UpsertAiProviderSettingDocument, UpsertWorkspaceAiModelDocument, UsageHistoryGranularity, UsageMetaOutputFragmentDoc, UsageStatusFragmentDoc, UsageWindowsStatusTypeFragmentDoc, UserAiProviderSettingCountAggregateFragmentDoc, UserAiProviderSettingFragmentDoc, UserAiProviderSettingMaxAggregateFragmentDoc, UserAiProviderSettingMinAggregateFragmentDoc, UserSkillFileCountAggregateFragmentDoc, UserSkillFileDocument, UserSkillFileFragmentDoc, UserSkillFileMaxAggregateFragmentDoc, UserSkillFileMinAggregateFragmentDoc, UserSkillFileModelFragmentDoc, UserSkillFilesDocument, UserSkillFolderCountAggregateFragmentDoc, UserSkillFolderDocument, UserSkillFolderFragmentDoc, UserSkillFolderMaxAggregateFragmentDoc, UserSkillFolderMinAggregateFragmentDoc, UserSkillFolderModelFragmentDoc, UserSkillFoldersDocument, WidgetBlockCompleteEventOutputFragmentDoc, WidgetBlockErrorEventOutputFragmentDoc, WidgetBlockStartEventOutputFragmentDoc, WidgetHtmlDeltaEventOutputFragmentDoc, WindowDetailTypeFragmentDoc, WorkspaceAiModelDocument, WorkspaceAiModelSettingCountAggregateFragmentDoc, WorkspaceAiModelSettingFragmentDoc, WorkspaceAiModelSettingMaxAggregateFragmentDoc, WorkspaceAiModelSettingMinAggregateFragmentDoc, WorkspaceDeleteScheduleCountAggregateFragmentDoc, WorkspaceDeleteScheduleFragmentDoc, WorkspaceDeleteScheduleMaxAggregateFragmentDoc, WorkspaceDeleteScheduleMinAggregateFragmentDoc, WorkspaceDeletionScheduleDocument } from './chunk-4QI6ACRB.js';
2
- import './chunk-5WRI5ZAA.js';
3
- //# sourceMappingURL=_generated_documents-DDOM6L4I.js.map
4
- //# sourceMappingURL=_generated_documents-DDOM6L4I.js.map