@inkeep/agents-core 0.14.9 → 0.14.11
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/{chunk-C4PFKKRE.js → chunk-423XYZ6F.js} +1 -1
- package/dist/{chunk-OWZRYYBR.js → chunk-SPN4Y2C3.js} +1 -1
- package/dist/client-exports.cjs +3 -9
- package/dist/client-exports.d.cts +8 -16
- package/dist/client-exports.d.ts +8 -16
- package/dist/client-exports.js +3 -9
- package/dist/db/schema.d.cts +2 -2
- package/dist/db/schema.d.ts +2 -2
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +46 -46
- package/dist/index.d.ts +46 -46
- package/dist/index.js +4 -4
- package/dist/{schema-BUMYiuQO.d.cts → schema-Mdt3_61i.d.cts} +19 -19
- package/dist/{schema-iVTOUsW8.d.ts → schema-NJiTVcbN.d.ts} +19 -19
- package/dist/types/index.d.cts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/{utility-COYxGpY5.d.cts → utility-CfjwCzr_.d.cts} +171 -174
- package/dist/{utility-COYxGpY5.d.ts → utility-CfjwCzr_.d.ts} +171 -174
- package/dist/validation/index.cjs +1 -1
- package/dist/validation/index.d.cts +2 -2
- package/dist/validation/index.d.ts +2 -2
- package/dist/validation/index.js +2 -2
- package/package.json +1 -1
|
@@ -397,34 +397,35 @@ declare const URL_SAFE_ID_PATTERN: RegExp;
|
|
|
397
397
|
declare const resourceIdSchema: z.ZodString;
|
|
398
398
|
declare const ModelSettingsSchema: z.ZodObject<{
|
|
399
399
|
model: z.ZodOptional<z.ZodString>;
|
|
400
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
400
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
401
401
|
}, z.core.$strip>;
|
|
402
|
+
type ModelSettings = z.infer<typeof ModelSettingsSchema>;
|
|
402
403
|
declare const ModelSchema: z.ZodObject<{
|
|
403
404
|
base: z.ZodOptional<z.ZodObject<{
|
|
404
405
|
model: z.ZodOptional<z.ZodString>;
|
|
405
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
406
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
406
407
|
}, z.core.$strip>>;
|
|
407
408
|
structuredOutput: z.ZodOptional<z.ZodObject<{
|
|
408
409
|
model: z.ZodOptional<z.ZodString>;
|
|
409
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
410
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
410
411
|
}, z.core.$strip>>;
|
|
411
412
|
summarizer: z.ZodOptional<z.ZodObject<{
|
|
412
413
|
model: z.ZodOptional<z.ZodString>;
|
|
413
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
414
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
414
415
|
}, z.core.$strip>>;
|
|
415
416
|
}, z.core.$strip>;
|
|
416
417
|
declare const ProjectModelSchema: z.ZodObject<{
|
|
417
418
|
base: z.ZodObject<{
|
|
418
419
|
model: z.ZodOptional<z.ZodString>;
|
|
419
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
420
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
420
421
|
}, z.core.$strip>;
|
|
421
422
|
structuredOutput: z.ZodOptional<z.ZodObject<{
|
|
422
423
|
model: z.ZodOptional<z.ZodString>;
|
|
423
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
424
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
424
425
|
}, z.core.$strip>>;
|
|
425
426
|
summarizer: z.ZodOptional<z.ZodObject<{
|
|
426
427
|
model: z.ZodOptional<z.ZodString>;
|
|
427
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
428
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
428
429
|
}, z.core.$strip>>;
|
|
429
430
|
}, z.core.$strip>;
|
|
430
431
|
declare const AgentSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
@@ -512,15 +513,15 @@ declare const AgentSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
512
513
|
data: {
|
|
513
514
|
base?: {
|
|
514
515
|
model?: string | undefined;
|
|
515
|
-
providerOptions?: Record<string,
|
|
516
|
+
providerOptions?: Record<string, any> | undefined;
|
|
516
517
|
} | undefined;
|
|
517
518
|
structuredOutput?: {
|
|
518
519
|
model?: string | undefined;
|
|
519
|
-
providerOptions?: Record<string,
|
|
520
|
+
providerOptions?: Record<string, any> | undefined;
|
|
520
521
|
} | undefined;
|
|
521
522
|
summarizer?: {
|
|
522
523
|
model?: string | undefined;
|
|
523
|
-
providerOptions?: Record<string,
|
|
524
|
+
providerOptions?: Record<string, any> | undefined;
|
|
524
525
|
} | undefined;
|
|
525
526
|
};
|
|
526
527
|
driverParam: string;
|
|
@@ -537,15 +538,15 @@ declare const AgentSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
537
538
|
$type: {
|
|
538
539
|
base?: {
|
|
539
540
|
model?: string | undefined;
|
|
540
|
-
providerOptions?: Record<string,
|
|
541
|
+
providerOptions?: Record<string, any> | undefined;
|
|
541
542
|
} | undefined;
|
|
542
543
|
structuredOutput?: {
|
|
543
544
|
model?: string | undefined;
|
|
544
|
-
providerOptions?: Record<string,
|
|
545
|
+
providerOptions?: Record<string, any> | undefined;
|
|
545
546
|
} | undefined;
|
|
546
547
|
summarizer?: {
|
|
547
548
|
model?: string | undefined;
|
|
548
|
-
providerOptions?: Record<string,
|
|
549
|
+
providerOptions?: Record<string, any> | undefined;
|
|
549
550
|
} | undefined;
|
|
550
551
|
};
|
|
551
552
|
}>;
|
|
@@ -710,15 +711,15 @@ declare const AgentInsertSchema: z.ZodObject<{
|
|
|
710
711
|
models: z.ZodOptional<z.ZodObject<{
|
|
711
712
|
base: z.ZodOptional<z.ZodObject<{
|
|
712
713
|
model: z.ZodOptional<z.ZodString>;
|
|
713
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
714
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
714
715
|
}, z.core.$strip>>;
|
|
715
716
|
structuredOutput: z.ZodOptional<z.ZodObject<{
|
|
716
717
|
model: z.ZodOptional<z.ZodString>;
|
|
717
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
718
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
718
719
|
}, z.core.$strip>>;
|
|
719
720
|
summarizer: z.ZodOptional<z.ZodObject<{
|
|
720
721
|
model: z.ZodOptional<z.ZodString>;
|
|
721
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
722
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
722
723
|
}, z.core.$strip>>;
|
|
723
724
|
}, z.core.$strip>>;
|
|
724
725
|
}, {
|
|
@@ -748,15 +749,15 @@ declare const AgentUpdateSchema: z.ZodObject<{
|
|
|
748
749
|
models: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
749
750
|
base: z.ZodOptional<z.ZodObject<{
|
|
750
751
|
model: z.ZodOptional<z.ZodString>;
|
|
751
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
752
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
752
753
|
}, z.core.$strip>>;
|
|
753
754
|
structuredOutput: z.ZodOptional<z.ZodObject<{
|
|
754
755
|
model: z.ZodOptional<z.ZodString>;
|
|
755
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
756
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
756
757
|
}, z.core.$strip>>;
|
|
757
758
|
summarizer: z.ZodOptional<z.ZodObject<{
|
|
758
759
|
model: z.ZodOptional<z.ZodString>;
|
|
759
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
760
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
760
761
|
}, z.core.$strip>>;
|
|
761
762
|
}, z.core.$strip>>>;
|
|
762
763
|
}, {
|
|
@@ -774,54 +775,54 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
774
775
|
models: z.ZodNullable<z.ZodType<{
|
|
775
776
|
base?: {
|
|
776
777
|
model?: string | undefined;
|
|
777
|
-
providerOptions?: Record<string,
|
|
778
|
+
providerOptions?: Record<string, any> | undefined;
|
|
778
779
|
} | undefined;
|
|
779
780
|
structuredOutput?: {
|
|
780
781
|
model?: string | undefined;
|
|
781
|
-
providerOptions?: Record<string,
|
|
782
|
+
providerOptions?: Record<string, any> | undefined;
|
|
782
783
|
} | undefined;
|
|
783
784
|
summarizer?: {
|
|
784
785
|
model?: string | undefined;
|
|
785
|
-
providerOptions?: Record<string,
|
|
786
|
+
providerOptions?: Record<string, any> | undefined;
|
|
786
787
|
} | undefined;
|
|
787
788
|
}, {
|
|
788
789
|
base?: {
|
|
789
790
|
model?: string | undefined;
|
|
790
|
-
providerOptions?: Record<string,
|
|
791
|
+
providerOptions?: Record<string, any> | undefined;
|
|
791
792
|
} | undefined;
|
|
792
793
|
structuredOutput?: {
|
|
793
794
|
model?: string | undefined;
|
|
794
|
-
providerOptions?: Record<string,
|
|
795
|
+
providerOptions?: Record<string, any> | undefined;
|
|
795
796
|
} | undefined;
|
|
796
797
|
summarizer?: {
|
|
797
798
|
model?: string | undefined;
|
|
798
|
-
providerOptions?: Record<string,
|
|
799
|
+
providerOptions?: Record<string, any> | undefined;
|
|
799
800
|
} | undefined;
|
|
800
801
|
}, z.core.$ZodTypeInternals<{
|
|
801
802
|
base?: {
|
|
802
803
|
model?: string | undefined;
|
|
803
|
-
providerOptions?: Record<string,
|
|
804
|
+
providerOptions?: Record<string, any> | undefined;
|
|
804
805
|
} | undefined;
|
|
805
806
|
structuredOutput?: {
|
|
806
807
|
model?: string | undefined;
|
|
807
|
-
providerOptions?: Record<string,
|
|
808
|
+
providerOptions?: Record<string, any> | undefined;
|
|
808
809
|
} | undefined;
|
|
809
810
|
summarizer?: {
|
|
810
811
|
model?: string | undefined;
|
|
811
|
-
providerOptions?: Record<string,
|
|
812
|
+
providerOptions?: Record<string, any> | undefined;
|
|
812
813
|
} | undefined;
|
|
813
814
|
}, {
|
|
814
815
|
base?: {
|
|
815
816
|
model?: string | undefined;
|
|
816
|
-
providerOptions?: Record<string,
|
|
817
|
+
providerOptions?: Record<string, any> | undefined;
|
|
817
818
|
} | undefined;
|
|
818
819
|
structuredOutput?: {
|
|
819
820
|
model?: string | undefined;
|
|
820
|
-
providerOptions?: Record<string,
|
|
821
|
+
providerOptions?: Record<string, any> | undefined;
|
|
821
822
|
} | undefined;
|
|
822
823
|
summarizer?: {
|
|
823
824
|
model?: string | undefined;
|
|
824
|
-
providerOptions?: Record<string,
|
|
825
|
+
providerOptions?: Record<string, any> | undefined;
|
|
825
826
|
} | undefined;
|
|
826
827
|
}>>>;
|
|
827
828
|
stopWhen: z.ZodNullable<z.ZodType<{
|
|
@@ -845,15 +846,15 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
845
846
|
models: z.ZodOptional<z.ZodObject<{
|
|
846
847
|
base: z.ZodOptional<z.ZodObject<{
|
|
847
848
|
model: z.ZodOptional<z.ZodString>;
|
|
848
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
849
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
849
850
|
}, z.core.$strip>>;
|
|
850
851
|
structuredOutput: z.ZodOptional<z.ZodObject<{
|
|
851
852
|
model: z.ZodOptional<z.ZodString>;
|
|
852
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
853
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
853
854
|
}, z.core.$strip>>;
|
|
854
855
|
summarizer: z.ZodOptional<z.ZodObject<{
|
|
855
856
|
model: z.ZodOptional<z.ZodString>;
|
|
856
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
857
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
857
858
|
}, z.core.$strip>>;
|
|
858
859
|
}, z.core.$strip>>;
|
|
859
860
|
stopWhen: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -877,15 +878,15 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
877
878
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
878
879
|
base: z.ZodOptional<z.ZodObject<{
|
|
879
880
|
model: z.ZodOptional<z.ZodString>;
|
|
880
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
881
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
881
882
|
}, z.core.$strip>>;
|
|
882
883
|
structuredOutput: z.ZodOptional<z.ZodObject<{
|
|
883
884
|
model: z.ZodOptional<z.ZodString>;
|
|
884
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
885
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
885
886
|
}, z.core.$strip>>;
|
|
886
887
|
summarizer: z.ZodOptional<z.ZodObject<{
|
|
887
888
|
model: z.ZodOptional<z.ZodString>;
|
|
888
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
889
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
889
890
|
}, z.core.$strip>>;
|
|
890
891
|
}, z.core.$strip>>>>;
|
|
891
892
|
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -1306,15 +1307,15 @@ declare const AgentGraphSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
1306
1307
|
data: {
|
|
1307
1308
|
base?: {
|
|
1308
1309
|
model?: string | undefined;
|
|
1309
|
-
providerOptions?: Record<string,
|
|
1310
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1310
1311
|
} | undefined;
|
|
1311
1312
|
structuredOutput?: {
|
|
1312
1313
|
model?: string | undefined;
|
|
1313
|
-
providerOptions?: Record<string,
|
|
1314
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1314
1315
|
} | undefined;
|
|
1315
1316
|
summarizer?: {
|
|
1316
1317
|
model?: string | undefined;
|
|
1317
|
-
providerOptions?: Record<string,
|
|
1318
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1318
1319
|
} | undefined;
|
|
1319
1320
|
};
|
|
1320
1321
|
driverParam: string;
|
|
@@ -1331,15 +1332,15 @@ declare const AgentGraphSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
1331
1332
|
$type: {
|
|
1332
1333
|
base?: {
|
|
1333
1334
|
model?: string | undefined;
|
|
1334
|
-
providerOptions?: Record<string,
|
|
1335
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1335
1336
|
} | undefined;
|
|
1336
1337
|
structuredOutput?: {
|
|
1337
1338
|
model?: string | undefined;
|
|
1338
|
-
providerOptions?: Record<string,
|
|
1339
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1339
1340
|
} | undefined;
|
|
1340
1341
|
summarizer?: {
|
|
1341
1342
|
model?: string | undefined;
|
|
1342
|
-
providerOptions?: Record<string,
|
|
1343
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1343
1344
|
} | undefined;
|
|
1344
1345
|
};
|
|
1345
1346
|
}>;
|
|
@@ -1500,54 +1501,54 @@ declare const AgentGraphInsertSchema: z.ZodObject<{
|
|
|
1500
1501
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
1501
1502
|
base?: {
|
|
1502
1503
|
model?: string | undefined;
|
|
1503
|
-
providerOptions?: Record<string,
|
|
1504
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1504
1505
|
} | undefined;
|
|
1505
1506
|
structuredOutput?: {
|
|
1506
1507
|
model?: string | undefined;
|
|
1507
|
-
providerOptions?: Record<string,
|
|
1508
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1508
1509
|
} | undefined;
|
|
1509
1510
|
summarizer?: {
|
|
1510
1511
|
model?: string | undefined;
|
|
1511
|
-
providerOptions?: Record<string,
|
|
1512
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1512
1513
|
} | undefined;
|
|
1513
1514
|
}, {
|
|
1514
1515
|
base?: {
|
|
1515
1516
|
model?: string | undefined;
|
|
1516
|
-
providerOptions?: Record<string,
|
|
1517
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1517
1518
|
} | undefined;
|
|
1518
1519
|
structuredOutput?: {
|
|
1519
1520
|
model?: string | undefined;
|
|
1520
|
-
providerOptions?: Record<string,
|
|
1521
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1521
1522
|
} | undefined;
|
|
1522
1523
|
summarizer?: {
|
|
1523
1524
|
model?: string | undefined;
|
|
1524
|
-
providerOptions?: Record<string,
|
|
1525
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1525
1526
|
} | undefined;
|
|
1526
1527
|
}, z.core.$ZodTypeInternals<{
|
|
1527
1528
|
base?: {
|
|
1528
1529
|
model?: string | undefined;
|
|
1529
|
-
providerOptions?: Record<string,
|
|
1530
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1530
1531
|
} | undefined;
|
|
1531
1532
|
structuredOutput?: {
|
|
1532
1533
|
model?: string | undefined;
|
|
1533
|
-
providerOptions?: Record<string,
|
|
1534
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1534
1535
|
} | undefined;
|
|
1535
1536
|
summarizer?: {
|
|
1536
1537
|
model?: string | undefined;
|
|
1537
|
-
providerOptions?: Record<string,
|
|
1538
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1538
1539
|
} | undefined;
|
|
1539
1540
|
}, {
|
|
1540
1541
|
base?: {
|
|
1541
1542
|
model?: string | undefined;
|
|
1542
|
-
providerOptions?: Record<string,
|
|
1543
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1543
1544
|
} | undefined;
|
|
1544
1545
|
structuredOutput?: {
|
|
1545
1546
|
model?: string | undefined;
|
|
1546
|
-
providerOptions?: Record<string,
|
|
1547
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1547
1548
|
} | undefined;
|
|
1548
1549
|
summarizer?: {
|
|
1549
1550
|
model?: string | undefined;
|
|
1550
|
-
providerOptions?: Record<string,
|
|
1551
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1551
1552
|
} | undefined;
|
|
1552
1553
|
}>>>>;
|
|
1553
1554
|
statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -1634,54 +1635,54 @@ declare const AgentGraphUpdateSchema: z.ZodObject<{
|
|
|
1634
1635
|
models: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
1635
1636
|
base?: {
|
|
1636
1637
|
model?: string | undefined;
|
|
1637
|
-
providerOptions?: Record<string,
|
|
1638
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1638
1639
|
} | undefined;
|
|
1639
1640
|
structuredOutput?: {
|
|
1640
1641
|
model?: string | undefined;
|
|
1641
|
-
providerOptions?: Record<string,
|
|
1642
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1642
1643
|
} | undefined;
|
|
1643
1644
|
summarizer?: {
|
|
1644
1645
|
model?: string | undefined;
|
|
1645
|
-
providerOptions?: Record<string,
|
|
1646
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1646
1647
|
} | undefined;
|
|
1647
1648
|
}, {
|
|
1648
1649
|
base?: {
|
|
1649
1650
|
model?: string | undefined;
|
|
1650
|
-
providerOptions?: Record<string,
|
|
1651
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1651
1652
|
} | undefined;
|
|
1652
1653
|
structuredOutput?: {
|
|
1653
1654
|
model?: string | undefined;
|
|
1654
|
-
providerOptions?: Record<string,
|
|
1655
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1655
1656
|
} | undefined;
|
|
1656
1657
|
summarizer?: {
|
|
1657
1658
|
model?: string | undefined;
|
|
1658
|
-
providerOptions?: Record<string,
|
|
1659
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1659
1660
|
} | undefined;
|
|
1660
1661
|
}, z.core.$ZodTypeInternals<{
|
|
1661
1662
|
base?: {
|
|
1662
1663
|
model?: string | undefined;
|
|
1663
|
-
providerOptions?: Record<string,
|
|
1664
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1664
1665
|
} | undefined;
|
|
1665
1666
|
structuredOutput?: {
|
|
1666
1667
|
model?: string | undefined;
|
|
1667
|
-
providerOptions?: Record<string,
|
|
1668
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1668
1669
|
} | undefined;
|
|
1669
1670
|
summarizer?: {
|
|
1670
1671
|
model?: string | undefined;
|
|
1671
|
-
providerOptions?: Record<string,
|
|
1672
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1672
1673
|
} | undefined;
|
|
1673
1674
|
}, {
|
|
1674
1675
|
base?: {
|
|
1675
1676
|
model?: string | undefined;
|
|
1676
|
-
providerOptions?: Record<string,
|
|
1677
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1677
1678
|
} | undefined;
|
|
1678
1679
|
structuredOutput?: {
|
|
1679
1680
|
model?: string | undefined;
|
|
1680
|
-
providerOptions?: Record<string,
|
|
1681
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1681
1682
|
} | undefined;
|
|
1682
1683
|
summarizer?: {
|
|
1683
1684
|
model?: string | undefined;
|
|
1684
|
-
providerOptions?: Record<string,
|
|
1685
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1685
1686
|
} | undefined;
|
|
1686
1687
|
}>>>>>;
|
|
1687
1688
|
statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -1768,54 +1769,54 @@ declare const AgentGraphApiSelectSchema: z.ZodObject<{
|
|
|
1768
1769
|
models: z.ZodNullable<z.ZodType<{
|
|
1769
1770
|
base?: {
|
|
1770
1771
|
model?: string | undefined;
|
|
1771
|
-
providerOptions?: Record<string,
|
|
1772
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1772
1773
|
} | undefined;
|
|
1773
1774
|
structuredOutput?: {
|
|
1774
1775
|
model?: string | undefined;
|
|
1775
|
-
providerOptions?: Record<string,
|
|
1776
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1776
1777
|
} | undefined;
|
|
1777
1778
|
summarizer?: {
|
|
1778
1779
|
model?: string | undefined;
|
|
1779
|
-
providerOptions?: Record<string,
|
|
1780
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1780
1781
|
} | undefined;
|
|
1781
1782
|
}, {
|
|
1782
1783
|
base?: {
|
|
1783
1784
|
model?: string | undefined;
|
|
1784
|
-
providerOptions?: Record<string,
|
|
1785
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1785
1786
|
} | undefined;
|
|
1786
1787
|
structuredOutput?: {
|
|
1787
1788
|
model?: string | undefined;
|
|
1788
|
-
providerOptions?: Record<string,
|
|
1789
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1789
1790
|
} | undefined;
|
|
1790
1791
|
summarizer?: {
|
|
1791
1792
|
model?: string | undefined;
|
|
1792
|
-
providerOptions?: Record<string,
|
|
1793
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1793
1794
|
} | undefined;
|
|
1794
1795
|
}, z.core.$ZodTypeInternals<{
|
|
1795
1796
|
base?: {
|
|
1796
1797
|
model?: string | undefined;
|
|
1797
|
-
providerOptions?: Record<string,
|
|
1798
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1798
1799
|
} | undefined;
|
|
1799
1800
|
structuredOutput?: {
|
|
1800
1801
|
model?: string | undefined;
|
|
1801
|
-
providerOptions?: Record<string,
|
|
1802
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1802
1803
|
} | undefined;
|
|
1803
1804
|
summarizer?: {
|
|
1804
1805
|
model?: string | undefined;
|
|
1805
|
-
providerOptions?: Record<string,
|
|
1806
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1806
1807
|
} | undefined;
|
|
1807
1808
|
}, {
|
|
1808
1809
|
base?: {
|
|
1809
1810
|
model?: string | undefined;
|
|
1810
|
-
providerOptions?: Record<string,
|
|
1811
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1811
1812
|
} | undefined;
|
|
1812
1813
|
structuredOutput?: {
|
|
1813
1814
|
model?: string | undefined;
|
|
1814
|
-
providerOptions?: Record<string,
|
|
1815
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1815
1816
|
} | undefined;
|
|
1816
1817
|
summarizer?: {
|
|
1817
1818
|
model?: string | undefined;
|
|
1818
|
-
providerOptions?: Record<string,
|
|
1819
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1819
1820
|
} | undefined;
|
|
1820
1821
|
}>>>;
|
|
1821
1822
|
stopWhen: z.ZodNullable<z.ZodType<{
|
|
@@ -1896,54 +1897,54 @@ declare const AgentGraphApiInsertSchema: z.ZodObject<{
|
|
|
1896
1897
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
1897
1898
|
base?: {
|
|
1898
1899
|
model?: string | undefined;
|
|
1899
|
-
providerOptions?: Record<string,
|
|
1900
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1900
1901
|
} | undefined;
|
|
1901
1902
|
structuredOutput?: {
|
|
1902
1903
|
model?: string | undefined;
|
|
1903
|
-
providerOptions?: Record<string,
|
|
1904
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1904
1905
|
} | undefined;
|
|
1905
1906
|
summarizer?: {
|
|
1906
1907
|
model?: string | undefined;
|
|
1907
|
-
providerOptions?: Record<string,
|
|
1908
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1908
1909
|
} | undefined;
|
|
1909
1910
|
}, {
|
|
1910
1911
|
base?: {
|
|
1911
1912
|
model?: string | undefined;
|
|
1912
|
-
providerOptions?: Record<string,
|
|
1913
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1913
1914
|
} | undefined;
|
|
1914
1915
|
structuredOutput?: {
|
|
1915
1916
|
model?: string | undefined;
|
|
1916
|
-
providerOptions?: Record<string,
|
|
1917
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1917
1918
|
} | undefined;
|
|
1918
1919
|
summarizer?: {
|
|
1919
1920
|
model?: string | undefined;
|
|
1920
|
-
providerOptions?: Record<string,
|
|
1921
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1921
1922
|
} | undefined;
|
|
1922
1923
|
}, z.core.$ZodTypeInternals<{
|
|
1923
1924
|
base?: {
|
|
1924
1925
|
model?: string | undefined;
|
|
1925
|
-
providerOptions?: Record<string,
|
|
1926
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1926
1927
|
} | undefined;
|
|
1927
1928
|
structuredOutput?: {
|
|
1928
1929
|
model?: string | undefined;
|
|
1929
|
-
providerOptions?: Record<string,
|
|
1930
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1930
1931
|
} | undefined;
|
|
1931
1932
|
summarizer?: {
|
|
1932
1933
|
model?: string | undefined;
|
|
1933
|
-
providerOptions?: Record<string,
|
|
1934
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1934
1935
|
} | undefined;
|
|
1935
1936
|
}, {
|
|
1936
1937
|
base?: {
|
|
1937
1938
|
model?: string | undefined;
|
|
1938
|
-
providerOptions?: Record<string,
|
|
1939
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1939
1940
|
} | undefined;
|
|
1940
1941
|
structuredOutput?: {
|
|
1941
1942
|
model?: string | undefined;
|
|
1942
|
-
providerOptions?: Record<string,
|
|
1943
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1943
1944
|
} | undefined;
|
|
1944
1945
|
summarizer?: {
|
|
1945
1946
|
model?: string | undefined;
|
|
1946
|
-
providerOptions?: Record<string,
|
|
1947
|
+
providerOptions?: Record<string, any> | undefined;
|
|
1947
1948
|
} | undefined;
|
|
1948
1949
|
}>>>>;
|
|
1949
1950
|
stopWhen: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -2026,54 +2027,54 @@ declare const AgentGraphApiUpdateSchema: z.ZodObject<{
|
|
|
2026
2027
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2027
2028
|
base?: {
|
|
2028
2029
|
model?: string | undefined;
|
|
2029
|
-
providerOptions?: Record<string,
|
|
2030
|
+
providerOptions?: Record<string, any> | undefined;
|
|
2030
2031
|
} | undefined;
|
|
2031
2032
|
structuredOutput?: {
|
|
2032
2033
|
model?: string | undefined;
|
|
2033
|
-
providerOptions?: Record<string,
|
|
2034
|
+
providerOptions?: Record<string, any> | undefined;
|
|
2034
2035
|
} | undefined;
|
|
2035
2036
|
summarizer?: {
|
|
2036
2037
|
model?: string | undefined;
|
|
2037
|
-
providerOptions?: Record<string,
|
|
2038
|
+
providerOptions?: Record<string, any> | undefined;
|
|
2038
2039
|
} | undefined;
|
|
2039
2040
|
}, {
|
|
2040
2041
|
base?: {
|
|
2041
2042
|
model?: string | undefined;
|
|
2042
|
-
providerOptions?: Record<string,
|
|
2043
|
+
providerOptions?: Record<string, any> | undefined;
|
|
2043
2044
|
} | undefined;
|
|
2044
2045
|
structuredOutput?: {
|
|
2045
2046
|
model?: string | undefined;
|
|
2046
|
-
providerOptions?: Record<string,
|
|
2047
|
+
providerOptions?: Record<string, any> | undefined;
|
|
2047
2048
|
} | undefined;
|
|
2048
2049
|
summarizer?: {
|
|
2049
2050
|
model?: string | undefined;
|
|
2050
|
-
providerOptions?: Record<string,
|
|
2051
|
+
providerOptions?: Record<string, any> | undefined;
|
|
2051
2052
|
} | undefined;
|
|
2052
2053
|
}, z.core.$ZodTypeInternals<{
|
|
2053
2054
|
base?: {
|
|
2054
2055
|
model?: string | undefined;
|
|
2055
|
-
providerOptions?: Record<string,
|
|
2056
|
+
providerOptions?: Record<string, any> | undefined;
|
|
2056
2057
|
} | undefined;
|
|
2057
2058
|
structuredOutput?: {
|
|
2058
2059
|
model?: string | undefined;
|
|
2059
|
-
providerOptions?: Record<string,
|
|
2060
|
+
providerOptions?: Record<string, any> | undefined;
|
|
2060
2061
|
} | undefined;
|
|
2061
2062
|
summarizer?: {
|
|
2062
2063
|
model?: string | undefined;
|
|
2063
|
-
providerOptions?: Record<string,
|
|
2064
|
+
providerOptions?: Record<string, any> | undefined;
|
|
2064
2065
|
} | undefined;
|
|
2065
2066
|
}, {
|
|
2066
2067
|
base?: {
|
|
2067
2068
|
model?: string | undefined;
|
|
2068
|
-
providerOptions?: Record<string,
|
|
2069
|
+
providerOptions?: Record<string, any> | undefined;
|
|
2069
2070
|
} | undefined;
|
|
2070
2071
|
structuredOutput?: {
|
|
2071
2072
|
model?: string | undefined;
|
|
2072
|
-
providerOptions?: Record<string,
|
|
2073
|
+
providerOptions?: Record<string, any> | undefined;
|
|
2073
2074
|
} | undefined;
|
|
2074
2075
|
summarizer?: {
|
|
2075
2076
|
model?: string | undefined;
|
|
2076
|
-
providerOptions?: Record<string,
|
|
2077
|
+
providerOptions?: Record<string, any> | undefined;
|
|
2077
2078
|
} | undefined;
|
|
2078
2079
|
}>>>>>>;
|
|
2079
2080
|
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -5204,54 +5205,54 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5204
5205
|
models: z.ZodNullable<z.ZodType<{
|
|
5205
5206
|
base?: {
|
|
5206
5207
|
model?: string | undefined;
|
|
5207
|
-
providerOptions?: Record<string,
|
|
5208
|
+
providerOptions?: Record<string, any> | undefined;
|
|
5208
5209
|
} | undefined;
|
|
5209
5210
|
structuredOutput?: {
|
|
5210
5211
|
model?: string | undefined;
|
|
5211
|
-
providerOptions?: Record<string,
|
|
5212
|
+
providerOptions?: Record<string, any> | undefined;
|
|
5212
5213
|
} | undefined;
|
|
5213
5214
|
summarizer?: {
|
|
5214
5215
|
model?: string | undefined;
|
|
5215
|
-
providerOptions?: Record<string,
|
|
5216
|
+
providerOptions?: Record<string, any> | undefined;
|
|
5216
5217
|
} | undefined;
|
|
5217
5218
|
}, {
|
|
5218
5219
|
base?: {
|
|
5219
5220
|
model?: string | undefined;
|
|
5220
|
-
providerOptions?: Record<string,
|
|
5221
|
+
providerOptions?: Record<string, any> | undefined;
|
|
5221
5222
|
} | undefined;
|
|
5222
5223
|
structuredOutput?: {
|
|
5223
5224
|
model?: string | undefined;
|
|
5224
|
-
providerOptions?: Record<string,
|
|
5225
|
+
providerOptions?: Record<string, any> | undefined;
|
|
5225
5226
|
} | undefined;
|
|
5226
5227
|
summarizer?: {
|
|
5227
5228
|
model?: string | undefined;
|
|
5228
|
-
providerOptions?: Record<string,
|
|
5229
|
+
providerOptions?: Record<string, any> | undefined;
|
|
5229
5230
|
} | undefined;
|
|
5230
5231
|
}, z.core.$ZodTypeInternals<{
|
|
5231
5232
|
base?: {
|
|
5232
5233
|
model?: string | undefined;
|
|
5233
|
-
providerOptions?: Record<string,
|
|
5234
|
+
providerOptions?: Record<string, any> | undefined;
|
|
5234
5235
|
} | undefined;
|
|
5235
5236
|
structuredOutput?: {
|
|
5236
5237
|
model?: string | undefined;
|
|
5237
|
-
providerOptions?: Record<string,
|
|
5238
|
+
providerOptions?: Record<string, any> | undefined;
|
|
5238
5239
|
} | undefined;
|
|
5239
5240
|
summarizer?: {
|
|
5240
5241
|
model?: string | undefined;
|
|
5241
|
-
providerOptions?: Record<string,
|
|
5242
|
+
providerOptions?: Record<string, any> | undefined;
|
|
5242
5243
|
} | undefined;
|
|
5243
5244
|
}, {
|
|
5244
5245
|
base?: {
|
|
5245
5246
|
model?: string | undefined;
|
|
5246
|
-
providerOptions?: Record<string,
|
|
5247
|
+
providerOptions?: Record<string, any> | undefined;
|
|
5247
5248
|
} | undefined;
|
|
5248
5249
|
structuredOutput?: {
|
|
5249
5250
|
model?: string | undefined;
|
|
5250
|
-
providerOptions?: Record<string,
|
|
5251
|
+
providerOptions?: Record<string, any> | undefined;
|
|
5251
5252
|
} | undefined;
|
|
5252
5253
|
summarizer?: {
|
|
5253
5254
|
model?: string | undefined;
|
|
5254
|
-
providerOptions?: Record<string,
|
|
5255
|
+
providerOptions?: Record<string, any> | undefined;
|
|
5255
5256
|
} | undefined;
|
|
5256
5257
|
}>>>;
|
|
5257
5258
|
stopWhen: z.ZodNullable<z.ZodType<{
|
|
@@ -7254,15 +7255,15 @@ declare const FullGraphAgentInsertSchema: z.ZodObject<{
|
|
|
7254
7255
|
models: z.ZodOptional<z.ZodObject<{
|
|
7255
7256
|
base: z.ZodOptional<z.ZodObject<{
|
|
7256
7257
|
model: z.ZodOptional<z.ZodString>;
|
|
7257
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7258
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7258
7259
|
}, z.core.$strip>>;
|
|
7259
7260
|
structuredOutput: z.ZodOptional<z.ZodObject<{
|
|
7260
7261
|
model: z.ZodOptional<z.ZodString>;
|
|
7261
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7262
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7262
7263
|
}, z.core.$strip>>;
|
|
7263
7264
|
summarizer: z.ZodOptional<z.ZodObject<{
|
|
7264
7265
|
model: z.ZodOptional<z.ZodString>;
|
|
7265
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7266
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7266
7267
|
}, z.core.$strip>>;
|
|
7267
7268
|
}, z.core.$strip>>;
|
|
7268
7269
|
stopWhen: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -7305,15 +7306,15 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
7305
7306
|
models: z.ZodOptional<z.ZodObject<{
|
|
7306
7307
|
base: z.ZodOptional<z.ZodObject<{
|
|
7307
7308
|
model: z.ZodOptional<z.ZodString>;
|
|
7308
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7309
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7309
7310
|
}, z.core.$strip>>;
|
|
7310
7311
|
structuredOutput: z.ZodOptional<z.ZodObject<{
|
|
7311
7312
|
model: z.ZodOptional<z.ZodString>;
|
|
7312
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7313
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7313
7314
|
}, z.core.$strip>>;
|
|
7314
7315
|
summarizer: z.ZodOptional<z.ZodObject<{
|
|
7315
7316
|
model: z.ZodOptional<z.ZodString>;
|
|
7316
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7317
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7317
7318
|
}, z.core.$strip>>;
|
|
7318
7319
|
}, z.core.$strip>>;
|
|
7319
7320
|
stopWhen: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -7372,15 +7373,15 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
7372
7373
|
models: z.ZodOptional<z.ZodObject<{
|
|
7373
7374
|
base: z.ZodOptional<z.ZodObject<{
|
|
7374
7375
|
model: z.ZodOptional<z.ZodString>;
|
|
7375
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7376
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7376
7377
|
}, z.core.$strip>>;
|
|
7377
7378
|
structuredOutput: z.ZodOptional<z.ZodObject<{
|
|
7378
7379
|
model: z.ZodOptional<z.ZodString>;
|
|
7379
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7380
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7380
7381
|
}, z.core.$strip>>;
|
|
7381
7382
|
summarizer: z.ZodOptional<z.ZodObject<{
|
|
7382
7383
|
model: z.ZodOptional<z.ZodString>;
|
|
7383
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7384
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7384
7385
|
}, z.core.$strip>>;
|
|
7385
7386
|
}, z.core.$strip>>;
|
|
7386
7387
|
stopWhen: z.ZodOptional<z.ZodObject<{
|
|
@@ -7407,15 +7408,15 @@ declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
7407
7408
|
models: z.ZodOptional<z.ZodObject<{
|
|
7408
7409
|
base: z.ZodOptional<z.ZodObject<{
|
|
7409
7410
|
model: z.ZodOptional<z.ZodString>;
|
|
7410
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7411
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7411
7412
|
}, z.core.$strip>>;
|
|
7412
7413
|
structuredOutput: z.ZodOptional<z.ZodObject<{
|
|
7413
7414
|
model: z.ZodOptional<z.ZodString>;
|
|
7414
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7415
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7415
7416
|
}, z.core.$strip>>;
|
|
7416
7417
|
summarizer: z.ZodOptional<z.ZodObject<{
|
|
7417
7418
|
model: z.ZodOptional<z.ZodString>;
|
|
7418
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7419
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7419
7420
|
}, z.core.$strip>>;
|
|
7420
7421
|
}, z.core.$strip>>;
|
|
7421
7422
|
stopWhen: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -7475,15 +7476,15 @@ declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
7475
7476
|
models: z.ZodOptional<z.ZodObject<{
|
|
7476
7477
|
base: z.ZodOptional<z.ZodObject<{
|
|
7477
7478
|
model: z.ZodOptional<z.ZodString>;
|
|
7478
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7479
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7479
7480
|
}, z.core.$strip>>;
|
|
7480
7481
|
structuredOutput: z.ZodOptional<z.ZodObject<{
|
|
7481
7482
|
model: z.ZodOptional<z.ZodString>;
|
|
7482
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7483
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7483
7484
|
}, z.core.$strip>>;
|
|
7484
7485
|
summarizer: z.ZodOptional<z.ZodObject<{
|
|
7485
7486
|
model: z.ZodOptional<z.ZodString>;
|
|
7486
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7487
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7487
7488
|
}, z.core.$strip>>;
|
|
7488
7489
|
}, z.core.$strip>>;
|
|
7489
7490
|
stopWhen: z.ZodOptional<z.ZodObject<{
|
|
@@ -7568,15 +7569,15 @@ declare const ProjectSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
7568
7569
|
data: {
|
|
7569
7570
|
base: {
|
|
7570
7571
|
model?: string | undefined;
|
|
7571
|
-
providerOptions?: Record<string,
|
|
7572
|
+
providerOptions?: Record<string, any> | undefined;
|
|
7572
7573
|
};
|
|
7573
7574
|
structuredOutput?: {
|
|
7574
7575
|
model?: string | undefined;
|
|
7575
|
-
providerOptions?: Record<string,
|
|
7576
|
+
providerOptions?: Record<string, any> | undefined;
|
|
7576
7577
|
} | undefined;
|
|
7577
7578
|
summarizer?: {
|
|
7578
7579
|
model?: string | undefined;
|
|
7579
|
-
providerOptions?: Record<string,
|
|
7580
|
+
providerOptions?: Record<string, any> | undefined;
|
|
7580
7581
|
} | undefined;
|
|
7581
7582
|
};
|
|
7582
7583
|
driverParam: string;
|
|
@@ -7593,15 +7594,15 @@ declare const ProjectSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
7593
7594
|
$type: {
|
|
7594
7595
|
base: {
|
|
7595
7596
|
model?: string | undefined;
|
|
7596
|
-
providerOptions?: Record<string,
|
|
7597
|
+
providerOptions?: Record<string, any> | undefined;
|
|
7597
7598
|
};
|
|
7598
7599
|
structuredOutput?: {
|
|
7599
7600
|
model?: string | undefined;
|
|
7600
|
-
providerOptions?: Record<string,
|
|
7601
|
+
providerOptions?: Record<string, any> | undefined;
|
|
7601
7602
|
} | undefined;
|
|
7602
7603
|
summarizer?: {
|
|
7603
7604
|
model?: string | undefined;
|
|
7604
|
-
providerOptions?: Record<string,
|
|
7605
|
+
providerOptions?: Record<string, any> | undefined;
|
|
7605
7606
|
} | undefined;
|
|
7606
7607
|
};
|
|
7607
7608
|
}>;
|
|
@@ -7715,15 +7716,15 @@ declare const ProjectInsertSchema: z.ZodObject<{
|
|
|
7715
7716
|
models: z.ZodObject<{
|
|
7716
7717
|
base: z.ZodObject<{
|
|
7717
7718
|
model: z.ZodOptional<z.ZodString>;
|
|
7718
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7719
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7719
7720
|
}, z.core.$strip>;
|
|
7720
7721
|
structuredOutput: z.ZodOptional<z.ZodObject<{
|
|
7721
7722
|
model: z.ZodOptional<z.ZodString>;
|
|
7722
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7723
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7723
7724
|
}, z.core.$strip>>;
|
|
7724
7725
|
summarizer: z.ZodOptional<z.ZodObject<{
|
|
7725
7726
|
model: z.ZodOptional<z.ZodString>;
|
|
7726
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7727
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7727
7728
|
}, z.core.$strip>>;
|
|
7728
7729
|
}, z.core.$strip>;
|
|
7729
7730
|
stopWhen: z.ZodOptional<z.ZodObject<{
|
|
@@ -7742,15 +7743,15 @@ declare const ProjectUpdateSchema: z.ZodObject<{
|
|
|
7742
7743
|
models: z.ZodOptional<z.ZodObject<{
|
|
7743
7744
|
base: z.ZodObject<{
|
|
7744
7745
|
model: z.ZodOptional<z.ZodString>;
|
|
7745
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7746
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7746
7747
|
}, z.core.$strip>;
|
|
7747
7748
|
structuredOutput: z.ZodOptional<z.ZodObject<{
|
|
7748
7749
|
model: z.ZodOptional<z.ZodString>;
|
|
7749
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7750
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7750
7751
|
}, z.core.$strip>>;
|
|
7751
7752
|
summarizer: z.ZodOptional<z.ZodObject<{
|
|
7752
7753
|
model: z.ZodOptional<z.ZodString>;
|
|
7753
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7754
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7754
7755
|
}, z.core.$strip>>;
|
|
7755
7756
|
}, z.core.$strip>>;
|
|
7756
7757
|
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -7770,54 +7771,54 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
7770
7771
|
models: z.ZodNullable<z.ZodType<{
|
|
7771
7772
|
base: {
|
|
7772
7773
|
model?: string | undefined;
|
|
7773
|
-
providerOptions?: Record<string,
|
|
7774
|
+
providerOptions?: Record<string, any> | undefined;
|
|
7774
7775
|
};
|
|
7775
7776
|
structuredOutput?: {
|
|
7776
7777
|
model?: string | undefined;
|
|
7777
|
-
providerOptions?: Record<string,
|
|
7778
|
+
providerOptions?: Record<string, any> | undefined;
|
|
7778
7779
|
} | undefined;
|
|
7779
7780
|
summarizer?: {
|
|
7780
7781
|
model?: string | undefined;
|
|
7781
|
-
providerOptions?: Record<string,
|
|
7782
|
+
providerOptions?: Record<string, any> | undefined;
|
|
7782
7783
|
} | undefined;
|
|
7783
7784
|
}, {
|
|
7784
7785
|
base: {
|
|
7785
7786
|
model?: string | undefined;
|
|
7786
|
-
providerOptions?: Record<string,
|
|
7787
|
+
providerOptions?: Record<string, any> | undefined;
|
|
7787
7788
|
};
|
|
7788
7789
|
structuredOutput?: {
|
|
7789
7790
|
model?: string | undefined;
|
|
7790
|
-
providerOptions?: Record<string,
|
|
7791
|
+
providerOptions?: Record<string, any> | undefined;
|
|
7791
7792
|
} | undefined;
|
|
7792
7793
|
summarizer?: {
|
|
7793
7794
|
model?: string | undefined;
|
|
7794
|
-
providerOptions?: Record<string,
|
|
7795
|
+
providerOptions?: Record<string, any> | undefined;
|
|
7795
7796
|
} | undefined;
|
|
7796
7797
|
}, z.core.$ZodTypeInternals<{
|
|
7797
7798
|
base: {
|
|
7798
7799
|
model?: string | undefined;
|
|
7799
|
-
providerOptions?: Record<string,
|
|
7800
|
+
providerOptions?: Record<string, any> | undefined;
|
|
7800
7801
|
};
|
|
7801
7802
|
structuredOutput?: {
|
|
7802
7803
|
model?: string | undefined;
|
|
7803
|
-
providerOptions?: Record<string,
|
|
7804
|
+
providerOptions?: Record<string, any> | undefined;
|
|
7804
7805
|
} | undefined;
|
|
7805
7806
|
summarizer?: {
|
|
7806
7807
|
model?: string | undefined;
|
|
7807
|
-
providerOptions?: Record<string,
|
|
7808
|
+
providerOptions?: Record<string, any> | undefined;
|
|
7808
7809
|
} | undefined;
|
|
7809
7810
|
}, {
|
|
7810
7811
|
base: {
|
|
7811
7812
|
model?: string | undefined;
|
|
7812
|
-
providerOptions?: Record<string,
|
|
7813
|
+
providerOptions?: Record<string, any> | undefined;
|
|
7813
7814
|
};
|
|
7814
7815
|
structuredOutput?: {
|
|
7815
7816
|
model?: string | undefined;
|
|
7816
|
-
providerOptions?: Record<string,
|
|
7817
|
+
providerOptions?: Record<string, any> | undefined;
|
|
7817
7818
|
} | undefined;
|
|
7818
7819
|
summarizer?: {
|
|
7819
7820
|
model?: string | undefined;
|
|
7820
|
-
providerOptions?: Record<string,
|
|
7821
|
+
providerOptions?: Record<string, any> | undefined;
|
|
7821
7822
|
} | undefined;
|
|
7822
7823
|
}>>>;
|
|
7823
7824
|
stopWhen: z.ZodNullable<z.ZodType<{
|
|
@@ -7844,15 +7845,15 @@ declare const ProjectApiInsertSchema: z.ZodObject<{
|
|
|
7844
7845
|
models: z.ZodObject<{
|
|
7845
7846
|
base: z.ZodObject<{
|
|
7846
7847
|
model: z.ZodOptional<z.ZodString>;
|
|
7847
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7848
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7848
7849
|
}, z.core.$strip>;
|
|
7849
7850
|
structuredOutput: z.ZodOptional<z.ZodObject<{
|
|
7850
7851
|
model: z.ZodOptional<z.ZodString>;
|
|
7851
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7852
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7852
7853
|
}, z.core.$strip>>;
|
|
7853
7854
|
summarizer: z.ZodOptional<z.ZodObject<{
|
|
7854
7855
|
model: z.ZodOptional<z.ZodString>;
|
|
7855
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7856
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7856
7857
|
}, z.core.$strip>>;
|
|
7857
7858
|
}, z.core.$strip>;
|
|
7858
7859
|
stopWhen: z.ZodOptional<z.ZodObject<{
|
|
@@ -7870,15 +7871,15 @@ declare const ProjectApiUpdateSchema: z.ZodObject<{
|
|
|
7870
7871
|
models: z.ZodOptional<z.ZodObject<{
|
|
7871
7872
|
base: z.ZodObject<{
|
|
7872
7873
|
model: z.ZodOptional<z.ZodString>;
|
|
7873
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7874
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7874
7875
|
}, z.core.$strip>;
|
|
7875
7876
|
structuredOutput: z.ZodOptional<z.ZodObject<{
|
|
7876
7877
|
model: z.ZodOptional<z.ZodString>;
|
|
7877
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7878
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7878
7879
|
}, z.core.$strip>>;
|
|
7879
7880
|
summarizer: z.ZodOptional<z.ZodObject<{
|
|
7880
7881
|
model: z.ZodOptional<z.ZodString>;
|
|
7881
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7882
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7882
7883
|
}, z.core.$strip>>;
|
|
7883
7884
|
}, z.core.$strip>>;
|
|
7884
7885
|
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -7896,15 +7897,15 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
7896
7897
|
models: z.ZodObject<{
|
|
7897
7898
|
base: z.ZodObject<{
|
|
7898
7899
|
model: z.ZodOptional<z.ZodString>;
|
|
7899
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7900
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7900
7901
|
}, z.core.$strip>;
|
|
7901
7902
|
structuredOutput: z.ZodOptional<z.ZodObject<{
|
|
7902
7903
|
model: z.ZodOptional<z.ZodString>;
|
|
7903
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7904
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7904
7905
|
}, z.core.$strip>>;
|
|
7905
7906
|
summarizer: z.ZodOptional<z.ZodObject<{
|
|
7906
7907
|
model: z.ZodOptional<z.ZodString>;
|
|
7907
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7908
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7908
7909
|
}, z.core.$strip>>;
|
|
7909
7910
|
}, z.core.$strip>;
|
|
7910
7911
|
stopWhen: z.ZodOptional<z.ZodObject<{
|
|
@@ -7930,15 +7931,15 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
7930
7931
|
models: z.ZodOptional<z.ZodObject<{
|
|
7931
7932
|
base: z.ZodOptional<z.ZodObject<{
|
|
7932
7933
|
model: z.ZodOptional<z.ZodString>;
|
|
7933
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7934
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7934
7935
|
}, z.core.$strip>>;
|
|
7935
7936
|
structuredOutput: z.ZodOptional<z.ZodObject<{
|
|
7936
7937
|
model: z.ZodOptional<z.ZodString>;
|
|
7937
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7938
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7938
7939
|
}, z.core.$strip>>;
|
|
7939
7940
|
summarizer: z.ZodOptional<z.ZodObject<{
|
|
7940
7941
|
model: z.ZodOptional<z.ZodString>;
|
|
7941
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
7942
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7942
7943
|
}, z.core.$strip>>;
|
|
7943
7944
|
}, z.core.$strip>>;
|
|
7944
7945
|
stopWhen: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -7998,15 +7999,15 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
7998
7999
|
models: z.ZodOptional<z.ZodObject<{
|
|
7999
8000
|
base: z.ZodOptional<z.ZodObject<{
|
|
8000
8001
|
model: z.ZodOptional<z.ZodString>;
|
|
8001
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
8002
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8002
8003
|
}, z.core.$strip>>;
|
|
8003
8004
|
structuredOutput: z.ZodOptional<z.ZodObject<{
|
|
8004
8005
|
model: z.ZodOptional<z.ZodString>;
|
|
8005
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
8006
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8006
8007
|
}, z.core.$strip>>;
|
|
8007
8008
|
summarizer: z.ZodOptional<z.ZodObject<{
|
|
8008
8009
|
model: z.ZodOptional<z.ZodString>;
|
|
8009
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
8010
|
+
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8010
8011
|
}, z.core.$strip>>;
|
|
8011
8012
|
}, z.core.$strip>>;
|
|
8012
8013
|
stopWhen: z.ZodOptional<z.ZodObject<{
|
|
@@ -8291,10 +8292,6 @@ type MessageRole = 'user' | 'agent' | 'system';
|
|
|
8291
8292
|
type MessageMode = 'full' | 'scoped' | 'none';
|
|
8292
8293
|
type Models = z$1.infer<typeof ModelSchema>;
|
|
8293
8294
|
type ProjectModels = z$1.infer<typeof ProjectModelSchema>;
|
|
8294
|
-
type ModelSettings = {
|
|
8295
|
-
model?: string;
|
|
8296
|
-
providerOptions?: Record<string, unknown>;
|
|
8297
|
-
};
|
|
8298
8295
|
type StatusUpdateSettings = z$1.infer<typeof StatusUpdateSchema>;
|
|
8299
8296
|
type StatusComponent = z$1.infer<typeof StatusComponentSchema>;
|
|
8300
8297
|
type PaginationConfig = {
|
|
@@ -8503,4 +8500,4 @@ interface ExecutionContext {
|
|
|
8503
8500
|
agentId?: string;
|
|
8504
8501
|
}
|
|
8505
8502
|
|
|
8506
|
-
export { type CredentialReferenceInsert as $, ApiKeyApiUpdateSchema as A, type AgentSelect as B, type ConversationHistoryConfig as C, type ApiKeySelect as D, type ExternalAgentRelationInsert as E, FullGraphAgentInsertSchema as F, GraphStopWhenSchema as G, type ApiKeyInsert as H, type ApiKeyUpdate as I, type CreateApiKeyParams as J, type ApiKeyCreateResult as K, type ArtifactComponentSelect as L, MCPTransportType as M, type ArtifactComponentInsert as N, type ArtifactComponentUpdate as O, type Part as P, type ContextCacheSelect as Q, type ContextCacheInsert as R, StopWhenSchema as S, type TaskMetadataConfig as T, type ContextConfigInsert as U, type ContextConfigUpdate as V, type ConversationSelect as W, type ConversationInsert as X, type ConversationUpdate as Y, type CredentialReferenceSelect as Z, type ToolSelect as _, AgentStopWhenSchema as a, type InvalidAgentResponseError as a$, type CredentialReferenceUpdate as a0, type DataComponentSelect as a1, type DataComponentInsert as a2, type DataComponentUpdate as a3, type ExternalAgentInsert as a4, type ExternalAgentSelect as a5, type ExternalAgentUpdate as a6, type Artifact as a7, type LedgerArtifactSelect as a8, type MessageVisibility as a9, type SecuritySchemeBase as aA, type APIKeySecurityScheme as aB, type HTTPAuthSecurityScheme as aC, type OAuthFlows as aD, type AuthorizationCodeOAuthFlow as aE, type ClientCredentialsOAuthFlow as aF, type ImplicitOAuthFlow as aG, type PasswordOAuthFlow as aH, type OAuth2SecurityScheme as aI, type OpenIdConnectSecurityScheme as aJ, type SecurityScheme as aK, type AgentCard as aL, type Message as aM, type TaskStatus as aN, type Task as aO, type TaskStatusUpdateEvent as aP, type TaskArtifactUpdateEvent as aQ, type JSONParseError as aR, type InvalidRequestError as aS, type MethodNotFoundError as aT, type InvalidParamsError as aU, type InternalError as aV, type TaskNotFoundError as aW, type TaskNotCancelableError as aX, type PushNotificationNotSupportedError as aY, type UnsupportedOperationError as aZ, type ContentTypeNotSupportedError as a_, type MessageInsert as aa, type MessageUpdate as ab, type FullProjectDefinition as ac, type ProjectInfo as ad, type ProjectSelect as ae, type PaginationResult as af, type ProjectResourceCounts as ag, type ProjectInsert as ah, type ProjectUpdate as ai, type TaskInsert as aj, type TaskSelect as ak, type McpTool as al, type ToolInsert as am, type ToolUpdate as an, type ExecutionContext as ao, type PartBase as ap, type TextPart as aq, type FileBase as ar, type FileWithBytes as as, type FileWithUri as at, type FilePart as au, type DataPart as av, TaskState as aw, type AgentCapabilities as ax, type AgentProvider as ay, type AgentSkill as az, type StopWhen as b, type ConversationApiInsert as b$, type A2AError as b0, type PushNotificationAuthenticationInfo as b1, type PushNotificationConfig as b2, type TaskPushNotificationConfig as b3, type TaskIdParams as b4, type TaskQueryParams as b5, type MessageSendConfiguration as b6, type MessageSendParams as b7, type JSONRPCMessage as b8, type JSONRPCRequest as b9, type AgentApiSelect as bA, type AgentApiInsert as bB, type AgentApiUpdate as bC, type AgentRelationSelect as bD, type AgentRelationApiSelect as bE, type AgentRelationApiInsert as bF, type AgentRelationApiUpdate as bG, type AgentRelationQuery as bH, type ExternalAgentRelationApiInsert as bI, type AgentGraphSelect as bJ, type AgentGraphApiSelect as bK, type AgentGraphApiInsert as bL, type AgentGraphApiUpdate as bM, type TaskUpdate as bN, type TaskApiSelect as bO, type TaskApiInsert as bP, type TaskApiUpdate as bQ, type TaskRelationSelect as bR, type TaskRelationInsert as bS, type TaskRelationUpdate as bT, type TaskRelationApiSelect as bU, type TaskRelationApiInsert as bV, type TaskRelationApiUpdate as bW, type ToolApiSelect as bX, type ToolApiInsert as bY, type ToolApiUpdate as bZ, type ConversationApiSelect as b_, type JSONRPCError as ba, type JSONRPCResult as bb, type JSONRPCErrorResponse as bc, type SendMessageRequest as bd, type SendStreamingMessageRequest as be, type GetTaskRequest as bf, type CancelTaskRequest as bg, type SetTaskPushNotificationConfigRequest as bh, type GetTaskPushNotificationConfigRequest as bi, type TaskResubscriptionRequest as bj, type SendMessageSuccessResponse as bk, type SendMessageResponse as bl, type SendStreamingMessageSuccessResponse as bm, type SendStreamingMessageResponse as bn, type GetTaskSuccessResponse as bo, type GetTaskResponse as bp, type CancelTaskSuccessResponse as bq, type CancelTaskResponse as br, type SetTaskPushNotificationConfigSuccessResponse as bs, type SetTaskPushNotificationConfigResponse as bt, type GetTaskPushNotificationConfigSuccessResponse as bu, type GetTaskPushNotificationConfigResponse as bv, type A2ARequest as bw, type A2AResponse as bx, type MessagePart as by, type TaskArtifact as bz, type GraphStopWhen as c, type MessageRole as c$, type ConversationApiUpdate as c0, type MessageSelect as c1, type MessageApiSelect as c2, type MessageApiInsert as c3, type MessageApiUpdate as c4, type ContextConfigApiSelect as c5, type ContextConfigApiInsert as c6, type ContextConfigApiUpdate as c7, type FetchDefinition as c8, type FetchConfig as c9, type ApiKeyApiSelect as cA, type ApiKeyApiInsert as cB, type ApiKeyApiUpdate as cC, type ApiKeyApiCreationResponse as cD, type CredentialReferenceApiSelect as cE, type CredentialReferenceApiUpdate as cF, type AgentToolRelationSelect as cG, type AgentToolRelationInsert as cH, type AgentToolRelationApiSelect as cI, type AgentToolRelationApiInsert as cJ, type AgentToolRelationApiUpdate as cK, type LedgerArtifactInsert as cL, type LedgerArtifactUpdate as cM, type LedgerArtifactApiSelect as cN, type LedgerArtifactApiInsert as cO, type LedgerArtifactApiUpdate as cP, type FullGraphAgentInsert as cQ, type CanUseItem as cR, type InternalAgentDefinition as cS, type AgentDefinition as cT, type ToolDefinition as cU, type ProjectApiSelect as cV, type ProjectApiInsert as cW, type ProjectApiUpdate as cX, type Pagination as cY, type SummaryEvent as cZ, type MessageType as c_, type ContextCacheUpdate as ca, type ContextCacheApiSelect as cb, type ContextCacheApiInsert as cc, type ContextCacheApiUpdate as cd, type DataComponentApiSelect as ce, type DataComponentApiInsert as cf, type DataComponentApiUpdate as cg, type AgentDataComponentSelect as ch, type AgentDataComponentInsert as ci, type AgentDataComponentUpdate as cj, type AgentDataComponentApiSelect as ck, type AgentDataComponentApiInsert as cl, type AgentDataComponentApiUpdate as cm, type ArtifactComponentApiSelect as cn, type ArtifactComponentApiInsert as co, type ArtifactComponentApiUpdate as cp, type AgentArtifactComponentSelect as cq, type AgentArtifactComponentInsert as cr, type AgentArtifactComponentUpdate as cs, type AgentArtifactComponentApiSelect as ct, type AgentArtifactComponentApiInsert as cu, type AgentArtifactComponentApiUpdate as cv, type ExternalAgentApiSelect as cw, type ExternalAgentApiInsert as cx, type ExternalAgentApiUpdate as cy, type AllAgentSelect as cz, type AgentStopWhen as d, ConversationSelectSchema as d$, type MessageMode as d0, type Models as d1, type ProjectModels as d2, type ModelSettings as d3, type StatusUpdateSettings as d4, type StatusComponent as d5, type ConversationScopeOptions as d6, type AgentConversationHistoryConfig as d7, type ContextCacheEntry as d8, type McpAuthType as d9, AgentRelationApiUpdateSchema as dA, AgentRelationQuerySchema as dB, ExternalAgentRelationInsertSchema as dC, ExternalAgentRelationApiInsertSchema as dD, AgentGraphSelectSchema as dE, AgentGraphInsertSchema as dF, AgentGraphUpdateSchema as dG, AgentGraphApiSelectSchema as dH, AgentGraphApiInsertSchema as dI, AgentGraphApiUpdateSchema as dJ, TaskSelectSchema as dK, TaskInsertSchema as dL, TaskUpdateSchema as dM, TaskApiSelectSchema as dN, TaskApiInsertSchema as dO, TaskApiUpdateSchema as dP, TaskRelationSelectSchema as dQ, TaskRelationInsertSchema as dR, TaskRelationUpdateSchema as dS, TaskRelationApiSelectSchema as dT, TaskRelationApiInsertSchema as dU, TaskRelationApiUpdateSchema as dV, McpTransportConfigSchema as dW, ToolStatusSchema as dX, McpToolDefinitionSchema as dY, ToolSelectSchema as dZ, ToolInsertSchema as d_, type McpServerAuth as da, type McpTransportConfig as db, type McpServerCapabilities as dc, type McpToolDefinition as dd, TOOL_STATUS_VALUES as de, VALID_RELATION_TYPES as df, MCPServerType as dg, MIN_ID_LENGTH as dh, MAX_ID_LENGTH as di, URL_SAFE_ID_PATTERN as dj, resourceIdSchema as dk, ModelSettingsSchema as dl, ModelSchema as dm, ProjectModelSchema as dn, AgentSelectSchema as dp, AgentInsertSchema as dq, AgentUpdateSchema as dr, AgentApiSelectSchema as ds, AgentApiInsertSchema as dt, AgentApiUpdateSchema as du, AgentRelationSelectSchema as dv, AgentRelationInsertSchema as dw, AgentRelationUpdateSchema as dx, AgentRelationApiSelectSchema as dy, AgentRelationApiInsertSchema as dz, CredentialStoreType as e, ToolUpdateSchema as e$, ConversationInsertSchema as e0, ConversationUpdateSchema as e1, ConversationApiSelectSchema as e2, ConversationApiInsertSchema as e3, ConversationApiUpdateSchema as e4, MessageSelectSchema as e5, MessageInsertSchema as e6, MessageUpdateSchema as e7, MessageApiSelectSchema as e8, MessageApiInsertSchema as e9, AgentArtifactComponentSelectSchema as eA, AgentArtifactComponentInsertSchema as eB, AgentArtifactComponentUpdateSchema as eC, AgentArtifactComponentApiSelectSchema as eD, AgentArtifactComponentApiInsertSchema as eE, AgentArtifactComponentApiUpdateSchema as eF, ExternalAgentSelectSchema as eG, ExternalAgentInsertSchema as eH, ExternalAgentUpdateSchema as eI, ExternalAgentApiSelectSchema as eJ, ExternalAgentApiInsertSchema as eK, ExternalAgentApiUpdateSchema as eL, AllAgentSchema as eM, ApiKeySelectSchema as eN, ApiKeyInsertSchema as eO, ApiKeyUpdateSchema as eP, ApiKeyApiSelectSchema as eQ, ApiKeyApiCreationResponseSchema as eR, ApiKeyApiInsertSchema as eS, CredentialReferenceSelectSchema as eT, CredentialReferenceInsertSchema as eU, CredentialReferenceUpdateSchema as eV, CredentialReferenceApiSelectSchema as eW, CredentialReferenceApiInsertSchema as eX, CredentialReferenceApiUpdateSchema as eY, McpToolSchema as eZ, MCPToolConfigSchema as e_, MessageApiUpdateSchema as ea, ContextCacheSelectSchema as eb, ContextCacheInsertSchema as ec, ContextCacheUpdateSchema as ed, ContextCacheApiSelectSchema as ee, ContextCacheApiInsertSchema as ef, ContextCacheApiUpdateSchema as eg, DataComponentSelectSchema as eh, DataComponentInsertSchema as ei, DataComponentBaseSchema as ej, DataComponentUpdateSchema as ek, DataComponentApiSelectSchema as el, DataComponentApiInsertSchema as em, DataComponentApiUpdateSchema as en, AgentDataComponentSelectSchema as eo, AgentDataComponentInsertSchema as ep, AgentDataComponentUpdateSchema as eq, AgentDataComponentApiSelectSchema as er, AgentDataComponentApiInsertSchema as es, AgentDataComponentApiUpdateSchema as et, ArtifactComponentSelectSchema as eu, ArtifactComponentInsertSchema as ev, ArtifactComponentUpdateSchema as ew, ArtifactComponentApiSelectSchema as ex, ArtifactComponentApiInsertSchema as ey, ArtifactComponentApiUpdateSchema as ez, type ContextFetchDefinition as f, ToolApiSelectSchema as f0, ToolApiInsertSchema as f1, ToolApiUpdateSchema as f2, FetchConfigSchema as f3, FetchDefinitionSchema as f4, ContextConfigSelectSchema as f5, ContextConfigInsertSchema as f6, ContextConfigUpdateSchema as f7, ContextConfigApiSelectSchema as f8, ContextConfigApiInsertSchema as f9, ProjectUpdateSchema as fA, ProjectApiSelectSchema as fB, ProjectApiInsertSchema as fC, ProjectApiUpdateSchema as fD, FullProjectDefinitionSchema as fE, HeadersScopeSchema as fF, TenantParamsSchema as fG, TenantProjectParamsSchema as fH, TenantProjectGraphParamsSchema as fI, TenantProjectGraphIdParamsSchema as fJ, TenantProjectIdParamsSchema as fK, TenantIdParamsSchema as fL, IdParamsSchema as fM, PaginationQueryParamsSchema as fN, ContextConfigApiUpdateSchema as fa, AgentToolRelationSelectSchema as fb, AgentToolRelationInsertSchema as fc, AgentToolRelationUpdateSchema as fd, AgentToolRelationApiSelectSchema as fe, AgentToolRelationApiInsertSchema as ff, AgentToolRelationApiUpdateSchema as fg, LedgerArtifactSelectSchema as fh, LedgerArtifactInsertSchema as fi, LedgerArtifactUpdateSchema as fj, LedgerArtifactApiSelectSchema as fk, LedgerArtifactApiInsertSchema as fl, LedgerArtifactApiUpdateSchema as fm, StatusComponentSchema as fn, StatusUpdateSchema as fo, CanUseItemSchema as fp, FullGraphDefinitionSchema as fq, GraphWithinContextOfProjectSchema as fr, PaginationSchema as fs, ListResponseSchema as ft, SingleResponseSchema as fu, ErrorResponseSchema as fv, ExistsResponseSchema as fw, RemovedResponseSchema as fx, ProjectSelectSchema as fy, ProjectInsertSchema as fz, type ToolMcpConfig as g, type ToolServerCapabilities as h, type ConversationMetadata as i, type MessageContent as j, type MessageMetadata as k, type CredentialReferenceApiInsert as l, type ContextConfigSelect as m, type MCPToolConfig as n, type GraphScopeConfig as o, type ProjectScopeConfig as p, type PaginationConfig as q, type AgentGraphInsert as r, type AgentGraphUpdate as s, type FullGraphDefinition as t, type AgentScopeConfig as u, type AgentRelationInsert as v, type AgentRelationUpdate as w, type AgentToolRelationUpdate as x, type AgentInsert as y, type AgentUpdate as z };
|
|
8503
|
+
export { type CredentialReferenceSelect as $, ApiKeyApiUpdateSchema as A, type AgentInsert as B, type ConversationHistoryConfig as C, type AgentUpdate as D, type ExternalAgentRelationInsert as E, FullGraphAgentInsertSchema as F, GraphStopWhenSchema as G, type AgentSelect as H, type ApiKeySelect as I, type ApiKeyInsert as J, type ApiKeyUpdate as K, type CreateApiKeyParams as L, ModelSettingsSchema as M, type ApiKeyCreateResult as N, type ArtifactComponentSelect as O, type Part as P, type ArtifactComponentInsert as Q, type ArtifactComponentUpdate as R, StopWhenSchema as S, type TaskMetadataConfig as T, type ContextCacheSelect as U, type ContextCacheInsert as V, type ContextConfigInsert as W, type ContextConfigUpdate as X, type ConversationSelect as Y, type ConversationInsert as Z, type ConversationUpdate as _, AgentStopWhenSchema as a, type UnsupportedOperationError as a$, type ToolSelect as a0, type CredentialReferenceInsert as a1, type CredentialReferenceUpdate as a2, type DataComponentSelect as a3, type DataComponentInsert as a4, type DataComponentUpdate as a5, type ExternalAgentInsert as a6, type ExternalAgentSelect as a7, type ExternalAgentUpdate as a8, type Artifact as a9, type AgentProvider as aA, type AgentSkill as aB, type SecuritySchemeBase as aC, type APIKeySecurityScheme as aD, type HTTPAuthSecurityScheme as aE, type OAuthFlows as aF, type AuthorizationCodeOAuthFlow as aG, type ClientCredentialsOAuthFlow as aH, type ImplicitOAuthFlow as aI, type PasswordOAuthFlow as aJ, type OAuth2SecurityScheme as aK, type OpenIdConnectSecurityScheme as aL, type SecurityScheme as aM, type AgentCard as aN, type Message as aO, type TaskStatus as aP, type Task as aQ, type TaskStatusUpdateEvent as aR, type TaskArtifactUpdateEvent as aS, type JSONParseError as aT, type InvalidRequestError as aU, type MethodNotFoundError as aV, type InvalidParamsError as aW, type InternalError as aX, type TaskNotFoundError as aY, type TaskNotCancelableError as aZ, type PushNotificationNotSupportedError as a_, type LedgerArtifactSelect as aa, type MessageVisibility as ab, type MessageInsert as ac, type MessageUpdate as ad, type FullProjectDefinition as ae, type ProjectInfo as af, type ProjectSelect as ag, type PaginationResult as ah, type ProjectResourceCounts as ai, type ProjectInsert as aj, type ProjectUpdate as ak, type TaskInsert as al, type TaskSelect as am, type McpTool as an, type ToolInsert as ao, type ToolUpdate as ap, type ExecutionContext as aq, type PartBase as ar, type TextPart as as, type FileBase as at, type FileWithBytes as au, type FileWithUri as av, type FilePart as aw, type DataPart as ax, TaskState as ay, type AgentCapabilities as az, type StopWhen as b, type ToolApiUpdate as b$, type ContentTypeNotSupportedError as b0, type InvalidAgentResponseError as b1, type A2AError as b2, type PushNotificationAuthenticationInfo as b3, type PushNotificationConfig as b4, type TaskPushNotificationConfig as b5, type TaskIdParams as b6, type TaskQueryParams as b7, type MessageSendConfiguration as b8, type MessageSendParams as b9, type MessagePart as bA, type TaskArtifact as bB, type AgentApiSelect as bC, type AgentApiInsert as bD, type AgentApiUpdate as bE, type AgentRelationSelect as bF, type AgentRelationApiSelect as bG, type AgentRelationApiInsert as bH, type AgentRelationApiUpdate as bI, type AgentRelationQuery as bJ, type ExternalAgentRelationApiInsert as bK, type AgentGraphSelect as bL, type AgentGraphApiSelect as bM, type AgentGraphApiInsert as bN, type AgentGraphApiUpdate as bO, type TaskUpdate as bP, type TaskApiSelect as bQ, type TaskApiInsert as bR, type TaskApiUpdate as bS, type TaskRelationSelect as bT, type TaskRelationInsert as bU, type TaskRelationUpdate as bV, type TaskRelationApiSelect as bW, type TaskRelationApiInsert as bX, type TaskRelationApiUpdate as bY, type ToolApiSelect as bZ, type ToolApiInsert as b_, type JSONRPCMessage as ba, type JSONRPCRequest as bb, type JSONRPCError as bc, type JSONRPCResult as bd, type JSONRPCErrorResponse as be, type SendMessageRequest as bf, type SendStreamingMessageRequest as bg, type GetTaskRequest as bh, type CancelTaskRequest as bi, type SetTaskPushNotificationConfigRequest as bj, type GetTaskPushNotificationConfigRequest as bk, type TaskResubscriptionRequest as bl, type SendMessageSuccessResponse as bm, type SendMessageResponse as bn, type SendStreamingMessageSuccessResponse as bo, type SendStreamingMessageResponse as bp, type GetTaskSuccessResponse as bq, type GetTaskResponse as br, type CancelTaskSuccessResponse as bs, type CancelTaskResponse as bt, type SetTaskPushNotificationConfigSuccessResponse as bu, type SetTaskPushNotificationConfigResponse as bv, type GetTaskPushNotificationConfigSuccessResponse as bw, type GetTaskPushNotificationConfigResponse as bx, type A2ARequest as by, type A2AResponse as bz, type GraphStopWhen as c, type SummaryEvent as c$, type ConversationApiSelect as c0, type ConversationApiInsert as c1, type ConversationApiUpdate as c2, type MessageSelect as c3, type MessageApiSelect as c4, type MessageApiInsert as c5, type MessageApiUpdate as c6, type ContextConfigApiSelect as c7, type ContextConfigApiInsert as c8, type ContextConfigApiUpdate as c9, type ExternalAgentApiUpdate as cA, type AllAgentSelect as cB, type ApiKeyApiSelect as cC, type ApiKeyApiInsert as cD, type ApiKeyApiUpdate as cE, type ApiKeyApiCreationResponse as cF, type CredentialReferenceApiSelect as cG, type CredentialReferenceApiUpdate as cH, type AgentToolRelationSelect as cI, type AgentToolRelationInsert as cJ, type AgentToolRelationApiSelect as cK, type AgentToolRelationApiInsert as cL, type AgentToolRelationApiUpdate as cM, type LedgerArtifactInsert as cN, type LedgerArtifactUpdate as cO, type LedgerArtifactApiSelect as cP, type LedgerArtifactApiInsert as cQ, type LedgerArtifactApiUpdate as cR, type FullGraphAgentInsert as cS, type CanUseItem as cT, type InternalAgentDefinition as cU, type AgentDefinition as cV, type ToolDefinition as cW, type ProjectApiSelect as cX, type ProjectApiInsert as cY, type ProjectApiUpdate as cZ, type Pagination as c_, type FetchDefinition as ca, type FetchConfig as cb, type ContextCacheUpdate as cc, type ContextCacheApiSelect as cd, type ContextCacheApiInsert as ce, type ContextCacheApiUpdate as cf, type DataComponentApiSelect as cg, type DataComponentApiInsert as ch, type DataComponentApiUpdate as ci, type AgentDataComponentSelect as cj, type AgentDataComponentInsert as ck, type AgentDataComponentUpdate as cl, type AgentDataComponentApiSelect as cm, type AgentDataComponentApiInsert as cn, type AgentDataComponentApiUpdate as co, type ArtifactComponentApiSelect as cp, type ArtifactComponentApiInsert as cq, type ArtifactComponentApiUpdate as cr, type AgentArtifactComponentSelect as cs, type AgentArtifactComponentInsert as ct, type AgentArtifactComponentUpdate as cu, type AgentArtifactComponentApiSelect as cv, type AgentArtifactComponentApiInsert as cw, type AgentArtifactComponentApiUpdate as cx, type ExternalAgentApiSelect as cy, type ExternalAgentApiInsert as cz, type AgentStopWhen as d, ConversationSelectSchema as d$, type MessageType as d0, type MessageRole as d1, type MessageMode as d2, type Models as d3, type ProjectModels as d4, type StatusUpdateSettings as d5, type StatusComponent as d6, type ConversationScopeOptions as d7, type AgentConversationHistoryConfig as d8, type ContextCacheEntry as d9, AgentRelationApiUpdateSchema as dA, AgentRelationQuerySchema as dB, ExternalAgentRelationInsertSchema as dC, ExternalAgentRelationApiInsertSchema as dD, AgentGraphSelectSchema as dE, AgentGraphInsertSchema as dF, AgentGraphUpdateSchema as dG, AgentGraphApiSelectSchema as dH, AgentGraphApiInsertSchema as dI, AgentGraphApiUpdateSchema as dJ, TaskSelectSchema as dK, TaskInsertSchema as dL, TaskUpdateSchema as dM, TaskApiSelectSchema as dN, TaskApiInsertSchema as dO, TaskApiUpdateSchema as dP, TaskRelationSelectSchema as dQ, TaskRelationInsertSchema as dR, TaskRelationUpdateSchema as dS, TaskRelationApiSelectSchema as dT, TaskRelationApiInsertSchema as dU, TaskRelationApiUpdateSchema as dV, McpTransportConfigSchema as dW, ToolStatusSchema as dX, McpToolDefinitionSchema as dY, ToolSelectSchema as dZ, ToolInsertSchema as d_, type McpAuthType as da, type McpServerAuth as db, type McpTransportConfig as dc, type McpServerCapabilities as dd, type McpToolDefinition as de, TOOL_STATUS_VALUES as df, VALID_RELATION_TYPES as dg, MCPServerType as dh, MIN_ID_LENGTH as di, MAX_ID_LENGTH as dj, URL_SAFE_ID_PATTERN as dk, resourceIdSchema as dl, ModelSchema as dm, ProjectModelSchema as dn, AgentSelectSchema as dp, AgentInsertSchema as dq, AgentUpdateSchema as dr, AgentApiSelectSchema as ds, AgentApiInsertSchema as dt, AgentApiUpdateSchema as du, AgentRelationSelectSchema as dv, AgentRelationInsertSchema as dw, AgentRelationUpdateSchema as dx, AgentRelationApiSelectSchema as dy, AgentRelationApiInsertSchema as dz, type ModelSettings as e, ToolUpdateSchema as e$, ConversationInsertSchema as e0, ConversationUpdateSchema as e1, ConversationApiSelectSchema as e2, ConversationApiInsertSchema as e3, ConversationApiUpdateSchema as e4, MessageSelectSchema as e5, MessageInsertSchema as e6, MessageUpdateSchema as e7, MessageApiSelectSchema as e8, MessageApiInsertSchema as e9, AgentArtifactComponentSelectSchema as eA, AgentArtifactComponentInsertSchema as eB, AgentArtifactComponentUpdateSchema as eC, AgentArtifactComponentApiSelectSchema as eD, AgentArtifactComponentApiInsertSchema as eE, AgentArtifactComponentApiUpdateSchema as eF, ExternalAgentSelectSchema as eG, ExternalAgentInsertSchema as eH, ExternalAgentUpdateSchema as eI, ExternalAgentApiSelectSchema as eJ, ExternalAgentApiInsertSchema as eK, ExternalAgentApiUpdateSchema as eL, AllAgentSchema as eM, ApiKeySelectSchema as eN, ApiKeyInsertSchema as eO, ApiKeyUpdateSchema as eP, ApiKeyApiSelectSchema as eQ, ApiKeyApiCreationResponseSchema as eR, ApiKeyApiInsertSchema as eS, CredentialReferenceSelectSchema as eT, CredentialReferenceInsertSchema as eU, CredentialReferenceUpdateSchema as eV, CredentialReferenceApiSelectSchema as eW, CredentialReferenceApiInsertSchema as eX, CredentialReferenceApiUpdateSchema as eY, McpToolSchema as eZ, MCPToolConfigSchema as e_, MessageApiUpdateSchema as ea, ContextCacheSelectSchema as eb, ContextCacheInsertSchema as ec, ContextCacheUpdateSchema as ed, ContextCacheApiSelectSchema as ee, ContextCacheApiInsertSchema as ef, ContextCacheApiUpdateSchema as eg, DataComponentSelectSchema as eh, DataComponentInsertSchema as ei, DataComponentBaseSchema as ej, DataComponentUpdateSchema as ek, DataComponentApiSelectSchema as el, DataComponentApiInsertSchema as em, DataComponentApiUpdateSchema as en, AgentDataComponentSelectSchema as eo, AgentDataComponentInsertSchema as ep, AgentDataComponentUpdateSchema as eq, AgentDataComponentApiSelectSchema as er, AgentDataComponentApiInsertSchema as es, AgentDataComponentApiUpdateSchema as et, ArtifactComponentSelectSchema as eu, ArtifactComponentInsertSchema as ev, ArtifactComponentUpdateSchema as ew, ArtifactComponentApiSelectSchema as ex, ArtifactComponentApiInsertSchema as ey, ArtifactComponentApiUpdateSchema as ez, CredentialStoreType as f, ToolApiSelectSchema as f0, ToolApiInsertSchema as f1, ToolApiUpdateSchema as f2, FetchConfigSchema as f3, FetchDefinitionSchema as f4, ContextConfigSelectSchema as f5, ContextConfigInsertSchema as f6, ContextConfigUpdateSchema as f7, ContextConfigApiSelectSchema as f8, ContextConfigApiInsertSchema as f9, ProjectUpdateSchema as fA, ProjectApiSelectSchema as fB, ProjectApiInsertSchema as fC, ProjectApiUpdateSchema as fD, FullProjectDefinitionSchema as fE, HeadersScopeSchema as fF, TenantParamsSchema as fG, TenantProjectParamsSchema as fH, TenantProjectGraphParamsSchema as fI, TenantProjectGraphIdParamsSchema as fJ, TenantProjectIdParamsSchema as fK, TenantIdParamsSchema as fL, IdParamsSchema as fM, PaginationQueryParamsSchema as fN, ContextConfigApiUpdateSchema as fa, AgentToolRelationSelectSchema as fb, AgentToolRelationInsertSchema as fc, AgentToolRelationUpdateSchema as fd, AgentToolRelationApiSelectSchema as fe, AgentToolRelationApiInsertSchema as ff, AgentToolRelationApiUpdateSchema as fg, LedgerArtifactSelectSchema as fh, LedgerArtifactInsertSchema as fi, LedgerArtifactUpdateSchema as fj, LedgerArtifactApiSelectSchema as fk, LedgerArtifactApiInsertSchema as fl, LedgerArtifactApiUpdateSchema as fm, StatusComponentSchema as fn, StatusUpdateSchema as fo, CanUseItemSchema as fp, FullGraphDefinitionSchema as fq, GraphWithinContextOfProjectSchema as fr, PaginationSchema as fs, ListResponseSchema as ft, SingleResponseSchema as fu, ErrorResponseSchema as fv, ExistsResponseSchema as fw, RemovedResponseSchema as fx, ProjectSelectSchema as fy, ProjectInsertSchema as fz, MCPTransportType as g, type ContextFetchDefinition as h, type ToolMcpConfig as i, type ToolServerCapabilities as j, type ConversationMetadata as k, type MessageContent as l, type MessageMetadata as m, type CredentialReferenceApiInsert as n, type ContextConfigSelect as o, type MCPToolConfig as p, type GraphScopeConfig as q, type ProjectScopeConfig as r, type PaginationConfig as s, type AgentGraphInsert as t, type AgentGraphUpdate as u, type FullGraphDefinition as v, type AgentScopeConfig as w, type AgentRelationInsert as x, type AgentRelationUpdate as y, type AgentToolRelationUpdate as z };
|