@illalabs/interfaces 0.10.3 → 0.10.4-canary-beta-d7ede344

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.
@@ -158,7 +158,6 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
158
158
  }, "strict", z.ZodTypeAny, {
159
159
  id: string;
160
160
  name: string;
161
- result?: unknown;
162
161
  error?: {
163
162
  type: "input";
164
163
  errors: {
@@ -170,10 +169,10 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
170
169
  message: string;
171
170
  details?: unknown;
172
171
  } | undefined;
172
+ result?: unknown;
173
173
  }, {
174
174
  id: string;
175
175
  name: string;
176
- result?: unknown;
177
176
  error?: {
178
177
  type: "input";
179
178
  errors: {
@@ -185,6 +184,7 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
185
184
  message: string;
186
185
  details?: unknown;
187
186
  } | undefined;
187
+ result?: unknown;
188
188
  }>, "many">>;
189
189
  languageModel: z.ZodString;
190
190
  personalityContext: z.ZodDefault<z.ZodOptional<z.ZodObject<{
@@ -220,12 +220,12 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
220
220
  requiresApproval: z.ZodBoolean;
221
221
  }, "strip", z.ZodTypeAny, {
222
222
  number: number;
223
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
223
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
224
224
  description: string;
225
225
  requiresApproval: boolean;
226
226
  }, {
227
227
  number: number;
228
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
228
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
229
229
  description: string;
230
230
  requiresApproval: boolean;
231
231
  }>, "many">;
@@ -235,7 +235,7 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
235
235
  title: string;
236
236
  steps: {
237
237
  number: number;
238
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
238
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
239
239
  description: string;
240
240
  requiresApproval: boolean;
241
241
  }[];
@@ -245,7 +245,7 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
245
245
  title: string;
246
246
  steps: {
247
247
  number: number;
248
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
248
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
249
249
  description: string;
250
250
  requiresApproval: boolean;
251
251
  }[];
@@ -281,7 +281,7 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
281
281
  constraints?: string[] | undefined;
282
282
  }>;
283
283
  }, "strip", z.ZodTypeAny, {
284
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
284
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
285
285
  description: string;
286
286
  stepNumber: number;
287
287
  operationType: "read" | "write";
@@ -294,10 +294,10 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
294
294
  errorHandling: string;
295
295
  constraints?: string[] | undefined;
296
296
  };
297
- toolName?: string | undefined;
298
297
  result?: unknown;
298
+ toolName?: string | undefined;
299
299
  }, {
300
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
300
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
301
301
  description: string;
302
302
  stepNumber: number;
303
303
  operationType: "read" | "write";
@@ -310,8 +310,8 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
310
310
  errorHandling: string;
311
311
  constraints?: string[] | undefined;
312
312
  };
313
- toolName?: string | undefined;
314
313
  result?: unknown;
314
+ toolName?: string | undefined;
315
315
  }>, "many">;
316
316
  complexity: z.ZodEnum<["low", "medium", "high"]>;
317
317
  recommendedModel: z.ZodString;
@@ -322,7 +322,7 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
322
322
  availableTools: z.ZodArray<z.ZodString, "many">;
323
323
  }, "strip", z.ZodTypeAny, {
324
324
  steps: {
325
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
325
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
326
326
  description: string;
327
327
  stepNumber: number;
328
328
  operationType: "read" | "write";
@@ -335,8 +335,8 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
335
335
  errorHandling: string;
336
336
  constraints?: string[] | undefined;
337
337
  };
338
- toolName?: string | undefined;
339
338
  result?: unknown;
339
+ toolName?: string | undefined;
340
340
  }[];
341
341
  complexity: "low" | "medium" | "high";
342
342
  recommendedModel: string;
@@ -347,7 +347,7 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
347
347
  availableTools: string[];
348
348
  }, {
349
349
  steps: {
350
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
350
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
351
351
  description: string;
352
352
  stepNumber: number;
353
353
  operationType: "read" | "write";
@@ -360,8 +360,8 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
360
360
  errorHandling: string;
361
361
  constraints?: string[] | undefined;
362
362
  };
363
- toolName?: string | undefined;
364
363
  result?: unknown;
364
+ toolName?: string | undefined;
365
365
  }[];
366
366
  complexity: "low" | "medium" | "high";
367
367
  recommendedModel: string;
@@ -409,7 +409,7 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
409
409
  title: string;
410
410
  steps: {
411
411
  number: number;
412
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
412
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
413
413
  description: string;
414
414
  requiresApproval: boolean;
415
415
  }[];
@@ -417,7 +417,7 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
417
417
  };
418
418
  executionSchema: {
419
419
  steps: {
420
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
420
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
421
421
  description: string;
422
422
  stepNumber: number;
423
423
  operationType: "read" | "write";
@@ -430,8 +430,8 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
430
430
  errorHandling: string;
431
431
  constraints?: string[] | undefined;
432
432
  };
433
- toolName?: string | undefined;
434
433
  result?: unknown;
434
+ toolName?: string | undefined;
435
435
  }[];
436
436
  complexity: "low" | "medium" | "high";
437
437
  recommendedModel: string;
@@ -463,7 +463,7 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
463
463
  title: string;
464
464
  steps: {
465
465
  number: number;
466
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
466
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
467
467
  description: string;
468
468
  requiresApproval: boolean;
469
469
  }[];
@@ -471,7 +471,7 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
471
471
  };
472
472
  executionSchema: {
473
473
  steps: {
474
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
474
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
475
475
  description: string;
476
476
  stepNumber: number;
477
477
  operationType: "read" | "write";
@@ -484,8 +484,8 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
484
484
  errorHandling: string;
485
485
  constraints?: string[] | undefined;
486
486
  };
487
- toolName?: string | undefined;
488
487
  result?: unknown;
488
+ toolName?: string | undefined;
489
489
  }[];
490
490
  complexity: "low" | "medium" | "high";
491
491
  recommendedModel: string;
@@ -574,7 +574,6 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
574
574
  toolResults?: {
575
575
  id: string;
576
576
  name: string;
577
- result?: unknown;
578
577
  error?: {
579
578
  type: "input";
580
579
  errors: {
@@ -586,6 +585,7 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
586
585
  message: string;
587
586
  details?: unknown;
588
587
  } | undefined;
588
+ result?: unknown;
589
589
  }[] | undefined;
590
590
  requestId?: string | undefined;
591
591
  agentPlanningConfig?: {
@@ -601,7 +601,7 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
601
601
  title: string;
602
602
  steps: {
603
603
  number: number;
604
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
604
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
605
605
  description: string;
606
606
  requiresApproval: boolean;
607
607
  }[];
@@ -609,7 +609,7 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
609
609
  };
610
610
  executionSchema: {
611
611
  steps: {
612
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
612
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
613
613
  description: string;
614
614
  stepNumber: number;
615
615
  operationType: "read" | "write";
@@ -622,8 +622,8 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
622
622
  errorHandling: string;
623
623
  constraints?: string[] | undefined;
624
624
  };
625
- toolName?: string | undefined;
626
625
  result?: unknown;
626
+ toolName?: string | undefined;
627
627
  }[];
628
628
  complexity: "low" | "medium" | "high";
629
629
  recommendedModel: string;
@@ -684,7 +684,6 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
684
684
  toolResults?: {
685
685
  id: string;
686
686
  name: string;
687
- result?: unknown;
688
687
  error?: {
689
688
  type: "input";
690
689
  errors: {
@@ -696,6 +695,7 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
696
695
  message: string;
697
696
  details?: unknown;
698
697
  } | undefined;
698
+ result?: unknown;
699
699
  }[] | undefined;
700
700
  personalityContext?: {
701
701
  channel: "text" | "voice" | "widget-based";
@@ -714,7 +714,7 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
714
714
  title: string;
715
715
  steps: {
716
716
  number: number;
717
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
717
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
718
718
  description: string;
719
719
  requiresApproval: boolean;
720
720
  }[];
@@ -722,7 +722,7 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
722
722
  };
723
723
  executionSchema: {
724
724
  steps: {
725
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
725
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
726
726
  description: string;
727
727
  stepNumber: number;
728
728
  operationType: "read" | "write";
@@ -735,8 +735,8 @@ export declare const CoreApiChatBodyRequestBaseSchema: z.ZodObject<{
735
735
  errorHandling: string;
736
736
  constraints?: string[] | undefined;
737
737
  };
738
- toolName?: string | undefined;
739
738
  result?: unknown;
739
+ toolName?: string | undefined;
740
740
  }[];
741
741
  complexity: "low" | "medium" | "high";
742
742
  recommendedModel: string;
@@ -926,7 +926,6 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
926
926
  }, "strict", z.ZodTypeAny, {
927
927
  id: string;
928
928
  name: string;
929
- result?: unknown;
930
929
  error?: {
931
930
  type: "input";
932
931
  errors: {
@@ -938,10 +937,10 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
938
937
  message: string;
939
938
  details?: unknown;
940
939
  } | undefined;
940
+ result?: unknown;
941
941
  }, {
942
942
  id: string;
943
943
  name: string;
944
- result?: unknown;
945
944
  error?: {
946
945
  type: "input";
947
946
  errors: {
@@ -953,6 +952,7 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
953
952
  message: string;
954
953
  details?: unknown;
955
954
  } | undefined;
955
+ result?: unknown;
956
956
  }>, "many">>;
957
957
  languageModel: z.ZodString;
958
958
  personalityContext: z.ZodDefault<z.ZodOptional<z.ZodObject<{
@@ -988,12 +988,12 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
988
988
  requiresApproval: z.ZodBoolean;
989
989
  }, "strip", z.ZodTypeAny, {
990
990
  number: number;
991
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
991
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
992
992
  description: string;
993
993
  requiresApproval: boolean;
994
994
  }, {
995
995
  number: number;
996
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
996
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
997
997
  description: string;
998
998
  requiresApproval: boolean;
999
999
  }>, "many">;
@@ -1003,7 +1003,7 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1003
1003
  title: string;
1004
1004
  steps: {
1005
1005
  number: number;
1006
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
1006
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
1007
1007
  description: string;
1008
1008
  requiresApproval: boolean;
1009
1009
  }[];
@@ -1013,7 +1013,7 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1013
1013
  title: string;
1014
1014
  steps: {
1015
1015
  number: number;
1016
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
1016
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
1017
1017
  description: string;
1018
1018
  requiresApproval: boolean;
1019
1019
  }[];
@@ -1049,7 +1049,7 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1049
1049
  constraints?: string[] | undefined;
1050
1050
  }>;
1051
1051
  }, "strip", z.ZodTypeAny, {
1052
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
1052
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
1053
1053
  description: string;
1054
1054
  stepNumber: number;
1055
1055
  operationType: "read" | "write";
@@ -1062,10 +1062,10 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1062
1062
  errorHandling: string;
1063
1063
  constraints?: string[] | undefined;
1064
1064
  };
1065
- toolName?: string | undefined;
1066
1065
  result?: unknown;
1066
+ toolName?: string | undefined;
1067
1067
  }, {
1068
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
1068
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
1069
1069
  description: string;
1070
1070
  stepNumber: number;
1071
1071
  operationType: "read" | "write";
@@ -1078,8 +1078,8 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1078
1078
  errorHandling: string;
1079
1079
  constraints?: string[] | undefined;
1080
1080
  };
1081
- toolName?: string | undefined;
1082
1081
  result?: unknown;
1082
+ toolName?: string | undefined;
1083
1083
  }>, "many">;
1084
1084
  complexity: z.ZodEnum<["low", "medium", "high"]>;
1085
1085
  recommendedModel: z.ZodString;
@@ -1090,7 +1090,7 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1090
1090
  availableTools: z.ZodArray<z.ZodString, "many">;
1091
1091
  }, "strip", z.ZodTypeAny, {
1092
1092
  steps: {
1093
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
1093
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
1094
1094
  description: string;
1095
1095
  stepNumber: number;
1096
1096
  operationType: "read" | "write";
@@ -1103,8 +1103,8 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1103
1103
  errorHandling: string;
1104
1104
  constraints?: string[] | undefined;
1105
1105
  };
1106
- toolName?: string | undefined;
1107
1106
  result?: unknown;
1107
+ toolName?: string | undefined;
1108
1108
  }[];
1109
1109
  complexity: "low" | "medium" | "high";
1110
1110
  recommendedModel: string;
@@ -1115,7 +1115,7 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1115
1115
  availableTools: string[];
1116
1116
  }, {
1117
1117
  steps: {
1118
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
1118
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
1119
1119
  description: string;
1120
1120
  stepNumber: number;
1121
1121
  operationType: "read" | "write";
@@ -1128,8 +1128,8 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1128
1128
  errorHandling: string;
1129
1129
  constraints?: string[] | undefined;
1130
1130
  };
1131
- toolName?: string | undefined;
1132
1131
  result?: unknown;
1132
+ toolName?: string | undefined;
1133
1133
  }[];
1134
1134
  complexity: "low" | "medium" | "high";
1135
1135
  recommendedModel: string;
@@ -1177,7 +1177,7 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1177
1177
  title: string;
1178
1178
  steps: {
1179
1179
  number: number;
1180
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
1180
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
1181
1181
  description: string;
1182
1182
  requiresApproval: boolean;
1183
1183
  }[];
@@ -1185,7 +1185,7 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1185
1185
  };
1186
1186
  executionSchema: {
1187
1187
  steps: {
1188
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
1188
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
1189
1189
  description: string;
1190
1190
  stepNumber: number;
1191
1191
  operationType: "read" | "write";
@@ -1198,8 +1198,8 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1198
1198
  errorHandling: string;
1199
1199
  constraints?: string[] | undefined;
1200
1200
  };
1201
- toolName?: string | undefined;
1202
1201
  result?: unknown;
1202
+ toolName?: string | undefined;
1203
1203
  }[];
1204
1204
  complexity: "low" | "medium" | "high";
1205
1205
  recommendedModel: string;
@@ -1231,7 +1231,7 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1231
1231
  title: string;
1232
1232
  steps: {
1233
1233
  number: number;
1234
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
1234
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
1235
1235
  description: string;
1236
1236
  requiresApproval: boolean;
1237
1237
  }[];
@@ -1239,7 +1239,7 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1239
1239
  };
1240
1240
  executionSchema: {
1241
1241
  steps: {
1242
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
1242
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
1243
1243
  description: string;
1244
1244
  stepNumber: number;
1245
1245
  operationType: "read" | "write";
@@ -1252,8 +1252,8 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1252
1252
  errorHandling: string;
1253
1253
  constraints?: string[] | undefined;
1254
1254
  };
1255
- toolName?: string | undefined;
1256
1255
  result?: unknown;
1256
+ toolName?: string | undefined;
1257
1257
  }[];
1258
1258
  complexity: "low" | "medium" | "high";
1259
1259
  recommendedModel: string;
@@ -1342,7 +1342,6 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1342
1342
  toolResults?: {
1343
1343
  id: string;
1344
1344
  name: string;
1345
- result?: unknown;
1346
1345
  error?: {
1347
1346
  type: "input";
1348
1347
  errors: {
@@ -1354,6 +1353,7 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1354
1353
  message: string;
1355
1354
  details?: unknown;
1356
1355
  } | undefined;
1356
+ result?: unknown;
1357
1357
  }[] | undefined;
1358
1358
  requestId?: string | undefined;
1359
1359
  agentPlanningConfig?: {
@@ -1369,7 +1369,7 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1369
1369
  title: string;
1370
1370
  steps: {
1371
1371
  number: number;
1372
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
1372
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
1373
1373
  description: string;
1374
1374
  requiresApproval: boolean;
1375
1375
  }[];
@@ -1377,7 +1377,7 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1377
1377
  };
1378
1378
  executionSchema: {
1379
1379
  steps: {
1380
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
1380
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
1381
1381
  description: string;
1382
1382
  stepNumber: number;
1383
1383
  operationType: "read" | "write";
@@ -1390,8 +1390,8 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1390
1390
  errorHandling: string;
1391
1391
  constraints?: string[] | undefined;
1392
1392
  };
1393
- toolName?: string | undefined;
1394
1393
  result?: unknown;
1394
+ toolName?: string | undefined;
1395
1395
  }[];
1396
1396
  complexity: "low" | "medium" | "high";
1397
1397
  recommendedModel: string;
@@ -1452,7 +1452,6 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1452
1452
  toolResults?: {
1453
1453
  id: string;
1454
1454
  name: string;
1455
- result?: unknown;
1456
1455
  error?: {
1457
1456
  type: "input";
1458
1457
  errors: {
@@ -1464,6 +1463,7 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1464
1463
  message: string;
1465
1464
  details?: unknown;
1466
1465
  } | undefined;
1466
+ result?: unknown;
1467
1467
  }[] | undefined;
1468
1468
  personalityContext?: {
1469
1469
  channel: "text" | "voice" | "widget-based";
@@ -1482,7 +1482,7 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1482
1482
  title: string;
1483
1483
  steps: {
1484
1484
  number: number;
1485
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
1485
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
1486
1486
  description: string;
1487
1487
  requiresApproval: boolean;
1488
1488
  }[];
@@ -1490,7 +1490,7 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1490
1490
  };
1491
1491
  executionSchema: {
1492
1492
  steps: {
1493
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
1493
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
1494
1494
  description: string;
1495
1495
  stepNumber: number;
1496
1496
  operationType: "read" | "write";
@@ -1503,8 +1503,8 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1503
1503
  errorHandling: string;
1504
1504
  constraints?: string[] | undefined;
1505
1505
  };
1506
- toolName?: string | undefined;
1507
1506
  result?: unknown;
1507
+ toolName?: string | undefined;
1508
1508
  }[];
1509
1509
  complexity: "low" | "medium" | "high";
1510
1510
  recommendedModel: string;
@@ -1568,7 +1568,6 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1568
1568
  toolResults?: {
1569
1569
  id: string;
1570
1570
  name: string;
1571
- result?: unknown;
1572
1571
  error?: {
1573
1572
  type: "input";
1574
1573
  errors: {
@@ -1580,6 +1579,7 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1580
1579
  message: string;
1581
1580
  details?: unknown;
1582
1581
  } | undefined;
1582
+ result?: unknown;
1583
1583
  }[] | undefined;
1584
1584
  requestId?: string | undefined;
1585
1585
  agentPlanningConfig?: {
@@ -1595,7 +1595,7 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1595
1595
  title: string;
1596
1596
  steps: {
1597
1597
  number: number;
1598
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
1598
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
1599
1599
  description: string;
1600
1600
  requiresApproval: boolean;
1601
1601
  }[];
@@ -1603,7 +1603,7 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1603
1603
  };
1604
1604
  executionSchema: {
1605
1605
  steps: {
1606
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
1606
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
1607
1607
  description: string;
1608
1608
  stepNumber: number;
1609
1609
  operationType: "read" | "write";
@@ -1616,8 +1616,8 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1616
1616
  errorHandling: string;
1617
1617
  constraints?: string[] | undefined;
1618
1618
  };
1619
- toolName?: string | undefined;
1620
1619
  result?: unknown;
1620
+ toolName?: string | undefined;
1621
1621
  }[];
1622
1622
  complexity: "low" | "medium" | "high";
1623
1623
  recommendedModel: string;
@@ -1678,7 +1678,6 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1678
1678
  toolResults?: {
1679
1679
  id: string;
1680
1680
  name: string;
1681
- result?: unknown;
1682
1681
  error?: {
1683
1682
  type: "input";
1684
1683
  errors: {
@@ -1690,6 +1689,7 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1690
1689
  message: string;
1691
1690
  details?: unknown;
1692
1691
  } | undefined;
1692
+ result?: unknown;
1693
1693
  }[] | undefined;
1694
1694
  personalityContext?: {
1695
1695
  channel: "text" | "voice" | "widget-based";
@@ -1708,7 +1708,7 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1708
1708
  title: string;
1709
1709
  steps: {
1710
1710
  number: number;
1711
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
1711
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
1712
1712
  description: string;
1713
1713
  requiresApproval: boolean;
1714
1714
  }[];
@@ -1716,7 +1716,7 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1716
1716
  };
1717
1717
  executionSchema: {
1718
1718
  steps: {
1719
- status: "pending" | "in_progress" | "completed" | "failed" | "skipped";
1719
+ status: "skipped" | "pending" | "in_progress" | "completed" | "failed";
1720
1720
  description: string;
1721
1721
  stepNumber: number;
1722
1722
  operationType: "read" | "write";
@@ -1729,8 +1729,8 @@ export declare const CoreApiChatBodyRequestSchema: z.ZodEffects<z.ZodObject<{
1729
1729
  errorHandling: string;
1730
1730
  constraints?: string[] | undefined;
1731
1731
  };
1732
- toolName?: string | undefined;
1733
1732
  result?: unknown;
1733
+ toolName?: string | undefined;
1734
1734
  }[];
1735
1735
  complexity: "low" | "medium" | "high";
1736
1736
  recommendedModel: string;
@@ -215,7 +215,6 @@ export declare const IllaToolOutcomeSchema: z.ZodObject<{
215
215
  }, "strict", z.ZodTypeAny, {
216
216
  id: string;
217
217
  name: string;
218
- result?: unknown;
219
218
  error?: {
220
219
  type: "input";
221
220
  errors: {
@@ -227,10 +226,10 @@ export declare const IllaToolOutcomeSchema: z.ZodObject<{
227
226
  message: string;
228
227
  details?: unknown;
229
228
  } | undefined;
229
+ result?: unknown;
230
230
  }, {
231
231
  id: string;
232
232
  name: string;
233
- result?: unknown;
234
233
  error?: {
235
234
  type: "input";
236
235
  errors: {
@@ -242,6 +241,7 @@ export declare const IllaToolOutcomeSchema: z.ZodObject<{
242
241
  message: string;
243
242
  details?: unknown;
244
243
  } | undefined;
244
+ result?: unknown;
245
245
  }>;
246
246
  /**
247
247
  * Inferred type for input validation error data
@@ -12,4 +12,5 @@ export * from "./modelContext.js";
12
12
  export * from "./telemetryEvents.js";
13
13
  export * from "./planningRuntime.js";
14
14
  export * from "./uiMessageNormalizer.js";
15
+ export * from "./pendingConversationState.js";
15
16
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/schemas/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,sBAAsB,CAAC;AACrC,cAAc,uBAAuB,CAAC;AACtC,cAAc,kCAAkC,CAAC;AACjD,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,yBAAyB,CAAC;AACxC,cAAc,mBAAmB,CAAC;AAClC,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/schemas/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,sBAAsB,CAAC;AACrC,cAAc,uBAAuB,CAAC;AACtC,cAAc,kCAAkC,CAAC;AACjD,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,yBAAyB,CAAC;AACxC,cAAc,mBAAmB,CAAC;AAClC,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC;AACzC,cAAc,+BAA+B,CAAC"}
@@ -12,4 +12,5 @@ export * from "./modelContext.js";
12
12
  export * from "./telemetryEvents.js";
13
13
  export * from "./planningRuntime.js";
14
14
  export * from "./uiMessageNormalizer.js";
15
+ export * from "./pendingConversationState.js";
15
16
  //# sourceMappingURL=index.js.map