@dvina/sdk 4.0.275 → 4.0.276
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{_generated_documents-YSLVGGBP.cjs → _generated_documents-CGRQF2EK.cjs} +652 -620
- package/dist/{_generated_documents-YSLVGGBP.cjs.map → _generated_documents-CGRQF2EK.cjs.map} +1 -1
- package/dist/_generated_documents-X5VIIQ2W.js +4 -0
- package/dist/{_generated_documents-DRFAFZ4G.js.map → _generated_documents-X5VIIQ2W.js.map} +1 -1
- package/dist/adapters/angular/index.cjs +4 -4
- package/dist/adapters/angular/index.d.cts +1 -1
- package/dist/adapters/angular/index.d.ts +1 -1
- package/dist/adapters/angular/index.js +2 -2
- package/dist/{chunk-OVYYZG2C.cjs → chunk-AKXUF4OW.cjs} +674 -611
- package/dist/chunk-AKXUF4OW.cjs.map +1 -0
- package/dist/{chunk-57P5UG74.js → chunk-DIQHI4WY.js} +15 -7
- package/dist/chunk-DIQHI4WY.js.map +1 -0
- package/dist/{chunk-IN6UH5LY.cjs → chunk-MLQYOCMC.cjs} +22 -6
- package/dist/chunk-MLQYOCMC.cjs.map +1 -0
- package/dist/{chunk-2YBG35K2.js → chunk-S3MP5E7G.js} +67 -9
- package/dist/chunk-S3MP5E7G.js.map +1 -0
- package/dist/{client-tptVuOTy.d.cts → client-C1hIr0Zt.d.cts} +32 -1
- package/dist/{client-rAY73BpI.d.ts → client-DwfuQsWt.d.ts} +32 -1
- package/dist/index.cjs +482 -462
- 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-DRFAFZ4G.js +0 -4
- package/dist/chunk-2YBG35K2.js.map +0 -1
- package/dist/chunk-57P5UG74.js.map +0 -1
- package/dist/chunk-IN6UH5LY.cjs.map +0 -1
- package/dist/chunk-OVYYZG2C.cjs.map +0 -1
|
@@ -3946,6 +3946,13 @@ type StringFilter = {
|
|
|
3946
3946
|
search?: InputMaybe<Scalars['String']>;
|
|
3947
3947
|
startsWith?: InputMaybe<Scalars['String']>;
|
|
3948
3948
|
};
|
|
3949
|
+
type StringListFilter = {
|
|
3950
|
+
equals?: InputMaybe<Array<Scalars['String']>>;
|
|
3951
|
+
has?: InputMaybe<Scalars['String']>;
|
|
3952
|
+
hasEvery?: InputMaybe<Array<Scalars['String']>>;
|
|
3953
|
+
hasSome?: InputMaybe<Array<Scalars['String']>>;
|
|
3954
|
+
isEmpty?: InputMaybe<Scalars['Boolean']>;
|
|
3955
|
+
};
|
|
3949
3956
|
type SyncProjectDesktopBindingInput = {
|
|
3950
3957
|
deviceId?: InputMaybe<Scalars['String']>;
|
|
3951
3958
|
iconDataUrl?: InputMaybe<Scalars['String']>;
|
|
@@ -4187,6 +4194,7 @@ type UserAiProviderSettingCreateInput = {
|
|
|
4187
4194
|
enabled?: InputMaybe<Scalars['Boolean']>;
|
|
4188
4195
|
id?: InputMaybe<Scalars['String']>;
|
|
4189
4196
|
model: Scalars['String'];
|
|
4197
|
+
savedModels?: InputMaybe<Array<Scalars['String']>>;
|
|
4190
4198
|
};
|
|
4191
4199
|
type UserAiProviderSettingUpdateInput = {
|
|
4192
4200
|
apiKey?: InputMaybe<Scalars['String']>;
|
|
@@ -4195,6 +4203,7 @@ type UserAiProviderSettingUpdateInput = {
|
|
|
4195
4203
|
enabled?: InputMaybe<Scalars['Boolean']>;
|
|
4196
4204
|
id?: InputMaybe<Scalars['String']>;
|
|
4197
4205
|
model?: InputMaybe<Scalars['String']>;
|
|
4206
|
+
savedModels?: InputMaybe<Array<Scalars['String']>>;
|
|
4198
4207
|
};
|
|
4199
4208
|
type UserAiProviderSettingWhereInput = {
|
|
4200
4209
|
AND?: InputMaybe<Array<UserAiProviderSettingWhereInput>>;
|
|
@@ -4207,6 +4216,7 @@ type UserAiProviderSettingWhereInput = {
|
|
|
4207
4216
|
enabled?: InputMaybe<BoolFilter>;
|
|
4208
4217
|
id?: InputMaybe<StringFilter>;
|
|
4209
4218
|
model?: InputMaybe<StringFilter>;
|
|
4219
|
+
savedModels?: InputMaybe<StringListFilter>;
|
|
4210
4220
|
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
4211
4221
|
};
|
|
4212
4222
|
type UserAiProviderSettingWhereUniqueInput = {
|
|
@@ -4220,6 +4230,7 @@ type UserAiProviderSettingWhereUniqueInput = {
|
|
|
4220
4230
|
enabled?: InputMaybe<BoolFilter>;
|
|
4221
4231
|
id?: InputMaybe<Scalars['String']>;
|
|
4222
4232
|
model?: InputMaybe<StringFilter>;
|
|
4233
|
+
savedModels?: InputMaybe<StringListFilter>;
|
|
4223
4234
|
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
4224
4235
|
};
|
|
4225
4236
|
type WidgetBlockCompleteEventOutput = {
|
|
@@ -6536,6 +6547,7 @@ type UserAiProviderSettingFragment = {
|
|
|
6536
6547
|
enabled: boolean;
|
|
6537
6548
|
id: string;
|
|
6538
6549
|
model: string;
|
|
6550
|
+
savedModels?: Array<string> | null;
|
|
6539
6551
|
updatedAt: string;
|
|
6540
6552
|
};
|
|
6541
6553
|
type UserSkillFileFragment = {
|
|
@@ -6616,6 +6628,13 @@ type WindowDetailTypeFragment = {
|
|
|
6616
6628
|
windowEnd?: string | null;
|
|
6617
6629
|
windowStart?: string | null;
|
|
6618
6630
|
};
|
|
6631
|
+
type WorkspaceAiModelSettingFragment = {
|
|
6632
|
+
__typename: 'WorkspaceAiModelSetting';
|
|
6633
|
+
createdAt: string;
|
|
6634
|
+
id: string;
|
|
6635
|
+
model: string;
|
|
6636
|
+
updatedAt: string;
|
|
6637
|
+
};
|
|
6619
6638
|
type WorkspaceDeleteScheduleFragment = {
|
|
6620
6639
|
__typename: 'WorkspaceDeleteSchedule';
|
|
6621
6640
|
createdAt: string;
|
|
@@ -6738,6 +6757,9 @@ type DeleteProjectMutationVariables = Exact<{
|
|
|
6738
6757
|
type DeleteReportMutationVariables = Exact<{
|
|
6739
6758
|
where: ReportWhereUniqueInput;
|
|
6740
6759
|
}>;
|
|
6760
|
+
type DeleteSavedAiProviderModelMutationVariables = Exact<{
|
|
6761
|
+
model: Scalars['String'];
|
|
6762
|
+
}>;
|
|
6741
6763
|
type DeleteTableMutationVariables = Exact<{
|
|
6742
6764
|
where: TableWhereUniqueInput;
|
|
6743
6765
|
}>;
|
|
@@ -6901,6 +6923,9 @@ type UpsertAiProviderSettingMutationVariables = Exact<{
|
|
|
6901
6923
|
update: UserAiProviderSettingUpdateInput;
|
|
6902
6924
|
where: UserAiProviderSettingWhereUniqueInput;
|
|
6903
6925
|
}>;
|
|
6926
|
+
type UpsertWorkspaceAiModelMutationVariables = Exact<{
|
|
6927
|
+
model: Scalars['String'];
|
|
6928
|
+
}>;
|
|
6904
6929
|
type AgentQueryVariables = Exact<{
|
|
6905
6930
|
id: Scalars['ID'];
|
|
6906
6931
|
}>;
|
|
@@ -7362,6 +7387,9 @@ type LiveContextsQueryVariables = Exact<{
|
|
|
7362
7387
|
type LocalSandboxDeviceStatusesQueryVariables = Exact<{
|
|
7363
7388
|
deviceIds: Array<Scalars['String']> | Scalars['String'];
|
|
7364
7389
|
}>;
|
|
7390
|
+
type ManagedChatModelsQueryVariables = Exact<{
|
|
7391
|
+
[key: string]: never;
|
|
7392
|
+
}>;
|
|
7365
7393
|
type NotificationQueryVariables = Exact<{
|
|
7366
7394
|
id: Scalars['ID'];
|
|
7367
7395
|
}>;
|
|
@@ -7513,6 +7541,9 @@ type UserSkillFolderQueryVariables = Exact<{
|
|
|
7513
7541
|
type UserSkillFoldersQueryVariables = Exact<{
|
|
7514
7542
|
path?: InputMaybe<Scalars['String']>;
|
|
7515
7543
|
}>;
|
|
7544
|
+
type WorkspaceAiModelQueryVariables = Exact<{
|
|
7545
|
+
[key: string]: never;
|
|
7546
|
+
}>;
|
|
7516
7547
|
type WorkspaceDeletionScheduleQueryVariables = Exact<{
|
|
7517
7548
|
[key: string]: never;
|
|
7518
7549
|
}>;
|
|
@@ -7636,4 +7667,4 @@ interface DvinaClientResult {
|
|
|
7636
7667
|
*/
|
|
7637
7668
|
declare function createDvinaClient(options: DvinaSdkOptions): DvinaClientResult;
|
|
7638
7669
|
|
|
7639
|
-
export { type ReportConnectionFragment as $, type AbortChatMutationVariables as A, type Project_DesktopBindingQueryVariables as B, type ChatMessageQueryVariables as C, type DvinaSdkOptions as D, type Artifact_FileQueryVariables as E, type FileFragment as F, type Artifact_MessageQueryVariables as G, type ChatMessage_ChatQueryVariables as H, type ChatMessage_ContentsQueryVariables as I, ContentBlockType as J, type ContentBlockFragment as K, type ChatMessage_FeedbackQueryVariables as L, FeedbackType as M, type FeedbackFragment as N, type Chat_InsightQueryVariables as O, ProjectDesktopContextKind as P, type Insight_ChatQueryVariables as Q, ReasoningEffort as R, type Insight_ReportMembersQueryVariables as S, ReportMemberSize as T, Presentation as U, type ReportMemberFragment as V, type ReportQueryVariables as W, type ReportFragment as X, type Report_InsightsQueryVariables as Y, type InsightFragment as Z, type Insight_ReportsQueryVariables as _, ActionType as a, type DatabaseCatalogQueryVariables as a$, type Insight_ThumbnailFileQueryVariables as a0, type InsightConnectionFragment as a1, type Report_LayoutQueryVariables as a2, type InsightQueryVariables as a3, type Chat_MessagesQueryVariables as a4, type ChatMessageConnectionFragment as a5, type Chat_ProjectQueryVariables as a6, type DesktopDeviceQueryVariables as a7, type ArtifactConnectionFragment as a8, type AddInsightToReportMutationVariables as a9, ChatSourceImportFidelityEnum as aA, ChatSourceImportModeEnum as aB, type ChatImportPreviewOutputFragment as aC, type ChatMessage_Chat_DesktopDeviceQueryVariables as aD, type ChatMessage_Chat_InsightQueryVariables as aE, type ChatMessage_Chat_ProjectQueryVariables as aF, type ChatMessagesQueryVariables as aG, type ChatQueryVariables as aH, type ChatTitleEventOutputFragment as aI, type Chat_DesktopDevice_DesktopBindingsQueryVariables as aJ, type Chat_Insight_ReportMembersQueryVariables as aK, type Chat_Insight_ThumbnailFileQueryVariables as aL, type Chat_Project_DesktopBindingQueryVariables as aM, type ChatsQueryVariables as aN, type ConnectIntegrationMutationVariables as aO, type CreateIntegrationOutputFragment as aP, type ConsumePulseEventsMutationVariables as aQ, type ContentMaskFragment as aR, type ContextUsageEventOutputFragment as aS, type ContinueImportedChatMutationVariables as aT, type ContinueInterpretationMutationVariables as aU, type CreateAgentMutationVariables as aV, type CreateChatMutationVariables as aW, type CreateDatabaseMutationVariables as aX, type DatabaseFragment as aY, type Database_EngineQueryVariables as aZ, type DatabaseEngineFragment as a_, type AgentQueryVariables as aa, type AgentsQueryVariables as ab, type AiProviderSettingQueryVariables as ac, type UserAiProviderSettingFragment as ad, type ArtifactQueryVariables as ae, type Artifact_Chat_DesktopDeviceQueryVariables as af, type Artifact_Chat_InsightQueryVariables as ag, type Artifact_Chat_ProjectQueryVariables as ah, type Artifact_Message_ChatQueryVariables as ai, type Artifact_Message_ContentsQueryVariables as aj, type Artifact_Message_FeedbackQueryVariables as ak, type ArtifactsQueryVariables as al, type AudioEventOutputFragment as am, type CancelOauthFlowMutationVariables as an, type CancelWorkspaceDeletionMutationVariables as ao, type CandidateFragment as ap, type LiveContextQueryVariables as aq, LiveContextStatus as ar, type LiveContextFragment as as, type LiveContext_ItemsQueryVariables as at, FeedActionType as au, type FeedItemGeneratedFragment as av, type LiveContext_SourceQueryVariables as aw, type CandidateEvidenceFragment as ax, type ImportedChatSummaryOutputFragment as ay, type ChatImportExecuteOutputFragment as az, type ActionFragment as b, type DevAccessTokenOutputFragment as b$, type DatabaseCatalogFragment as b0, type DatabaseCatalog_EngineQueryVariables as b1, type Database_TablesQueryVariables as b2, TableStatus as b3, type TableFragment as b4, type Table_DatabaseQueryVariables as b5, type Table_DocumentQueryVariables as b6, type DocumentFragment as b7, type Document_ContentsQueryVariables as b8, type DocumentContentFragment as b9, type UserSkillFolderModelFragment as bA, type CubeModelFragment as bB, type DatabaseCatalogConnectionFragment as bC, type DatabaseCatalogsQueryVariables as bD, type DatabaseConnectionFragment as bE, type DatabaseQueryVariables as bF, type DatabaseSchemaQueryVariables as bG, type Database_Engine_CatalogQueryVariables as bH, type DatabasesQueryVariables as bI, type DeepAnalysisUsageFragment as bJ, type DeleteAgentMutationVariables as bK, type DeleteAiProviderSettingMutationVariables as bL, type DeleteArtifactMutationVariables as bM, type DeleteChatMutationVariables as bN, type DeleteDatabaseMutationVariables as bO, type DeleteDocumentMutationVariables as bP, type DeleteFolderMutationVariables as bQ, type DeleteInsightMutationVariables as bR, type DeleteInsightsMutationVariables as bS, type DeleteIntegrationMutationVariables as bT, type DeleteProjectMutationVariables as bU, type DeleteReportMutationVariables as bV, type DeleteTableMutationVariables as bW, type DeleteUserSkillFileMutationVariables as bX, type DeleteUserSkillFolderMutationVariables as bY, type DesktopDeviceConnectionFragment as bZ, type DesktopDevicesQueryVariables as b_, type DocumentQueryVariables as ba, type Document_FileQueryVariables as bb, type Document_FormatQueryVariables as bc, type DocumentFormatFragment as bd, type DocumentCatalogQueryVariables as be, type DocumentCatalogFragment as bf, type DocumentCatalog_FormatQueryVariables as bg, type Document_TablesQueryVariables as bh, type Table_FromRelationsQueryVariables as bi, RelationType as bj, type RelationFragment as bk, type TableQueryVariables as bl, type Table_ToRelationsQueryVariables as bm, type TableConnectionFragment as bn, type CreateDocumentMutationVariables as bo, type CreateFeedbackMutationVariables as bp, type CreateFolderMutationVariables as bq, type FolderFragment as br, type CreateInsightMutationVariables as bs, type CreateIntegrationMutationVariables as bt, type CreateProjectMutationVariables as bu, type CreateReportMutationVariables as bv, type CreateTableMutationVariables as bw, type CreateUserSkillFileMutationVariables as bx, type UserSkillFileModelFragment as by, type CreateUserSkillFolderMutationVariables as bz, ChatMessageFromEnum as c, type UpsertAiProviderSettingMutationVariables as c$, type DisconnectIntegrationMutationVariables as c0, type DismissPulseEventMutationVariables as c1, PulseEventPriority as c2, PulseEventKind as c3, type PulseEventFragment as c4, type PulseEvent_IntegrationQueryVariables as c5, IntegrationStatus as c6, type IntegrationFragment as c7, type Integration_ProviderQueryVariables as c8, type IntegrationProviderFragment as c9, type RemoveInsightFromReportMutationVariables as cA, type ResolvePulseEventMutationVariables as cB, type WorkspaceDeleteScheduleFragment as cC, type SendMessageMutationVariables as cD, type SetDatabasePrimaryKeyMutationVariables as cE, type SyncProjectDesktopBindingMutationVariables as cF, type UpdateAgentMutationVariables as cG, type UpdateArtifactNameMutationVariables as cH, type UpdateChatMutationVariables as cI, type UpdateDatabaseMutationVariables as cJ, type UpdateDocumentMutationVariables as cK, type UpdateFolderMutationVariables as cL, type UpdateInsightMutationVariables as cM, type UpdateInsightInReportMutationVariables as cN, type UpdateInsightThumbnailMutationVariables as cO, type UpdateInterpMutationVariables as cP, InterpretationType as cQ, AiResourceType as cR, type InterpretationFragment as cS, type UpdateLiveContextMutationVariables as cT, type UpdateProjectMutationVariables as cU, type UpdatePulseTriggerMutationVariables as cV, type PulseTriggerSettingModelFragment as cW, type UpdateReportMutationVariables as cX, type UpdateTableMutationVariables as cY, type UpdateUserSkillFileMutationVariables as cZ, type UpdateUserSkillFolderMutationVariables as c_, type IntegrationCatalogQueryVariables as ca, type IntegrationCatalogFragment as cb, type IntegrationCatalog_ProviderQueryVariables as cc, type DocumentCatalogConnectionFragment as cd, type DocumentCatalogsQueryVariables as ce, type DocumentConnectionFragment as cf, type Document_Format_CatalogQueryVariables as cg, type DocumentsQueryVariables as ch, type ChatStreamClient as ci, type DvinaSdkLifecycle as cj, type ExecuteChatImportMutationVariables as ck, type GenerateUploadUriMutationVariables as cl, type FileModelFragment as cm, type MigrateLegacyCodeChatsMutationVariables as cn, type LegacyCodeMigratedChatSummaryOutputFragment as co, type LegacyCodeMigrationOutputFragment as cp, type PreviewChatImportMutationVariables as cq, type ReanalyzeDocumentMutationVariables as cr, type RefineAgentInstructionMutationVariables as cs, type RefineSkillInstructionMutationVariables as ct, type RefreshDatabaseSchemaMutationVariables as cu, type RefreshInsightMutationVariables as cv, type RegisterDesktopDeviceMutationVariables as cw, type ReinterpretSourceMutationVariables as cx, type ReinterpretSourcesOfuserMutationVariables as cy, type RelocateInsightMutationVariables as cz, type ChatMessageFragment as d, type NotificationConnectionFragment as d$, type ExportQueryVariables as d0, type ExportWithInsightIdQueryVariables as d1, type FeedItemQueryVariables as d2, FeedItemKind as d3, type FeedDocumentDataFragment as d4, type FeedArtifactDataFragment as d5, type FeedDatabaseDataFragment as d6, type FeedInsightDataFragment as d7, type FeedIntegrationDataFragment as d8, type FeedProjectDataFragment as d9, TokenUsageLimit as dA, ActiveWindowType as dB, type WindowDetailTypeFragment as dC, type UsageWindowsStatusTypeFragment as dD, type UsageStatusFragment as dE, type GetTokenUsageStatus_WindowsQueryVariables as dF, type GetUsageQueryVariables as dG, type InsightsQueryVariables as dH, type IntegrationQueryVariables as dI, type IntegrationCatalogToolsQueryVariables as dJ, type IntegrationCatalogsQueryVariables as dK, type IntegrationCatalogConnectionFragment as dL, type IntegrationsQueryVariables as dM, type IntegrationConnectionFragment as dN, type InterpretationsQueryVariables as dO, type InterpretationConnectionFragment as dP, type LiveContextsQueryVariables as dQ, type LiveContextConnectionFragment as dR, type LocalSandboxDeviceStatusesQueryVariables as dS, LocalSandboxDeviceConnectionState as dT, type LocalSandboxDeviceStatusModelFragment as dU, type NotificationQueryVariables as dV, NotificationCategory as dW, NotificationPriority as dX, NotificationStatus as dY, type NotificationFragment as dZ, type NotificationsQueryVariables as d_, type FeedLiveContextDataFragment as da, type FeedPulseDataFragment as db, type FeedItemFragment as dc, type FeedItem_ActionQueryVariables as dd, type FeedSendMessageActionFragment as de, type FeedItem_DataQueryVariables as df, type FeedItemsQueryVariables as dg, type FeedConnectionFragment as dh, type FileQueryVariables as di, type FileMetaQueryVariables as dj, type FileUrlsQueryVariables as dk, type ResolvedFileUrlFragment as dl, type FindFitTierQueryVariables as dm, EntitlementTier as dn, type FolderQueryVariables as dp, type FoldersQueryVariables as dq, type FolderConnectionFragment as dr, type GetCapabilityQueryVariables as ds, type GetDevAccessTokenQueryVariables as dt, type GetLimitQueryVariables as du, type GetRemainingQueryVariables as dv, type GetTokenUsageByModelQueryVariables as dw, type ModelTokenUsageFragment as dx, type GetTokenUsageHistoryQueryVariables as dy, type GetTokenUsageStatusQueryVariables as dz, type ChatMessage_ArtifactsQueryVariables as e, type WidgetBlockStartEventOutputFragment as e$, type NotificationsByReferenceQueryVariables as e0, type PrivacyStatsQueryVariables as e1, type PrivacyStatsFragment as e2, type ProjectsQueryVariables as e3, type ProjectConnectionFragment as e4, type PulseAppSummaryQueryVariables as e5, type PulseAppSummaryModelFragment as e6, type PulseEventQueryVariables as e7, type PulseEventsQueryVariables as e8, type PulseEventConnectionFragment as e9, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as eA, type GetTokenUsageStatus_Windows_MonthQueryVariables as eB, type GetTokenUsageStatus_Windows_WeekQueryVariables as eC, type InferenceRequestAuditFragment as eD, type Insight_Chat_DesktopDeviceQueryVariables as eE, type Insight_Chat_ProjectQueryVariables as eF, type Integration_Provider_CatalogQueryVariables as eG, type InterruptEventOutputFragment as eH, type InvocationFragment as eI, type LiveContext_Source_EvidencesQueryVariables as eJ, type McpClientInformationFragment as eK, type McpCodeVerifierFragment as eL, type McpServerFragment as eM, type McpTokensFragment as eN, type McpToolFragment as eO, type MessageEndEventOutputFragment as eP, type MessageStartEventOutputFragment as eQ, type PrivacyStatsTotalsDeltaOutputFragment as eR, type PrivacyStatsEventOutputFragment as eS, type ProgressSummaryEventOutputFragment as eT, type Project_DesktopBinding_DeviceQueryVariables as eU, type PulseEvent_Integration_ProviderQueryVariables as eV, type ReasoningEventOutputFragment as eW, type ResetWorkspaceMutationVariables as eX, type ScheduleWorkspaceDeletionMutationVariables as eY, type TextBlockEventOutputFragment as eZ, type TextDeltaEventOutputFragment as e_, type PulseTriggerSettingsQueryVariables as ea, type QueryQueryVariables as eb, type QueryWithInsightIdQueryVariables as ec, type QueryWithMessageIdQueryVariables as ed, type ReportsQueryVariables as ee, type SkillCatalogQueryVariables as ef, SkillCatalogSource as eg, type SkillCatalogItemFragment as eh, type TablesQueryVariables as ei, type UserSkillFileQueryVariables as ej, type UserSkillFilesQueryVariables as ek, type UserSkillFolderQueryVariables as el, type UserSkillFoldersQueryVariables as em, type WorkspaceDeletionScheduleQueryVariables as en, type McpAuthUpdatesSubscriptionVariables as eo, McpAuthPhase as ep, type McpAuthUpdateModelFragment as eq, type TokenUsageUpdatesSubscriptionVariables as er, type EvidenceFragment as es, type FailedSyncEventIngestionFragment as et, type StreamMessageContentOutputFragment as eu, type StreamMessageOutputFragment as ev, type UsageMetaOutputFragment as ew, type PrivacyStatsOutputFragment as ex, type FinalContentEventOutputFragment as ey, type GetTokenUsageStatus_Windows_DayQueryVariables as ez, ArtifactKind as f, type WidgetHtmlDeltaEventOutputFragment as f0, type WidgetBlockCompleteEventOutputFragment as f1, type WidgetBlockErrorEventOutputFragment as f2, type ToolStartEventOutputFragment as f3, type ToolInputDeltaEventOutputFragment as f4, type ToolResultArtifactOutputFragment as f5, type ToolResultEventOutputFragment as f6, type StreamEventSchemaAnchorFragment as f7, type SyncEventFragment as f8, type SyncEventCursorFragment as f9, type DvinaSdkLifecycleHint as fA, type DvinaSdkTokenOptions as fB, FeedItemOrderByRelevanceFieldEnum as fC, FeedbackOrderByRelevanceFieldEnum as fD, FileOrderByRelevanceFieldEnum as fE, FileUrlVariant as fF, FolderOrderByRelevanceFieldEnum as fG, InsightOrderByRelevanceFieldEnum as fH, IntegrationCatalogOrderByRelevanceFieldEnum as fI, IntegrationOrderByRelevanceFieldEnum as fJ, InterpretationOrderByRelevanceFieldEnum as fK, LimitType as fL, LiveContextOrderByRelevanceFieldEnum as fM, NotificationOrderByRelevanceFieldEnum as fN, NullsOrder as fO, ProjectDesktopBindingOrderByRelevanceFieldEnum as fP, ProjectOrderByRelevanceFieldEnum as fQ, PulseEventOrderByRelevanceFieldEnum as fR, QueryMode as fS, ReportOrderByRelevanceFieldEnum as fT, SendMessageModel as fU, SortOrder as fV, TableOrderByRelevanceFieldEnum as fW, UsageHistoryGranularity as fX, createChatStreamClient as fY, createDvinaClient as fZ, type Table_Database_EngineQueryVariables as fa, type Table_Document_ContentsQueryVariables as fb, type Table_Document_FileQueryVariables as fc, type Table_Document_FormatQueryVariables as fd, type TokenUsageFragment as fe, type UserSkillFileFragment as ff, type UserSkillFolderFragment as fg, type ActiveChatStreamClient as fh, type ActiveChatStreamListener as fi, type ActiveChatStreamListenerHandlers as fj, AgentOrderByRelevanceFieldEnum as fk, ArtifactOrderByRelevanceFieldEnum as fl, CapabilityType as fm, ChatMessageOrderByRelevanceFieldEnum as fn, ChatOrderByRelevanceFieldEnum as fo, type ChatStreamClientOptions as fp, type ChatStreamEvent as fq, type ChatStreamListener as fr, type ChatStreamListenerHandlers as fs, DatabaseCatalogOrderByRelevanceFieldEnum as ft, DatabaseOrderByRelevanceFieldEnum as fu, DesktopDeviceOrderByRelevanceFieldEnum as fv, DocumentCatalogOrderByRelevanceFieldEnum as fw, DocumentOrderByRelevanceFieldEnum as fx, type DvinaSdkBaseOptions as fy, type DvinaSdkCallbackOptions as fz, type ArtifactFragment as g, type Artifact_ChatQueryVariables as h, ChatWorkspaceMode as i, ChatSourceProviderEnum as j, type ChatFragment as k, type Chat_AgentsQueryVariables as l, type AgentFragment as m, type Agent_ChatsQueryVariables as n, type ChatConnectionFragment as o, type AgentConnectionFragment as p, type Chat_ArtifactsQueryVariables as q, type Chat_DesktopDeviceQueryVariables as r, type DesktopDeviceFragment as s, type DesktopDevice_ChatsQueryVariables as t, type DesktopDevice_DesktopBindingsQueryVariables as u, type ProjectDesktopBindingFragment as v, type ProjectQueryVariables as w, ProjectSource as x, type ProjectFragment as y, type Project_ChatsQueryVariables as z };
|
|
7670
|
+
export { type ReportConnectionFragment as $, type AbortChatMutationVariables as A, type Project_DesktopBindingQueryVariables as B, type ChatMessageQueryVariables as C, type DvinaSdkOptions as D, type Artifact_FileQueryVariables as E, type FileFragment as F, type Artifact_MessageQueryVariables as G, type ChatMessage_ChatQueryVariables as H, type ChatMessage_ContentsQueryVariables as I, ContentBlockType as J, type ContentBlockFragment as K, type ChatMessage_FeedbackQueryVariables as L, FeedbackType as M, type FeedbackFragment as N, type Chat_InsightQueryVariables as O, ProjectDesktopContextKind as P, type Insight_ChatQueryVariables as Q, ReasoningEffort as R, type Insight_ReportMembersQueryVariables as S, ReportMemberSize as T, Presentation as U, type ReportMemberFragment as V, type ReportQueryVariables as W, type ReportFragment as X, type Report_InsightsQueryVariables as Y, type InsightFragment as Z, type Insight_ReportsQueryVariables as _, ActionType as a, type DatabaseCatalogQueryVariables as a$, type Insight_ThumbnailFileQueryVariables as a0, type InsightConnectionFragment as a1, type Report_LayoutQueryVariables as a2, type InsightQueryVariables as a3, type Chat_MessagesQueryVariables as a4, type ChatMessageConnectionFragment as a5, type Chat_ProjectQueryVariables as a6, type DesktopDeviceQueryVariables as a7, type ArtifactConnectionFragment as a8, type AddInsightToReportMutationVariables as a9, ChatSourceImportFidelityEnum as aA, ChatSourceImportModeEnum as aB, type ChatImportPreviewOutputFragment as aC, type ChatMessage_Chat_DesktopDeviceQueryVariables as aD, type ChatMessage_Chat_InsightQueryVariables as aE, type ChatMessage_Chat_ProjectQueryVariables as aF, type ChatMessagesQueryVariables as aG, type ChatQueryVariables as aH, type ChatTitleEventOutputFragment as aI, type Chat_DesktopDevice_DesktopBindingsQueryVariables as aJ, type Chat_Insight_ReportMembersQueryVariables as aK, type Chat_Insight_ThumbnailFileQueryVariables as aL, type Chat_Project_DesktopBindingQueryVariables as aM, type ChatsQueryVariables as aN, type ConnectIntegrationMutationVariables as aO, type CreateIntegrationOutputFragment as aP, type ConsumePulseEventsMutationVariables as aQ, type ContentMaskFragment as aR, type ContextUsageEventOutputFragment as aS, type ContinueImportedChatMutationVariables as aT, type ContinueInterpretationMutationVariables as aU, type CreateAgentMutationVariables as aV, type CreateChatMutationVariables as aW, type CreateDatabaseMutationVariables as aX, type DatabaseFragment as aY, type Database_EngineQueryVariables as aZ, type DatabaseEngineFragment as a_, type AgentQueryVariables as aa, type AgentsQueryVariables as ab, type AiProviderSettingQueryVariables as ac, type UserAiProviderSettingFragment as ad, type ArtifactQueryVariables as ae, type Artifact_Chat_DesktopDeviceQueryVariables as af, type Artifact_Chat_InsightQueryVariables as ag, type Artifact_Chat_ProjectQueryVariables as ah, type Artifact_Message_ChatQueryVariables as ai, type Artifact_Message_ContentsQueryVariables as aj, type Artifact_Message_FeedbackQueryVariables as ak, type ArtifactsQueryVariables as al, type AudioEventOutputFragment as am, type CancelOauthFlowMutationVariables as an, type CancelWorkspaceDeletionMutationVariables as ao, type CandidateFragment as ap, type LiveContextQueryVariables as aq, LiveContextStatus as ar, type LiveContextFragment as as, type LiveContext_ItemsQueryVariables as at, FeedActionType as au, type FeedItemGeneratedFragment as av, type LiveContext_SourceQueryVariables as aw, type CandidateEvidenceFragment as ax, type ImportedChatSummaryOutputFragment as ay, type ChatImportExecuteOutputFragment as az, type ActionFragment as b, type DesktopDevicesQueryVariables as b$, type DatabaseCatalogFragment as b0, type DatabaseCatalog_EngineQueryVariables as b1, type Database_TablesQueryVariables as b2, TableStatus as b3, type TableFragment as b4, type Table_DatabaseQueryVariables as b5, type Table_DocumentQueryVariables as b6, type DocumentFragment as b7, type Document_ContentsQueryVariables as b8, type DocumentContentFragment as b9, type UserSkillFolderModelFragment as bA, type CubeModelFragment as bB, type DatabaseCatalogConnectionFragment as bC, type DatabaseCatalogsQueryVariables as bD, type DatabaseConnectionFragment as bE, type DatabaseQueryVariables as bF, type DatabaseSchemaQueryVariables as bG, type Database_Engine_CatalogQueryVariables as bH, type DatabasesQueryVariables as bI, type DeepAnalysisUsageFragment as bJ, type DeleteAgentMutationVariables as bK, type DeleteAiProviderSettingMutationVariables as bL, type DeleteArtifactMutationVariables as bM, type DeleteChatMutationVariables as bN, type DeleteDatabaseMutationVariables as bO, type DeleteDocumentMutationVariables as bP, type DeleteFolderMutationVariables as bQ, type DeleteInsightMutationVariables as bR, type DeleteInsightsMutationVariables as bS, type DeleteIntegrationMutationVariables as bT, type DeleteProjectMutationVariables as bU, type DeleteReportMutationVariables as bV, type DeleteSavedAiProviderModelMutationVariables as bW, type DeleteTableMutationVariables as bX, type DeleteUserSkillFileMutationVariables as bY, type DeleteUserSkillFolderMutationVariables as bZ, type DesktopDeviceConnectionFragment as b_, type DocumentQueryVariables as ba, type Document_FileQueryVariables as bb, type Document_FormatQueryVariables as bc, type DocumentFormatFragment as bd, type DocumentCatalogQueryVariables as be, type DocumentCatalogFragment as bf, type DocumentCatalog_FormatQueryVariables as bg, type Document_TablesQueryVariables as bh, type Table_FromRelationsQueryVariables as bi, RelationType as bj, type RelationFragment as bk, type TableQueryVariables as bl, type Table_ToRelationsQueryVariables as bm, type TableConnectionFragment as bn, type CreateDocumentMutationVariables as bo, type CreateFeedbackMutationVariables as bp, type CreateFolderMutationVariables as bq, type FolderFragment as br, type CreateInsightMutationVariables as bs, type CreateIntegrationMutationVariables as bt, type CreateProjectMutationVariables as bu, type CreateReportMutationVariables as bv, type CreateTableMutationVariables as bw, type CreateUserSkillFileMutationVariables as bx, type UserSkillFileModelFragment as by, type CreateUserSkillFolderMutationVariables as bz, ChatMessageFromEnum as c, type UpdateUserSkillFolderMutationVariables as c$, type DevAccessTokenOutputFragment as c0, type DisconnectIntegrationMutationVariables as c1, type DismissPulseEventMutationVariables as c2, PulseEventPriority as c3, PulseEventKind as c4, type PulseEventFragment as c5, type PulseEvent_IntegrationQueryVariables as c6, IntegrationStatus as c7, type IntegrationFragment as c8, type Integration_ProviderQueryVariables as c9, type RelocateInsightMutationVariables as cA, type RemoveInsightFromReportMutationVariables as cB, type ResolvePulseEventMutationVariables as cC, type WorkspaceDeleteScheduleFragment as cD, type SendMessageMutationVariables as cE, type SetDatabasePrimaryKeyMutationVariables as cF, type SyncProjectDesktopBindingMutationVariables as cG, type UpdateAgentMutationVariables as cH, type UpdateArtifactNameMutationVariables as cI, type UpdateChatMutationVariables as cJ, type UpdateDatabaseMutationVariables as cK, type UpdateDocumentMutationVariables as cL, type UpdateFolderMutationVariables as cM, type UpdateInsightMutationVariables as cN, type UpdateInsightInReportMutationVariables as cO, type UpdateInsightThumbnailMutationVariables as cP, type UpdateInterpMutationVariables as cQ, InterpretationType as cR, AiResourceType as cS, type InterpretationFragment as cT, type UpdateLiveContextMutationVariables as cU, type UpdateProjectMutationVariables as cV, type UpdatePulseTriggerMutationVariables as cW, type PulseTriggerSettingModelFragment as cX, type UpdateReportMutationVariables as cY, type UpdateTableMutationVariables as cZ, type UpdateUserSkillFileMutationVariables as c_, type IntegrationProviderFragment as ca, type IntegrationCatalogQueryVariables as cb, type IntegrationCatalogFragment as cc, type IntegrationCatalog_ProviderQueryVariables as cd, type DocumentCatalogConnectionFragment as ce, type DocumentCatalogsQueryVariables as cf, type DocumentConnectionFragment as cg, type Document_Format_CatalogQueryVariables as ch, type DocumentsQueryVariables as ci, type ChatStreamClient as cj, type DvinaSdkLifecycle as ck, type ExecuteChatImportMutationVariables as cl, type GenerateUploadUriMutationVariables as cm, type FileModelFragment as cn, type MigrateLegacyCodeChatsMutationVariables as co, type LegacyCodeMigratedChatSummaryOutputFragment as cp, type LegacyCodeMigrationOutputFragment as cq, type PreviewChatImportMutationVariables as cr, type ReanalyzeDocumentMutationVariables as cs, type RefineAgentInstructionMutationVariables as ct, type RefineSkillInstructionMutationVariables as cu, type RefreshDatabaseSchemaMutationVariables as cv, type RefreshInsightMutationVariables as cw, type RegisterDesktopDeviceMutationVariables as cx, type ReinterpretSourceMutationVariables as cy, type ReinterpretSourcesOfuserMutationVariables as cz, type ChatMessageFragment as d, type NotificationFragment as d$, type UpsertAiProviderSettingMutationVariables as d0, type UpsertWorkspaceAiModelMutationVariables as d1, type ExportQueryVariables as d2, type ExportWithInsightIdQueryVariables as d3, type FeedItemQueryVariables as d4, FeedItemKind as d5, type FeedDocumentDataFragment as d6, type FeedArtifactDataFragment as d7, type FeedDatabaseDataFragment as d8, type FeedInsightDataFragment as d9, type GetTokenUsageHistoryQueryVariables as dA, type GetTokenUsageStatusQueryVariables as dB, TokenUsageLimit as dC, ActiveWindowType as dD, type WindowDetailTypeFragment as dE, type UsageWindowsStatusTypeFragment as dF, type UsageStatusFragment as dG, type GetTokenUsageStatus_WindowsQueryVariables as dH, type GetUsageQueryVariables as dI, type InsightsQueryVariables as dJ, type IntegrationQueryVariables as dK, type IntegrationCatalogToolsQueryVariables as dL, type IntegrationCatalogsQueryVariables as dM, type IntegrationCatalogConnectionFragment as dN, type IntegrationsQueryVariables as dO, type IntegrationConnectionFragment as dP, type InterpretationsQueryVariables as dQ, type InterpretationConnectionFragment as dR, type LiveContextsQueryVariables as dS, type LiveContextConnectionFragment as dT, type LocalSandboxDeviceStatusesQueryVariables as dU, LocalSandboxDeviceConnectionState as dV, type LocalSandboxDeviceStatusModelFragment as dW, type NotificationQueryVariables as dX, NotificationCategory as dY, NotificationPriority as dZ, NotificationStatus as d_, type FeedIntegrationDataFragment as da, type FeedProjectDataFragment as db, type FeedLiveContextDataFragment as dc, type FeedPulseDataFragment as dd, type FeedItemFragment as de, type FeedItem_ActionQueryVariables as df, type FeedSendMessageActionFragment as dg, type FeedItem_DataQueryVariables as dh, type FeedItemsQueryVariables as di, type FeedConnectionFragment as dj, type FileQueryVariables as dk, type FileMetaQueryVariables as dl, type FileUrlsQueryVariables as dm, type ResolvedFileUrlFragment as dn, type FindFitTierQueryVariables as dp, EntitlementTier as dq, type FolderQueryVariables as dr, type FoldersQueryVariables as ds, type FolderConnectionFragment as dt, type GetCapabilityQueryVariables as du, type GetDevAccessTokenQueryVariables as dv, type GetLimitQueryVariables as dw, type GetRemainingQueryVariables as dx, type GetTokenUsageByModelQueryVariables as dy, type ModelTokenUsageFragment as dz, type ChatMessage_ArtifactsQueryVariables as e, type ScheduleWorkspaceDeletionMutationVariables as e$, type NotificationsQueryVariables as e0, type NotificationConnectionFragment as e1, type NotificationsByReferenceQueryVariables as e2, type PrivacyStatsQueryVariables as e3, type PrivacyStatsFragment as e4, type ProjectsQueryVariables as e5, type ProjectConnectionFragment as e6, type PulseAppSummaryQueryVariables as e7, type PulseAppSummaryModelFragment as e8, type PulseEventQueryVariables as e9, type FinalContentEventOutputFragment as eA, type GetTokenUsageStatus_Windows_DayQueryVariables as eB, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as eC, type GetTokenUsageStatus_Windows_MonthQueryVariables as eD, type GetTokenUsageStatus_Windows_WeekQueryVariables as eE, type InferenceRequestAuditFragment as eF, type Insight_Chat_DesktopDeviceQueryVariables as eG, type Insight_Chat_ProjectQueryVariables as eH, type Integration_Provider_CatalogQueryVariables as eI, type InterruptEventOutputFragment as eJ, type InvocationFragment as eK, type LiveContext_Source_EvidencesQueryVariables as eL, type ManagedChatModelsQueryVariables as eM, type McpClientInformationFragment as eN, type McpCodeVerifierFragment as eO, type McpServerFragment as eP, type McpTokensFragment as eQ, type McpToolFragment as eR, type MessageEndEventOutputFragment as eS, type MessageStartEventOutputFragment as eT, type PrivacyStatsTotalsDeltaOutputFragment as eU, type PrivacyStatsEventOutputFragment as eV, type ProgressSummaryEventOutputFragment as eW, type Project_DesktopBinding_DeviceQueryVariables as eX, type PulseEvent_Integration_ProviderQueryVariables as eY, type ReasoningEventOutputFragment as eZ, type ResetWorkspaceMutationVariables as e_, type PulseEventsQueryVariables as ea, type PulseEventConnectionFragment as eb, type PulseTriggerSettingsQueryVariables as ec, type QueryQueryVariables as ed, type QueryWithInsightIdQueryVariables as ee, type QueryWithMessageIdQueryVariables as ef, type ReportsQueryVariables as eg, type SkillCatalogQueryVariables as eh, SkillCatalogSource as ei, type SkillCatalogItemFragment as ej, type TablesQueryVariables as ek, type UserSkillFileQueryVariables as el, type UserSkillFilesQueryVariables as em, type UserSkillFolderQueryVariables as en, type UserSkillFoldersQueryVariables as eo, type WorkspaceDeletionScheduleQueryVariables as ep, type McpAuthUpdatesSubscriptionVariables as eq, McpAuthPhase as er, type McpAuthUpdateModelFragment as es, type TokenUsageUpdatesSubscriptionVariables as et, type EvidenceFragment as eu, type FailedSyncEventIngestionFragment as ev, type StreamMessageContentOutputFragment as ew, type StreamMessageOutputFragment as ex, type UsageMetaOutputFragment as ey, type PrivacyStatsOutputFragment as ez, ArtifactKind as f, TableOrderByRelevanceFieldEnum as f$, type TextBlockEventOutputFragment as f0, type TextDeltaEventOutputFragment as f1, type WidgetBlockStartEventOutputFragment as f2, type WidgetHtmlDeltaEventOutputFragment as f3, type WidgetBlockCompleteEventOutputFragment as f4, type WidgetBlockErrorEventOutputFragment as f5, type ToolStartEventOutputFragment as f6, type ToolInputDeltaEventOutputFragment as f7, type ToolResultArtifactOutputFragment as f8, type ToolResultEventOutputFragment as f9, DesktopDeviceOrderByRelevanceFieldEnum as fA, DocumentCatalogOrderByRelevanceFieldEnum as fB, DocumentOrderByRelevanceFieldEnum as fC, type DvinaSdkBaseOptions as fD, type DvinaSdkCallbackOptions as fE, type DvinaSdkLifecycleHint as fF, type DvinaSdkTokenOptions as fG, FeedItemOrderByRelevanceFieldEnum as fH, FeedbackOrderByRelevanceFieldEnum as fI, FileOrderByRelevanceFieldEnum as fJ, FileUrlVariant as fK, FolderOrderByRelevanceFieldEnum as fL, InsightOrderByRelevanceFieldEnum as fM, IntegrationCatalogOrderByRelevanceFieldEnum as fN, IntegrationOrderByRelevanceFieldEnum as fO, InterpretationOrderByRelevanceFieldEnum as fP, LimitType as fQ, LiveContextOrderByRelevanceFieldEnum as fR, NotificationOrderByRelevanceFieldEnum as fS, NullsOrder as fT, ProjectDesktopBindingOrderByRelevanceFieldEnum as fU, ProjectOrderByRelevanceFieldEnum as fV, PulseEventOrderByRelevanceFieldEnum as fW, QueryMode as fX, ReportOrderByRelevanceFieldEnum as fY, SendMessageModel as fZ, SortOrder as f_, type StreamEventSchemaAnchorFragment as fa, type SyncEventFragment as fb, type SyncEventCursorFragment as fc, type Table_Database_EngineQueryVariables as fd, type Table_Document_ContentsQueryVariables as fe, type Table_Document_FileQueryVariables as ff, type Table_Document_FormatQueryVariables as fg, type TokenUsageFragment as fh, type UserSkillFileFragment as fi, type UserSkillFolderFragment as fj, type WorkspaceAiModelQueryVariables as fk, type WorkspaceAiModelSettingFragment as fl, type ActiveChatStreamClient as fm, type ActiveChatStreamListener as fn, type ActiveChatStreamListenerHandlers as fo, AgentOrderByRelevanceFieldEnum as fp, ArtifactOrderByRelevanceFieldEnum as fq, CapabilityType as fr, ChatMessageOrderByRelevanceFieldEnum as fs, ChatOrderByRelevanceFieldEnum as ft, type ChatStreamClientOptions as fu, type ChatStreamEvent as fv, type ChatStreamListener as fw, type ChatStreamListenerHandlers as fx, DatabaseCatalogOrderByRelevanceFieldEnum as fy, DatabaseOrderByRelevanceFieldEnum as fz, type ArtifactFragment as g, UsageHistoryGranularity as g0, createChatStreamClient as g1, createDvinaClient as g2, type Artifact_ChatQueryVariables as h, ChatWorkspaceMode as i, ChatSourceProviderEnum as j, type ChatFragment as k, type Chat_AgentsQueryVariables as l, type AgentFragment as m, type Agent_ChatsQueryVariables as n, type ChatConnectionFragment as o, type AgentConnectionFragment as p, type Chat_ArtifactsQueryVariables as q, type Chat_DesktopDeviceQueryVariables as r, type DesktopDeviceFragment as s, type DesktopDevice_ChatsQueryVariables as t, type DesktopDevice_DesktopBindingsQueryVariables as u, type ProjectDesktopBindingFragment as v, type ProjectQueryVariables as w, ProjectSource as x, type ProjectFragment as y, type Project_ChatsQueryVariables as z };
|
|
@@ -3946,6 +3946,13 @@ type StringFilter = {
|
|
|
3946
3946
|
search?: InputMaybe<Scalars['String']>;
|
|
3947
3947
|
startsWith?: InputMaybe<Scalars['String']>;
|
|
3948
3948
|
};
|
|
3949
|
+
type StringListFilter = {
|
|
3950
|
+
equals?: InputMaybe<Array<Scalars['String']>>;
|
|
3951
|
+
has?: InputMaybe<Scalars['String']>;
|
|
3952
|
+
hasEvery?: InputMaybe<Array<Scalars['String']>>;
|
|
3953
|
+
hasSome?: InputMaybe<Array<Scalars['String']>>;
|
|
3954
|
+
isEmpty?: InputMaybe<Scalars['Boolean']>;
|
|
3955
|
+
};
|
|
3949
3956
|
type SyncProjectDesktopBindingInput = {
|
|
3950
3957
|
deviceId?: InputMaybe<Scalars['String']>;
|
|
3951
3958
|
iconDataUrl?: InputMaybe<Scalars['String']>;
|
|
@@ -4187,6 +4194,7 @@ type UserAiProviderSettingCreateInput = {
|
|
|
4187
4194
|
enabled?: InputMaybe<Scalars['Boolean']>;
|
|
4188
4195
|
id?: InputMaybe<Scalars['String']>;
|
|
4189
4196
|
model: Scalars['String'];
|
|
4197
|
+
savedModels?: InputMaybe<Array<Scalars['String']>>;
|
|
4190
4198
|
};
|
|
4191
4199
|
type UserAiProviderSettingUpdateInput = {
|
|
4192
4200
|
apiKey?: InputMaybe<Scalars['String']>;
|
|
@@ -4195,6 +4203,7 @@ type UserAiProviderSettingUpdateInput = {
|
|
|
4195
4203
|
enabled?: InputMaybe<Scalars['Boolean']>;
|
|
4196
4204
|
id?: InputMaybe<Scalars['String']>;
|
|
4197
4205
|
model?: InputMaybe<Scalars['String']>;
|
|
4206
|
+
savedModels?: InputMaybe<Array<Scalars['String']>>;
|
|
4198
4207
|
};
|
|
4199
4208
|
type UserAiProviderSettingWhereInput = {
|
|
4200
4209
|
AND?: InputMaybe<Array<UserAiProviderSettingWhereInput>>;
|
|
@@ -4207,6 +4216,7 @@ type UserAiProviderSettingWhereInput = {
|
|
|
4207
4216
|
enabled?: InputMaybe<BoolFilter>;
|
|
4208
4217
|
id?: InputMaybe<StringFilter>;
|
|
4209
4218
|
model?: InputMaybe<StringFilter>;
|
|
4219
|
+
savedModels?: InputMaybe<StringListFilter>;
|
|
4210
4220
|
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
4211
4221
|
};
|
|
4212
4222
|
type UserAiProviderSettingWhereUniqueInput = {
|
|
@@ -4220,6 +4230,7 @@ type UserAiProviderSettingWhereUniqueInput = {
|
|
|
4220
4230
|
enabled?: InputMaybe<BoolFilter>;
|
|
4221
4231
|
id?: InputMaybe<Scalars['String']>;
|
|
4222
4232
|
model?: InputMaybe<StringFilter>;
|
|
4233
|
+
savedModels?: InputMaybe<StringListFilter>;
|
|
4223
4234
|
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
4224
4235
|
};
|
|
4225
4236
|
type WidgetBlockCompleteEventOutput = {
|
|
@@ -6536,6 +6547,7 @@ type UserAiProviderSettingFragment = {
|
|
|
6536
6547
|
enabled: boolean;
|
|
6537
6548
|
id: string;
|
|
6538
6549
|
model: string;
|
|
6550
|
+
savedModels?: Array<string> | null;
|
|
6539
6551
|
updatedAt: string;
|
|
6540
6552
|
};
|
|
6541
6553
|
type UserSkillFileFragment = {
|
|
@@ -6616,6 +6628,13 @@ type WindowDetailTypeFragment = {
|
|
|
6616
6628
|
windowEnd?: string | null;
|
|
6617
6629
|
windowStart?: string | null;
|
|
6618
6630
|
};
|
|
6631
|
+
type WorkspaceAiModelSettingFragment = {
|
|
6632
|
+
__typename: 'WorkspaceAiModelSetting';
|
|
6633
|
+
createdAt: string;
|
|
6634
|
+
id: string;
|
|
6635
|
+
model: string;
|
|
6636
|
+
updatedAt: string;
|
|
6637
|
+
};
|
|
6619
6638
|
type WorkspaceDeleteScheduleFragment = {
|
|
6620
6639
|
__typename: 'WorkspaceDeleteSchedule';
|
|
6621
6640
|
createdAt: string;
|
|
@@ -6738,6 +6757,9 @@ type DeleteProjectMutationVariables = Exact<{
|
|
|
6738
6757
|
type DeleteReportMutationVariables = Exact<{
|
|
6739
6758
|
where: ReportWhereUniqueInput;
|
|
6740
6759
|
}>;
|
|
6760
|
+
type DeleteSavedAiProviderModelMutationVariables = Exact<{
|
|
6761
|
+
model: Scalars['String'];
|
|
6762
|
+
}>;
|
|
6741
6763
|
type DeleteTableMutationVariables = Exact<{
|
|
6742
6764
|
where: TableWhereUniqueInput;
|
|
6743
6765
|
}>;
|
|
@@ -6901,6 +6923,9 @@ type UpsertAiProviderSettingMutationVariables = Exact<{
|
|
|
6901
6923
|
update: UserAiProviderSettingUpdateInput;
|
|
6902
6924
|
where: UserAiProviderSettingWhereUniqueInput;
|
|
6903
6925
|
}>;
|
|
6926
|
+
type UpsertWorkspaceAiModelMutationVariables = Exact<{
|
|
6927
|
+
model: Scalars['String'];
|
|
6928
|
+
}>;
|
|
6904
6929
|
type AgentQueryVariables = Exact<{
|
|
6905
6930
|
id: Scalars['ID'];
|
|
6906
6931
|
}>;
|
|
@@ -7362,6 +7387,9 @@ type LiveContextsQueryVariables = Exact<{
|
|
|
7362
7387
|
type LocalSandboxDeviceStatusesQueryVariables = Exact<{
|
|
7363
7388
|
deviceIds: Array<Scalars['String']> | Scalars['String'];
|
|
7364
7389
|
}>;
|
|
7390
|
+
type ManagedChatModelsQueryVariables = Exact<{
|
|
7391
|
+
[key: string]: never;
|
|
7392
|
+
}>;
|
|
7365
7393
|
type NotificationQueryVariables = Exact<{
|
|
7366
7394
|
id: Scalars['ID'];
|
|
7367
7395
|
}>;
|
|
@@ -7513,6 +7541,9 @@ type UserSkillFolderQueryVariables = Exact<{
|
|
|
7513
7541
|
type UserSkillFoldersQueryVariables = Exact<{
|
|
7514
7542
|
path?: InputMaybe<Scalars['String']>;
|
|
7515
7543
|
}>;
|
|
7544
|
+
type WorkspaceAiModelQueryVariables = Exact<{
|
|
7545
|
+
[key: string]: never;
|
|
7546
|
+
}>;
|
|
7516
7547
|
type WorkspaceDeletionScheduleQueryVariables = Exact<{
|
|
7517
7548
|
[key: string]: never;
|
|
7518
7549
|
}>;
|
|
@@ -7636,4 +7667,4 @@ interface DvinaClientResult {
|
|
|
7636
7667
|
*/
|
|
7637
7668
|
declare function createDvinaClient(options: DvinaSdkOptions): DvinaClientResult;
|
|
7638
7669
|
|
|
7639
|
-
export { type ReportConnectionFragment as $, type AbortChatMutationVariables as A, type Project_DesktopBindingQueryVariables as B, type ChatMessageQueryVariables as C, type DvinaSdkOptions as D, type Artifact_FileQueryVariables as E, type FileFragment as F, type Artifact_MessageQueryVariables as G, type ChatMessage_ChatQueryVariables as H, type ChatMessage_ContentsQueryVariables as I, ContentBlockType as J, type ContentBlockFragment as K, type ChatMessage_FeedbackQueryVariables as L, FeedbackType as M, type FeedbackFragment as N, type Chat_InsightQueryVariables as O, ProjectDesktopContextKind as P, type Insight_ChatQueryVariables as Q, ReasoningEffort as R, type Insight_ReportMembersQueryVariables as S, ReportMemberSize as T, Presentation as U, type ReportMemberFragment as V, type ReportQueryVariables as W, type ReportFragment as X, type Report_InsightsQueryVariables as Y, type InsightFragment as Z, type Insight_ReportsQueryVariables as _, ActionType as a, type DatabaseCatalogQueryVariables as a$, type Insight_ThumbnailFileQueryVariables as a0, type InsightConnectionFragment as a1, type Report_LayoutQueryVariables as a2, type InsightQueryVariables as a3, type Chat_MessagesQueryVariables as a4, type ChatMessageConnectionFragment as a5, type Chat_ProjectQueryVariables as a6, type DesktopDeviceQueryVariables as a7, type ArtifactConnectionFragment as a8, type AddInsightToReportMutationVariables as a9, ChatSourceImportFidelityEnum as aA, ChatSourceImportModeEnum as aB, type ChatImportPreviewOutputFragment as aC, type ChatMessage_Chat_DesktopDeviceQueryVariables as aD, type ChatMessage_Chat_InsightQueryVariables as aE, type ChatMessage_Chat_ProjectQueryVariables as aF, type ChatMessagesQueryVariables as aG, type ChatQueryVariables as aH, type ChatTitleEventOutputFragment as aI, type Chat_DesktopDevice_DesktopBindingsQueryVariables as aJ, type Chat_Insight_ReportMembersQueryVariables as aK, type Chat_Insight_ThumbnailFileQueryVariables as aL, type Chat_Project_DesktopBindingQueryVariables as aM, type ChatsQueryVariables as aN, type ConnectIntegrationMutationVariables as aO, type CreateIntegrationOutputFragment as aP, type ConsumePulseEventsMutationVariables as aQ, type ContentMaskFragment as aR, type ContextUsageEventOutputFragment as aS, type ContinueImportedChatMutationVariables as aT, type ContinueInterpretationMutationVariables as aU, type CreateAgentMutationVariables as aV, type CreateChatMutationVariables as aW, type CreateDatabaseMutationVariables as aX, type DatabaseFragment as aY, type Database_EngineQueryVariables as aZ, type DatabaseEngineFragment as a_, type AgentQueryVariables as aa, type AgentsQueryVariables as ab, type AiProviderSettingQueryVariables as ac, type UserAiProviderSettingFragment as ad, type ArtifactQueryVariables as ae, type Artifact_Chat_DesktopDeviceQueryVariables as af, type Artifact_Chat_InsightQueryVariables as ag, type Artifact_Chat_ProjectQueryVariables as ah, type Artifact_Message_ChatQueryVariables as ai, type Artifact_Message_ContentsQueryVariables as aj, type Artifact_Message_FeedbackQueryVariables as ak, type ArtifactsQueryVariables as al, type AudioEventOutputFragment as am, type CancelOauthFlowMutationVariables as an, type CancelWorkspaceDeletionMutationVariables as ao, type CandidateFragment as ap, type LiveContextQueryVariables as aq, LiveContextStatus as ar, type LiveContextFragment as as, type LiveContext_ItemsQueryVariables as at, FeedActionType as au, type FeedItemGeneratedFragment as av, type LiveContext_SourceQueryVariables as aw, type CandidateEvidenceFragment as ax, type ImportedChatSummaryOutputFragment as ay, type ChatImportExecuteOutputFragment as az, type ActionFragment as b, type DevAccessTokenOutputFragment as b$, type DatabaseCatalogFragment as b0, type DatabaseCatalog_EngineQueryVariables as b1, type Database_TablesQueryVariables as b2, TableStatus as b3, type TableFragment as b4, type Table_DatabaseQueryVariables as b5, type Table_DocumentQueryVariables as b6, type DocumentFragment as b7, type Document_ContentsQueryVariables as b8, type DocumentContentFragment as b9, type UserSkillFolderModelFragment as bA, type CubeModelFragment as bB, type DatabaseCatalogConnectionFragment as bC, type DatabaseCatalogsQueryVariables as bD, type DatabaseConnectionFragment as bE, type DatabaseQueryVariables as bF, type DatabaseSchemaQueryVariables as bG, type Database_Engine_CatalogQueryVariables as bH, type DatabasesQueryVariables as bI, type DeepAnalysisUsageFragment as bJ, type DeleteAgentMutationVariables as bK, type DeleteAiProviderSettingMutationVariables as bL, type DeleteArtifactMutationVariables as bM, type DeleteChatMutationVariables as bN, type DeleteDatabaseMutationVariables as bO, type DeleteDocumentMutationVariables as bP, type DeleteFolderMutationVariables as bQ, type DeleteInsightMutationVariables as bR, type DeleteInsightsMutationVariables as bS, type DeleteIntegrationMutationVariables as bT, type DeleteProjectMutationVariables as bU, type DeleteReportMutationVariables as bV, type DeleteTableMutationVariables as bW, type DeleteUserSkillFileMutationVariables as bX, type DeleteUserSkillFolderMutationVariables as bY, type DesktopDeviceConnectionFragment as bZ, type DesktopDevicesQueryVariables as b_, type DocumentQueryVariables as ba, type Document_FileQueryVariables as bb, type Document_FormatQueryVariables as bc, type DocumentFormatFragment as bd, type DocumentCatalogQueryVariables as be, type DocumentCatalogFragment as bf, type DocumentCatalog_FormatQueryVariables as bg, type Document_TablesQueryVariables as bh, type Table_FromRelationsQueryVariables as bi, RelationType as bj, type RelationFragment as bk, type TableQueryVariables as bl, type Table_ToRelationsQueryVariables as bm, type TableConnectionFragment as bn, type CreateDocumentMutationVariables as bo, type CreateFeedbackMutationVariables as bp, type CreateFolderMutationVariables as bq, type FolderFragment as br, type CreateInsightMutationVariables as bs, type CreateIntegrationMutationVariables as bt, type CreateProjectMutationVariables as bu, type CreateReportMutationVariables as bv, type CreateTableMutationVariables as bw, type CreateUserSkillFileMutationVariables as bx, type UserSkillFileModelFragment as by, type CreateUserSkillFolderMutationVariables as bz, ChatMessageFromEnum as c, type UpsertAiProviderSettingMutationVariables as c$, type DisconnectIntegrationMutationVariables as c0, type DismissPulseEventMutationVariables as c1, PulseEventPriority as c2, PulseEventKind as c3, type PulseEventFragment as c4, type PulseEvent_IntegrationQueryVariables as c5, IntegrationStatus as c6, type IntegrationFragment as c7, type Integration_ProviderQueryVariables as c8, type IntegrationProviderFragment as c9, type RemoveInsightFromReportMutationVariables as cA, type ResolvePulseEventMutationVariables as cB, type WorkspaceDeleteScheduleFragment as cC, type SendMessageMutationVariables as cD, type SetDatabasePrimaryKeyMutationVariables as cE, type SyncProjectDesktopBindingMutationVariables as cF, type UpdateAgentMutationVariables as cG, type UpdateArtifactNameMutationVariables as cH, type UpdateChatMutationVariables as cI, type UpdateDatabaseMutationVariables as cJ, type UpdateDocumentMutationVariables as cK, type UpdateFolderMutationVariables as cL, type UpdateInsightMutationVariables as cM, type UpdateInsightInReportMutationVariables as cN, type UpdateInsightThumbnailMutationVariables as cO, type UpdateInterpMutationVariables as cP, InterpretationType as cQ, AiResourceType as cR, type InterpretationFragment as cS, type UpdateLiveContextMutationVariables as cT, type UpdateProjectMutationVariables as cU, type UpdatePulseTriggerMutationVariables as cV, type PulseTriggerSettingModelFragment as cW, type UpdateReportMutationVariables as cX, type UpdateTableMutationVariables as cY, type UpdateUserSkillFileMutationVariables as cZ, type UpdateUserSkillFolderMutationVariables as c_, type IntegrationCatalogQueryVariables as ca, type IntegrationCatalogFragment as cb, type IntegrationCatalog_ProviderQueryVariables as cc, type DocumentCatalogConnectionFragment as cd, type DocumentCatalogsQueryVariables as ce, type DocumentConnectionFragment as cf, type Document_Format_CatalogQueryVariables as cg, type DocumentsQueryVariables as ch, type ChatStreamClient as ci, type DvinaSdkLifecycle as cj, type ExecuteChatImportMutationVariables as ck, type GenerateUploadUriMutationVariables as cl, type FileModelFragment as cm, type MigrateLegacyCodeChatsMutationVariables as cn, type LegacyCodeMigratedChatSummaryOutputFragment as co, type LegacyCodeMigrationOutputFragment as cp, type PreviewChatImportMutationVariables as cq, type ReanalyzeDocumentMutationVariables as cr, type RefineAgentInstructionMutationVariables as cs, type RefineSkillInstructionMutationVariables as ct, type RefreshDatabaseSchemaMutationVariables as cu, type RefreshInsightMutationVariables as cv, type RegisterDesktopDeviceMutationVariables as cw, type ReinterpretSourceMutationVariables as cx, type ReinterpretSourcesOfuserMutationVariables as cy, type RelocateInsightMutationVariables as cz, type ChatMessageFragment as d, type NotificationConnectionFragment as d$, type ExportQueryVariables as d0, type ExportWithInsightIdQueryVariables as d1, type FeedItemQueryVariables as d2, FeedItemKind as d3, type FeedDocumentDataFragment as d4, type FeedArtifactDataFragment as d5, type FeedDatabaseDataFragment as d6, type FeedInsightDataFragment as d7, type FeedIntegrationDataFragment as d8, type FeedProjectDataFragment as d9, TokenUsageLimit as dA, ActiveWindowType as dB, type WindowDetailTypeFragment as dC, type UsageWindowsStatusTypeFragment as dD, type UsageStatusFragment as dE, type GetTokenUsageStatus_WindowsQueryVariables as dF, type GetUsageQueryVariables as dG, type InsightsQueryVariables as dH, type IntegrationQueryVariables as dI, type IntegrationCatalogToolsQueryVariables as dJ, type IntegrationCatalogsQueryVariables as dK, type IntegrationCatalogConnectionFragment as dL, type IntegrationsQueryVariables as dM, type IntegrationConnectionFragment as dN, type InterpretationsQueryVariables as dO, type InterpretationConnectionFragment as dP, type LiveContextsQueryVariables as dQ, type LiveContextConnectionFragment as dR, type LocalSandboxDeviceStatusesQueryVariables as dS, LocalSandboxDeviceConnectionState as dT, type LocalSandboxDeviceStatusModelFragment as dU, type NotificationQueryVariables as dV, NotificationCategory as dW, NotificationPriority as dX, NotificationStatus as dY, type NotificationFragment as dZ, type NotificationsQueryVariables as d_, type FeedLiveContextDataFragment as da, type FeedPulseDataFragment as db, type FeedItemFragment as dc, type FeedItem_ActionQueryVariables as dd, type FeedSendMessageActionFragment as de, type FeedItem_DataQueryVariables as df, type FeedItemsQueryVariables as dg, type FeedConnectionFragment as dh, type FileQueryVariables as di, type FileMetaQueryVariables as dj, type FileUrlsQueryVariables as dk, type ResolvedFileUrlFragment as dl, type FindFitTierQueryVariables as dm, EntitlementTier as dn, type FolderQueryVariables as dp, type FoldersQueryVariables as dq, type FolderConnectionFragment as dr, type GetCapabilityQueryVariables as ds, type GetDevAccessTokenQueryVariables as dt, type GetLimitQueryVariables as du, type GetRemainingQueryVariables as dv, type GetTokenUsageByModelQueryVariables as dw, type ModelTokenUsageFragment as dx, type GetTokenUsageHistoryQueryVariables as dy, type GetTokenUsageStatusQueryVariables as dz, type ChatMessage_ArtifactsQueryVariables as e, type WidgetBlockStartEventOutputFragment as e$, type NotificationsByReferenceQueryVariables as e0, type PrivacyStatsQueryVariables as e1, type PrivacyStatsFragment as e2, type ProjectsQueryVariables as e3, type ProjectConnectionFragment as e4, type PulseAppSummaryQueryVariables as e5, type PulseAppSummaryModelFragment as e6, type PulseEventQueryVariables as e7, type PulseEventsQueryVariables as e8, type PulseEventConnectionFragment as e9, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as eA, type GetTokenUsageStatus_Windows_MonthQueryVariables as eB, type GetTokenUsageStatus_Windows_WeekQueryVariables as eC, type InferenceRequestAuditFragment as eD, type Insight_Chat_DesktopDeviceQueryVariables as eE, type Insight_Chat_ProjectQueryVariables as eF, type Integration_Provider_CatalogQueryVariables as eG, type InterruptEventOutputFragment as eH, type InvocationFragment as eI, type LiveContext_Source_EvidencesQueryVariables as eJ, type McpClientInformationFragment as eK, type McpCodeVerifierFragment as eL, type McpServerFragment as eM, type McpTokensFragment as eN, type McpToolFragment as eO, type MessageEndEventOutputFragment as eP, type MessageStartEventOutputFragment as eQ, type PrivacyStatsTotalsDeltaOutputFragment as eR, type PrivacyStatsEventOutputFragment as eS, type ProgressSummaryEventOutputFragment as eT, type Project_DesktopBinding_DeviceQueryVariables as eU, type PulseEvent_Integration_ProviderQueryVariables as eV, type ReasoningEventOutputFragment as eW, type ResetWorkspaceMutationVariables as eX, type ScheduleWorkspaceDeletionMutationVariables as eY, type TextBlockEventOutputFragment as eZ, type TextDeltaEventOutputFragment as e_, type PulseTriggerSettingsQueryVariables as ea, type QueryQueryVariables as eb, type QueryWithInsightIdQueryVariables as ec, type QueryWithMessageIdQueryVariables as ed, type ReportsQueryVariables as ee, type SkillCatalogQueryVariables as ef, SkillCatalogSource as eg, type SkillCatalogItemFragment as eh, type TablesQueryVariables as ei, type UserSkillFileQueryVariables as ej, type UserSkillFilesQueryVariables as ek, type UserSkillFolderQueryVariables as el, type UserSkillFoldersQueryVariables as em, type WorkspaceDeletionScheduleQueryVariables as en, type McpAuthUpdatesSubscriptionVariables as eo, McpAuthPhase as ep, type McpAuthUpdateModelFragment as eq, type TokenUsageUpdatesSubscriptionVariables as er, type EvidenceFragment as es, type FailedSyncEventIngestionFragment as et, type StreamMessageContentOutputFragment as eu, type StreamMessageOutputFragment as ev, type UsageMetaOutputFragment as ew, type PrivacyStatsOutputFragment as ex, type FinalContentEventOutputFragment as ey, type GetTokenUsageStatus_Windows_DayQueryVariables as ez, ArtifactKind as f, type WidgetHtmlDeltaEventOutputFragment as f0, type WidgetBlockCompleteEventOutputFragment as f1, type WidgetBlockErrorEventOutputFragment as f2, type ToolStartEventOutputFragment as f3, type ToolInputDeltaEventOutputFragment as f4, type ToolResultArtifactOutputFragment as f5, type ToolResultEventOutputFragment as f6, type StreamEventSchemaAnchorFragment as f7, type SyncEventFragment as f8, type SyncEventCursorFragment as f9, type DvinaSdkLifecycleHint as fA, type DvinaSdkTokenOptions as fB, FeedItemOrderByRelevanceFieldEnum as fC, FeedbackOrderByRelevanceFieldEnum as fD, FileOrderByRelevanceFieldEnum as fE, FileUrlVariant as fF, FolderOrderByRelevanceFieldEnum as fG, InsightOrderByRelevanceFieldEnum as fH, IntegrationCatalogOrderByRelevanceFieldEnum as fI, IntegrationOrderByRelevanceFieldEnum as fJ, InterpretationOrderByRelevanceFieldEnum as fK, LimitType as fL, LiveContextOrderByRelevanceFieldEnum as fM, NotificationOrderByRelevanceFieldEnum as fN, NullsOrder as fO, ProjectDesktopBindingOrderByRelevanceFieldEnum as fP, ProjectOrderByRelevanceFieldEnum as fQ, PulseEventOrderByRelevanceFieldEnum as fR, QueryMode as fS, ReportOrderByRelevanceFieldEnum as fT, SendMessageModel as fU, SortOrder as fV, TableOrderByRelevanceFieldEnum as fW, UsageHistoryGranularity as fX, createChatStreamClient as fY, createDvinaClient as fZ, type Table_Database_EngineQueryVariables as fa, type Table_Document_ContentsQueryVariables as fb, type Table_Document_FileQueryVariables as fc, type Table_Document_FormatQueryVariables as fd, type TokenUsageFragment as fe, type UserSkillFileFragment as ff, type UserSkillFolderFragment as fg, type ActiveChatStreamClient as fh, type ActiveChatStreamListener as fi, type ActiveChatStreamListenerHandlers as fj, AgentOrderByRelevanceFieldEnum as fk, ArtifactOrderByRelevanceFieldEnum as fl, CapabilityType as fm, ChatMessageOrderByRelevanceFieldEnum as fn, ChatOrderByRelevanceFieldEnum as fo, type ChatStreamClientOptions as fp, type ChatStreamEvent as fq, type ChatStreamListener as fr, type ChatStreamListenerHandlers as fs, DatabaseCatalogOrderByRelevanceFieldEnum as ft, DatabaseOrderByRelevanceFieldEnum as fu, DesktopDeviceOrderByRelevanceFieldEnum as fv, DocumentCatalogOrderByRelevanceFieldEnum as fw, DocumentOrderByRelevanceFieldEnum as fx, type DvinaSdkBaseOptions as fy, type DvinaSdkCallbackOptions as fz, type ArtifactFragment as g, type Artifact_ChatQueryVariables as h, ChatWorkspaceMode as i, ChatSourceProviderEnum as j, type ChatFragment as k, type Chat_AgentsQueryVariables as l, type AgentFragment as m, type Agent_ChatsQueryVariables as n, type ChatConnectionFragment as o, type AgentConnectionFragment as p, type Chat_ArtifactsQueryVariables as q, type Chat_DesktopDeviceQueryVariables as r, type DesktopDeviceFragment as s, type DesktopDevice_ChatsQueryVariables as t, type DesktopDevice_DesktopBindingsQueryVariables as u, type ProjectDesktopBindingFragment as v, type ProjectQueryVariables as w, ProjectSource as x, type ProjectFragment as y, type Project_ChatsQueryVariables as z };
|
|
7670
|
+
export { type ReportConnectionFragment as $, type AbortChatMutationVariables as A, type Project_DesktopBindingQueryVariables as B, type ChatMessageQueryVariables as C, type DvinaSdkOptions as D, type Artifact_FileQueryVariables as E, type FileFragment as F, type Artifact_MessageQueryVariables as G, type ChatMessage_ChatQueryVariables as H, type ChatMessage_ContentsQueryVariables as I, ContentBlockType as J, type ContentBlockFragment as K, type ChatMessage_FeedbackQueryVariables as L, FeedbackType as M, type FeedbackFragment as N, type Chat_InsightQueryVariables as O, ProjectDesktopContextKind as P, type Insight_ChatQueryVariables as Q, ReasoningEffort as R, type Insight_ReportMembersQueryVariables as S, ReportMemberSize as T, Presentation as U, type ReportMemberFragment as V, type ReportQueryVariables as W, type ReportFragment as X, type Report_InsightsQueryVariables as Y, type InsightFragment as Z, type Insight_ReportsQueryVariables as _, ActionType as a, type DatabaseCatalogQueryVariables as a$, type Insight_ThumbnailFileQueryVariables as a0, type InsightConnectionFragment as a1, type Report_LayoutQueryVariables as a2, type InsightQueryVariables as a3, type Chat_MessagesQueryVariables as a4, type ChatMessageConnectionFragment as a5, type Chat_ProjectQueryVariables as a6, type DesktopDeviceQueryVariables as a7, type ArtifactConnectionFragment as a8, type AddInsightToReportMutationVariables as a9, ChatSourceImportFidelityEnum as aA, ChatSourceImportModeEnum as aB, type ChatImportPreviewOutputFragment as aC, type ChatMessage_Chat_DesktopDeviceQueryVariables as aD, type ChatMessage_Chat_InsightQueryVariables as aE, type ChatMessage_Chat_ProjectQueryVariables as aF, type ChatMessagesQueryVariables as aG, type ChatQueryVariables as aH, type ChatTitleEventOutputFragment as aI, type Chat_DesktopDevice_DesktopBindingsQueryVariables as aJ, type Chat_Insight_ReportMembersQueryVariables as aK, type Chat_Insight_ThumbnailFileQueryVariables as aL, type Chat_Project_DesktopBindingQueryVariables as aM, type ChatsQueryVariables as aN, type ConnectIntegrationMutationVariables as aO, type CreateIntegrationOutputFragment as aP, type ConsumePulseEventsMutationVariables as aQ, type ContentMaskFragment as aR, type ContextUsageEventOutputFragment as aS, type ContinueImportedChatMutationVariables as aT, type ContinueInterpretationMutationVariables as aU, type CreateAgentMutationVariables as aV, type CreateChatMutationVariables as aW, type CreateDatabaseMutationVariables as aX, type DatabaseFragment as aY, type Database_EngineQueryVariables as aZ, type DatabaseEngineFragment as a_, type AgentQueryVariables as aa, type AgentsQueryVariables as ab, type AiProviderSettingQueryVariables as ac, type UserAiProviderSettingFragment as ad, type ArtifactQueryVariables as ae, type Artifact_Chat_DesktopDeviceQueryVariables as af, type Artifact_Chat_InsightQueryVariables as ag, type Artifact_Chat_ProjectQueryVariables as ah, type Artifact_Message_ChatQueryVariables as ai, type Artifact_Message_ContentsQueryVariables as aj, type Artifact_Message_FeedbackQueryVariables as ak, type ArtifactsQueryVariables as al, type AudioEventOutputFragment as am, type CancelOauthFlowMutationVariables as an, type CancelWorkspaceDeletionMutationVariables as ao, type CandidateFragment as ap, type LiveContextQueryVariables as aq, LiveContextStatus as ar, type LiveContextFragment as as, type LiveContext_ItemsQueryVariables as at, FeedActionType as au, type FeedItemGeneratedFragment as av, type LiveContext_SourceQueryVariables as aw, type CandidateEvidenceFragment as ax, type ImportedChatSummaryOutputFragment as ay, type ChatImportExecuteOutputFragment as az, type ActionFragment as b, type DesktopDevicesQueryVariables as b$, type DatabaseCatalogFragment as b0, type DatabaseCatalog_EngineQueryVariables as b1, type Database_TablesQueryVariables as b2, TableStatus as b3, type TableFragment as b4, type Table_DatabaseQueryVariables as b5, type Table_DocumentQueryVariables as b6, type DocumentFragment as b7, type Document_ContentsQueryVariables as b8, type DocumentContentFragment as b9, type UserSkillFolderModelFragment as bA, type CubeModelFragment as bB, type DatabaseCatalogConnectionFragment as bC, type DatabaseCatalogsQueryVariables as bD, type DatabaseConnectionFragment as bE, type DatabaseQueryVariables as bF, type DatabaseSchemaQueryVariables as bG, type Database_Engine_CatalogQueryVariables as bH, type DatabasesQueryVariables as bI, type DeepAnalysisUsageFragment as bJ, type DeleteAgentMutationVariables as bK, type DeleteAiProviderSettingMutationVariables as bL, type DeleteArtifactMutationVariables as bM, type DeleteChatMutationVariables as bN, type DeleteDatabaseMutationVariables as bO, type DeleteDocumentMutationVariables as bP, type DeleteFolderMutationVariables as bQ, type DeleteInsightMutationVariables as bR, type DeleteInsightsMutationVariables as bS, type DeleteIntegrationMutationVariables as bT, type DeleteProjectMutationVariables as bU, type DeleteReportMutationVariables as bV, type DeleteSavedAiProviderModelMutationVariables as bW, type DeleteTableMutationVariables as bX, type DeleteUserSkillFileMutationVariables as bY, type DeleteUserSkillFolderMutationVariables as bZ, type DesktopDeviceConnectionFragment as b_, type DocumentQueryVariables as ba, type Document_FileQueryVariables as bb, type Document_FormatQueryVariables as bc, type DocumentFormatFragment as bd, type DocumentCatalogQueryVariables as be, type DocumentCatalogFragment as bf, type DocumentCatalog_FormatQueryVariables as bg, type Document_TablesQueryVariables as bh, type Table_FromRelationsQueryVariables as bi, RelationType as bj, type RelationFragment as bk, type TableQueryVariables as bl, type Table_ToRelationsQueryVariables as bm, type TableConnectionFragment as bn, type CreateDocumentMutationVariables as bo, type CreateFeedbackMutationVariables as bp, type CreateFolderMutationVariables as bq, type FolderFragment as br, type CreateInsightMutationVariables as bs, type CreateIntegrationMutationVariables as bt, type CreateProjectMutationVariables as bu, type CreateReportMutationVariables as bv, type CreateTableMutationVariables as bw, type CreateUserSkillFileMutationVariables as bx, type UserSkillFileModelFragment as by, type CreateUserSkillFolderMutationVariables as bz, ChatMessageFromEnum as c, type UpdateUserSkillFolderMutationVariables as c$, type DevAccessTokenOutputFragment as c0, type DisconnectIntegrationMutationVariables as c1, type DismissPulseEventMutationVariables as c2, PulseEventPriority as c3, PulseEventKind as c4, type PulseEventFragment as c5, type PulseEvent_IntegrationQueryVariables as c6, IntegrationStatus as c7, type IntegrationFragment as c8, type Integration_ProviderQueryVariables as c9, type RelocateInsightMutationVariables as cA, type RemoveInsightFromReportMutationVariables as cB, type ResolvePulseEventMutationVariables as cC, type WorkspaceDeleteScheduleFragment as cD, type SendMessageMutationVariables as cE, type SetDatabasePrimaryKeyMutationVariables as cF, type SyncProjectDesktopBindingMutationVariables as cG, type UpdateAgentMutationVariables as cH, type UpdateArtifactNameMutationVariables as cI, type UpdateChatMutationVariables as cJ, type UpdateDatabaseMutationVariables as cK, type UpdateDocumentMutationVariables as cL, type UpdateFolderMutationVariables as cM, type UpdateInsightMutationVariables as cN, type UpdateInsightInReportMutationVariables as cO, type UpdateInsightThumbnailMutationVariables as cP, type UpdateInterpMutationVariables as cQ, InterpretationType as cR, AiResourceType as cS, type InterpretationFragment as cT, type UpdateLiveContextMutationVariables as cU, type UpdateProjectMutationVariables as cV, type UpdatePulseTriggerMutationVariables as cW, type PulseTriggerSettingModelFragment as cX, type UpdateReportMutationVariables as cY, type UpdateTableMutationVariables as cZ, type UpdateUserSkillFileMutationVariables as c_, type IntegrationProviderFragment as ca, type IntegrationCatalogQueryVariables as cb, type IntegrationCatalogFragment as cc, type IntegrationCatalog_ProviderQueryVariables as cd, type DocumentCatalogConnectionFragment as ce, type DocumentCatalogsQueryVariables as cf, type DocumentConnectionFragment as cg, type Document_Format_CatalogQueryVariables as ch, type DocumentsQueryVariables as ci, type ChatStreamClient as cj, type DvinaSdkLifecycle as ck, type ExecuteChatImportMutationVariables as cl, type GenerateUploadUriMutationVariables as cm, type FileModelFragment as cn, type MigrateLegacyCodeChatsMutationVariables as co, type LegacyCodeMigratedChatSummaryOutputFragment as cp, type LegacyCodeMigrationOutputFragment as cq, type PreviewChatImportMutationVariables as cr, type ReanalyzeDocumentMutationVariables as cs, type RefineAgentInstructionMutationVariables as ct, type RefineSkillInstructionMutationVariables as cu, type RefreshDatabaseSchemaMutationVariables as cv, type RefreshInsightMutationVariables as cw, type RegisterDesktopDeviceMutationVariables as cx, type ReinterpretSourceMutationVariables as cy, type ReinterpretSourcesOfuserMutationVariables as cz, type ChatMessageFragment as d, type NotificationFragment as d$, type UpsertAiProviderSettingMutationVariables as d0, type UpsertWorkspaceAiModelMutationVariables as d1, type ExportQueryVariables as d2, type ExportWithInsightIdQueryVariables as d3, type FeedItemQueryVariables as d4, FeedItemKind as d5, type FeedDocumentDataFragment as d6, type FeedArtifactDataFragment as d7, type FeedDatabaseDataFragment as d8, type FeedInsightDataFragment as d9, type GetTokenUsageHistoryQueryVariables as dA, type GetTokenUsageStatusQueryVariables as dB, TokenUsageLimit as dC, ActiveWindowType as dD, type WindowDetailTypeFragment as dE, type UsageWindowsStatusTypeFragment as dF, type UsageStatusFragment as dG, type GetTokenUsageStatus_WindowsQueryVariables as dH, type GetUsageQueryVariables as dI, type InsightsQueryVariables as dJ, type IntegrationQueryVariables as dK, type IntegrationCatalogToolsQueryVariables as dL, type IntegrationCatalogsQueryVariables as dM, type IntegrationCatalogConnectionFragment as dN, type IntegrationsQueryVariables as dO, type IntegrationConnectionFragment as dP, type InterpretationsQueryVariables as dQ, type InterpretationConnectionFragment as dR, type LiveContextsQueryVariables as dS, type LiveContextConnectionFragment as dT, type LocalSandboxDeviceStatusesQueryVariables as dU, LocalSandboxDeviceConnectionState as dV, type LocalSandboxDeviceStatusModelFragment as dW, type NotificationQueryVariables as dX, NotificationCategory as dY, NotificationPriority as dZ, NotificationStatus as d_, type FeedIntegrationDataFragment as da, type FeedProjectDataFragment as db, type FeedLiveContextDataFragment as dc, type FeedPulseDataFragment as dd, type FeedItemFragment as de, type FeedItem_ActionQueryVariables as df, type FeedSendMessageActionFragment as dg, type FeedItem_DataQueryVariables as dh, type FeedItemsQueryVariables as di, type FeedConnectionFragment as dj, type FileQueryVariables as dk, type FileMetaQueryVariables as dl, type FileUrlsQueryVariables as dm, type ResolvedFileUrlFragment as dn, type FindFitTierQueryVariables as dp, EntitlementTier as dq, type FolderQueryVariables as dr, type FoldersQueryVariables as ds, type FolderConnectionFragment as dt, type GetCapabilityQueryVariables as du, type GetDevAccessTokenQueryVariables as dv, type GetLimitQueryVariables as dw, type GetRemainingQueryVariables as dx, type GetTokenUsageByModelQueryVariables as dy, type ModelTokenUsageFragment as dz, type ChatMessage_ArtifactsQueryVariables as e, type ScheduleWorkspaceDeletionMutationVariables as e$, type NotificationsQueryVariables as e0, type NotificationConnectionFragment as e1, type NotificationsByReferenceQueryVariables as e2, type PrivacyStatsQueryVariables as e3, type PrivacyStatsFragment as e4, type ProjectsQueryVariables as e5, type ProjectConnectionFragment as e6, type PulseAppSummaryQueryVariables as e7, type PulseAppSummaryModelFragment as e8, type PulseEventQueryVariables as e9, type FinalContentEventOutputFragment as eA, type GetTokenUsageStatus_Windows_DayQueryVariables as eB, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as eC, type GetTokenUsageStatus_Windows_MonthQueryVariables as eD, type GetTokenUsageStatus_Windows_WeekQueryVariables as eE, type InferenceRequestAuditFragment as eF, type Insight_Chat_DesktopDeviceQueryVariables as eG, type Insight_Chat_ProjectQueryVariables as eH, type Integration_Provider_CatalogQueryVariables as eI, type InterruptEventOutputFragment as eJ, type InvocationFragment as eK, type LiveContext_Source_EvidencesQueryVariables as eL, type ManagedChatModelsQueryVariables as eM, type McpClientInformationFragment as eN, type McpCodeVerifierFragment as eO, type McpServerFragment as eP, type McpTokensFragment as eQ, type McpToolFragment as eR, type MessageEndEventOutputFragment as eS, type MessageStartEventOutputFragment as eT, type PrivacyStatsTotalsDeltaOutputFragment as eU, type PrivacyStatsEventOutputFragment as eV, type ProgressSummaryEventOutputFragment as eW, type Project_DesktopBinding_DeviceQueryVariables as eX, type PulseEvent_Integration_ProviderQueryVariables as eY, type ReasoningEventOutputFragment as eZ, type ResetWorkspaceMutationVariables as e_, type PulseEventsQueryVariables as ea, type PulseEventConnectionFragment as eb, type PulseTriggerSettingsQueryVariables as ec, type QueryQueryVariables as ed, type QueryWithInsightIdQueryVariables as ee, type QueryWithMessageIdQueryVariables as ef, type ReportsQueryVariables as eg, type SkillCatalogQueryVariables as eh, SkillCatalogSource as ei, type SkillCatalogItemFragment as ej, type TablesQueryVariables as ek, type UserSkillFileQueryVariables as el, type UserSkillFilesQueryVariables as em, type UserSkillFolderQueryVariables as en, type UserSkillFoldersQueryVariables as eo, type WorkspaceDeletionScheduleQueryVariables as ep, type McpAuthUpdatesSubscriptionVariables as eq, McpAuthPhase as er, type McpAuthUpdateModelFragment as es, type TokenUsageUpdatesSubscriptionVariables as et, type EvidenceFragment as eu, type FailedSyncEventIngestionFragment as ev, type StreamMessageContentOutputFragment as ew, type StreamMessageOutputFragment as ex, type UsageMetaOutputFragment as ey, type PrivacyStatsOutputFragment as ez, ArtifactKind as f, TableOrderByRelevanceFieldEnum as f$, type TextBlockEventOutputFragment as f0, type TextDeltaEventOutputFragment as f1, type WidgetBlockStartEventOutputFragment as f2, type WidgetHtmlDeltaEventOutputFragment as f3, type WidgetBlockCompleteEventOutputFragment as f4, type WidgetBlockErrorEventOutputFragment as f5, type ToolStartEventOutputFragment as f6, type ToolInputDeltaEventOutputFragment as f7, type ToolResultArtifactOutputFragment as f8, type ToolResultEventOutputFragment as f9, DesktopDeviceOrderByRelevanceFieldEnum as fA, DocumentCatalogOrderByRelevanceFieldEnum as fB, DocumentOrderByRelevanceFieldEnum as fC, type DvinaSdkBaseOptions as fD, type DvinaSdkCallbackOptions as fE, type DvinaSdkLifecycleHint as fF, type DvinaSdkTokenOptions as fG, FeedItemOrderByRelevanceFieldEnum as fH, FeedbackOrderByRelevanceFieldEnum as fI, FileOrderByRelevanceFieldEnum as fJ, FileUrlVariant as fK, FolderOrderByRelevanceFieldEnum as fL, InsightOrderByRelevanceFieldEnum as fM, IntegrationCatalogOrderByRelevanceFieldEnum as fN, IntegrationOrderByRelevanceFieldEnum as fO, InterpretationOrderByRelevanceFieldEnum as fP, LimitType as fQ, LiveContextOrderByRelevanceFieldEnum as fR, NotificationOrderByRelevanceFieldEnum as fS, NullsOrder as fT, ProjectDesktopBindingOrderByRelevanceFieldEnum as fU, ProjectOrderByRelevanceFieldEnum as fV, PulseEventOrderByRelevanceFieldEnum as fW, QueryMode as fX, ReportOrderByRelevanceFieldEnum as fY, SendMessageModel as fZ, SortOrder as f_, type StreamEventSchemaAnchorFragment as fa, type SyncEventFragment as fb, type SyncEventCursorFragment as fc, type Table_Database_EngineQueryVariables as fd, type Table_Document_ContentsQueryVariables as fe, type Table_Document_FileQueryVariables as ff, type Table_Document_FormatQueryVariables as fg, type TokenUsageFragment as fh, type UserSkillFileFragment as fi, type UserSkillFolderFragment as fj, type WorkspaceAiModelQueryVariables as fk, type WorkspaceAiModelSettingFragment as fl, type ActiveChatStreamClient as fm, type ActiveChatStreamListener as fn, type ActiveChatStreamListenerHandlers as fo, AgentOrderByRelevanceFieldEnum as fp, ArtifactOrderByRelevanceFieldEnum as fq, CapabilityType as fr, ChatMessageOrderByRelevanceFieldEnum as fs, ChatOrderByRelevanceFieldEnum as ft, type ChatStreamClientOptions as fu, type ChatStreamEvent as fv, type ChatStreamListener as fw, type ChatStreamListenerHandlers as fx, DatabaseCatalogOrderByRelevanceFieldEnum as fy, DatabaseOrderByRelevanceFieldEnum as fz, type ArtifactFragment as g, UsageHistoryGranularity as g0, createChatStreamClient as g1, createDvinaClient as g2, type Artifact_ChatQueryVariables as h, ChatWorkspaceMode as i, ChatSourceProviderEnum as j, type ChatFragment as k, type Chat_AgentsQueryVariables as l, type AgentFragment as m, type Agent_ChatsQueryVariables as n, type ChatConnectionFragment as o, type AgentConnectionFragment as p, type Chat_ArtifactsQueryVariables as q, type Chat_DesktopDeviceQueryVariables as r, type DesktopDeviceFragment as s, type DesktopDevice_ChatsQueryVariables as t, type DesktopDevice_DesktopBindingsQueryVariables as u, type ProjectDesktopBindingFragment as v, type ProjectQueryVariables as w, ProjectSource as x, type ProjectFragment as y, type Project_ChatsQueryVariables as z };
|