@dvina/sdk 4.0.275 → 4.0.286
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-W25ZCFDS.js +4 -0
- package/dist/{_generated_documents-DRFAFZ4G.js.map → _generated_documents-W25ZCFDS.js.map} +1 -1
- package/dist/{_generated_documents-YSLVGGBP.cjs → _generated_documents-YAY4ZZK5.cjs} +660 -620
- package/dist/{_generated_documents-YSLVGGBP.cjs.map → _generated_documents-YAY4ZZK5.cjs.map} +1 -1
- package/dist/adapters/angular/index.cjs +4 -4
- package/dist/adapters/angular/index.d.cts +2 -2
- package/dist/adapters/angular/index.d.ts +2 -2
- package/dist/adapters/angular/index.js +2 -2
- package/dist/{chunk-OVYYZG2C.cjs → chunk-CTE5P2EZ.cjs} +738 -618
- package/dist/chunk-CTE5P2EZ.cjs.map +1 -0
- package/dist/{chunk-57P5UG74.js → chunk-DUMZZ3UU.js} +48 -38
- package/dist/chunk-DUMZZ3UU.js.map +1 -0
- package/dist/{chunk-IN6UH5LY.cjs → chunk-QNNW2X4A.cjs} +57 -37
- package/dist/chunk-QNNW2X4A.cjs.map +1 -0
- package/dist/{chunk-2YBG35K2.js → chunk-YNXLLHTI.js} +130 -16
- package/dist/chunk-YNXLLHTI.js.map +1 -0
- package/dist/{client-rAY73BpI.d.ts → client-B8JIhMch.d.ts} +216 -2
- package/dist/{client-tptVuOTy.d.cts → client-FrOdCbcX.d.cts} +216 -2
- package/dist/{index-CNWwsIBc.d.cts → index-CRVQNqbH.d.cts} +1 -1
- package/dist/{index-BbpmtqXB.d.ts → index-DIkN8kTm.d.ts} +1 -1
- package/dist/index.cjs +486 -462
- package/dist/index.d.cts +54 -7
- package/dist/index.d.ts +54 -7
- package/dist/index.js +2 -2
- package/dist/pagination/index.d.cts +2 -2
- package/dist/pagination/index.d.ts +2 -2
- package/dist/{sync-engine-KnLTtyTA.d.ts → sync-engine-CH31aE3E.d.ts} +2 -2
- package/dist/{sync-engine-CHzQF0ON.d.cts → sync-engine-CTv-rvtx.d.cts} +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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { D as DvinaError } from './error-CsVoUTY8.cjs';
|
|
2
2
|
import { a as DvinaRequest, b as DvinaSubscribe } from './types-2RotD0Ab.cjs';
|
|
3
|
-
import { S as SyncEngine } from './sync-engine-
|
|
3
|
+
import { S as SyncEngine } from './sync-engine-CTv-rvtx.cjs';
|
|
4
4
|
import { I as InferenceClient } from './client-Bb2gD6Iz.cjs';
|
|
5
5
|
import { BillingClient } from './billing/index.cjs';
|
|
6
6
|
|
|
@@ -1184,7 +1184,14 @@ declare enum ChatWorkspaceMode {
|
|
|
1184
1184
|
Main = "main",
|
|
1185
1185
|
Worktree = "worktree"
|
|
1186
1186
|
}
|
|
1187
|
+
type ContentBlockAgentOutput = {
|
|
1188
|
+
__typename?: 'ContentBlockAgentOutput';
|
|
1189
|
+
id: Scalars['String'];
|
|
1190
|
+
name: Scalars['String'];
|
|
1191
|
+
};
|
|
1187
1192
|
type ContentBlockCreateManyChatMessageInput = {
|
|
1193
|
+
agentId?: InputMaybe<Scalars['String']>;
|
|
1194
|
+
agentName?: InputMaybe<Scalars['String']>;
|
|
1188
1195
|
content: Scalars['String'];
|
|
1189
1196
|
id?: InputMaybe<Scalars['String']>;
|
|
1190
1197
|
index?: InputMaybe<Scalars['Int']>;
|
|
@@ -1205,6 +1212,8 @@ type ContentBlockCreateOrConnectWithoutChatMessageInput = {
|
|
|
1205
1212
|
where: ContentBlockWhereUniqueInput;
|
|
1206
1213
|
};
|
|
1207
1214
|
type ContentBlockCreateWithoutChatMessageInput = {
|
|
1215
|
+
agentId?: InputMaybe<Scalars['String']>;
|
|
1216
|
+
agentName?: InputMaybe<Scalars['String']>;
|
|
1208
1217
|
content: Scalars['String'];
|
|
1209
1218
|
id?: InputMaybe<Scalars['String']>;
|
|
1210
1219
|
index?: InputMaybe<Scalars['Int']>;
|
|
@@ -1227,6 +1236,8 @@ type ContentBlockScalarWhereInput = {
|
|
|
1227
1236
|
AND?: InputMaybe<Array<ContentBlockScalarWhereInput>>;
|
|
1228
1237
|
NOT?: InputMaybe<Array<ContentBlockScalarWhereInput>>;
|
|
1229
1238
|
OR?: InputMaybe<Array<ContentBlockScalarWhereInput>>;
|
|
1239
|
+
agentId?: InputMaybe<StringFilter>;
|
|
1240
|
+
agentName?: InputMaybe<StringFilter>;
|
|
1230
1241
|
chatMessageId?: InputMaybe<StringFilter>;
|
|
1231
1242
|
content?: InputMaybe<StringFilter>;
|
|
1232
1243
|
id?: InputMaybe<StringFilter>;
|
|
@@ -1240,6 +1251,8 @@ declare enum ContentBlockType {
|
|
|
1240
1251
|
ToolCall = "ToolCall"
|
|
1241
1252
|
}
|
|
1242
1253
|
type ContentBlockUpdateManyMutationInput = {
|
|
1254
|
+
agentId?: InputMaybe<Scalars['String']>;
|
|
1255
|
+
agentName?: InputMaybe<Scalars['String']>;
|
|
1243
1256
|
content?: InputMaybe<Scalars['String']>;
|
|
1244
1257
|
id?: InputMaybe<Scalars['String']>;
|
|
1245
1258
|
index?: InputMaybe<Scalars['Int']>;
|
|
@@ -1267,6 +1280,8 @@ type ContentBlockUpdateWithWhereUniqueWithoutChatMessageInput = {
|
|
|
1267
1280
|
where: ContentBlockWhereUniqueInput;
|
|
1268
1281
|
};
|
|
1269
1282
|
type ContentBlockUpdateWithoutChatMessageInput = {
|
|
1283
|
+
agentId?: InputMaybe<Scalars['String']>;
|
|
1284
|
+
agentName?: InputMaybe<Scalars['String']>;
|
|
1270
1285
|
content?: InputMaybe<Scalars['String']>;
|
|
1271
1286
|
id?: InputMaybe<Scalars['String']>;
|
|
1272
1287
|
index?: InputMaybe<Scalars['Int']>;
|
|
@@ -1282,6 +1297,8 @@ type ContentBlockWhereInput = {
|
|
|
1282
1297
|
AND?: InputMaybe<Array<ContentBlockWhereInput>>;
|
|
1283
1298
|
NOT?: InputMaybe<Array<ContentBlockWhereInput>>;
|
|
1284
1299
|
OR?: InputMaybe<Array<ContentBlockWhereInput>>;
|
|
1300
|
+
agentId?: InputMaybe<StringFilter>;
|
|
1301
|
+
agentName?: InputMaybe<StringFilter>;
|
|
1285
1302
|
chatMessage?: InputMaybe<ChatMessageScalarRelationFilter>;
|
|
1286
1303
|
chatMessageId?: InputMaybe<StringFilter>;
|
|
1287
1304
|
content?: InputMaybe<StringFilter>;
|
|
@@ -1294,6 +1311,8 @@ type ContentBlockWhereUniqueInput = {
|
|
|
1294
1311
|
AND?: InputMaybe<Array<ContentBlockWhereInput>>;
|
|
1295
1312
|
NOT?: InputMaybe<Array<ContentBlockWhereInput>>;
|
|
1296
1313
|
OR?: InputMaybe<Array<ContentBlockWhereInput>>;
|
|
1314
|
+
agentId?: InputMaybe<StringFilter>;
|
|
1315
|
+
agentName?: InputMaybe<StringFilter>;
|
|
1297
1316
|
chatMessage?: InputMaybe<ChatMessageScalarRelationFilter>;
|
|
1298
1317
|
chatMessageId?: InputMaybe<StringFilter>;
|
|
1299
1318
|
content?: InputMaybe<StringFilter>;
|
|
@@ -3354,6 +3373,7 @@ declare enum ReasoningEffort {
|
|
|
3354
3373
|
}
|
|
3355
3374
|
type ReasoningEventOutput = {
|
|
3356
3375
|
__typename?: 'ReasoningEventOutput';
|
|
3376
|
+
agent?: Maybe<ContentBlockAgentOutput>;
|
|
3357
3377
|
delta: Scalars['String'];
|
|
3358
3378
|
type: Scalars['String'];
|
|
3359
3379
|
};
|
|
@@ -3915,6 +3935,7 @@ type StreamEventSchemaAnchor = {
|
|
|
3915
3935
|
};
|
|
3916
3936
|
type StreamMessageContentOutput = {
|
|
3917
3937
|
__typename?: 'StreamMessageContentOutput';
|
|
3938
|
+
agent?: Maybe<ContentBlockAgentOutput>;
|
|
3918
3939
|
chatMessageId: Scalars['String'];
|
|
3919
3940
|
content: Scalars['String'];
|
|
3920
3941
|
id: Scalars['ID'];
|
|
@@ -3946,6 +3967,13 @@ type StringFilter = {
|
|
|
3946
3967
|
search?: InputMaybe<Scalars['String']>;
|
|
3947
3968
|
startsWith?: InputMaybe<Scalars['String']>;
|
|
3948
3969
|
};
|
|
3970
|
+
type StringListFilter = {
|
|
3971
|
+
equals?: InputMaybe<Array<Scalars['String']>>;
|
|
3972
|
+
has?: InputMaybe<Scalars['String']>;
|
|
3973
|
+
hasEvery?: InputMaybe<Array<Scalars['String']>>;
|
|
3974
|
+
hasSome?: InputMaybe<Array<Scalars['String']>>;
|
|
3975
|
+
isEmpty?: InputMaybe<Scalars['Boolean']>;
|
|
3976
|
+
};
|
|
3949
3977
|
type SyncProjectDesktopBindingInput = {
|
|
3950
3978
|
deviceId?: InputMaybe<Scalars['String']>;
|
|
3951
3979
|
iconDataUrl?: InputMaybe<Scalars['String']>;
|
|
@@ -4121,6 +4149,7 @@ type TextBlockEventOutput = {
|
|
|
4121
4149
|
};
|
|
4122
4150
|
type TextDeltaEventOutput = {
|
|
4123
4151
|
__typename?: 'TextDeltaEventOutput';
|
|
4152
|
+
agent?: Maybe<ContentBlockAgentOutput>;
|
|
4124
4153
|
delta: Scalars['String'];
|
|
4125
4154
|
type: Scalars['String'];
|
|
4126
4155
|
};
|
|
@@ -4130,6 +4159,7 @@ declare enum TokenUsageLimit {
|
|
|
4130
4159
|
}
|
|
4131
4160
|
type ToolInputDeltaEventOutput = {
|
|
4132
4161
|
__typename?: 'ToolInputDeltaEventOutput';
|
|
4162
|
+
agent?: Maybe<ContentBlockAgentOutput>;
|
|
4133
4163
|
args: Scalars['String'];
|
|
4134
4164
|
index: Scalars['Int'];
|
|
4135
4165
|
name: Scalars['String'];
|
|
@@ -4145,6 +4175,7 @@ type ToolResultArtifactOutput = {
|
|
|
4145
4175
|
};
|
|
4146
4176
|
type ToolResultEventOutput = {
|
|
4147
4177
|
__typename?: 'ToolResultEventOutput';
|
|
4178
|
+
agent?: Maybe<ContentBlockAgentOutput>;
|
|
4148
4179
|
artifacts?: Maybe<Array<ToolResultArtifactOutput>>;
|
|
4149
4180
|
index: Scalars['Int'];
|
|
4150
4181
|
input: Scalars['String'];
|
|
@@ -4157,6 +4188,7 @@ type ToolResultEventOutput = {
|
|
|
4157
4188
|
};
|
|
4158
4189
|
type ToolStartEventOutput = {
|
|
4159
4190
|
__typename?: 'ToolStartEventOutput';
|
|
4191
|
+
agent?: Maybe<ContentBlockAgentOutput>;
|
|
4160
4192
|
index: Scalars['Int'];
|
|
4161
4193
|
name: Scalars['String'];
|
|
4162
4194
|
toolCallId: Scalars['String'];
|
|
@@ -4187,6 +4219,7 @@ type UserAiProviderSettingCreateInput = {
|
|
|
4187
4219
|
enabled?: InputMaybe<Scalars['Boolean']>;
|
|
4188
4220
|
id?: InputMaybe<Scalars['String']>;
|
|
4189
4221
|
model: Scalars['String'];
|
|
4222
|
+
savedModels?: InputMaybe<Array<Scalars['String']>>;
|
|
4190
4223
|
};
|
|
4191
4224
|
type UserAiProviderSettingUpdateInput = {
|
|
4192
4225
|
apiKey?: InputMaybe<Scalars['String']>;
|
|
@@ -4195,6 +4228,7 @@ type UserAiProviderSettingUpdateInput = {
|
|
|
4195
4228
|
enabled?: InputMaybe<Scalars['Boolean']>;
|
|
4196
4229
|
id?: InputMaybe<Scalars['String']>;
|
|
4197
4230
|
model?: InputMaybe<Scalars['String']>;
|
|
4231
|
+
savedModels?: InputMaybe<Array<Scalars['String']>>;
|
|
4198
4232
|
};
|
|
4199
4233
|
type UserAiProviderSettingWhereInput = {
|
|
4200
4234
|
AND?: InputMaybe<Array<UserAiProviderSettingWhereInput>>;
|
|
@@ -4207,6 +4241,7 @@ type UserAiProviderSettingWhereInput = {
|
|
|
4207
4241
|
enabled?: InputMaybe<BoolFilter>;
|
|
4208
4242
|
id?: InputMaybe<StringFilter>;
|
|
4209
4243
|
model?: InputMaybe<StringFilter>;
|
|
4244
|
+
savedModels?: InputMaybe<StringListFilter>;
|
|
4210
4245
|
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
4211
4246
|
};
|
|
4212
4247
|
type UserAiProviderSettingWhereUniqueInput = {
|
|
@@ -4220,10 +4255,12 @@ type UserAiProviderSettingWhereUniqueInput = {
|
|
|
4220
4255
|
enabled?: InputMaybe<BoolFilter>;
|
|
4221
4256
|
id?: InputMaybe<Scalars['String']>;
|
|
4222
4257
|
model?: InputMaybe<StringFilter>;
|
|
4258
|
+
savedModels?: InputMaybe<StringListFilter>;
|
|
4223
4259
|
updatedAt?: InputMaybe<DateTimeFilter>;
|
|
4224
4260
|
};
|
|
4225
4261
|
type WidgetBlockCompleteEventOutput = {
|
|
4226
4262
|
__typename?: 'WidgetBlockCompleteEventOutput';
|
|
4263
|
+
agent?: Maybe<ContentBlockAgentOutput>;
|
|
4227
4264
|
index: Scalars['Int'];
|
|
4228
4265
|
summary?: Maybe<Scalars['String']>;
|
|
4229
4266
|
toolCallId: Scalars['String'];
|
|
@@ -4231,6 +4268,7 @@ type WidgetBlockCompleteEventOutput = {
|
|
|
4231
4268
|
};
|
|
4232
4269
|
type WidgetBlockErrorEventOutput = {
|
|
4233
4270
|
__typename?: 'WidgetBlockErrorEventOutput';
|
|
4271
|
+
agent?: Maybe<ContentBlockAgentOutput>;
|
|
4234
4272
|
errorMessage: Scalars['String'];
|
|
4235
4273
|
index: Scalars['Int'];
|
|
4236
4274
|
toolCallId: Scalars['String'];
|
|
@@ -4238,6 +4276,7 @@ type WidgetBlockErrorEventOutput = {
|
|
|
4238
4276
|
};
|
|
4239
4277
|
type WidgetBlockStartEventOutput = {
|
|
4240
4278
|
__typename?: 'WidgetBlockStartEventOutput';
|
|
4279
|
+
agent?: Maybe<ContentBlockAgentOutput>;
|
|
4241
4280
|
index: Scalars['Int'];
|
|
4242
4281
|
summary?: Maybe<Scalars['String']>;
|
|
4243
4282
|
toolCallId: Scalars['String'];
|
|
@@ -4245,6 +4284,7 @@ type WidgetBlockStartEventOutput = {
|
|
|
4245
4284
|
};
|
|
4246
4285
|
type WidgetHtmlDeltaEventOutput = {
|
|
4247
4286
|
__typename?: 'WidgetHtmlDeltaEventOutput';
|
|
4287
|
+
agent?: Maybe<ContentBlockAgentOutput>;
|
|
4248
4288
|
delta: Scalars['String'];
|
|
4249
4289
|
index: Scalars['Int'];
|
|
4250
4290
|
summary?: Maybe<Scalars['String']>;
|
|
@@ -4504,11 +4544,18 @@ type ChatMessageFragment = {
|
|
|
4504
4544
|
};
|
|
4505
4545
|
contents?: Array<{
|
|
4506
4546
|
__typename: 'ContentBlock';
|
|
4547
|
+
agentId?: string | null;
|
|
4548
|
+
agentName?: string | null;
|
|
4507
4549
|
chatMessageId: string;
|
|
4508
4550
|
content: string;
|
|
4509
4551
|
id: string;
|
|
4510
4552
|
index: number;
|
|
4511
4553
|
type: ContentBlockType;
|
|
4554
|
+
agent?: {
|
|
4555
|
+
__typename: 'ContentBlockAgentOutput';
|
|
4556
|
+
id: string;
|
|
4557
|
+
name: string;
|
|
4558
|
+
} | null;
|
|
4512
4559
|
chatMessage: {
|
|
4513
4560
|
__typename?: 'ChatMessage';
|
|
4514
4561
|
id: string;
|
|
@@ -4540,11 +4587,18 @@ type ChatMessageConnectionFragment = {
|
|
|
4540
4587
|
};
|
|
4541
4588
|
contents?: Array<{
|
|
4542
4589
|
__typename: 'ContentBlock';
|
|
4590
|
+
agentId?: string | null;
|
|
4591
|
+
agentName?: string | null;
|
|
4543
4592
|
chatMessageId: string;
|
|
4544
4593
|
content: string;
|
|
4545
4594
|
id: string;
|
|
4546
4595
|
index: number;
|
|
4547
4596
|
type: ContentBlockType;
|
|
4597
|
+
agent?: {
|
|
4598
|
+
__typename: 'ContentBlockAgentOutput';
|
|
4599
|
+
id: string;
|
|
4600
|
+
name: string;
|
|
4601
|
+
} | null;
|
|
4548
4602
|
chatMessage: {
|
|
4549
4603
|
__typename?: 'ChatMessage';
|
|
4550
4604
|
id: string;
|
|
@@ -4574,11 +4628,18 @@ type ChatTitleEventOutputFragment = {
|
|
|
4574
4628
|
};
|
|
4575
4629
|
type ContentBlockFragment = {
|
|
4576
4630
|
__typename: 'ContentBlock';
|
|
4631
|
+
agentId?: string | null;
|
|
4632
|
+
agentName?: string | null;
|
|
4577
4633
|
chatMessageId: string;
|
|
4578
4634
|
content: string;
|
|
4579
4635
|
id: string;
|
|
4580
4636
|
index: number;
|
|
4581
4637
|
type: ContentBlockType;
|
|
4638
|
+
agent?: {
|
|
4639
|
+
__typename: 'ContentBlockAgentOutput';
|
|
4640
|
+
id: string;
|
|
4641
|
+
name: string;
|
|
4642
|
+
} | null;
|
|
4582
4643
|
chatMessage: {
|
|
4583
4644
|
__typename?: 'ChatMessage';
|
|
4584
4645
|
id: string;
|
|
@@ -4588,6 +4649,11 @@ type ContentBlockFragment = {
|
|
|
4588
4649
|
id: string;
|
|
4589
4650
|
}> | null;
|
|
4590
4651
|
};
|
|
4652
|
+
type ContentBlockAgentOutputFragment = {
|
|
4653
|
+
__typename: 'ContentBlockAgentOutput';
|
|
4654
|
+
id: string;
|
|
4655
|
+
name: string;
|
|
4656
|
+
};
|
|
4591
4657
|
type ContentMaskFragment = {
|
|
4592
4658
|
__typename: 'ContentMask';
|
|
4593
4659
|
content: string;
|
|
@@ -4597,11 +4663,18 @@ type ContentMaskFragment = {
|
|
|
4597
4663
|
piiMetadata?: any | null;
|
|
4598
4664
|
contentBlock: {
|
|
4599
4665
|
__typename: 'ContentBlock';
|
|
4666
|
+
agentId?: string | null;
|
|
4667
|
+
agentName?: string | null;
|
|
4600
4668
|
chatMessageId: string;
|
|
4601
4669
|
content: string;
|
|
4602
4670
|
id: string;
|
|
4603
4671
|
index: number;
|
|
4604
4672
|
type: ContentBlockType;
|
|
4673
|
+
agent?: {
|
|
4674
|
+
__typename: 'ContentBlockAgentOutput';
|
|
4675
|
+
id: string;
|
|
4676
|
+
name: string;
|
|
4677
|
+
} | null;
|
|
4605
4678
|
chatMessage: {
|
|
4606
4679
|
__typename?: 'ChatMessage';
|
|
4607
4680
|
id: string;
|
|
@@ -5356,6 +5429,11 @@ type FinalContentEventOutputFragment = {
|
|
|
5356
5429
|
id: string;
|
|
5357
5430
|
index: number;
|
|
5358
5431
|
type: ContentBlockType;
|
|
5432
|
+
agent?: {
|
|
5433
|
+
__typename: 'ContentBlockAgentOutput';
|
|
5434
|
+
id: string;
|
|
5435
|
+
name: string;
|
|
5436
|
+
} | null;
|
|
5359
5437
|
}> | null;
|
|
5360
5438
|
};
|
|
5361
5439
|
privacyStats?: {
|
|
@@ -5781,6 +5859,11 @@ type MessageStartEventOutputFragment = {
|
|
|
5781
5859
|
id: string;
|
|
5782
5860
|
index: number;
|
|
5783
5861
|
type: ContentBlockType;
|
|
5862
|
+
agent?: {
|
|
5863
|
+
__typename: 'ContentBlockAgentOutput';
|
|
5864
|
+
id: string;
|
|
5865
|
+
name: string;
|
|
5866
|
+
} | null;
|
|
5784
5867
|
}> | null;
|
|
5785
5868
|
};
|
|
5786
5869
|
};
|
|
@@ -6006,6 +6089,11 @@ type ReasoningEventOutputFragment = {
|
|
|
6006
6089
|
__typename: 'ReasoningEventOutput';
|
|
6007
6090
|
delta: string;
|
|
6008
6091
|
type: string;
|
|
6092
|
+
agent?: {
|
|
6093
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6094
|
+
id: string;
|
|
6095
|
+
name: string;
|
|
6096
|
+
} | null;
|
|
6009
6097
|
};
|
|
6010
6098
|
type RelationFragment = {
|
|
6011
6099
|
__typename: 'Relation';
|
|
@@ -6071,6 +6159,7 @@ type ReportMemberFragment = {
|
|
|
6071
6159
|
};
|
|
6072
6160
|
type ResolvedFileUrlFragment = {
|
|
6073
6161
|
__typename: 'ResolvedFileUrl';
|
|
6162
|
+
expiresAt?: number | null;
|
|
6074
6163
|
id: string;
|
|
6075
6164
|
url?: string | null;
|
|
6076
6165
|
};
|
|
@@ -6115,6 +6204,11 @@ type StreamEventSchemaAnchorFragment = {
|
|
|
6115
6204
|
id: string;
|
|
6116
6205
|
index: number;
|
|
6117
6206
|
type: ContentBlockType;
|
|
6207
|
+
agent?: {
|
|
6208
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6209
|
+
id: string;
|
|
6210
|
+
name: string;
|
|
6211
|
+
} | null;
|
|
6118
6212
|
}> | null;
|
|
6119
6213
|
};
|
|
6120
6214
|
privacyStats?: {
|
|
@@ -6161,6 +6255,11 @@ type StreamEventSchemaAnchorFragment = {
|
|
|
6161
6255
|
id: string;
|
|
6162
6256
|
index: number;
|
|
6163
6257
|
type: ContentBlockType;
|
|
6258
|
+
agent?: {
|
|
6259
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6260
|
+
id: string;
|
|
6261
|
+
name: string;
|
|
6262
|
+
} | null;
|
|
6164
6263
|
}> | null;
|
|
6165
6264
|
};
|
|
6166
6265
|
} | {
|
|
@@ -6193,6 +6292,11 @@ type StreamEventSchemaAnchorFragment = {
|
|
|
6193
6292
|
__typename: 'ReasoningEventOutput';
|
|
6194
6293
|
delta: string;
|
|
6195
6294
|
type: string;
|
|
6295
|
+
agent?: {
|
|
6296
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6297
|
+
id: string;
|
|
6298
|
+
name: string;
|
|
6299
|
+
} | null;
|
|
6196
6300
|
} | {
|
|
6197
6301
|
__typename: 'TextBlockEventOutput';
|
|
6198
6302
|
text: string;
|
|
@@ -6201,6 +6305,11 @@ type StreamEventSchemaAnchorFragment = {
|
|
|
6201
6305
|
__typename: 'TextDeltaEventOutput';
|
|
6202
6306
|
delta: string;
|
|
6203
6307
|
type: string;
|
|
6308
|
+
agent?: {
|
|
6309
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6310
|
+
id: string;
|
|
6311
|
+
name: string;
|
|
6312
|
+
} | null;
|
|
6204
6313
|
} | {
|
|
6205
6314
|
__typename: 'ToolInputDeltaEventOutput';
|
|
6206
6315
|
args: string;
|
|
@@ -6208,6 +6317,11 @@ type StreamEventSchemaAnchorFragment = {
|
|
|
6208
6317
|
name: string;
|
|
6209
6318
|
toolCallId: string;
|
|
6210
6319
|
type: string;
|
|
6320
|
+
agent?: {
|
|
6321
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6322
|
+
id: string;
|
|
6323
|
+
name: string;
|
|
6324
|
+
} | null;
|
|
6211
6325
|
} | {
|
|
6212
6326
|
__typename: 'ToolResultEventOutput';
|
|
6213
6327
|
index: number;
|
|
@@ -6218,6 +6332,11 @@ type StreamEventSchemaAnchorFragment = {
|
|
|
6218
6332
|
toolCallId: string;
|
|
6219
6333
|
toolKit: string;
|
|
6220
6334
|
type: string;
|
|
6335
|
+
agent?: {
|
|
6336
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6337
|
+
id: string;
|
|
6338
|
+
name: string;
|
|
6339
|
+
} | null;
|
|
6221
6340
|
artifacts?: Array<{
|
|
6222
6341
|
__typename: 'ToolResultArtifactOutput';
|
|
6223
6342
|
id: string;
|
|
@@ -6232,24 +6351,44 @@ type StreamEventSchemaAnchorFragment = {
|
|
|
6232
6351
|
toolCallId: string;
|
|
6233
6352
|
toolKit: string;
|
|
6234
6353
|
type: string;
|
|
6354
|
+
agent?: {
|
|
6355
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6356
|
+
id: string;
|
|
6357
|
+
name: string;
|
|
6358
|
+
} | null;
|
|
6235
6359
|
} | {
|
|
6236
6360
|
__typename: 'WidgetBlockCompleteEventOutput';
|
|
6237
6361
|
index: number;
|
|
6238
6362
|
summary?: string | null;
|
|
6239
6363
|
toolCallId: string;
|
|
6240
6364
|
type: string;
|
|
6365
|
+
agent?: {
|
|
6366
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6367
|
+
id: string;
|
|
6368
|
+
name: string;
|
|
6369
|
+
} | null;
|
|
6241
6370
|
} | {
|
|
6242
6371
|
__typename: 'WidgetBlockErrorEventOutput';
|
|
6243
6372
|
errorMessage: string;
|
|
6244
6373
|
index: number;
|
|
6245
6374
|
toolCallId: string;
|
|
6246
6375
|
type: string;
|
|
6376
|
+
agent?: {
|
|
6377
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6378
|
+
id: string;
|
|
6379
|
+
name: string;
|
|
6380
|
+
} | null;
|
|
6247
6381
|
} | {
|
|
6248
6382
|
__typename: 'WidgetBlockStartEventOutput';
|
|
6249
6383
|
index: number;
|
|
6250
6384
|
summary?: string | null;
|
|
6251
6385
|
toolCallId: string;
|
|
6252
6386
|
type: string;
|
|
6387
|
+
agent?: {
|
|
6388
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6389
|
+
id: string;
|
|
6390
|
+
name: string;
|
|
6391
|
+
} | null;
|
|
6253
6392
|
} | {
|
|
6254
6393
|
__typename: 'WidgetHtmlDeltaEventOutput';
|
|
6255
6394
|
delta: string;
|
|
@@ -6257,6 +6396,11 @@ type StreamEventSchemaAnchorFragment = {
|
|
|
6257
6396
|
summary?: string | null;
|
|
6258
6397
|
toolCallId: string;
|
|
6259
6398
|
type: string;
|
|
6399
|
+
agent?: {
|
|
6400
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6401
|
+
id: string;
|
|
6402
|
+
name: string;
|
|
6403
|
+
} | null;
|
|
6260
6404
|
};
|
|
6261
6405
|
};
|
|
6262
6406
|
type StreamMessageContentOutputFragment = {
|
|
@@ -6266,6 +6410,11 @@ type StreamMessageContentOutputFragment = {
|
|
|
6266
6410
|
id: string;
|
|
6267
6411
|
index: number;
|
|
6268
6412
|
type: ContentBlockType;
|
|
6413
|
+
agent?: {
|
|
6414
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6415
|
+
id: string;
|
|
6416
|
+
name: string;
|
|
6417
|
+
} | null;
|
|
6269
6418
|
};
|
|
6270
6419
|
type StreamMessageOutputFragment = {
|
|
6271
6420
|
__typename: 'StreamMessageOutput';
|
|
@@ -6282,6 +6431,11 @@ type StreamMessageOutputFragment = {
|
|
|
6282
6431
|
id: string;
|
|
6283
6432
|
index: number;
|
|
6284
6433
|
type: ContentBlockType;
|
|
6434
|
+
agent?: {
|
|
6435
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6436
|
+
id: string;
|
|
6437
|
+
name: string;
|
|
6438
|
+
} | null;
|
|
6285
6439
|
}> | null;
|
|
6286
6440
|
};
|
|
6287
6441
|
type SyncEventFragment = {
|
|
@@ -6381,6 +6535,11 @@ type TextDeltaEventOutputFragment = {
|
|
|
6381
6535
|
__typename: 'TextDeltaEventOutput';
|
|
6382
6536
|
delta: string;
|
|
6383
6537
|
type: string;
|
|
6538
|
+
agent?: {
|
|
6539
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6540
|
+
id: string;
|
|
6541
|
+
name: string;
|
|
6542
|
+
} | null;
|
|
6384
6543
|
};
|
|
6385
6544
|
type TokenUsageFragment = {
|
|
6386
6545
|
__typename: 'TokenUsage';
|
|
@@ -6404,6 +6563,11 @@ type ToolInputDeltaEventOutputFragment = {
|
|
|
6404
6563
|
name: string;
|
|
6405
6564
|
toolCallId: string;
|
|
6406
6565
|
type: string;
|
|
6566
|
+
agent?: {
|
|
6567
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6568
|
+
id: string;
|
|
6569
|
+
name: string;
|
|
6570
|
+
} | null;
|
|
6407
6571
|
};
|
|
6408
6572
|
type ToolResultArtifactOutputFragment = {
|
|
6409
6573
|
__typename: 'ToolResultArtifactOutput';
|
|
@@ -6422,6 +6586,11 @@ type ToolResultEventOutputFragment = {
|
|
|
6422
6586
|
toolCallId: string;
|
|
6423
6587
|
toolKit: string;
|
|
6424
6588
|
type: string;
|
|
6589
|
+
agent?: {
|
|
6590
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6591
|
+
id: string;
|
|
6592
|
+
name: string;
|
|
6593
|
+
} | null;
|
|
6425
6594
|
artifacts?: Array<{
|
|
6426
6595
|
__typename: 'ToolResultArtifactOutput';
|
|
6427
6596
|
id: string;
|
|
@@ -6437,6 +6606,11 @@ type ToolStartEventOutputFragment = {
|
|
|
6437
6606
|
toolCallId: string;
|
|
6438
6607
|
toolKit: string;
|
|
6439
6608
|
type: string;
|
|
6609
|
+
agent?: {
|
|
6610
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6611
|
+
id: string;
|
|
6612
|
+
name: string;
|
|
6613
|
+
} | null;
|
|
6440
6614
|
};
|
|
6441
6615
|
type UsageMetaOutputFragment = {
|
|
6442
6616
|
__typename: 'UsageMetaOutput';
|
|
@@ -6536,6 +6710,7 @@ type UserAiProviderSettingFragment = {
|
|
|
6536
6710
|
enabled: boolean;
|
|
6537
6711
|
id: string;
|
|
6538
6712
|
model: string;
|
|
6713
|
+
savedModels?: Array<string> | null;
|
|
6539
6714
|
updatedAt: string;
|
|
6540
6715
|
};
|
|
6541
6716
|
type UserSkillFileFragment = {
|
|
@@ -6585,6 +6760,11 @@ type WidgetBlockCompleteEventOutputFragment = {
|
|
|
6585
6760
|
summary?: string | null;
|
|
6586
6761
|
toolCallId: string;
|
|
6587
6762
|
type: string;
|
|
6763
|
+
agent?: {
|
|
6764
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6765
|
+
id: string;
|
|
6766
|
+
name: string;
|
|
6767
|
+
} | null;
|
|
6588
6768
|
};
|
|
6589
6769
|
type WidgetBlockErrorEventOutputFragment = {
|
|
6590
6770
|
__typename: 'WidgetBlockErrorEventOutput';
|
|
@@ -6592,6 +6772,11 @@ type WidgetBlockErrorEventOutputFragment = {
|
|
|
6592
6772
|
index: number;
|
|
6593
6773
|
toolCallId: string;
|
|
6594
6774
|
type: string;
|
|
6775
|
+
agent?: {
|
|
6776
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6777
|
+
id: string;
|
|
6778
|
+
name: string;
|
|
6779
|
+
} | null;
|
|
6595
6780
|
};
|
|
6596
6781
|
type WidgetBlockStartEventOutputFragment = {
|
|
6597
6782
|
__typename: 'WidgetBlockStartEventOutput';
|
|
@@ -6599,6 +6784,11 @@ type WidgetBlockStartEventOutputFragment = {
|
|
|
6599
6784
|
summary?: string | null;
|
|
6600
6785
|
toolCallId: string;
|
|
6601
6786
|
type: string;
|
|
6787
|
+
agent?: {
|
|
6788
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6789
|
+
id: string;
|
|
6790
|
+
name: string;
|
|
6791
|
+
} | null;
|
|
6602
6792
|
};
|
|
6603
6793
|
type WidgetHtmlDeltaEventOutputFragment = {
|
|
6604
6794
|
__typename: 'WidgetHtmlDeltaEventOutput';
|
|
@@ -6607,6 +6797,11 @@ type WidgetHtmlDeltaEventOutputFragment = {
|
|
|
6607
6797
|
summary?: string | null;
|
|
6608
6798
|
toolCallId: string;
|
|
6609
6799
|
type: string;
|
|
6800
|
+
agent?: {
|
|
6801
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6802
|
+
id: string;
|
|
6803
|
+
name: string;
|
|
6804
|
+
} | null;
|
|
6610
6805
|
};
|
|
6611
6806
|
type WindowDetailTypeFragment = {
|
|
6612
6807
|
__typename: 'WindowDetailType';
|
|
@@ -6616,6 +6811,13 @@ type WindowDetailTypeFragment = {
|
|
|
6616
6811
|
windowEnd?: string | null;
|
|
6617
6812
|
windowStart?: string | null;
|
|
6618
6813
|
};
|
|
6814
|
+
type WorkspaceAiModelSettingFragment = {
|
|
6815
|
+
__typename: 'WorkspaceAiModelSetting';
|
|
6816
|
+
createdAt: string;
|
|
6817
|
+
id: string;
|
|
6818
|
+
model: string;
|
|
6819
|
+
updatedAt: string;
|
|
6820
|
+
};
|
|
6619
6821
|
type WorkspaceDeleteScheduleFragment = {
|
|
6620
6822
|
__typename: 'WorkspaceDeleteSchedule';
|
|
6621
6823
|
createdAt: string;
|
|
@@ -6738,6 +6940,9 @@ type DeleteProjectMutationVariables = Exact<{
|
|
|
6738
6940
|
type DeleteReportMutationVariables = Exact<{
|
|
6739
6941
|
where: ReportWhereUniqueInput;
|
|
6740
6942
|
}>;
|
|
6943
|
+
type DeleteSavedAiProviderModelMutationVariables = Exact<{
|
|
6944
|
+
model: Scalars['String'];
|
|
6945
|
+
}>;
|
|
6741
6946
|
type DeleteTableMutationVariables = Exact<{
|
|
6742
6947
|
where: TableWhereUniqueInput;
|
|
6743
6948
|
}>;
|
|
@@ -6901,6 +7106,9 @@ type UpsertAiProviderSettingMutationVariables = Exact<{
|
|
|
6901
7106
|
update: UserAiProviderSettingUpdateInput;
|
|
6902
7107
|
where: UserAiProviderSettingWhereUniqueInput;
|
|
6903
7108
|
}>;
|
|
7109
|
+
type UpsertWorkspaceAiModelMutationVariables = Exact<{
|
|
7110
|
+
model: Scalars['String'];
|
|
7111
|
+
}>;
|
|
6904
7112
|
type AgentQueryVariables = Exact<{
|
|
6905
7113
|
id: Scalars['ID'];
|
|
6906
7114
|
}>;
|
|
@@ -7362,6 +7570,9 @@ type LiveContextsQueryVariables = Exact<{
|
|
|
7362
7570
|
type LocalSandboxDeviceStatusesQueryVariables = Exact<{
|
|
7363
7571
|
deviceIds: Array<Scalars['String']> | Scalars['String'];
|
|
7364
7572
|
}>;
|
|
7573
|
+
type ManagedChatModelsQueryVariables = Exact<{
|
|
7574
|
+
[key: string]: never;
|
|
7575
|
+
}>;
|
|
7365
7576
|
type NotificationQueryVariables = Exact<{
|
|
7366
7577
|
id: Scalars['ID'];
|
|
7367
7578
|
}>;
|
|
@@ -7513,6 +7724,9 @@ type UserSkillFolderQueryVariables = Exact<{
|
|
|
7513
7724
|
type UserSkillFoldersQueryVariables = Exact<{
|
|
7514
7725
|
path?: InputMaybe<Scalars['String']>;
|
|
7515
7726
|
}>;
|
|
7727
|
+
type WorkspaceAiModelQueryVariables = Exact<{
|
|
7728
|
+
[key: string]: never;
|
|
7729
|
+
}>;
|
|
7516
7730
|
type WorkspaceDeletionScheduleQueryVariables = Exact<{
|
|
7517
7731
|
[key: string]: never;
|
|
7518
7732
|
}>;
|
|
@@ -7636,4 +7850,4 @@ interface DvinaClientResult {
|
|
|
7636
7850
|
*/
|
|
7637
7851
|
declare function createDvinaClient(options: DvinaSdkOptions): DvinaClientResult;
|
|
7638
7852
|
|
|
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 };
|
|
7853
|
+
export { type Insight_ReportsQueryVariables as $, type AbortChatMutationVariables as A, type Project_DesktopBindingQueryVariables as B, type ChatMessageQueryVariables as C, type DvinaSdkOptions as D, type Artifact_FileQueryVariables as E, type FileFragment as F, type Artifact_MessageQueryVariables as G, type ChatMessage_ChatQueryVariables as H, type ChatMessage_ContentsQueryVariables as I, ContentBlockType as J, type ContentBlockAgentOutputFragment as K, type ContentBlockFragment as L, type ChatMessage_FeedbackQueryVariables as M, FeedbackType as N, type FeedbackFragment as O, ProjectDesktopContextKind as P, type Chat_InsightQueryVariables as Q, ReasoningEffort as R, type Insight_ChatQueryVariables as S, type Insight_ReportMembersQueryVariables as T, ReportMemberSize as U, Presentation as V, type ReportMemberFragment as W, type ReportQueryVariables as X, type ReportFragment as Y, type Report_InsightsQueryVariables as Z, type InsightFragment as _, ActionType as a, type DatabaseEngineFragment as a$, type ReportConnectionFragment as a0, type Insight_ThumbnailFileQueryVariables as a1, type InsightConnectionFragment as a2, type Report_LayoutQueryVariables as a3, type InsightQueryVariables as a4, type Chat_MessagesQueryVariables as a5, type ChatMessageConnectionFragment as a6, type Chat_ProjectQueryVariables as a7, type DesktopDeviceQueryVariables as a8, type ArtifactConnectionFragment as a9, type ChatImportExecuteOutputFragment as aA, ChatSourceImportFidelityEnum as aB, ChatSourceImportModeEnum as aC, type ChatImportPreviewOutputFragment as aD, type ChatMessage_Chat_DesktopDeviceQueryVariables as aE, type ChatMessage_Chat_InsightQueryVariables as aF, type ChatMessage_Chat_ProjectQueryVariables as aG, type ChatMessagesQueryVariables as aH, type ChatQueryVariables as aI, type ChatTitleEventOutputFragment as aJ, type Chat_DesktopDevice_DesktopBindingsQueryVariables as aK, type Chat_Insight_ReportMembersQueryVariables as aL, type Chat_Insight_ThumbnailFileQueryVariables as aM, type Chat_Project_DesktopBindingQueryVariables as aN, type ChatsQueryVariables as aO, type ConnectIntegrationMutationVariables as aP, type CreateIntegrationOutputFragment as aQ, type ConsumePulseEventsMutationVariables as aR, type ContentMaskFragment as aS, type ContextUsageEventOutputFragment as aT, type ContinueImportedChatMutationVariables as aU, type ContinueInterpretationMutationVariables as aV, type CreateAgentMutationVariables as aW, type CreateChatMutationVariables as aX, type CreateDatabaseMutationVariables as aY, type DatabaseFragment as aZ, type Database_EngineQueryVariables as a_, type AddInsightToReportMutationVariables as aa, type AgentQueryVariables as ab, type AgentsQueryVariables as ac, type AiProviderSettingQueryVariables as ad, type UserAiProviderSettingFragment as ae, type ArtifactQueryVariables as af, type Artifact_Chat_DesktopDeviceQueryVariables as ag, type Artifact_Chat_InsightQueryVariables as ah, type Artifact_Chat_ProjectQueryVariables as ai, type Artifact_Message_ChatQueryVariables as aj, type Artifact_Message_ContentsQueryVariables as ak, type Artifact_Message_FeedbackQueryVariables as al, type ArtifactsQueryVariables as am, type AudioEventOutputFragment as an, type CancelOauthFlowMutationVariables as ao, type CancelWorkspaceDeletionMutationVariables as ap, type CandidateFragment as aq, type LiveContextQueryVariables as ar, LiveContextStatus as as, type LiveContextFragment as at, type LiveContext_ItemsQueryVariables as au, FeedActionType as av, type FeedItemGeneratedFragment as aw, type LiveContext_SourceQueryVariables as ax, type CandidateEvidenceFragment as ay, type ImportedChatSummaryOutputFragment as az, type ActionFragment as b, type DesktopDeviceConnectionFragment as b$, type DatabaseCatalogQueryVariables as b0, type DatabaseCatalogFragment as b1, type DatabaseCatalog_EngineQueryVariables as b2, type Database_TablesQueryVariables as b3, TableStatus as b4, type TableFragment as b5, type Table_DatabaseQueryVariables as b6, type Table_DocumentQueryVariables as b7, type DocumentFragment as b8, type Document_ContentsQueryVariables as b9, type CreateUserSkillFolderMutationVariables as bA, type UserSkillFolderModelFragment as bB, type CubeModelFragment as bC, type DatabaseCatalogConnectionFragment as bD, type DatabaseCatalogsQueryVariables as bE, type DatabaseConnectionFragment as bF, type DatabaseQueryVariables as bG, type DatabaseSchemaQueryVariables as bH, type Database_Engine_CatalogQueryVariables as bI, type DatabasesQueryVariables as bJ, type DeepAnalysisUsageFragment as bK, type DeleteAgentMutationVariables as bL, type DeleteAiProviderSettingMutationVariables as bM, type DeleteArtifactMutationVariables as bN, type DeleteChatMutationVariables as bO, type DeleteDatabaseMutationVariables as bP, type DeleteDocumentMutationVariables as bQ, type DeleteFolderMutationVariables as bR, type DeleteInsightMutationVariables as bS, type DeleteInsightsMutationVariables as bT, type DeleteIntegrationMutationVariables as bU, type DeleteProjectMutationVariables as bV, type DeleteReportMutationVariables as bW, type DeleteSavedAiProviderModelMutationVariables as bX, type DeleteTableMutationVariables as bY, type DeleteUserSkillFileMutationVariables as bZ, type DeleteUserSkillFolderMutationVariables as b_, type DocumentContentFragment as ba, type DocumentQueryVariables as bb, type Document_FileQueryVariables as bc, type Document_FormatQueryVariables as bd, type DocumentFormatFragment as be, type DocumentCatalogQueryVariables as bf, type DocumentCatalogFragment as bg, type DocumentCatalog_FormatQueryVariables as bh, type Document_TablesQueryVariables as bi, type Table_FromRelationsQueryVariables as bj, RelationType as bk, type RelationFragment as bl, type TableQueryVariables as bm, type Table_ToRelationsQueryVariables as bn, type TableConnectionFragment as bo, type CreateDocumentMutationVariables as bp, type CreateFeedbackMutationVariables as bq, type CreateFolderMutationVariables as br, type FolderFragment as bs, type CreateInsightMutationVariables as bt, type CreateIntegrationMutationVariables as bu, type CreateProjectMutationVariables as bv, type CreateReportMutationVariables as bw, type CreateTableMutationVariables as bx, type CreateUserSkillFileMutationVariables as by, type UserSkillFileModelFragment as bz, ChatMessageFromEnum as c, type UpdateUserSkillFileMutationVariables as c$, type DesktopDevicesQueryVariables as c0, type DevAccessTokenOutputFragment as c1, type DisconnectIntegrationMutationVariables as c2, type DismissPulseEventMutationVariables as c3, PulseEventPriority as c4, PulseEventKind as c5, type PulseEventFragment as c6, type PulseEvent_IntegrationQueryVariables as c7, IntegrationStatus as c8, type IntegrationFragment as c9, type ReinterpretSourcesOfuserMutationVariables as cA, type RelocateInsightMutationVariables as cB, type RemoveInsightFromReportMutationVariables as cC, type ResolvePulseEventMutationVariables as cD, type WorkspaceDeleteScheduleFragment as cE, type SendMessageMutationVariables as cF, type SetDatabasePrimaryKeyMutationVariables as cG, type SyncProjectDesktopBindingMutationVariables as cH, type UpdateAgentMutationVariables as cI, type UpdateArtifactNameMutationVariables as cJ, type UpdateChatMutationVariables as cK, type UpdateDatabaseMutationVariables as cL, type UpdateDocumentMutationVariables as cM, type UpdateFolderMutationVariables as cN, type UpdateInsightMutationVariables as cO, type UpdateInsightInReportMutationVariables as cP, type UpdateInsightThumbnailMutationVariables as cQ, type UpdateInterpMutationVariables as cR, InterpretationType as cS, AiResourceType as cT, type InterpretationFragment as cU, type UpdateLiveContextMutationVariables as cV, type UpdateProjectMutationVariables as cW, type UpdatePulseTriggerMutationVariables as cX, type PulseTriggerSettingModelFragment as cY, type UpdateReportMutationVariables as cZ, type UpdateTableMutationVariables as c_, type Integration_ProviderQueryVariables as ca, type IntegrationProviderFragment as cb, type IntegrationCatalogQueryVariables as cc, type IntegrationCatalogFragment as cd, type IntegrationCatalog_ProviderQueryVariables as ce, type DocumentCatalogConnectionFragment as cf, type DocumentCatalogsQueryVariables as cg, type DocumentConnectionFragment as ch, type Document_Format_CatalogQueryVariables as ci, type DocumentsQueryVariables as cj, type ChatStreamClient as ck, type DvinaSdkLifecycle as cl, type ExecuteChatImportMutationVariables as cm, type GenerateUploadUriMutationVariables as cn, type FileModelFragment as co, type MigrateLegacyCodeChatsMutationVariables as cp, type LegacyCodeMigratedChatSummaryOutputFragment as cq, type LegacyCodeMigrationOutputFragment as cr, type PreviewChatImportMutationVariables as cs, type ReanalyzeDocumentMutationVariables as ct, type RefineAgentInstructionMutationVariables as cu, type RefineSkillInstructionMutationVariables as cv, type RefreshDatabaseSchemaMutationVariables as cw, type RefreshInsightMutationVariables as cx, type RegisterDesktopDeviceMutationVariables as cy, type ReinterpretSourceMutationVariables as cz, type ChatMessageFragment as d, NotificationStatus as d$, type UpdateUserSkillFolderMutationVariables as d0, type UpsertAiProviderSettingMutationVariables as d1, type UpsertWorkspaceAiModelMutationVariables as d2, type ExportQueryVariables as d3, type ExportWithInsightIdQueryVariables as d4, type FeedItemQueryVariables as d5, FeedItemKind as d6, type FeedDocumentDataFragment as d7, type FeedArtifactDataFragment as d8, type FeedDatabaseDataFragment as d9, type ModelTokenUsageFragment as dA, type GetTokenUsageHistoryQueryVariables as dB, type GetTokenUsageStatusQueryVariables as dC, TokenUsageLimit as dD, ActiveWindowType as dE, type WindowDetailTypeFragment as dF, type UsageWindowsStatusTypeFragment as dG, type UsageStatusFragment as dH, type GetTokenUsageStatus_WindowsQueryVariables as dI, type GetUsageQueryVariables as dJ, type InsightsQueryVariables as dK, type IntegrationQueryVariables as dL, type IntegrationCatalogToolsQueryVariables as dM, type IntegrationCatalogsQueryVariables as dN, type IntegrationCatalogConnectionFragment as dO, type IntegrationsQueryVariables as dP, type IntegrationConnectionFragment as dQ, type InterpretationsQueryVariables as dR, type InterpretationConnectionFragment as dS, type LiveContextsQueryVariables as dT, type LiveContextConnectionFragment as dU, type LocalSandboxDeviceStatusesQueryVariables as dV, LocalSandboxDeviceConnectionState as dW, type LocalSandboxDeviceStatusModelFragment as dX, type NotificationQueryVariables as dY, NotificationCategory as dZ, NotificationPriority as d_, type FeedInsightDataFragment as da, type FeedIntegrationDataFragment as db, type FeedProjectDataFragment as dc, type FeedLiveContextDataFragment as dd, type FeedPulseDataFragment as de, type FeedItemFragment as df, type FeedItem_ActionQueryVariables as dg, type FeedSendMessageActionFragment as dh, type FeedItem_DataQueryVariables as di, type FeedItemsQueryVariables as dj, type FeedConnectionFragment as dk, type FileQueryVariables as dl, type FileMetaQueryVariables as dm, type FileUrlsQueryVariables as dn, type ResolvedFileUrlFragment as dp, type FindFitTierQueryVariables as dq, EntitlementTier as dr, type FolderQueryVariables as ds, type FoldersQueryVariables as dt, type FolderConnectionFragment as du, type GetCapabilityQueryVariables as dv, type GetDevAccessTokenQueryVariables as dw, type GetLimitQueryVariables as dx, type GetRemainingQueryVariables as dy, type GetTokenUsageByModelQueryVariables as dz, type ChatMessage_ArtifactsQueryVariables as e, type ResetWorkspaceMutationVariables as e$, type NotificationFragment as e0, type NotificationsQueryVariables as e1, type NotificationConnectionFragment as e2, type NotificationsByReferenceQueryVariables as e3, type PrivacyStatsQueryVariables as e4, type PrivacyStatsFragment as e5, type ProjectsQueryVariables as e6, type ProjectConnectionFragment as e7, type PulseAppSummaryQueryVariables as e8, type PulseAppSummaryModelFragment as e9, type PrivacyStatsOutputFragment as eA, type FinalContentEventOutputFragment as eB, type GetTokenUsageStatus_Windows_DayQueryVariables as eC, type GetTokenUsageStatus_Windows_FiveHourQueryVariables as eD, type GetTokenUsageStatus_Windows_MonthQueryVariables as eE, type GetTokenUsageStatus_Windows_WeekQueryVariables as eF, type InferenceRequestAuditFragment as eG, type Insight_Chat_DesktopDeviceQueryVariables as eH, type Insight_Chat_ProjectQueryVariables as eI, type Integration_Provider_CatalogQueryVariables as eJ, type InterruptEventOutputFragment as eK, type InvocationFragment as eL, type LiveContext_Source_EvidencesQueryVariables as eM, type ManagedChatModelsQueryVariables as eN, type McpClientInformationFragment as eO, type McpCodeVerifierFragment as eP, type McpServerFragment as eQ, type McpTokensFragment as eR, type McpToolFragment as eS, type MessageEndEventOutputFragment as eT, type MessageStartEventOutputFragment as eU, type PrivacyStatsTotalsDeltaOutputFragment as eV, type PrivacyStatsEventOutputFragment as eW, type ProgressSummaryEventOutputFragment as eX, type Project_DesktopBinding_DeviceQueryVariables as eY, type PulseEvent_Integration_ProviderQueryVariables as eZ, type ReasoningEventOutputFragment as e_, type PulseEventQueryVariables as ea, type PulseEventsQueryVariables as eb, type PulseEventConnectionFragment as ec, type PulseTriggerSettingsQueryVariables as ed, type QueryQueryVariables as ee, type QueryWithInsightIdQueryVariables as ef, type QueryWithMessageIdQueryVariables as eg, type ReportsQueryVariables as eh, type SkillCatalogQueryVariables as ei, SkillCatalogSource as ej, type SkillCatalogItemFragment as ek, type TablesQueryVariables as el, type UserSkillFileQueryVariables as em, type UserSkillFilesQueryVariables as en, type UserSkillFolderQueryVariables as eo, type UserSkillFoldersQueryVariables as ep, type WorkspaceDeletionScheduleQueryVariables as eq, type McpAuthUpdatesSubscriptionVariables as er, McpAuthPhase as es, type McpAuthUpdateModelFragment as et, type TokenUsageUpdatesSubscriptionVariables as eu, type EvidenceFragment as ev, type FailedSyncEventIngestionFragment as ew, type StreamMessageContentOutputFragment as ex, type StreamMessageOutputFragment as ey, type UsageMetaOutputFragment as ez, ArtifactKind as f, SortOrder as f$, type ScheduleWorkspaceDeletionMutationVariables as f0, type TextBlockEventOutputFragment as f1, type TextDeltaEventOutputFragment as f2, type WidgetBlockStartEventOutputFragment as f3, type WidgetHtmlDeltaEventOutputFragment as f4, type WidgetBlockCompleteEventOutputFragment as f5, type WidgetBlockErrorEventOutputFragment as f6, type ToolStartEventOutputFragment as f7, type ToolInputDeltaEventOutputFragment as f8, type ToolResultArtifactOutputFragment as f9, DatabaseOrderByRelevanceFieldEnum as fA, DesktopDeviceOrderByRelevanceFieldEnum as fB, DocumentCatalogOrderByRelevanceFieldEnum as fC, DocumentOrderByRelevanceFieldEnum as fD, type DvinaSdkBaseOptions as fE, type DvinaSdkCallbackOptions as fF, type DvinaSdkLifecycleHint as fG, type DvinaSdkTokenOptions as fH, FeedItemOrderByRelevanceFieldEnum as fI, FeedbackOrderByRelevanceFieldEnum as fJ, FileOrderByRelevanceFieldEnum as fK, FileUrlVariant as fL, FolderOrderByRelevanceFieldEnum as fM, InsightOrderByRelevanceFieldEnum as fN, IntegrationCatalogOrderByRelevanceFieldEnum as fO, IntegrationOrderByRelevanceFieldEnum as fP, InterpretationOrderByRelevanceFieldEnum as fQ, LimitType as fR, LiveContextOrderByRelevanceFieldEnum as fS, NotificationOrderByRelevanceFieldEnum as fT, NullsOrder as fU, ProjectDesktopBindingOrderByRelevanceFieldEnum as fV, ProjectOrderByRelevanceFieldEnum as fW, PulseEventOrderByRelevanceFieldEnum as fX, QueryMode as fY, ReportOrderByRelevanceFieldEnum as fZ, SendMessageModel as f_, type ToolResultEventOutputFragment as fa, type StreamEventSchemaAnchorFragment as fb, type SyncEventFragment as fc, type SyncEventCursorFragment as fd, type Table_Database_EngineQueryVariables as fe, type Table_Document_ContentsQueryVariables as ff, type Table_Document_FileQueryVariables as fg, type Table_Document_FormatQueryVariables as fh, type TokenUsageFragment as fi, type UserSkillFileFragment as fj, type UserSkillFolderFragment as fk, type WorkspaceAiModelQueryVariables as fl, type WorkspaceAiModelSettingFragment as fm, type ActiveChatStreamClient as fn, type ActiveChatStreamListener as fo, type ActiveChatStreamListenerHandlers as fp, AgentOrderByRelevanceFieldEnum as fq, ArtifactOrderByRelevanceFieldEnum as fr, CapabilityType as fs, ChatMessageOrderByRelevanceFieldEnum as ft, ChatOrderByRelevanceFieldEnum as fu, type ChatStreamClientOptions as fv, type ChatStreamEvent as fw, type ChatStreamListener as fx, type ChatStreamListenerHandlers as fy, DatabaseCatalogOrderByRelevanceFieldEnum as fz, type ArtifactFragment as g, TableOrderByRelevanceFieldEnum as g0, UsageHistoryGranularity as g1, createChatStreamClient as g2, createDvinaClient as g3, type Artifact_ChatQueryVariables as h, ChatWorkspaceMode as i, ChatSourceProviderEnum as j, type ChatFragment as k, type Chat_AgentsQueryVariables as l, type AgentFragment as m, type Agent_ChatsQueryVariables as n, type ChatConnectionFragment as o, type AgentConnectionFragment as p, type Chat_ArtifactsQueryVariables as q, type Chat_DesktopDeviceQueryVariables as r, type DesktopDeviceFragment as s, type DesktopDevice_ChatsQueryVariables as t, type DesktopDevice_DesktopBindingsQueryVariables as u, type ProjectDesktopBindingFragment as v, type ProjectQueryVariables as w, ProjectSource as x, type ProjectFragment as y, type Project_ChatsQueryVariables as z };
|