@dvina/sdk 4.0.276 → 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-X5VIIQ2W.js.map → _generated_documents-W25ZCFDS.js.map} +1 -1
- package/dist/{_generated_documents-CGRQF2EK.cjs → _generated_documents-YAY4ZZK5.cjs} +636 -628
- package/dist/{_generated_documents-CGRQF2EK.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-AKXUF4OW.cjs → chunk-CTE5P2EZ.cjs} +675 -618
- package/dist/chunk-CTE5P2EZ.cjs.map +1 -0
- package/dist/{chunk-DIQHI4WY.js → chunk-DUMZZ3UU.js} +36 -34
- package/dist/chunk-DUMZZ3UU.js.map +1 -0
- package/dist/{chunk-MLQYOCMC.cjs → chunk-QNNW2X4A.cjs} +37 -33
- package/dist/chunk-QNNW2X4A.cjs.map +1 -0
- package/dist/{chunk-S3MP5E7G.js → chunk-YNXLLHTI.js} +68 -12
- package/dist/chunk-YNXLLHTI.js.map +1 -0
- package/dist/{client-DwfuQsWt.d.ts → client-B8JIhMch.d.ts} +185 -2
- package/dist/{client-C1hIr0Zt.d.cts → client-FrOdCbcX.d.cts} +185 -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 +471 -467
- package/dist/index.d.cts +26 -7
- package/dist/index.d.ts +26 -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-X5VIIQ2W.js +0 -4
- package/dist/chunk-AKXUF4OW.cjs.map +0 -1
- package/dist/chunk-DIQHI4WY.js.map +0 -1
- package/dist/chunk-MLQYOCMC.cjs.map +0 -1
- package/dist/chunk-S3MP5E7G.js.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'];
|
|
@@ -4128,6 +4149,7 @@ type TextBlockEventOutput = {
|
|
|
4128
4149
|
};
|
|
4129
4150
|
type TextDeltaEventOutput = {
|
|
4130
4151
|
__typename?: 'TextDeltaEventOutput';
|
|
4152
|
+
agent?: Maybe<ContentBlockAgentOutput>;
|
|
4131
4153
|
delta: Scalars['String'];
|
|
4132
4154
|
type: Scalars['String'];
|
|
4133
4155
|
};
|
|
@@ -4137,6 +4159,7 @@ declare enum TokenUsageLimit {
|
|
|
4137
4159
|
}
|
|
4138
4160
|
type ToolInputDeltaEventOutput = {
|
|
4139
4161
|
__typename?: 'ToolInputDeltaEventOutput';
|
|
4162
|
+
agent?: Maybe<ContentBlockAgentOutput>;
|
|
4140
4163
|
args: Scalars['String'];
|
|
4141
4164
|
index: Scalars['Int'];
|
|
4142
4165
|
name: Scalars['String'];
|
|
@@ -4152,6 +4175,7 @@ type ToolResultArtifactOutput = {
|
|
|
4152
4175
|
};
|
|
4153
4176
|
type ToolResultEventOutput = {
|
|
4154
4177
|
__typename?: 'ToolResultEventOutput';
|
|
4178
|
+
agent?: Maybe<ContentBlockAgentOutput>;
|
|
4155
4179
|
artifacts?: Maybe<Array<ToolResultArtifactOutput>>;
|
|
4156
4180
|
index: Scalars['Int'];
|
|
4157
4181
|
input: Scalars['String'];
|
|
@@ -4164,6 +4188,7 @@ type ToolResultEventOutput = {
|
|
|
4164
4188
|
};
|
|
4165
4189
|
type ToolStartEventOutput = {
|
|
4166
4190
|
__typename?: 'ToolStartEventOutput';
|
|
4191
|
+
agent?: Maybe<ContentBlockAgentOutput>;
|
|
4167
4192
|
index: Scalars['Int'];
|
|
4168
4193
|
name: Scalars['String'];
|
|
4169
4194
|
toolCallId: Scalars['String'];
|
|
@@ -4235,6 +4260,7 @@ type UserAiProviderSettingWhereUniqueInput = {
|
|
|
4235
4260
|
};
|
|
4236
4261
|
type WidgetBlockCompleteEventOutput = {
|
|
4237
4262
|
__typename?: 'WidgetBlockCompleteEventOutput';
|
|
4263
|
+
agent?: Maybe<ContentBlockAgentOutput>;
|
|
4238
4264
|
index: Scalars['Int'];
|
|
4239
4265
|
summary?: Maybe<Scalars['String']>;
|
|
4240
4266
|
toolCallId: Scalars['String'];
|
|
@@ -4242,6 +4268,7 @@ type WidgetBlockCompleteEventOutput = {
|
|
|
4242
4268
|
};
|
|
4243
4269
|
type WidgetBlockErrorEventOutput = {
|
|
4244
4270
|
__typename?: 'WidgetBlockErrorEventOutput';
|
|
4271
|
+
agent?: Maybe<ContentBlockAgentOutput>;
|
|
4245
4272
|
errorMessage: Scalars['String'];
|
|
4246
4273
|
index: Scalars['Int'];
|
|
4247
4274
|
toolCallId: Scalars['String'];
|
|
@@ -4249,6 +4276,7 @@ type WidgetBlockErrorEventOutput = {
|
|
|
4249
4276
|
};
|
|
4250
4277
|
type WidgetBlockStartEventOutput = {
|
|
4251
4278
|
__typename?: 'WidgetBlockStartEventOutput';
|
|
4279
|
+
agent?: Maybe<ContentBlockAgentOutput>;
|
|
4252
4280
|
index: Scalars['Int'];
|
|
4253
4281
|
summary?: Maybe<Scalars['String']>;
|
|
4254
4282
|
toolCallId: Scalars['String'];
|
|
@@ -4256,6 +4284,7 @@ type WidgetBlockStartEventOutput = {
|
|
|
4256
4284
|
};
|
|
4257
4285
|
type WidgetHtmlDeltaEventOutput = {
|
|
4258
4286
|
__typename?: 'WidgetHtmlDeltaEventOutput';
|
|
4287
|
+
agent?: Maybe<ContentBlockAgentOutput>;
|
|
4259
4288
|
delta: Scalars['String'];
|
|
4260
4289
|
index: Scalars['Int'];
|
|
4261
4290
|
summary?: Maybe<Scalars['String']>;
|
|
@@ -4515,11 +4544,18 @@ type ChatMessageFragment = {
|
|
|
4515
4544
|
};
|
|
4516
4545
|
contents?: Array<{
|
|
4517
4546
|
__typename: 'ContentBlock';
|
|
4547
|
+
agentId?: string | null;
|
|
4548
|
+
agentName?: string | null;
|
|
4518
4549
|
chatMessageId: string;
|
|
4519
4550
|
content: string;
|
|
4520
4551
|
id: string;
|
|
4521
4552
|
index: number;
|
|
4522
4553
|
type: ContentBlockType;
|
|
4554
|
+
agent?: {
|
|
4555
|
+
__typename: 'ContentBlockAgentOutput';
|
|
4556
|
+
id: string;
|
|
4557
|
+
name: string;
|
|
4558
|
+
} | null;
|
|
4523
4559
|
chatMessage: {
|
|
4524
4560
|
__typename?: 'ChatMessage';
|
|
4525
4561
|
id: string;
|
|
@@ -4551,11 +4587,18 @@ type ChatMessageConnectionFragment = {
|
|
|
4551
4587
|
};
|
|
4552
4588
|
contents?: Array<{
|
|
4553
4589
|
__typename: 'ContentBlock';
|
|
4590
|
+
agentId?: string | null;
|
|
4591
|
+
agentName?: string | null;
|
|
4554
4592
|
chatMessageId: string;
|
|
4555
4593
|
content: string;
|
|
4556
4594
|
id: string;
|
|
4557
4595
|
index: number;
|
|
4558
4596
|
type: ContentBlockType;
|
|
4597
|
+
agent?: {
|
|
4598
|
+
__typename: 'ContentBlockAgentOutput';
|
|
4599
|
+
id: string;
|
|
4600
|
+
name: string;
|
|
4601
|
+
} | null;
|
|
4559
4602
|
chatMessage: {
|
|
4560
4603
|
__typename?: 'ChatMessage';
|
|
4561
4604
|
id: string;
|
|
@@ -4585,11 +4628,18 @@ type ChatTitleEventOutputFragment = {
|
|
|
4585
4628
|
};
|
|
4586
4629
|
type ContentBlockFragment = {
|
|
4587
4630
|
__typename: 'ContentBlock';
|
|
4631
|
+
agentId?: string | null;
|
|
4632
|
+
agentName?: string | null;
|
|
4588
4633
|
chatMessageId: string;
|
|
4589
4634
|
content: string;
|
|
4590
4635
|
id: string;
|
|
4591
4636
|
index: number;
|
|
4592
4637
|
type: ContentBlockType;
|
|
4638
|
+
agent?: {
|
|
4639
|
+
__typename: 'ContentBlockAgentOutput';
|
|
4640
|
+
id: string;
|
|
4641
|
+
name: string;
|
|
4642
|
+
} | null;
|
|
4593
4643
|
chatMessage: {
|
|
4594
4644
|
__typename?: 'ChatMessage';
|
|
4595
4645
|
id: string;
|
|
@@ -4599,6 +4649,11 @@ type ContentBlockFragment = {
|
|
|
4599
4649
|
id: string;
|
|
4600
4650
|
}> | null;
|
|
4601
4651
|
};
|
|
4652
|
+
type ContentBlockAgentOutputFragment = {
|
|
4653
|
+
__typename: 'ContentBlockAgentOutput';
|
|
4654
|
+
id: string;
|
|
4655
|
+
name: string;
|
|
4656
|
+
};
|
|
4602
4657
|
type ContentMaskFragment = {
|
|
4603
4658
|
__typename: 'ContentMask';
|
|
4604
4659
|
content: string;
|
|
@@ -4608,11 +4663,18 @@ type ContentMaskFragment = {
|
|
|
4608
4663
|
piiMetadata?: any | null;
|
|
4609
4664
|
contentBlock: {
|
|
4610
4665
|
__typename: 'ContentBlock';
|
|
4666
|
+
agentId?: string | null;
|
|
4667
|
+
agentName?: string | null;
|
|
4611
4668
|
chatMessageId: string;
|
|
4612
4669
|
content: string;
|
|
4613
4670
|
id: string;
|
|
4614
4671
|
index: number;
|
|
4615
4672
|
type: ContentBlockType;
|
|
4673
|
+
agent?: {
|
|
4674
|
+
__typename: 'ContentBlockAgentOutput';
|
|
4675
|
+
id: string;
|
|
4676
|
+
name: string;
|
|
4677
|
+
} | null;
|
|
4616
4678
|
chatMessage: {
|
|
4617
4679
|
__typename?: 'ChatMessage';
|
|
4618
4680
|
id: string;
|
|
@@ -5367,6 +5429,11 @@ type FinalContentEventOutputFragment = {
|
|
|
5367
5429
|
id: string;
|
|
5368
5430
|
index: number;
|
|
5369
5431
|
type: ContentBlockType;
|
|
5432
|
+
agent?: {
|
|
5433
|
+
__typename: 'ContentBlockAgentOutput';
|
|
5434
|
+
id: string;
|
|
5435
|
+
name: string;
|
|
5436
|
+
} | null;
|
|
5370
5437
|
}> | null;
|
|
5371
5438
|
};
|
|
5372
5439
|
privacyStats?: {
|
|
@@ -5792,6 +5859,11 @@ type MessageStartEventOutputFragment = {
|
|
|
5792
5859
|
id: string;
|
|
5793
5860
|
index: number;
|
|
5794
5861
|
type: ContentBlockType;
|
|
5862
|
+
agent?: {
|
|
5863
|
+
__typename: 'ContentBlockAgentOutput';
|
|
5864
|
+
id: string;
|
|
5865
|
+
name: string;
|
|
5866
|
+
} | null;
|
|
5795
5867
|
}> | null;
|
|
5796
5868
|
};
|
|
5797
5869
|
};
|
|
@@ -6017,6 +6089,11 @@ type ReasoningEventOutputFragment = {
|
|
|
6017
6089
|
__typename: 'ReasoningEventOutput';
|
|
6018
6090
|
delta: string;
|
|
6019
6091
|
type: string;
|
|
6092
|
+
agent?: {
|
|
6093
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6094
|
+
id: string;
|
|
6095
|
+
name: string;
|
|
6096
|
+
} | null;
|
|
6020
6097
|
};
|
|
6021
6098
|
type RelationFragment = {
|
|
6022
6099
|
__typename: 'Relation';
|
|
@@ -6082,6 +6159,7 @@ type ReportMemberFragment = {
|
|
|
6082
6159
|
};
|
|
6083
6160
|
type ResolvedFileUrlFragment = {
|
|
6084
6161
|
__typename: 'ResolvedFileUrl';
|
|
6162
|
+
expiresAt?: number | null;
|
|
6085
6163
|
id: string;
|
|
6086
6164
|
url?: string | null;
|
|
6087
6165
|
};
|
|
@@ -6126,6 +6204,11 @@ type StreamEventSchemaAnchorFragment = {
|
|
|
6126
6204
|
id: string;
|
|
6127
6205
|
index: number;
|
|
6128
6206
|
type: ContentBlockType;
|
|
6207
|
+
agent?: {
|
|
6208
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6209
|
+
id: string;
|
|
6210
|
+
name: string;
|
|
6211
|
+
} | null;
|
|
6129
6212
|
}> | null;
|
|
6130
6213
|
};
|
|
6131
6214
|
privacyStats?: {
|
|
@@ -6172,6 +6255,11 @@ type StreamEventSchemaAnchorFragment = {
|
|
|
6172
6255
|
id: string;
|
|
6173
6256
|
index: number;
|
|
6174
6257
|
type: ContentBlockType;
|
|
6258
|
+
agent?: {
|
|
6259
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6260
|
+
id: string;
|
|
6261
|
+
name: string;
|
|
6262
|
+
} | null;
|
|
6175
6263
|
}> | null;
|
|
6176
6264
|
};
|
|
6177
6265
|
} | {
|
|
@@ -6204,6 +6292,11 @@ type StreamEventSchemaAnchorFragment = {
|
|
|
6204
6292
|
__typename: 'ReasoningEventOutput';
|
|
6205
6293
|
delta: string;
|
|
6206
6294
|
type: string;
|
|
6295
|
+
agent?: {
|
|
6296
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6297
|
+
id: string;
|
|
6298
|
+
name: string;
|
|
6299
|
+
} | null;
|
|
6207
6300
|
} | {
|
|
6208
6301
|
__typename: 'TextBlockEventOutput';
|
|
6209
6302
|
text: string;
|
|
@@ -6212,6 +6305,11 @@ type StreamEventSchemaAnchorFragment = {
|
|
|
6212
6305
|
__typename: 'TextDeltaEventOutput';
|
|
6213
6306
|
delta: string;
|
|
6214
6307
|
type: string;
|
|
6308
|
+
agent?: {
|
|
6309
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6310
|
+
id: string;
|
|
6311
|
+
name: string;
|
|
6312
|
+
} | null;
|
|
6215
6313
|
} | {
|
|
6216
6314
|
__typename: 'ToolInputDeltaEventOutput';
|
|
6217
6315
|
args: string;
|
|
@@ -6219,6 +6317,11 @@ type StreamEventSchemaAnchorFragment = {
|
|
|
6219
6317
|
name: string;
|
|
6220
6318
|
toolCallId: string;
|
|
6221
6319
|
type: string;
|
|
6320
|
+
agent?: {
|
|
6321
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6322
|
+
id: string;
|
|
6323
|
+
name: string;
|
|
6324
|
+
} | null;
|
|
6222
6325
|
} | {
|
|
6223
6326
|
__typename: 'ToolResultEventOutput';
|
|
6224
6327
|
index: number;
|
|
@@ -6229,6 +6332,11 @@ type StreamEventSchemaAnchorFragment = {
|
|
|
6229
6332
|
toolCallId: string;
|
|
6230
6333
|
toolKit: string;
|
|
6231
6334
|
type: string;
|
|
6335
|
+
agent?: {
|
|
6336
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6337
|
+
id: string;
|
|
6338
|
+
name: string;
|
|
6339
|
+
} | null;
|
|
6232
6340
|
artifacts?: Array<{
|
|
6233
6341
|
__typename: 'ToolResultArtifactOutput';
|
|
6234
6342
|
id: string;
|
|
@@ -6243,24 +6351,44 @@ type StreamEventSchemaAnchorFragment = {
|
|
|
6243
6351
|
toolCallId: string;
|
|
6244
6352
|
toolKit: string;
|
|
6245
6353
|
type: string;
|
|
6354
|
+
agent?: {
|
|
6355
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6356
|
+
id: string;
|
|
6357
|
+
name: string;
|
|
6358
|
+
} | null;
|
|
6246
6359
|
} | {
|
|
6247
6360
|
__typename: 'WidgetBlockCompleteEventOutput';
|
|
6248
6361
|
index: number;
|
|
6249
6362
|
summary?: string | null;
|
|
6250
6363
|
toolCallId: string;
|
|
6251
6364
|
type: string;
|
|
6365
|
+
agent?: {
|
|
6366
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6367
|
+
id: string;
|
|
6368
|
+
name: string;
|
|
6369
|
+
} | null;
|
|
6252
6370
|
} | {
|
|
6253
6371
|
__typename: 'WidgetBlockErrorEventOutput';
|
|
6254
6372
|
errorMessage: string;
|
|
6255
6373
|
index: number;
|
|
6256
6374
|
toolCallId: string;
|
|
6257
6375
|
type: string;
|
|
6376
|
+
agent?: {
|
|
6377
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6378
|
+
id: string;
|
|
6379
|
+
name: string;
|
|
6380
|
+
} | null;
|
|
6258
6381
|
} | {
|
|
6259
6382
|
__typename: 'WidgetBlockStartEventOutput';
|
|
6260
6383
|
index: number;
|
|
6261
6384
|
summary?: string | null;
|
|
6262
6385
|
toolCallId: string;
|
|
6263
6386
|
type: string;
|
|
6387
|
+
agent?: {
|
|
6388
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6389
|
+
id: string;
|
|
6390
|
+
name: string;
|
|
6391
|
+
} | null;
|
|
6264
6392
|
} | {
|
|
6265
6393
|
__typename: 'WidgetHtmlDeltaEventOutput';
|
|
6266
6394
|
delta: string;
|
|
@@ -6268,6 +6396,11 @@ type StreamEventSchemaAnchorFragment = {
|
|
|
6268
6396
|
summary?: string | null;
|
|
6269
6397
|
toolCallId: string;
|
|
6270
6398
|
type: string;
|
|
6399
|
+
agent?: {
|
|
6400
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6401
|
+
id: string;
|
|
6402
|
+
name: string;
|
|
6403
|
+
} | null;
|
|
6271
6404
|
};
|
|
6272
6405
|
};
|
|
6273
6406
|
type StreamMessageContentOutputFragment = {
|
|
@@ -6277,6 +6410,11 @@ type StreamMessageContentOutputFragment = {
|
|
|
6277
6410
|
id: string;
|
|
6278
6411
|
index: number;
|
|
6279
6412
|
type: ContentBlockType;
|
|
6413
|
+
agent?: {
|
|
6414
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6415
|
+
id: string;
|
|
6416
|
+
name: string;
|
|
6417
|
+
} | null;
|
|
6280
6418
|
};
|
|
6281
6419
|
type StreamMessageOutputFragment = {
|
|
6282
6420
|
__typename: 'StreamMessageOutput';
|
|
@@ -6293,6 +6431,11 @@ type StreamMessageOutputFragment = {
|
|
|
6293
6431
|
id: string;
|
|
6294
6432
|
index: number;
|
|
6295
6433
|
type: ContentBlockType;
|
|
6434
|
+
agent?: {
|
|
6435
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6436
|
+
id: string;
|
|
6437
|
+
name: string;
|
|
6438
|
+
} | null;
|
|
6296
6439
|
}> | null;
|
|
6297
6440
|
};
|
|
6298
6441
|
type SyncEventFragment = {
|
|
@@ -6392,6 +6535,11 @@ type TextDeltaEventOutputFragment = {
|
|
|
6392
6535
|
__typename: 'TextDeltaEventOutput';
|
|
6393
6536
|
delta: string;
|
|
6394
6537
|
type: string;
|
|
6538
|
+
agent?: {
|
|
6539
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6540
|
+
id: string;
|
|
6541
|
+
name: string;
|
|
6542
|
+
} | null;
|
|
6395
6543
|
};
|
|
6396
6544
|
type TokenUsageFragment = {
|
|
6397
6545
|
__typename: 'TokenUsage';
|
|
@@ -6415,6 +6563,11 @@ type ToolInputDeltaEventOutputFragment = {
|
|
|
6415
6563
|
name: string;
|
|
6416
6564
|
toolCallId: string;
|
|
6417
6565
|
type: string;
|
|
6566
|
+
agent?: {
|
|
6567
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6568
|
+
id: string;
|
|
6569
|
+
name: string;
|
|
6570
|
+
} | null;
|
|
6418
6571
|
};
|
|
6419
6572
|
type ToolResultArtifactOutputFragment = {
|
|
6420
6573
|
__typename: 'ToolResultArtifactOutput';
|
|
@@ -6433,6 +6586,11 @@ type ToolResultEventOutputFragment = {
|
|
|
6433
6586
|
toolCallId: string;
|
|
6434
6587
|
toolKit: string;
|
|
6435
6588
|
type: string;
|
|
6589
|
+
agent?: {
|
|
6590
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6591
|
+
id: string;
|
|
6592
|
+
name: string;
|
|
6593
|
+
} | null;
|
|
6436
6594
|
artifacts?: Array<{
|
|
6437
6595
|
__typename: 'ToolResultArtifactOutput';
|
|
6438
6596
|
id: string;
|
|
@@ -6448,6 +6606,11 @@ type ToolStartEventOutputFragment = {
|
|
|
6448
6606
|
toolCallId: string;
|
|
6449
6607
|
toolKit: string;
|
|
6450
6608
|
type: string;
|
|
6609
|
+
agent?: {
|
|
6610
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6611
|
+
id: string;
|
|
6612
|
+
name: string;
|
|
6613
|
+
} | null;
|
|
6451
6614
|
};
|
|
6452
6615
|
type UsageMetaOutputFragment = {
|
|
6453
6616
|
__typename: 'UsageMetaOutput';
|
|
@@ -6597,6 +6760,11 @@ type WidgetBlockCompleteEventOutputFragment = {
|
|
|
6597
6760
|
summary?: string | null;
|
|
6598
6761
|
toolCallId: string;
|
|
6599
6762
|
type: string;
|
|
6763
|
+
agent?: {
|
|
6764
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6765
|
+
id: string;
|
|
6766
|
+
name: string;
|
|
6767
|
+
} | null;
|
|
6600
6768
|
};
|
|
6601
6769
|
type WidgetBlockErrorEventOutputFragment = {
|
|
6602
6770
|
__typename: 'WidgetBlockErrorEventOutput';
|
|
@@ -6604,6 +6772,11 @@ type WidgetBlockErrorEventOutputFragment = {
|
|
|
6604
6772
|
index: number;
|
|
6605
6773
|
toolCallId: string;
|
|
6606
6774
|
type: string;
|
|
6775
|
+
agent?: {
|
|
6776
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6777
|
+
id: string;
|
|
6778
|
+
name: string;
|
|
6779
|
+
} | null;
|
|
6607
6780
|
};
|
|
6608
6781
|
type WidgetBlockStartEventOutputFragment = {
|
|
6609
6782
|
__typename: 'WidgetBlockStartEventOutput';
|
|
@@ -6611,6 +6784,11 @@ type WidgetBlockStartEventOutputFragment = {
|
|
|
6611
6784
|
summary?: string | null;
|
|
6612
6785
|
toolCallId: string;
|
|
6613
6786
|
type: string;
|
|
6787
|
+
agent?: {
|
|
6788
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6789
|
+
id: string;
|
|
6790
|
+
name: string;
|
|
6791
|
+
} | null;
|
|
6614
6792
|
};
|
|
6615
6793
|
type WidgetHtmlDeltaEventOutputFragment = {
|
|
6616
6794
|
__typename: 'WidgetHtmlDeltaEventOutput';
|
|
@@ -6619,6 +6797,11 @@ type WidgetHtmlDeltaEventOutputFragment = {
|
|
|
6619
6797
|
summary?: string | null;
|
|
6620
6798
|
toolCallId: string;
|
|
6621
6799
|
type: string;
|
|
6800
|
+
agent?: {
|
|
6801
|
+
__typename: 'ContentBlockAgentOutput';
|
|
6802
|
+
id: string;
|
|
6803
|
+
name: string;
|
|
6804
|
+
} | null;
|
|
6622
6805
|
};
|
|
6623
6806
|
type WindowDetailTypeFragment = {
|
|
6624
6807
|
__typename: 'WindowDetailType';
|
|
@@ -7667,4 +7850,4 @@ interface DvinaClientResult {
|
|
|
7667
7850
|
*/
|
|
7668
7851
|
declare function createDvinaClient(options: DvinaSdkOptions): DvinaClientResult;
|
|
7669
7852
|
|
|
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 };
|
|
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 };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { a as DvinaRequest, b as DvinaSubscribe, P as PageInfoData, C as ConnectionVariables, F as FetchOptions } from './types-2RotD0Ab.cjs';
|
|
2
|
-
import { S as SyncEngine } from './sync-engine-
|
|
2
|
+
import { S as SyncEngine } from './sync-engine-CTv-rvtx.cjs';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Base class that holds the transport functions.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { a as DvinaRequest, b as DvinaSubscribe, P as PageInfoData, C as ConnectionVariables, F as FetchOptions } from './types-2RotD0Ab.js';
|
|
2
|
-
import { S as SyncEngine } from './sync-engine-
|
|
2
|
+
import { S as SyncEngine } from './sync-engine-CH31aE3E.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Base class that holds the transport functions.
|