@dvina/sdk 4.0.209 → 4.0.210
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_generated_documents-OVKM6E6J.js +4 -0
- package/dist/{_generated_documents-3SAYA2VU.js.map → _generated_documents-OVKM6E6J.js.map} +1 -1
- package/dist/{_generated_documents-XGKMTVFS.cjs → _generated_documents-UERNUJV2.cjs} +629 -601
- package/dist/{_generated_documents-XGKMTVFS.cjs.map → _generated_documents-UERNUJV2.cjs.map} +1 -1
- package/dist/adapters/angular/index.cjs +4 -4
- package/dist/adapters/angular/index.d.cts +1 -1
- package/dist/adapters/angular/index.d.ts +1 -1
- package/dist/adapters/angular/index.js +2 -2
- package/dist/{chunk-YDFRY555.cjs → chunk-2C5KMNDM.cjs} +16 -2
- package/dist/chunk-2C5KMNDM.cjs.map +1 -0
- package/dist/{chunk-5VW6LFR4.cjs → chunk-5KUJ63KT.cjs} +703 -602
- package/dist/chunk-5KUJ63KT.cjs.map +1 -0
- package/dist/{chunk-BZVKKVUX.js → chunk-BBXV2I6V.js} +10 -3
- package/dist/chunk-BBXV2I6V.js.map +1 -0
- package/dist/{chunk-V75R2VZY.js → chunk-UDAQBW74.js} +103 -6
- package/dist/chunk-UDAQBW74.js.map +1 -0
- package/dist/{client-CcOfALGK.d.cts → client-BQliWrjz.d.cts} +59 -1
- package/dist/{client-YW3i-iSh.d.ts → client-DOYqm17u.d.ts} +59 -1
- package/dist/index.cjs +462 -446
- package/dist/index.d.cts +31 -3
- package/dist/index.d.ts +31 -3
- package/dist/index.js +2 -2
- package/package.json +1 -1
- package/dist/_generated_documents-3SAYA2VU.js +0 -4
- package/dist/chunk-5VW6LFR4.cjs.map +0 -1
- package/dist/chunk-BZVKKVUX.js.map +0 -1
- package/dist/chunk-V75R2VZY.js.map +0 -1
- package/dist/chunk-YDFRY555.cjs.map +0 -1
|
@@ -4085,6 +4085,44 @@ type UsageMetaOutput = {
|
|
|
4085
4085
|
promptTokens: Scalars['Int'];
|
|
4086
4086
|
totalTokens: Scalars['Int'];
|
|
4087
4087
|
};
|
|
4088
|
+
type UserAiProviderSettingCreateInput = {
|
|
4089
|
+
apiKey: Scalars['String'];
|
|
4090
|
+
baseUrl: Scalars['String'];
|
|
4091
|
+
enabled?: InputMaybe<Scalars['Boolean']>;
|
|
4092
|
+
id?: InputMaybe<Scalars['String']>;
|
|
4093
|
+
model: Scalars['String'];
|
|
4094
|
+
};
|
|
4095
|
+
type UserAiProviderSettingUpdateInput = {
|
|
4096
|
+
apiKey?: InputMaybe<Scalars['String']>;
|
|
4097
|
+
baseUrl?: InputMaybe<Scalars['String']>;
|
|
4098
|
+
enabled?: InputMaybe<Scalars['Boolean']>;
|
|
4099
|
+
id?: InputMaybe<Scalars['String']>;
|
|
4100
|
+
model?: InputMaybe<Scalars['String']>;
|
|
4101
|
+
};
|
|
4102
|
+
type UserAiProviderSettingWhereInput = {
|
|
4103
|
+
AND?: InputMaybe<Array<UserAiProviderSettingWhereInput>>;
|
|
4104
|
+
NOT?: InputMaybe<Array<UserAiProviderSettingWhereInput>>;
|
|
4105
|
+
OR?: InputMaybe<Array<UserAiProviderSettingWhereInput>>;
|
|
4106
|
+
apiKey?: InputMaybe<StringFilter>;
|
|
4107
|
+
baseUrl?: InputMaybe<StringFilter>;
|
|
4108
|
+
createdAt?: InputMaybe<DateTimeFilter>;
|
|
4109
|
+
enabled?: InputMaybe<BoolFilter>;
|
|
4110
|
+
id?: InputMaybe<StringFilter>;
|
|
4111
|
+
model?: InputMaybe<StringFilter>;
|
|
4112
|
+
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
4113
|
+
};
|
|
4114
|
+
type UserAiProviderSettingWhereUniqueInput = {
|
|
4115
|
+
AND?: InputMaybe<Array<UserAiProviderSettingWhereInput>>;
|
|
4116
|
+
NOT?: InputMaybe<Array<UserAiProviderSettingWhereInput>>;
|
|
4117
|
+
OR?: InputMaybe<Array<UserAiProviderSettingWhereInput>>;
|
|
4118
|
+
apiKey?: InputMaybe<StringFilter>;
|
|
4119
|
+
baseUrl?: InputMaybe<StringFilter>;
|
|
4120
|
+
createdAt?: InputMaybe<DateTimeFilter>;
|
|
4121
|
+
enabled?: InputMaybe<BoolFilter>;
|
|
4122
|
+
id?: InputMaybe<Scalars['String']>;
|
|
4123
|
+
model?: InputMaybe<StringFilter>;
|
|
4124
|
+
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
4125
|
+
};
|
|
4088
4126
|
type WidgetBlockCompleteEventOutput = {
|
|
4089
4127
|
__typename?: 'WidgetBlockCompleteEventOutput';
|
|
4090
4128
|
index: Scalars['Int'];
|
|
@@ -6262,6 +6300,15 @@ type UsageWindowsStatusTypeFragment = {
|
|
|
6262
6300
|
windowStart?: string | null;
|
|
6263
6301
|
} | null;
|
|
6264
6302
|
};
|
|
6303
|
+
type UserAiProviderSettingFragment = {
|
|
6304
|
+
__typename: 'UserAiProviderSetting';
|
|
6305
|
+
baseUrl: string;
|
|
6306
|
+
createdAt: string;
|
|
6307
|
+
enabled: boolean;
|
|
6308
|
+
id: string;
|
|
6309
|
+
model: string;
|
|
6310
|
+
updatedAt: string;
|
|
6311
|
+
};
|
|
6265
6312
|
type UserSkillFileFragment = {
|
|
6266
6313
|
__typename: 'UserSkillFile';
|
|
6267
6314
|
createdAt: string;
|
|
@@ -6428,6 +6475,9 @@ type CreateUserSkillFolderMutationVariables = Exact<{
|
|
|
6428
6475
|
type DeleteAgentMutationVariables = Exact<{
|
|
6429
6476
|
where: AgentWhereUniqueInput;
|
|
6430
6477
|
}>;
|
|
6478
|
+
type DeleteAiProviderSettingMutationVariables = Exact<{
|
|
6479
|
+
where: UserAiProviderSettingWhereUniqueInput;
|
|
6480
|
+
}>;
|
|
6431
6481
|
type DeleteArtifactMutationVariables = Exact<{
|
|
6432
6482
|
where: ArtifactWhereUniqueInput;
|
|
6433
6483
|
}>;
|
|
@@ -6614,6 +6664,11 @@ type UpdateUserSkillFolderMutationVariables = Exact<{
|
|
|
6614
6664
|
id: Scalars['ID'];
|
|
6615
6665
|
path: Scalars['String'];
|
|
6616
6666
|
}>;
|
|
6667
|
+
type UpsertAiProviderSettingMutationVariables = Exact<{
|
|
6668
|
+
create: UserAiProviderSettingCreateInput;
|
|
6669
|
+
update: UserAiProviderSettingUpdateInput;
|
|
6670
|
+
where: UserAiProviderSettingWhereUniqueInput;
|
|
6671
|
+
}>;
|
|
6617
6672
|
type AgentQueryVariables = Exact<{
|
|
6618
6673
|
id: Scalars['ID'];
|
|
6619
6674
|
}>;
|
|
@@ -6634,6 +6689,9 @@ type AgentsQueryVariables = Exact<{
|
|
|
6634
6689
|
last?: InputMaybe<Scalars['Int']>;
|
|
6635
6690
|
orderBy?: InputMaybe<Array<AgentOrderByWithRelationInput> | AgentOrderByWithRelationInput>;
|
|
6636
6691
|
}>;
|
|
6692
|
+
type AiProviderSettingQueryVariables = Exact<{
|
|
6693
|
+
[key: string]: never;
|
|
6694
|
+
}>;
|
|
6637
6695
|
type ArtifactQueryVariables = Exact<{
|
|
6638
6696
|
id: Scalars['ID'];
|
|
6639
6697
|
}>;
|
|
@@ -7336,4 +7394,4 @@ interface DvinaClientResult {
|
|
|
7336
7394
|
*/
|
|
7337
7395
|
declare function createDvinaClient(options: DvinaSdkOptions): DvinaClientResult;
|
|
7338
7396
|
|
|
7339
|
-
export { type Insight_ThumbnailFileQueryVariables as $, type AbortChatMutationVariables as A, type Artifact_FileQueryVariables as B, type ChatMessageQueryVariables as C, type DvinaSdkOptions as D, type Artifact_MessageQueryVariables as E, type FileFragment as F, type ChatMessage_ChatQueryVariables as G, type ChatMessage_ContentsQueryVariables as H, ContentBlockType as I, type ContentBlockFragment as J, type ChatMessage_FeedbackQueryVariables as K, FeedbackType as L, type FeedbackFragment as M, type Chat_InsightQueryVariables as N, type Insight_ChatQueryVariables as O, ProjectDesktopContextKind as P, type Insight_ReportMembersQueryVariables as Q, ReasoningEffort as R, ReportMemberSize as S, Presentation as T, type ReportMemberFragment as U, type ReportQueryVariables as V, type ReportFragment as W, type Report_InsightsQueryVariables as X, type InsightFragment as Y, type Insight_ReportsQueryVariables as Z, type ReportConnectionFragment as _, ActionType as a, TableStatus as a$, type InsightConnectionFragment as a0, type Report_LayoutQueryVariables as a1, type InsightQueryVariables as a2, type Chat_MessagesQueryVariables as a3, type ChatMessageConnectionFragment as a4, type Chat_ProjectQueryVariables as a5, type DesktopDeviceQueryVariables as a6, type ArtifactConnectionFragment as a7, type AddInsightToReportMutationVariables as a8, type AgentQueryVariables as a9, type ChatMessage_Chat_DesktopDeviceQueryVariables as aA, type ChatMessage_Chat_InsightQueryVariables as aB, type ChatMessage_Chat_ProjectQueryVariables as aC, type ChatMessagesQueryVariables as aD, type ChatQueryVariables as aE, type ChatTitleEventOutputFragment as aF, type Chat_DesktopDevice_DesktopBindingsQueryVariables as aG, type Chat_Insight_ReportMembersQueryVariables as aH, type Chat_Insight_ThumbnailFileQueryVariables as aI, type Chat_Project_DesktopBindingQueryVariables as aJ, type ChatsQueryVariables as aK, type ConnectIntegrationMutationVariables as aL, type CreateIntegrationOutputFragment as aM, type ConsumePulseEventsMutationVariables as aN, type ContentMaskFragment as aO, type ContinueImportedChatMutationVariables as aP, type ContinueInterpretationMutationVariables as aQ, type CreateAgentMutationVariables as aR, type CreateChatMutationVariables as aS, type CreateDatabaseMutationVariables as aT, type DatabaseFragment as aU, type Database_EngineQueryVariables as aV, type DatabaseEngineFragment as aW, type DatabaseCatalogQueryVariables as aX, type DatabaseCatalogFragment as aY, type DatabaseCatalog_EngineQueryVariables as aZ, type Database_TablesQueryVariables as a_, type AgentsQueryVariables as aa, type ArtifactQueryVariables as ab, type Artifact_Chat_DesktopDeviceQueryVariables as ac, type Artifact_Chat_InsightQueryVariables as ad, type Artifact_Chat_ProjectQueryVariables as ae, type Artifact_Message_ChatQueryVariables as af, type Artifact_Message_ContentsQueryVariables as ag, type Artifact_Message_FeedbackQueryVariables as ah, type ArtifactsQueryVariables as ai, type AudioEventOutputFragment as aj, type CancelOauthFlowMutationVariables as ak, type CancelWorkspaceDeletionMutationVariables as al, type CandidateFragment as am, type LiveContextQueryVariables as an, LiveContextStatus as ao, type LiveContextFragment as ap, type LiveContext_ItemsQueryVariables as aq, FeedActionType as ar, type FeedItemGeneratedFragment as as, type LiveContext_SourceQueryVariables as at, type CandidateEvidenceFragment as au, type ImportedChatSummaryOutputFragment as av, type ChatImportExecuteOutputFragment as aw, ChatSourceImportFidelityEnum as ax, ChatSourceImportModeEnum as ay, type ChatImportPreviewOutputFragment as az, type ActionFragment as b, type PulseEventFragment as b$, type TableFragment as b0, type Table_DatabaseQueryVariables as b1, type Table_DocumentQueryVariables as b2, type DocumentFragment as b3, type Document_ContentsQueryVariables as b4, type DocumentContentFragment as b5, type DocumentQueryVariables as b6, type Document_FileQueryVariables as b7, type Document_FormatQueryVariables as b8, type DocumentFormatFragment as b9, type DatabaseConnectionFragment as bA, type DatabaseQueryVariables as bB, type DatabaseSchemaQueryVariables as bC, type Database_Engine_CatalogQueryVariables as bD, type DatabasesQueryVariables as bE, type DeepAnalysisUsageFragment as bF, type DeleteAgentMutationVariables as bG, type DeleteArtifactMutationVariables as bH, type DeleteChatMutationVariables as bI, type DeleteDatabaseMutationVariables as bJ, type DeleteDocumentMutationVariables as bK, type DeleteFolderMutationVariables as bL, type DeleteInsightMutationVariables as bM, type DeleteInsightsMutationVariables as bN, type DeleteIntegrationMutationVariables as bO, type DeleteProjectMutationVariables as bP, type DeleteReportMutationVariables as bQ, type DeleteTableMutationVariables as bR, type DeleteUserSkillFileMutationVariables as bS, type DeleteUserSkillFolderMutationVariables as bT, type DesktopDeviceConnectionFragment as bU, type DesktopDevicesQueryVariables as bV, type DevAccessTokenOutputFragment as bW, type DisconnectIntegrationMutationVariables as bX, type DismissPulseEventMutationVariables as bY, PulseEventPriority as bZ, PulseEventKind as b_, type DocumentCatalogQueryVariables as ba, type DocumentCatalogFragment as bb, type DocumentCatalog_FormatQueryVariables as bc, type Document_TablesQueryVariables as bd, type Table_FromRelationsQueryVariables as be, RelationType as bf, type RelationFragment as bg, type TableQueryVariables as bh, type Table_ToRelationsQueryVariables as bi, type TableConnectionFragment as bj, type CreateDocumentMutationVariables as bk, type CreateFeedbackMutationVariables as bl, type CreateFolderMutationVariables as bm, type FolderFragment as bn, type CreateInsightMutationVariables as bo, type CreateIntegrationMutationVariables as bp, type CreateProjectMutationVariables as bq, type CreateReportMutationVariables as br, type CreateTableMutationVariables as bs, type CreateUserSkillFileMutationVariables as bt, type UserSkillFileModelFragment as bu, type CreateUserSkillFolderMutationVariables as bv, type UserSkillFolderModelFragment as bw, type CubeModelFragment as bx, type DatabaseCatalogConnectionFragment as by, type DatabaseCatalogsQueryVariables as bz, ChatMessageFromEnum as c, type FeedProjectDataFragment as c$, type PulseEvent_IntegrationQueryVariables as c0, IntegrationStatus as c1, type IntegrationFragment as c2, type Integration_ProviderQueryVariables as c3, type IntegrationProviderFragment as c4, type IntegrationCatalogQueryVariables as c5, type IntegrationCatalogFragment as c6, type IntegrationCatalog_ProviderQueryVariables as c7, type DocumentCatalogConnectionFragment as c8, type DocumentCatalogsQueryVariables as c9, type UpdateDatabaseMutationVariables as cA, type UpdateDocumentMutationVariables as cB, type UpdateFolderMutationVariables as cC, type UpdateInsightMutationVariables as cD, type UpdateInsightInReportMutationVariables as cE, type UpdateInsightThumbnailMutationVariables as cF, type UpdateInterpMutationVariables as cG, InterpretationType as cH, AiResourceType as cI, type InterpretationFragment as cJ, type UpdateLiveContextMutationVariables as cK, type UpdateProjectMutationVariables as cL, type UpdatePulseTriggerMutationVariables as cM, type PulseTriggerSettingModelFragment as cN, type UpdateReportMutationVariables as cO, type UpdateTableMutationVariables as cP, type UpdateUserSkillFileMutationVariables as cQ, type UpdateUserSkillFolderMutationVariables as cR, type ExportQueryVariables as cS, type ExportWithInsightIdQueryVariables as cT, type FeedItemQueryVariables as cU, FeedItemKind as cV, type FeedDocumentDataFragment as cW, type FeedArtifactDataFragment as cX, type FeedDatabaseDataFragment as cY, type FeedInsightDataFragment as cZ, type FeedIntegrationDataFragment as c_, type DocumentConnectionFragment as ca, type Document_Format_CatalogQueryVariables as cb, type DocumentsQueryVariables as cc, type ChatStreamClient as cd, type ExecuteChatImportMutationVariables as ce, type GenerateUploadUriMutationVariables as cf, type FileModelFragment as cg, type PreviewChatImportMutationVariables as ch, type ReanalyzeDocumentMutationVariables as ci, type RefineAgentInstructionMutationVariables as cj, type RefineSkillInstructionMutationVariables as ck, type RefreshDatabaseSchemaMutationVariables as cl, type RefreshInsightMutationVariables as cm, type RegisterDesktopDeviceMutationVariables as cn, type ReinterpretSourceMutationVariables as co, type ReinterpretSourcesOfuserMutationVariables as cp, type RelocateInsightMutationVariables as cq, type RemoveInsightFromReportMutationVariables as cr, type ResolvePulseEventMutationVariables as cs, type WorkspaceDeleteScheduleFragment as ct, type SendMessageMutationVariables as cu, type SetDatabasePrimaryKeyMutationVariables as cv, type SyncProjectDesktopBindingMutationVariables as cw, type UpdateAgentMutationVariables as cx, type UpdateArtifactNameMutationVariables as cy, type UpdateChatMutationVariables as cz, type ChatMessageFragment as d, type PulseEventConnectionFragment as d$, type FeedLiveContextDataFragment as d0, type FeedPulseDataFragment as d1, type FeedItemFragment as d2, type FeedItem_ActionQueryVariables as d3, type FeedSendMessageActionFragment as d4, type FeedItem_DataQueryVariables as d5, type FeedItemsQueryVariables as d6, type FeedConnectionFragment as d7, type FileQueryVariables as d8, type FileMetaQueryVariables as d9, type IntegrationCatalogsQueryVariables as dA, type IntegrationCatalogConnectionFragment as dB, type IntegrationsQueryVariables as dC, type IntegrationConnectionFragment as dD, type InterpretationsQueryVariables as dE, type InterpretationConnectionFragment as dF, type LiveContextsQueryVariables as dG, type LiveContextConnectionFragment as dH, type LocalSandboxDeviceStatusesQueryVariables as dI, LocalSandboxDeviceConnectionState as dJ, type LocalSandboxDeviceStatusModelFragment as dK, type NotificationQueryVariables as dL, NotificationCategory as dM, NotificationPriority as dN, NotificationStatus as dO, type NotificationFragment as dP, type NotificationsQueryVariables as dQ, type NotificationConnectionFragment as dR, type NotificationsByReferenceQueryVariables as dS, type PrivacyStatsQueryVariables as dT, type PrivacyStatsFragment as dU, type ProjectsQueryVariables as dV, type ProjectConnectionFragment as dW, type PulseAppSummaryQueryVariables as dX, type PulseAppSummaryModelFragment as dY, type PulseEventQueryVariables as dZ, type PulseEventsQueryVariables as d_, type FileUrlsQueryVariables as da, type ResolvedFileUrlFragment as db, type FindFitTierQueryVariables as dc, EntitlementTier as dd, type FolderQueryVariables as de, type FoldersQueryVariables as df, type FolderConnectionFragment as dg, type GetCapabilityQueryVariables as dh, type GetDevAccessTokenQueryVariables as di, type GetLimitQueryVariables as dj, type GetRemainingQueryVariables as dk, type GetTokenUsageByModelQueryVariables as dl, type ModelTokenUsageFragment as dm, type GetTokenUsageHistoryQueryVariables as dn, type GetTokenUsageStatusQueryVariables as dp, TokenUsageLimit as dq, ActiveWindowType as dr, type WindowDetailTypeFragment as ds, type UsageWindowsStatusTypeFragment as dt, type UsageStatusFragment as du, type GetTokenUsageStatus_WindowsQueryVariables as dv, type GetUsageQueryVariables as dw, type InsightsQueryVariables as dx, type IntegrationQueryVariables as dy, type IntegrationCatalogToolsQueryVariables as dz, type ChatMessage_ArtifactsQueryVariables as e, type UserSkillFolderFragment as e$, type PulseTriggerSettingsQueryVariables as e0, type QueryQueryVariables as e1, type QueryWithInsightIdQueryVariables as e2, type QueryWithMessageIdQueryVariables as e3, type ReportsQueryVariables as e4, type TablesQueryVariables as e5, type UserSkillFileQueryVariables as e6, type UserSkillFilesQueryVariables as e7, type UserSkillFolderQueryVariables as e8, type UserSkillFoldersQueryVariables as e9, type MessageEndEventOutputFragment as eA, type MessageStartEventOutputFragment as eB, type ProgressSummaryEventOutputFragment as eC, type Project_DesktopBinding_DeviceQueryVariables as eD, type PulseEvent_Integration_ProviderQueryVariables as eE, type ReasoningEventOutputFragment as eF, type ResetWorkspaceMutationVariables as eG, type ScheduleWorkspaceDeletionMutationVariables as eH, type TextBlockEventOutputFragment as eI, type TextDeltaEventOutputFragment as eJ, type WidgetBlockStartEventOutputFragment as eK, type WidgetHtmlDeltaEventOutputFragment as eL, type WidgetBlockCompleteEventOutputFragment as eM, type WidgetBlockErrorEventOutputFragment as eN, type ToolStartEventOutputFragment as eO, type ToolInputDeltaEventOutputFragment as eP, type ToolResultArtifactOutputFragment as eQ, type ToolResultEventOutputFragment as eR, type StreamEventSchemaAnchorFragment as eS, type SyncEventFragment as eT, type SyncEventCursorFragment as eU, type Table_Database_EngineQueryVariables as eV, type Table_Document_ContentsQueryVariables as eW, type Table_Document_FileQueryVariables as eX, type Table_Document_FormatQueryVariables as eY, type TokenUsageFragment as eZ, type UserSkillFileFragment as e_, type WorkspaceDeletionScheduleQueryVariables as ea, type McpAuthUpdatesSubscriptionVariables as eb, McpAuthPhase as ec, type McpAuthUpdateModelFragment as ed, type TokenUsageUpdatesSubscriptionVariables as ee, type EvidenceFragment as ef, type FailedSyncEventIngestionFragment as eg, type StreamMessageContentOutputFragment as eh, type StreamMessageOutputFragment as ei, type UsageMetaOutputFragment as ej, type FinalContentEventOutputFragment as ek, type GetTokenUsageStatus_Windows_DayQueryVariables as el, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as em, type GetTokenUsageStatus_Windows_MonthQueryVariables as en, type GetTokenUsageStatus_Windows_WeekQueryVariables as eo, type InferenceRequestAuditFragment as ep, type Insight_Chat_DesktopDeviceQueryVariables as eq, type Insight_Chat_ProjectQueryVariables as er, type Integration_Provider_CatalogQueryVariables as es, type InvocationFragment as et, type LiveContext_Source_EvidencesQueryVariables as eu, type McpClientInformationFragment as ev, type McpCodeVerifierFragment as ew, type McpServerFragment as ex, type McpTokensFragment as ey, type McpToolFragment as ez, ArtifactKind as f, type ActiveChatStreamClient as f0, type ActiveChatStreamListener as f1, type ActiveChatStreamListenerHandlers as f2, AgentOrderByRelevanceFieldEnum as f3, ArtifactOrderByRelevanceFieldEnum as f4, CapabilityType as f5, ChatMessageOrderByRelevanceFieldEnum as f6, ChatOrderByRelevanceFieldEnum as f7, type ChatStreamClientOptions as f8, type ChatStreamEvent as f9, QueryMode as fA, ReportOrderByRelevanceFieldEnum as fB, SendMessageModel as fC, SortOrder as fD, TableOrderByRelevanceFieldEnum as fE, UsageHistoryGranularity as fF, createChatStreamClient as fG, createDvinaClient as fH, type ChatStreamListener as fa, type ChatStreamListenerHandlers as fb, DatabaseCatalogOrderByRelevanceFieldEnum as fc, DatabaseOrderByRelevanceFieldEnum as fd, DesktopDeviceOrderByRelevanceFieldEnum as fe, DocumentCatalogOrderByRelevanceFieldEnum as ff, DocumentOrderByRelevanceFieldEnum as fg, type DvinaSdkBaseOptions as fh, type DvinaSdkCallbackOptions as fi, type DvinaSdkTokenOptions as fj, FeedItemOrderByRelevanceFieldEnum as fk, FeedbackOrderByRelevanceFieldEnum as fl, FileOrderByRelevanceFieldEnum as fm, FileUrlVariant as fn, FolderOrderByRelevanceFieldEnum as fo, InsightOrderByRelevanceFieldEnum as fp, IntegrationCatalogOrderByRelevanceFieldEnum as fq, IntegrationOrderByRelevanceFieldEnum as fr, InterpretationOrderByRelevanceFieldEnum as fs, LimitType as ft, LiveContextOrderByRelevanceFieldEnum as fu, NotificationOrderByRelevanceFieldEnum as fv, NullsOrder as fw, ProjectDesktopBindingOrderByRelevanceFieldEnum as fx, ProjectOrderByRelevanceFieldEnum as fy, PulseEventOrderByRelevanceFieldEnum as fz, type ArtifactFragment as g, type Artifact_ChatQueryVariables as h, ChatSourceProviderEnum as i, type ChatFragment as j, type Chat_AgentsQueryVariables as k, type AgentFragment as l, type Agent_ChatsQueryVariables as m, type ChatConnectionFragment as n, type AgentConnectionFragment as o, type Chat_ArtifactsQueryVariables as p, type Chat_DesktopDeviceQueryVariables as q, type DesktopDeviceFragment as r, type DesktopDevice_ChatsQueryVariables as s, type DesktopDevice_DesktopBindingsQueryVariables as t, type ProjectDesktopBindingFragment as u, type ProjectQueryVariables as v, ProjectSource as w, type ProjectFragment as x, type Project_ChatsQueryVariables as y, type Project_DesktopBindingQueryVariables as z };
|
|
7397
|
+
export { type Insight_ThumbnailFileQueryVariables as $, type AbortChatMutationVariables as A, type Artifact_FileQueryVariables as B, type ChatMessageQueryVariables as C, type DvinaSdkOptions as D, type Artifact_MessageQueryVariables as E, type FileFragment as F, type ChatMessage_ChatQueryVariables as G, type ChatMessage_ContentsQueryVariables as H, ContentBlockType as I, type ContentBlockFragment as J, type ChatMessage_FeedbackQueryVariables as K, FeedbackType as L, type FeedbackFragment as M, type Chat_InsightQueryVariables as N, type Insight_ChatQueryVariables as O, ProjectDesktopContextKind as P, type Insight_ReportMembersQueryVariables as Q, ReasoningEffort as R, ReportMemberSize as S, Presentation as T, type ReportMemberFragment as U, type ReportQueryVariables as V, type ReportFragment as W, type Report_InsightsQueryVariables as X, type InsightFragment as Y, type Insight_ReportsQueryVariables as Z, type ReportConnectionFragment as _, ActionType as a, type DatabaseCatalog_EngineQueryVariables as a$, type InsightConnectionFragment as a0, type Report_LayoutQueryVariables as a1, type InsightQueryVariables as a2, type Chat_MessagesQueryVariables as a3, type ChatMessageConnectionFragment as a4, type Chat_ProjectQueryVariables as a5, type DesktopDeviceQueryVariables as a6, type ArtifactConnectionFragment as a7, type AddInsightToReportMutationVariables as a8, type AgentQueryVariables as a9, ChatSourceImportModeEnum as aA, type ChatImportPreviewOutputFragment as aB, type ChatMessage_Chat_DesktopDeviceQueryVariables as aC, type ChatMessage_Chat_InsightQueryVariables as aD, type ChatMessage_Chat_ProjectQueryVariables as aE, type ChatMessagesQueryVariables as aF, type ChatQueryVariables as aG, type ChatTitleEventOutputFragment as aH, type Chat_DesktopDevice_DesktopBindingsQueryVariables as aI, type Chat_Insight_ReportMembersQueryVariables as aJ, type Chat_Insight_ThumbnailFileQueryVariables as aK, type Chat_Project_DesktopBindingQueryVariables as aL, type ChatsQueryVariables as aM, type ConnectIntegrationMutationVariables as aN, type CreateIntegrationOutputFragment as aO, type ConsumePulseEventsMutationVariables as aP, type ContentMaskFragment as aQ, type ContinueImportedChatMutationVariables as aR, type ContinueInterpretationMutationVariables as aS, type CreateAgentMutationVariables as aT, type CreateChatMutationVariables as aU, type CreateDatabaseMutationVariables as aV, type DatabaseFragment as aW, type Database_EngineQueryVariables as aX, type DatabaseEngineFragment as aY, type DatabaseCatalogQueryVariables as aZ, type DatabaseCatalogFragment as a_, type AgentsQueryVariables as aa, type AiProviderSettingQueryVariables as ab, type UserAiProviderSettingFragment as ac, type ArtifactQueryVariables as ad, type Artifact_Chat_DesktopDeviceQueryVariables as ae, type Artifact_Chat_InsightQueryVariables as af, type Artifact_Chat_ProjectQueryVariables as ag, type Artifact_Message_ChatQueryVariables as ah, type Artifact_Message_ContentsQueryVariables as ai, type Artifact_Message_FeedbackQueryVariables as aj, type ArtifactsQueryVariables as ak, type AudioEventOutputFragment as al, type CancelOauthFlowMutationVariables as am, type CancelWorkspaceDeletionMutationVariables as an, type CandidateFragment as ao, type LiveContextQueryVariables as ap, LiveContextStatus as aq, type LiveContextFragment as ar, type LiveContext_ItemsQueryVariables as as, FeedActionType as at, type FeedItemGeneratedFragment as au, type LiveContext_SourceQueryVariables as av, type CandidateEvidenceFragment as aw, type ImportedChatSummaryOutputFragment as ax, type ChatImportExecuteOutputFragment as ay, ChatSourceImportFidelityEnum as az, type ActionFragment as b, type DismissPulseEventMutationVariables as b$, type Database_TablesQueryVariables as b0, TableStatus as b1, type TableFragment as b2, type Table_DatabaseQueryVariables as b3, type Table_DocumentQueryVariables as b4, type DocumentFragment as b5, type Document_ContentsQueryVariables as b6, type DocumentContentFragment as b7, type DocumentQueryVariables as b8, type Document_FileQueryVariables as b9, type DatabaseCatalogConnectionFragment as bA, type DatabaseCatalogsQueryVariables as bB, type DatabaseConnectionFragment as bC, type DatabaseQueryVariables as bD, type DatabaseSchemaQueryVariables as bE, type Database_Engine_CatalogQueryVariables as bF, type DatabasesQueryVariables as bG, type DeepAnalysisUsageFragment as bH, type DeleteAgentMutationVariables as bI, type DeleteAiProviderSettingMutationVariables as bJ, type DeleteArtifactMutationVariables as bK, type DeleteChatMutationVariables as bL, type DeleteDatabaseMutationVariables as bM, type DeleteDocumentMutationVariables as bN, type DeleteFolderMutationVariables as bO, type DeleteInsightMutationVariables as bP, type DeleteInsightsMutationVariables as bQ, type DeleteIntegrationMutationVariables as bR, type DeleteProjectMutationVariables as bS, type DeleteReportMutationVariables as bT, type DeleteTableMutationVariables as bU, type DeleteUserSkillFileMutationVariables as bV, type DeleteUserSkillFolderMutationVariables as bW, type DesktopDeviceConnectionFragment as bX, type DesktopDevicesQueryVariables as bY, type DevAccessTokenOutputFragment as bZ, type DisconnectIntegrationMutationVariables as b_, type Document_FormatQueryVariables as ba, type DocumentFormatFragment as bb, type DocumentCatalogQueryVariables as bc, type DocumentCatalogFragment as bd, type DocumentCatalog_FormatQueryVariables as be, type Document_TablesQueryVariables as bf, type Table_FromRelationsQueryVariables as bg, RelationType as bh, type RelationFragment as bi, type TableQueryVariables as bj, type Table_ToRelationsQueryVariables as bk, type TableConnectionFragment as bl, type CreateDocumentMutationVariables as bm, type CreateFeedbackMutationVariables as bn, type CreateFolderMutationVariables as bo, type FolderFragment as bp, type CreateInsightMutationVariables as bq, type CreateIntegrationMutationVariables as br, type CreateProjectMutationVariables as bs, type CreateReportMutationVariables as bt, type CreateTableMutationVariables as bu, type CreateUserSkillFileMutationVariables as bv, type UserSkillFileModelFragment as bw, type CreateUserSkillFolderMutationVariables as bx, type UserSkillFolderModelFragment as by, type CubeModelFragment as bz, ChatMessageFromEnum as c, type FeedArtifactDataFragment as c$, PulseEventPriority as c0, PulseEventKind as c1, type PulseEventFragment as c2, type PulseEvent_IntegrationQueryVariables as c3, IntegrationStatus as c4, type IntegrationFragment as c5, type Integration_ProviderQueryVariables as c6, type IntegrationProviderFragment as c7, type IntegrationCatalogQueryVariables as c8, type IntegrationCatalogFragment as c9, type UpdateAgentMutationVariables as cA, type UpdateArtifactNameMutationVariables as cB, type UpdateChatMutationVariables as cC, type UpdateDatabaseMutationVariables as cD, type UpdateDocumentMutationVariables as cE, type UpdateFolderMutationVariables as cF, type UpdateInsightMutationVariables as cG, type UpdateInsightInReportMutationVariables as cH, type UpdateInsightThumbnailMutationVariables as cI, type UpdateInterpMutationVariables as cJ, InterpretationType as cK, AiResourceType as cL, type InterpretationFragment as cM, type UpdateLiveContextMutationVariables as cN, type UpdateProjectMutationVariables as cO, type UpdatePulseTriggerMutationVariables as cP, type PulseTriggerSettingModelFragment as cQ, type UpdateReportMutationVariables as cR, type UpdateTableMutationVariables as cS, type UpdateUserSkillFileMutationVariables as cT, type UpdateUserSkillFolderMutationVariables as cU, type UpsertAiProviderSettingMutationVariables as cV, type ExportQueryVariables as cW, type ExportWithInsightIdQueryVariables as cX, type FeedItemQueryVariables as cY, FeedItemKind as cZ, type FeedDocumentDataFragment as c_, type IntegrationCatalog_ProviderQueryVariables as ca, type DocumentCatalogConnectionFragment as cb, type DocumentCatalogsQueryVariables as cc, type DocumentConnectionFragment as cd, type Document_Format_CatalogQueryVariables as ce, type DocumentsQueryVariables as cf, type ChatStreamClient as cg, type ExecuteChatImportMutationVariables as ch, type GenerateUploadUriMutationVariables as ci, type FileModelFragment as cj, type PreviewChatImportMutationVariables as ck, type ReanalyzeDocumentMutationVariables as cl, type RefineAgentInstructionMutationVariables as cm, type RefineSkillInstructionMutationVariables as cn, type RefreshDatabaseSchemaMutationVariables as co, type RefreshInsightMutationVariables as cp, type RegisterDesktopDeviceMutationVariables as cq, type ReinterpretSourceMutationVariables as cr, type ReinterpretSourcesOfuserMutationVariables as cs, type RelocateInsightMutationVariables as ct, type RemoveInsightFromReportMutationVariables as cu, type ResolvePulseEventMutationVariables as cv, type WorkspaceDeleteScheduleFragment as cw, type SendMessageMutationVariables as cx, type SetDatabasePrimaryKeyMutationVariables as cy, type SyncProjectDesktopBindingMutationVariables as cz, type ChatMessageFragment as d, type PulseAppSummaryQueryVariables as d$, type FeedDatabaseDataFragment as d0, type FeedInsightDataFragment as d1, type FeedIntegrationDataFragment as d2, type FeedProjectDataFragment as d3, type FeedLiveContextDataFragment as d4, type FeedPulseDataFragment as d5, type FeedItemFragment as d6, type FeedItem_ActionQueryVariables as d7, type FeedSendMessageActionFragment as d8, type FeedItem_DataQueryVariables as d9, type GetUsageQueryVariables as dA, type InsightsQueryVariables as dB, type IntegrationQueryVariables as dC, type IntegrationCatalogToolsQueryVariables as dD, type IntegrationCatalogsQueryVariables as dE, type IntegrationCatalogConnectionFragment as dF, type IntegrationsQueryVariables as dG, type IntegrationConnectionFragment as dH, type InterpretationsQueryVariables as dI, type InterpretationConnectionFragment as dJ, type LiveContextsQueryVariables as dK, type LiveContextConnectionFragment as dL, type LocalSandboxDeviceStatusesQueryVariables as dM, LocalSandboxDeviceConnectionState as dN, type LocalSandboxDeviceStatusModelFragment as dO, type NotificationQueryVariables as dP, NotificationCategory as dQ, NotificationPriority as dR, NotificationStatus as dS, type NotificationFragment as dT, type NotificationsQueryVariables as dU, type NotificationConnectionFragment as dV, type NotificationsByReferenceQueryVariables as dW, type PrivacyStatsQueryVariables as dX, type PrivacyStatsFragment as dY, type ProjectsQueryVariables as dZ, type ProjectConnectionFragment as d_, type FeedItemsQueryVariables as da, type FeedConnectionFragment as db, type FileQueryVariables as dc, type FileMetaQueryVariables as dd, type FileUrlsQueryVariables as de, type ResolvedFileUrlFragment as df, type FindFitTierQueryVariables as dg, EntitlementTier as dh, type FolderQueryVariables as di, type FoldersQueryVariables as dj, type FolderConnectionFragment as dk, type GetCapabilityQueryVariables as dl, type GetDevAccessTokenQueryVariables as dm, type GetLimitQueryVariables as dn, type GetRemainingQueryVariables as dp, type GetTokenUsageByModelQueryVariables as dq, type ModelTokenUsageFragment as dr, type GetTokenUsageHistoryQueryVariables as ds, type GetTokenUsageStatusQueryVariables as dt, TokenUsageLimit as du, ActiveWindowType as dv, type WindowDetailTypeFragment as dw, type UsageWindowsStatusTypeFragment as dx, type UsageStatusFragment as dy, type GetTokenUsageStatus_WindowsQueryVariables as dz, type ChatMessage_ArtifactsQueryVariables as e, type Table_Document_FileQueryVariables as e$, type PulseAppSummaryModelFragment as e0, type PulseEventQueryVariables as e1, type PulseEventsQueryVariables as e2, type PulseEventConnectionFragment as e3, type PulseTriggerSettingsQueryVariables as e4, type QueryQueryVariables as e5, type QueryWithInsightIdQueryVariables as e6, type QueryWithMessageIdQueryVariables as e7, type ReportsQueryVariables as e8, type TablesQueryVariables as e9, type McpCodeVerifierFragment as eA, type McpServerFragment as eB, type McpTokensFragment as eC, type McpToolFragment as eD, type MessageEndEventOutputFragment as eE, type MessageStartEventOutputFragment as eF, type ProgressSummaryEventOutputFragment as eG, type Project_DesktopBinding_DeviceQueryVariables as eH, type PulseEvent_Integration_ProviderQueryVariables as eI, type ReasoningEventOutputFragment as eJ, type ResetWorkspaceMutationVariables as eK, type ScheduleWorkspaceDeletionMutationVariables as eL, type TextBlockEventOutputFragment as eM, type TextDeltaEventOutputFragment as eN, type WidgetBlockStartEventOutputFragment as eO, type WidgetHtmlDeltaEventOutputFragment as eP, type WidgetBlockCompleteEventOutputFragment as eQ, type WidgetBlockErrorEventOutputFragment as eR, type ToolStartEventOutputFragment as eS, type ToolInputDeltaEventOutputFragment as eT, type ToolResultArtifactOutputFragment as eU, type ToolResultEventOutputFragment as eV, type StreamEventSchemaAnchorFragment as eW, type SyncEventFragment as eX, type SyncEventCursorFragment as eY, type Table_Database_EngineQueryVariables as eZ, type Table_Document_ContentsQueryVariables as e_, type UserSkillFileQueryVariables as ea, type UserSkillFilesQueryVariables as eb, type UserSkillFolderQueryVariables as ec, type UserSkillFoldersQueryVariables as ed, type WorkspaceDeletionScheduleQueryVariables as ee, type McpAuthUpdatesSubscriptionVariables as ef, McpAuthPhase as eg, type McpAuthUpdateModelFragment as eh, type TokenUsageUpdatesSubscriptionVariables as ei, type EvidenceFragment as ej, type FailedSyncEventIngestionFragment as ek, type StreamMessageContentOutputFragment as el, type StreamMessageOutputFragment as em, type UsageMetaOutputFragment as en, type FinalContentEventOutputFragment as eo, type GetTokenUsageStatus_Windows_DayQueryVariables as ep, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as eq, type GetTokenUsageStatus_Windows_MonthQueryVariables as er, type GetTokenUsageStatus_Windows_WeekQueryVariables as es, type InferenceRequestAuditFragment as et, type Insight_Chat_DesktopDeviceQueryVariables as eu, type Insight_Chat_ProjectQueryVariables as ev, type Integration_Provider_CatalogQueryVariables as ew, type InvocationFragment as ex, type LiveContext_Source_EvidencesQueryVariables as ey, type McpClientInformationFragment as ez, ArtifactKind as f, type Table_Document_FormatQueryVariables as f0, type TokenUsageFragment as f1, type UserSkillFileFragment as f2, type UserSkillFolderFragment as f3, type ActiveChatStreamClient as f4, type ActiveChatStreamListener as f5, type ActiveChatStreamListenerHandlers as f6, AgentOrderByRelevanceFieldEnum as f7, ArtifactOrderByRelevanceFieldEnum as f8, CapabilityType as f9, NullsOrder as fA, ProjectDesktopBindingOrderByRelevanceFieldEnum as fB, ProjectOrderByRelevanceFieldEnum as fC, PulseEventOrderByRelevanceFieldEnum as fD, QueryMode as fE, ReportOrderByRelevanceFieldEnum as fF, SendMessageModel as fG, SortOrder as fH, TableOrderByRelevanceFieldEnum as fI, UsageHistoryGranularity as fJ, createChatStreamClient as fK, createDvinaClient as fL, ChatMessageOrderByRelevanceFieldEnum as fa, ChatOrderByRelevanceFieldEnum as fb, type ChatStreamClientOptions as fc, type ChatStreamEvent as fd, type ChatStreamListener as fe, type ChatStreamListenerHandlers as ff, DatabaseCatalogOrderByRelevanceFieldEnum as fg, DatabaseOrderByRelevanceFieldEnum as fh, DesktopDeviceOrderByRelevanceFieldEnum as fi, DocumentCatalogOrderByRelevanceFieldEnum as fj, DocumentOrderByRelevanceFieldEnum as fk, type DvinaSdkBaseOptions as fl, type DvinaSdkCallbackOptions as fm, type DvinaSdkTokenOptions as fn, FeedItemOrderByRelevanceFieldEnum as fo, FeedbackOrderByRelevanceFieldEnum as fp, FileOrderByRelevanceFieldEnum as fq, FileUrlVariant as fr, FolderOrderByRelevanceFieldEnum as fs, InsightOrderByRelevanceFieldEnum as ft, IntegrationCatalogOrderByRelevanceFieldEnum as fu, IntegrationOrderByRelevanceFieldEnum as fv, InterpretationOrderByRelevanceFieldEnum as fw, LimitType as fx, LiveContextOrderByRelevanceFieldEnum as fy, NotificationOrderByRelevanceFieldEnum as fz, type ArtifactFragment as g, type Artifact_ChatQueryVariables as h, ChatSourceProviderEnum as i, type ChatFragment as j, type Chat_AgentsQueryVariables as k, type AgentFragment as l, type Agent_ChatsQueryVariables as m, type ChatConnectionFragment as n, type AgentConnectionFragment as o, type Chat_ArtifactsQueryVariables as p, type Chat_DesktopDeviceQueryVariables as q, type DesktopDeviceFragment as r, type DesktopDevice_ChatsQueryVariables as s, type DesktopDevice_DesktopBindingsQueryVariables as t, type ProjectDesktopBindingFragment as u, type ProjectQueryVariables as v, ProjectSource as w, type ProjectFragment as x, type Project_ChatsQueryVariables as y, type Project_DesktopBindingQueryVariables as z };
|
|
@@ -4085,6 +4085,44 @@ type UsageMetaOutput = {
|
|
|
4085
4085
|
promptTokens: Scalars['Int'];
|
|
4086
4086
|
totalTokens: Scalars['Int'];
|
|
4087
4087
|
};
|
|
4088
|
+
type UserAiProviderSettingCreateInput = {
|
|
4089
|
+
apiKey: Scalars['String'];
|
|
4090
|
+
baseUrl: Scalars['String'];
|
|
4091
|
+
enabled?: InputMaybe<Scalars['Boolean']>;
|
|
4092
|
+
id?: InputMaybe<Scalars['String']>;
|
|
4093
|
+
model: Scalars['String'];
|
|
4094
|
+
};
|
|
4095
|
+
type UserAiProviderSettingUpdateInput = {
|
|
4096
|
+
apiKey?: InputMaybe<Scalars['String']>;
|
|
4097
|
+
baseUrl?: InputMaybe<Scalars['String']>;
|
|
4098
|
+
enabled?: InputMaybe<Scalars['Boolean']>;
|
|
4099
|
+
id?: InputMaybe<Scalars['String']>;
|
|
4100
|
+
model?: InputMaybe<Scalars['String']>;
|
|
4101
|
+
};
|
|
4102
|
+
type UserAiProviderSettingWhereInput = {
|
|
4103
|
+
AND?: InputMaybe<Array<UserAiProviderSettingWhereInput>>;
|
|
4104
|
+
NOT?: InputMaybe<Array<UserAiProviderSettingWhereInput>>;
|
|
4105
|
+
OR?: InputMaybe<Array<UserAiProviderSettingWhereInput>>;
|
|
4106
|
+
apiKey?: InputMaybe<StringFilter>;
|
|
4107
|
+
baseUrl?: InputMaybe<StringFilter>;
|
|
4108
|
+
createdAt?: InputMaybe<DateTimeFilter>;
|
|
4109
|
+
enabled?: InputMaybe<BoolFilter>;
|
|
4110
|
+
id?: InputMaybe<StringFilter>;
|
|
4111
|
+
model?: InputMaybe<StringFilter>;
|
|
4112
|
+
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
4113
|
+
};
|
|
4114
|
+
type UserAiProviderSettingWhereUniqueInput = {
|
|
4115
|
+
AND?: InputMaybe<Array<UserAiProviderSettingWhereInput>>;
|
|
4116
|
+
NOT?: InputMaybe<Array<UserAiProviderSettingWhereInput>>;
|
|
4117
|
+
OR?: InputMaybe<Array<UserAiProviderSettingWhereInput>>;
|
|
4118
|
+
apiKey?: InputMaybe<StringFilter>;
|
|
4119
|
+
baseUrl?: InputMaybe<StringFilter>;
|
|
4120
|
+
createdAt?: InputMaybe<DateTimeFilter>;
|
|
4121
|
+
enabled?: InputMaybe<BoolFilter>;
|
|
4122
|
+
id?: InputMaybe<Scalars['String']>;
|
|
4123
|
+
model?: InputMaybe<StringFilter>;
|
|
4124
|
+
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
4125
|
+
};
|
|
4088
4126
|
type WidgetBlockCompleteEventOutput = {
|
|
4089
4127
|
__typename?: 'WidgetBlockCompleteEventOutput';
|
|
4090
4128
|
index: Scalars['Int'];
|
|
@@ -6262,6 +6300,15 @@ type UsageWindowsStatusTypeFragment = {
|
|
|
6262
6300
|
windowStart?: string | null;
|
|
6263
6301
|
} | null;
|
|
6264
6302
|
};
|
|
6303
|
+
type UserAiProviderSettingFragment = {
|
|
6304
|
+
__typename: 'UserAiProviderSetting';
|
|
6305
|
+
baseUrl: string;
|
|
6306
|
+
createdAt: string;
|
|
6307
|
+
enabled: boolean;
|
|
6308
|
+
id: string;
|
|
6309
|
+
model: string;
|
|
6310
|
+
updatedAt: string;
|
|
6311
|
+
};
|
|
6265
6312
|
type UserSkillFileFragment = {
|
|
6266
6313
|
__typename: 'UserSkillFile';
|
|
6267
6314
|
createdAt: string;
|
|
@@ -6428,6 +6475,9 @@ type CreateUserSkillFolderMutationVariables = Exact<{
|
|
|
6428
6475
|
type DeleteAgentMutationVariables = Exact<{
|
|
6429
6476
|
where: AgentWhereUniqueInput;
|
|
6430
6477
|
}>;
|
|
6478
|
+
type DeleteAiProviderSettingMutationVariables = Exact<{
|
|
6479
|
+
where: UserAiProviderSettingWhereUniqueInput;
|
|
6480
|
+
}>;
|
|
6431
6481
|
type DeleteArtifactMutationVariables = Exact<{
|
|
6432
6482
|
where: ArtifactWhereUniqueInput;
|
|
6433
6483
|
}>;
|
|
@@ -6614,6 +6664,11 @@ type UpdateUserSkillFolderMutationVariables = Exact<{
|
|
|
6614
6664
|
id: Scalars['ID'];
|
|
6615
6665
|
path: Scalars['String'];
|
|
6616
6666
|
}>;
|
|
6667
|
+
type UpsertAiProviderSettingMutationVariables = Exact<{
|
|
6668
|
+
create: UserAiProviderSettingCreateInput;
|
|
6669
|
+
update: UserAiProviderSettingUpdateInput;
|
|
6670
|
+
where: UserAiProviderSettingWhereUniqueInput;
|
|
6671
|
+
}>;
|
|
6617
6672
|
type AgentQueryVariables = Exact<{
|
|
6618
6673
|
id: Scalars['ID'];
|
|
6619
6674
|
}>;
|
|
@@ -6634,6 +6689,9 @@ type AgentsQueryVariables = Exact<{
|
|
|
6634
6689
|
last?: InputMaybe<Scalars['Int']>;
|
|
6635
6690
|
orderBy?: InputMaybe<Array<AgentOrderByWithRelationInput> | AgentOrderByWithRelationInput>;
|
|
6636
6691
|
}>;
|
|
6692
|
+
type AiProviderSettingQueryVariables = Exact<{
|
|
6693
|
+
[key: string]: never;
|
|
6694
|
+
}>;
|
|
6637
6695
|
type ArtifactQueryVariables = Exact<{
|
|
6638
6696
|
id: Scalars['ID'];
|
|
6639
6697
|
}>;
|
|
@@ -7336,4 +7394,4 @@ interface DvinaClientResult {
|
|
|
7336
7394
|
*/
|
|
7337
7395
|
declare function createDvinaClient(options: DvinaSdkOptions): DvinaClientResult;
|
|
7338
7396
|
|
|
7339
|
-
export { type Insight_ThumbnailFileQueryVariables as $, type AbortChatMutationVariables as A, type Artifact_FileQueryVariables as B, type ChatMessageQueryVariables as C, type DvinaSdkOptions as D, type Artifact_MessageQueryVariables as E, type FileFragment as F, type ChatMessage_ChatQueryVariables as G, type ChatMessage_ContentsQueryVariables as H, ContentBlockType as I, type ContentBlockFragment as J, type ChatMessage_FeedbackQueryVariables as K, FeedbackType as L, type FeedbackFragment as M, type Chat_InsightQueryVariables as N, type Insight_ChatQueryVariables as O, ProjectDesktopContextKind as P, type Insight_ReportMembersQueryVariables as Q, ReasoningEffort as R, ReportMemberSize as S, Presentation as T, type ReportMemberFragment as U, type ReportQueryVariables as V, type ReportFragment as W, type Report_InsightsQueryVariables as X, type InsightFragment as Y, type Insight_ReportsQueryVariables as Z, type ReportConnectionFragment as _, ActionType as a, TableStatus as a$, type InsightConnectionFragment as a0, type Report_LayoutQueryVariables as a1, type InsightQueryVariables as a2, type Chat_MessagesQueryVariables as a3, type ChatMessageConnectionFragment as a4, type Chat_ProjectQueryVariables as a5, type DesktopDeviceQueryVariables as a6, type ArtifactConnectionFragment as a7, type AddInsightToReportMutationVariables as a8, type AgentQueryVariables as a9, type ChatMessage_Chat_DesktopDeviceQueryVariables as aA, type ChatMessage_Chat_InsightQueryVariables as aB, type ChatMessage_Chat_ProjectQueryVariables as aC, type ChatMessagesQueryVariables as aD, type ChatQueryVariables as aE, type ChatTitleEventOutputFragment as aF, type Chat_DesktopDevice_DesktopBindingsQueryVariables as aG, type Chat_Insight_ReportMembersQueryVariables as aH, type Chat_Insight_ThumbnailFileQueryVariables as aI, type Chat_Project_DesktopBindingQueryVariables as aJ, type ChatsQueryVariables as aK, type ConnectIntegrationMutationVariables as aL, type CreateIntegrationOutputFragment as aM, type ConsumePulseEventsMutationVariables as aN, type ContentMaskFragment as aO, type ContinueImportedChatMutationVariables as aP, type ContinueInterpretationMutationVariables as aQ, type CreateAgentMutationVariables as aR, type CreateChatMutationVariables as aS, type CreateDatabaseMutationVariables as aT, type DatabaseFragment as aU, type Database_EngineQueryVariables as aV, type DatabaseEngineFragment as aW, type DatabaseCatalogQueryVariables as aX, type DatabaseCatalogFragment as aY, type DatabaseCatalog_EngineQueryVariables as aZ, type Database_TablesQueryVariables as a_, type AgentsQueryVariables as aa, type ArtifactQueryVariables as ab, type Artifact_Chat_DesktopDeviceQueryVariables as ac, type Artifact_Chat_InsightQueryVariables as ad, type Artifact_Chat_ProjectQueryVariables as ae, type Artifact_Message_ChatQueryVariables as af, type Artifact_Message_ContentsQueryVariables as ag, type Artifact_Message_FeedbackQueryVariables as ah, type ArtifactsQueryVariables as ai, type AudioEventOutputFragment as aj, type CancelOauthFlowMutationVariables as ak, type CancelWorkspaceDeletionMutationVariables as al, type CandidateFragment as am, type LiveContextQueryVariables as an, LiveContextStatus as ao, type LiveContextFragment as ap, type LiveContext_ItemsQueryVariables as aq, FeedActionType as ar, type FeedItemGeneratedFragment as as, type LiveContext_SourceQueryVariables as at, type CandidateEvidenceFragment as au, type ImportedChatSummaryOutputFragment as av, type ChatImportExecuteOutputFragment as aw, ChatSourceImportFidelityEnum as ax, ChatSourceImportModeEnum as ay, type ChatImportPreviewOutputFragment as az, type ActionFragment as b, type PulseEventFragment as b$, type TableFragment as b0, type Table_DatabaseQueryVariables as b1, type Table_DocumentQueryVariables as b2, type DocumentFragment as b3, type Document_ContentsQueryVariables as b4, type DocumentContentFragment as b5, type DocumentQueryVariables as b6, type Document_FileQueryVariables as b7, type Document_FormatQueryVariables as b8, type DocumentFormatFragment as b9, type DatabaseConnectionFragment as bA, type DatabaseQueryVariables as bB, type DatabaseSchemaQueryVariables as bC, type Database_Engine_CatalogQueryVariables as bD, type DatabasesQueryVariables as bE, type DeepAnalysisUsageFragment as bF, type DeleteAgentMutationVariables as bG, type DeleteArtifactMutationVariables as bH, type DeleteChatMutationVariables as bI, type DeleteDatabaseMutationVariables as bJ, type DeleteDocumentMutationVariables as bK, type DeleteFolderMutationVariables as bL, type DeleteInsightMutationVariables as bM, type DeleteInsightsMutationVariables as bN, type DeleteIntegrationMutationVariables as bO, type DeleteProjectMutationVariables as bP, type DeleteReportMutationVariables as bQ, type DeleteTableMutationVariables as bR, type DeleteUserSkillFileMutationVariables as bS, type DeleteUserSkillFolderMutationVariables as bT, type DesktopDeviceConnectionFragment as bU, type DesktopDevicesQueryVariables as bV, type DevAccessTokenOutputFragment as bW, type DisconnectIntegrationMutationVariables as bX, type DismissPulseEventMutationVariables as bY, PulseEventPriority as bZ, PulseEventKind as b_, type DocumentCatalogQueryVariables as ba, type DocumentCatalogFragment as bb, type DocumentCatalog_FormatQueryVariables as bc, type Document_TablesQueryVariables as bd, type Table_FromRelationsQueryVariables as be, RelationType as bf, type RelationFragment as bg, type TableQueryVariables as bh, type Table_ToRelationsQueryVariables as bi, type TableConnectionFragment as bj, type CreateDocumentMutationVariables as bk, type CreateFeedbackMutationVariables as bl, type CreateFolderMutationVariables as bm, type FolderFragment as bn, type CreateInsightMutationVariables as bo, type CreateIntegrationMutationVariables as bp, type CreateProjectMutationVariables as bq, type CreateReportMutationVariables as br, type CreateTableMutationVariables as bs, type CreateUserSkillFileMutationVariables as bt, type UserSkillFileModelFragment as bu, type CreateUserSkillFolderMutationVariables as bv, type UserSkillFolderModelFragment as bw, type CubeModelFragment as bx, type DatabaseCatalogConnectionFragment as by, type DatabaseCatalogsQueryVariables as bz, ChatMessageFromEnum as c, type FeedProjectDataFragment as c$, type PulseEvent_IntegrationQueryVariables as c0, IntegrationStatus as c1, type IntegrationFragment as c2, type Integration_ProviderQueryVariables as c3, type IntegrationProviderFragment as c4, type IntegrationCatalogQueryVariables as c5, type IntegrationCatalogFragment as c6, type IntegrationCatalog_ProviderQueryVariables as c7, type DocumentCatalogConnectionFragment as c8, type DocumentCatalogsQueryVariables as c9, type UpdateDatabaseMutationVariables as cA, type UpdateDocumentMutationVariables as cB, type UpdateFolderMutationVariables as cC, type UpdateInsightMutationVariables as cD, type UpdateInsightInReportMutationVariables as cE, type UpdateInsightThumbnailMutationVariables as cF, type UpdateInterpMutationVariables as cG, InterpretationType as cH, AiResourceType as cI, type InterpretationFragment as cJ, type UpdateLiveContextMutationVariables as cK, type UpdateProjectMutationVariables as cL, type UpdatePulseTriggerMutationVariables as cM, type PulseTriggerSettingModelFragment as cN, type UpdateReportMutationVariables as cO, type UpdateTableMutationVariables as cP, type UpdateUserSkillFileMutationVariables as cQ, type UpdateUserSkillFolderMutationVariables as cR, type ExportQueryVariables as cS, type ExportWithInsightIdQueryVariables as cT, type FeedItemQueryVariables as cU, FeedItemKind as cV, type FeedDocumentDataFragment as cW, type FeedArtifactDataFragment as cX, type FeedDatabaseDataFragment as cY, type FeedInsightDataFragment as cZ, type FeedIntegrationDataFragment as c_, type DocumentConnectionFragment as ca, type Document_Format_CatalogQueryVariables as cb, type DocumentsQueryVariables as cc, type ChatStreamClient as cd, type ExecuteChatImportMutationVariables as ce, type GenerateUploadUriMutationVariables as cf, type FileModelFragment as cg, type PreviewChatImportMutationVariables as ch, type ReanalyzeDocumentMutationVariables as ci, type RefineAgentInstructionMutationVariables as cj, type RefineSkillInstructionMutationVariables as ck, type RefreshDatabaseSchemaMutationVariables as cl, type RefreshInsightMutationVariables as cm, type RegisterDesktopDeviceMutationVariables as cn, type ReinterpretSourceMutationVariables as co, type ReinterpretSourcesOfuserMutationVariables as cp, type RelocateInsightMutationVariables as cq, type RemoveInsightFromReportMutationVariables as cr, type ResolvePulseEventMutationVariables as cs, type WorkspaceDeleteScheduleFragment as ct, type SendMessageMutationVariables as cu, type SetDatabasePrimaryKeyMutationVariables as cv, type SyncProjectDesktopBindingMutationVariables as cw, type UpdateAgentMutationVariables as cx, type UpdateArtifactNameMutationVariables as cy, type UpdateChatMutationVariables as cz, type ChatMessageFragment as d, type PulseEventConnectionFragment as d$, type FeedLiveContextDataFragment as d0, type FeedPulseDataFragment as d1, type FeedItemFragment as d2, type FeedItem_ActionQueryVariables as d3, type FeedSendMessageActionFragment as d4, type FeedItem_DataQueryVariables as d5, type FeedItemsQueryVariables as d6, type FeedConnectionFragment as d7, type FileQueryVariables as d8, type FileMetaQueryVariables as d9, type IntegrationCatalogsQueryVariables as dA, type IntegrationCatalogConnectionFragment as dB, type IntegrationsQueryVariables as dC, type IntegrationConnectionFragment as dD, type InterpretationsQueryVariables as dE, type InterpretationConnectionFragment as dF, type LiveContextsQueryVariables as dG, type LiveContextConnectionFragment as dH, type LocalSandboxDeviceStatusesQueryVariables as dI, LocalSandboxDeviceConnectionState as dJ, type LocalSandboxDeviceStatusModelFragment as dK, type NotificationQueryVariables as dL, NotificationCategory as dM, NotificationPriority as dN, NotificationStatus as dO, type NotificationFragment as dP, type NotificationsQueryVariables as dQ, type NotificationConnectionFragment as dR, type NotificationsByReferenceQueryVariables as dS, type PrivacyStatsQueryVariables as dT, type PrivacyStatsFragment as dU, type ProjectsQueryVariables as dV, type ProjectConnectionFragment as dW, type PulseAppSummaryQueryVariables as dX, type PulseAppSummaryModelFragment as dY, type PulseEventQueryVariables as dZ, type PulseEventsQueryVariables as d_, type FileUrlsQueryVariables as da, type ResolvedFileUrlFragment as db, type FindFitTierQueryVariables as dc, EntitlementTier as dd, type FolderQueryVariables as de, type FoldersQueryVariables as df, type FolderConnectionFragment as dg, type GetCapabilityQueryVariables as dh, type GetDevAccessTokenQueryVariables as di, type GetLimitQueryVariables as dj, type GetRemainingQueryVariables as dk, type GetTokenUsageByModelQueryVariables as dl, type ModelTokenUsageFragment as dm, type GetTokenUsageHistoryQueryVariables as dn, type GetTokenUsageStatusQueryVariables as dp, TokenUsageLimit as dq, ActiveWindowType as dr, type WindowDetailTypeFragment as ds, type UsageWindowsStatusTypeFragment as dt, type UsageStatusFragment as du, type GetTokenUsageStatus_WindowsQueryVariables as dv, type GetUsageQueryVariables as dw, type InsightsQueryVariables as dx, type IntegrationQueryVariables as dy, type IntegrationCatalogToolsQueryVariables as dz, type ChatMessage_ArtifactsQueryVariables as e, type UserSkillFolderFragment as e$, type PulseTriggerSettingsQueryVariables as e0, type QueryQueryVariables as e1, type QueryWithInsightIdQueryVariables as e2, type QueryWithMessageIdQueryVariables as e3, type ReportsQueryVariables as e4, type TablesQueryVariables as e5, type UserSkillFileQueryVariables as e6, type UserSkillFilesQueryVariables as e7, type UserSkillFolderQueryVariables as e8, type UserSkillFoldersQueryVariables as e9, type MessageEndEventOutputFragment as eA, type MessageStartEventOutputFragment as eB, type ProgressSummaryEventOutputFragment as eC, type Project_DesktopBinding_DeviceQueryVariables as eD, type PulseEvent_Integration_ProviderQueryVariables as eE, type ReasoningEventOutputFragment as eF, type ResetWorkspaceMutationVariables as eG, type ScheduleWorkspaceDeletionMutationVariables as eH, type TextBlockEventOutputFragment as eI, type TextDeltaEventOutputFragment as eJ, type WidgetBlockStartEventOutputFragment as eK, type WidgetHtmlDeltaEventOutputFragment as eL, type WidgetBlockCompleteEventOutputFragment as eM, type WidgetBlockErrorEventOutputFragment as eN, type ToolStartEventOutputFragment as eO, type ToolInputDeltaEventOutputFragment as eP, type ToolResultArtifactOutputFragment as eQ, type ToolResultEventOutputFragment as eR, type StreamEventSchemaAnchorFragment as eS, type SyncEventFragment as eT, type SyncEventCursorFragment as eU, type Table_Database_EngineQueryVariables as eV, type Table_Document_ContentsQueryVariables as eW, type Table_Document_FileQueryVariables as eX, type Table_Document_FormatQueryVariables as eY, type TokenUsageFragment as eZ, type UserSkillFileFragment as e_, type WorkspaceDeletionScheduleQueryVariables as ea, type McpAuthUpdatesSubscriptionVariables as eb, McpAuthPhase as ec, type McpAuthUpdateModelFragment as ed, type TokenUsageUpdatesSubscriptionVariables as ee, type EvidenceFragment as ef, type FailedSyncEventIngestionFragment as eg, type StreamMessageContentOutputFragment as eh, type StreamMessageOutputFragment as ei, type UsageMetaOutputFragment as ej, type FinalContentEventOutputFragment as ek, type GetTokenUsageStatus_Windows_DayQueryVariables as el, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as em, type GetTokenUsageStatus_Windows_MonthQueryVariables as en, type GetTokenUsageStatus_Windows_WeekQueryVariables as eo, type InferenceRequestAuditFragment as ep, type Insight_Chat_DesktopDeviceQueryVariables as eq, type Insight_Chat_ProjectQueryVariables as er, type Integration_Provider_CatalogQueryVariables as es, type InvocationFragment as et, type LiveContext_Source_EvidencesQueryVariables as eu, type McpClientInformationFragment as ev, type McpCodeVerifierFragment as ew, type McpServerFragment as ex, type McpTokensFragment as ey, type McpToolFragment as ez, ArtifactKind as f, type ActiveChatStreamClient as f0, type ActiveChatStreamListener as f1, type ActiveChatStreamListenerHandlers as f2, AgentOrderByRelevanceFieldEnum as f3, ArtifactOrderByRelevanceFieldEnum as f4, CapabilityType as f5, ChatMessageOrderByRelevanceFieldEnum as f6, ChatOrderByRelevanceFieldEnum as f7, type ChatStreamClientOptions as f8, type ChatStreamEvent as f9, QueryMode as fA, ReportOrderByRelevanceFieldEnum as fB, SendMessageModel as fC, SortOrder as fD, TableOrderByRelevanceFieldEnum as fE, UsageHistoryGranularity as fF, createChatStreamClient as fG, createDvinaClient as fH, type ChatStreamListener as fa, type ChatStreamListenerHandlers as fb, DatabaseCatalogOrderByRelevanceFieldEnum as fc, DatabaseOrderByRelevanceFieldEnum as fd, DesktopDeviceOrderByRelevanceFieldEnum as fe, DocumentCatalogOrderByRelevanceFieldEnum as ff, DocumentOrderByRelevanceFieldEnum as fg, type DvinaSdkBaseOptions as fh, type DvinaSdkCallbackOptions as fi, type DvinaSdkTokenOptions as fj, FeedItemOrderByRelevanceFieldEnum as fk, FeedbackOrderByRelevanceFieldEnum as fl, FileOrderByRelevanceFieldEnum as fm, FileUrlVariant as fn, FolderOrderByRelevanceFieldEnum as fo, InsightOrderByRelevanceFieldEnum as fp, IntegrationCatalogOrderByRelevanceFieldEnum as fq, IntegrationOrderByRelevanceFieldEnum as fr, InterpretationOrderByRelevanceFieldEnum as fs, LimitType as ft, LiveContextOrderByRelevanceFieldEnum as fu, NotificationOrderByRelevanceFieldEnum as fv, NullsOrder as fw, ProjectDesktopBindingOrderByRelevanceFieldEnum as fx, ProjectOrderByRelevanceFieldEnum as fy, PulseEventOrderByRelevanceFieldEnum as fz, type ArtifactFragment as g, type Artifact_ChatQueryVariables as h, ChatSourceProviderEnum as i, type ChatFragment as j, type Chat_AgentsQueryVariables as k, type AgentFragment as l, type Agent_ChatsQueryVariables as m, type ChatConnectionFragment as n, type AgentConnectionFragment as o, type Chat_ArtifactsQueryVariables as p, type Chat_DesktopDeviceQueryVariables as q, type DesktopDeviceFragment as r, type DesktopDevice_ChatsQueryVariables as s, type DesktopDevice_DesktopBindingsQueryVariables as t, type ProjectDesktopBindingFragment as u, type ProjectQueryVariables as v, ProjectSource as w, type ProjectFragment as x, type Project_ChatsQueryVariables as y, type Project_DesktopBindingQueryVariables as z };
|
|
7397
|
+
export { type Insight_ThumbnailFileQueryVariables as $, type AbortChatMutationVariables as A, type Artifact_FileQueryVariables as B, type ChatMessageQueryVariables as C, type DvinaSdkOptions as D, type Artifact_MessageQueryVariables as E, type FileFragment as F, type ChatMessage_ChatQueryVariables as G, type ChatMessage_ContentsQueryVariables as H, ContentBlockType as I, type ContentBlockFragment as J, type ChatMessage_FeedbackQueryVariables as K, FeedbackType as L, type FeedbackFragment as M, type Chat_InsightQueryVariables as N, type Insight_ChatQueryVariables as O, ProjectDesktopContextKind as P, type Insight_ReportMembersQueryVariables as Q, ReasoningEffort as R, ReportMemberSize as S, Presentation as T, type ReportMemberFragment as U, type ReportQueryVariables as V, type ReportFragment as W, type Report_InsightsQueryVariables as X, type InsightFragment as Y, type Insight_ReportsQueryVariables as Z, type ReportConnectionFragment as _, ActionType as a, type DatabaseCatalog_EngineQueryVariables as a$, type InsightConnectionFragment as a0, type Report_LayoutQueryVariables as a1, type InsightQueryVariables as a2, type Chat_MessagesQueryVariables as a3, type ChatMessageConnectionFragment as a4, type Chat_ProjectQueryVariables as a5, type DesktopDeviceQueryVariables as a6, type ArtifactConnectionFragment as a7, type AddInsightToReportMutationVariables as a8, type AgentQueryVariables as a9, ChatSourceImportModeEnum as aA, type ChatImportPreviewOutputFragment as aB, type ChatMessage_Chat_DesktopDeviceQueryVariables as aC, type ChatMessage_Chat_InsightQueryVariables as aD, type ChatMessage_Chat_ProjectQueryVariables as aE, type ChatMessagesQueryVariables as aF, type ChatQueryVariables as aG, type ChatTitleEventOutputFragment as aH, type Chat_DesktopDevice_DesktopBindingsQueryVariables as aI, type Chat_Insight_ReportMembersQueryVariables as aJ, type Chat_Insight_ThumbnailFileQueryVariables as aK, type Chat_Project_DesktopBindingQueryVariables as aL, type ChatsQueryVariables as aM, type ConnectIntegrationMutationVariables as aN, type CreateIntegrationOutputFragment as aO, type ConsumePulseEventsMutationVariables as aP, type ContentMaskFragment as aQ, type ContinueImportedChatMutationVariables as aR, type ContinueInterpretationMutationVariables as aS, type CreateAgentMutationVariables as aT, type CreateChatMutationVariables as aU, type CreateDatabaseMutationVariables as aV, type DatabaseFragment as aW, type Database_EngineQueryVariables as aX, type DatabaseEngineFragment as aY, type DatabaseCatalogQueryVariables as aZ, type DatabaseCatalogFragment as a_, type AgentsQueryVariables as aa, type AiProviderSettingQueryVariables as ab, type UserAiProviderSettingFragment as ac, type ArtifactQueryVariables as ad, type Artifact_Chat_DesktopDeviceQueryVariables as ae, type Artifact_Chat_InsightQueryVariables as af, type Artifact_Chat_ProjectQueryVariables as ag, type Artifact_Message_ChatQueryVariables as ah, type Artifact_Message_ContentsQueryVariables as ai, type Artifact_Message_FeedbackQueryVariables as aj, type ArtifactsQueryVariables as ak, type AudioEventOutputFragment as al, type CancelOauthFlowMutationVariables as am, type CancelWorkspaceDeletionMutationVariables as an, type CandidateFragment as ao, type LiveContextQueryVariables as ap, LiveContextStatus as aq, type LiveContextFragment as ar, type LiveContext_ItemsQueryVariables as as, FeedActionType as at, type FeedItemGeneratedFragment as au, type LiveContext_SourceQueryVariables as av, type CandidateEvidenceFragment as aw, type ImportedChatSummaryOutputFragment as ax, type ChatImportExecuteOutputFragment as ay, ChatSourceImportFidelityEnum as az, type ActionFragment as b, type DismissPulseEventMutationVariables as b$, type Database_TablesQueryVariables as b0, TableStatus as b1, type TableFragment as b2, type Table_DatabaseQueryVariables as b3, type Table_DocumentQueryVariables as b4, type DocumentFragment as b5, type Document_ContentsQueryVariables as b6, type DocumentContentFragment as b7, type DocumentQueryVariables as b8, type Document_FileQueryVariables as b9, type DatabaseCatalogConnectionFragment as bA, type DatabaseCatalogsQueryVariables as bB, type DatabaseConnectionFragment as bC, type DatabaseQueryVariables as bD, type DatabaseSchemaQueryVariables as bE, type Database_Engine_CatalogQueryVariables as bF, type DatabasesQueryVariables as bG, type DeepAnalysisUsageFragment as bH, type DeleteAgentMutationVariables as bI, type DeleteAiProviderSettingMutationVariables as bJ, type DeleteArtifactMutationVariables as bK, type DeleteChatMutationVariables as bL, type DeleteDatabaseMutationVariables as bM, type DeleteDocumentMutationVariables as bN, type DeleteFolderMutationVariables as bO, type DeleteInsightMutationVariables as bP, type DeleteInsightsMutationVariables as bQ, type DeleteIntegrationMutationVariables as bR, type DeleteProjectMutationVariables as bS, type DeleteReportMutationVariables as bT, type DeleteTableMutationVariables as bU, type DeleteUserSkillFileMutationVariables as bV, type DeleteUserSkillFolderMutationVariables as bW, type DesktopDeviceConnectionFragment as bX, type DesktopDevicesQueryVariables as bY, type DevAccessTokenOutputFragment as bZ, type DisconnectIntegrationMutationVariables as b_, type Document_FormatQueryVariables as ba, type DocumentFormatFragment as bb, type DocumentCatalogQueryVariables as bc, type DocumentCatalogFragment as bd, type DocumentCatalog_FormatQueryVariables as be, type Document_TablesQueryVariables as bf, type Table_FromRelationsQueryVariables as bg, RelationType as bh, type RelationFragment as bi, type TableQueryVariables as bj, type Table_ToRelationsQueryVariables as bk, type TableConnectionFragment as bl, type CreateDocumentMutationVariables as bm, type CreateFeedbackMutationVariables as bn, type CreateFolderMutationVariables as bo, type FolderFragment as bp, type CreateInsightMutationVariables as bq, type CreateIntegrationMutationVariables as br, type CreateProjectMutationVariables as bs, type CreateReportMutationVariables as bt, type CreateTableMutationVariables as bu, type CreateUserSkillFileMutationVariables as bv, type UserSkillFileModelFragment as bw, type CreateUserSkillFolderMutationVariables as bx, type UserSkillFolderModelFragment as by, type CubeModelFragment as bz, ChatMessageFromEnum as c, type FeedArtifactDataFragment as c$, PulseEventPriority as c0, PulseEventKind as c1, type PulseEventFragment as c2, type PulseEvent_IntegrationQueryVariables as c3, IntegrationStatus as c4, type IntegrationFragment as c5, type Integration_ProviderQueryVariables as c6, type IntegrationProviderFragment as c7, type IntegrationCatalogQueryVariables as c8, type IntegrationCatalogFragment as c9, type UpdateAgentMutationVariables as cA, type UpdateArtifactNameMutationVariables as cB, type UpdateChatMutationVariables as cC, type UpdateDatabaseMutationVariables as cD, type UpdateDocumentMutationVariables as cE, type UpdateFolderMutationVariables as cF, type UpdateInsightMutationVariables as cG, type UpdateInsightInReportMutationVariables as cH, type UpdateInsightThumbnailMutationVariables as cI, type UpdateInterpMutationVariables as cJ, InterpretationType as cK, AiResourceType as cL, type InterpretationFragment as cM, type UpdateLiveContextMutationVariables as cN, type UpdateProjectMutationVariables as cO, type UpdatePulseTriggerMutationVariables as cP, type PulseTriggerSettingModelFragment as cQ, type UpdateReportMutationVariables as cR, type UpdateTableMutationVariables as cS, type UpdateUserSkillFileMutationVariables as cT, type UpdateUserSkillFolderMutationVariables as cU, type UpsertAiProviderSettingMutationVariables as cV, type ExportQueryVariables as cW, type ExportWithInsightIdQueryVariables as cX, type FeedItemQueryVariables as cY, FeedItemKind as cZ, type FeedDocumentDataFragment as c_, type IntegrationCatalog_ProviderQueryVariables as ca, type DocumentCatalogConnectionFragment as cb, type DocumentCatalogsQueryVariables as cc, type DocumentConnectionFragment as cd, type Document_Format_CatalogQueryVariables as ce, type DocumentsQueryVariables as cf, type ChatStreamClient as cg, type ExecuteChatImportMutationVariables as ch, type GenerateUploadUriMutationVariables as ci, type FileModelFragment as cj, type PreviewChatImportMutationVariables as ck, type ReanalyzeDocumentMutationVariables as cl, type RefineAgentInstructionMutationVariables as cm, type RefineSkillInstructionMutationVariables as cn, type RefreshDatabaseSchemaMutationVariables as co, type RefreshInsightMutationVariables as cp, type RegisterDesktopDeviceMutationVariables as cq, type ReinterpretSourceMutationVariables as cr, type ReinterpretSourcesOfuserMutationVariables as cs, type RelocateInsightMutationVariables as ct, type RemoveInsightFromReportMutationVariables as cu, type ResolvePulseEventMutationVariables as cv, type WorkspaceDeleteScheduleFragment as cw, type SendMessageMutationVariables as cx, type SetDatabasePrimaryKeyMutationVariables as cy, type SyncProjectDesktopBindingMutationVariables as cz, type ChatMessageFragment as d, type PulseAppSummaryQueryVariables as d$, type FeedDatabaseDataFragment as d0, type FeedInsightDataFragment as d1, type FeedIntegrationDataFragment as d2, type FeedProjectDataFragment as d3, type FeedLiveContextDataFragment as d4, type FeedPulseDataFragment as d5, type FeedItemFragment as d6, type FeedItem_ActionQueryVariables as d7, type FeedSendMessageActionFragment as d8, type FeedItem_DataQueryVariables as d9, type GetUsageQueryVariables as dA, type InsightsQueryVariables as dB, type IntegrationQueryVariables as dC, type IntegrationCatalogToolsQueryVariables as dD, type IntegrationCatalogsQueryVariables as dE, type IntegrationCatalogConnectionFragment as dF, type IntegrationsQueryVariables as dG, type IntegrationConnectionFragment as dH, type InterpretationsQueryVariables as dI, type InterpretationConnectionFragment as dJ, type LiveContextsQueryVariables as dK, type LiveContextConnectionFragment as dL, type LocalSandboxDeviceStatusesQueryVariables as dM, LocalSandboxDeviceConnectionState as dN, type LocalSandboxDeviceStatusModelFragment as dO, type NotificationQueryVariables as dP, NotificationCategory as dQ, NotificationPriority as dR, NotificationStatus as dS, type NotificationFragment as dT, type NotificationsQueryVariables as dU, type NotificationConnectionFragment as dV, type NotificationsByReferenceQueryVariables as dW, type PrivacyStatsQueryVariables as dX, type PrivacyStatsFragment as dY, type ProjectsQueryVariables as dZ, type ProjectConnectionFragment as d_, type FeedItemsQueryVariables as da, type FeedConnectionFragment as db, type FileQueryVariables as dc, type FileMetaQueryVariables as dd, type FileUrlsQueryVariables as de, type ResolvedFileUrlFragment as df, type FindFitTierQueryVariables as dg, EntitlementTier as dh, type FolderQueryVariables as di, type FoldersQueryVariables as dj, type FolderConnectionFragment as dk, type GetCapabilityQueryVariables as dl, type GetDevAccessTokenQueryVariables as dm, type GetLimitQueryVariables as dn, type GetRemainingQueryVariables as dp, type GetTokenUsageByModelQueryVariables as dq, type ModelTokenUsageFragment as dr, type GetTokenUsageHistoryQueryVariables as ds, type GetTokenUsageStatusQueryVariables as dt, TokenUsageLimit as du, ActiveWindowType as dv, type WindowDetailTypeFragment as dw, type UsageWindowsStatusTypeFragment as dx, type UsageStatusFragment as dy, type GetTokenUsageStatus_WindowsQueryVariables as dz, type ChatMessage_ArtifactsQueryVariables as e, type Table_Document_FileQueryVariables as e$, type PulseAppSummaryModelFragment as e0, type PulseEventQueryVariables as e1, type PulseEventsQueryVariables as e2, type PulseEventConnectionFragment as e3, type PulseTriggerSettingsQueryVariables as e4, type QueryQueryVariables as e5, type QueryWithInsightIdQueryVariables as e6, type QueryWithMessageIdQueryVariables as e7, type ReportsQueryVariables as e8, type TablesQueryVariables as e9, type McpCodeVerifierFragment as eA, type McpServerFragment as eB, type McpTokensFragment as eC, type McpToolFragment as eD, type MessageEndEventOutputFragment as eE, type MessageStartEventOutputFragment as eF, type ProgressSummaryEventOutputFragment as eG, type Project_DesktopBinding_DeviceQueryVariables as eH, type PulseEvent_Integration_ProviderQueryVariables as eI, type ReasoningEventOutputFragment as eJ, type ResetWorkspaceMutationVariables as eK, type ScheduleWorkspaceDeletionMutationVariables as eL, type TextBlockEventOutputFragment as eM, type TextDeltaEventOutputFragment as eN, type WidgetBlockStartEventOutputFragment as eO, type WidgetHtmlDeltaEventOutputFragment as eP, type WidgetBlockCompleteEventOutputFragment as eQ, type WidgetBlockErrorEventOutputFragment as eR, type ToolStartEventOutputFragment as eS, type ToolInputDeltaEventOutputFragment as eT, type ToolResultArtifactOutputFragment as eU, type ToolResultEventOutputFragment as eV, type StreamEventSchemaAnchorFragment as eW, type SyncEventFragment as eX, type SyncEventCursorFragment as eY, type Table_Database_EngineQueryVariables as eZ, type Table_Document_ContentsQueryVariables as e_, type UserSkillFileQueryVariables as ea, type UserSkillFilesQueryVariables as eb, type UserSkillFolderQueryVariables as ec, type UserSkillFoldersQueryVariables as ed, type WorkspaceDeletionScheduleQueryVariables as ee, type McpAuthUpdatesSubscriptionVariables as ef, McpAuthPhase as eg, type McpAuthUpdateModelFragment as eh, type TokenUsageUpdatesSubscriptionVariables as ei, type EvidenceFragment as ej, type FailedSyncEventIngestionFragment as ek, type StreamMessageContentOutputFragment as el, type StreamMessageOutputFragment as em, type UsageMetaOutputFragment as en, type FinalContentEventOutputFragment as eo, type GetTokenUsageStatus_Windows_DayQueryVariables as ep, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as eq, type GetTokenUsageStatus_Windows_MonthQueryVariables as er, type GetTokenUsageStatus_Windows_WeekQueryVariables as es, type InferenceRequestAuditFragment as et, type Insight_Chat_DesktopDeviceQueryVariables as eu, type Insight_Chat_ProjectQueryVariables as ev, type Integration_Provider_CatalogQueryVariables as ew, type InvocationFragment as ex, type LiveContext_Source_EvidencesQueryVariables as ey, type McpClientInformationFragment as ez, ArtifactKind as f, type Table_Document_FormatQueryVariables as f0, type TokenUsageFragment as f1, type UserSkillFileFragment as f2, type UserSkillFolderFragment as f3, type ActiveChatStreamClient as f4, type ActiveChatStreamListener as f5, type ActiveChatStreamListenerHandlers as f6, AgentOrderByRelevanceFieldEnum as f7, ArtifactOrderByRelevanceFieldEnum as f8, CapabilityType as f9, NullsOrder as fA, ProjectDesktopBindingOrderByRelevanceFieldEnum as fB, ProjectOrderByRelevanceFieldEnum as fC, PulseEventOrderByRelevanceFieldEnum as fD, QueryMode as fE, ReportOrderByRelevanceFieldEnum as fF, SendMessageModel as fG, SortOrder as fH, TableOrderByRelevanceFieldEnum as fI, UsageHistoryGranularity as fJ, createChatStreamClient as fK, createDvinaClient as fL, ChatMessageOrderByRelevanceFieldEnum as fa, ChatOrderByRelevanceFieldEnum as fb, type ChatStreamClientOptions as fc, type ChatStreamEvent as fd, type ChatStreamListener as fe, type ChatStreamListenerHandlers as ff, DatabaseCatalogOrderByRelevanceFieldEnum as fg, DatabaseOrderByRelevanceFieldEnum as fh, DesktopDeviceOrderByRelevanceFieldEnum as fi, DocumentCatalogOrderByRelevanceFieldEnum as fj, DocumentOrderByRelevanceFieldEnum as fk, type DvinaSdkBaseOptions as fl, type DvinaSdkCallbackOptions as fm, type DvinaSdkTokenOptions as fn, FeedItemOrderByRelevanceFieldEnum as fo, FeedbackOrderByRelevanceFieldEnum as fp, FileOrderByRelevanceFieldEnum as fq, FileUrlVariant as fr, FolderOrderByRelevanceFieldEnum as fs, InsightOrderByRelevanceFieldEnum as ft, IntegrationCatalogOrderByRelevanceFieldEnum as fu, IntegrationOrderByRelevanceFieldEnum as fv, InterpretationOrderByRelevanceFieldEnum as fw, LimitType as fx, LiveContextOrderByRelevanceFieldEnum as fy, NotificationOrderByRelevanceFieldEnum as fz, type ArtifactFragment as g, type Artifact_ChatQueryVariables as h, ChatSourceProviderEnum as i, type ChatFragment as j, type Chat_AgentsQueryVariables as k, type AgentFragment as l, type Agent_ChatsQueryVariables as m, type ChatConnectionFragment as n, type AgentConnectionFragment as o, type Chat_ArtifactsQueryVariables as p, type Chat_DesktopDeviceQueryVariables as q, type DesktopDeviceFragment as r, type DesktopDevice_ChatsQueryVariables as s, type DesktopDevice_DesktopBindingsQueryVariables as t, type ProjectDesktopBindingFragment as u, type ProjectQueryVariables as v, ProjectSource as w, type ProjectFragment as x, type Project_ChatsQueryVariables as y, type Project_DesktopBindingQueryVariables as z };
|