@fairspec/agent 0.10.0 → 0.11.0
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/build/package.json +1 -1
- package/build/tools/data/validate.d.ts +24 -23
- package/build/tools/dataSchema/infer.d.ts +23 -22
- package/build/tools/dataSchema/validate.d.ts +4 -4
- package/build/tools/dataset/infer.d.ts +46 -44
- package/build/tools/dataset/validate.d.ts +24 -23
- package/build/tools/fileDialect/infer.d.ts +23 -22
- package/build/tools/table/query.d.ts +23 -22
- package/build/tools/table/validate.d.ts +24 -23
- package/build/tools/tableSchema/infer.d.ts +46 -44
- package/build/tools/tableSchema/validate.d.ts +4 -4
- package/package.json +2 -2
|
@@ -493,8 +493,9 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
493
493
|
title?: string | undefined;
|
|
494
494
|
description?: string | undefined;
|
|
495
495
|
required?: string[] | undefined;
|
|
496
|
+
allRequired?: boolean | undefined;
|
|
496
497
|
properties?: Record<string, {
|
|
497
|
-
type: "boolean";
|
|
498
|
+
type: "boolean" | ["boolean", "null"] | ["null", "boolean"];
|
|
498
499
|
title?: string | undefined;
|
|
499
500
|
description?: string | undefined;
|
|
500
501
|
rdfType?: string | undefined;
|
|
@@ -510,7 +511,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
510
511
|
trueValues?: string[] | undefined;
|
|
511
512
|
falseValues?: string[] | undefined;
|
|
512
513
|
} | {
|
|
513
|
-
type: "integer";
|
|
514
|
+
type: "integer" | ["integer", "null"] | ["null", "integer"];
|
|
514
515
|
title?: string | undefined;
|
|
515
516
|
description?: string | undefined;
|
|
516
517
|
rdfType?: string | undefined;
|
|
@@ -531,7 +532,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
531
532
|
withText?: boolean | undefined;
|
|
532
533
|
format?: "" | undefined;
|
|
533
534
|
} | {
|
|
534
|
-
type: "integer";
|
|
535
|
+
type: "integer" | ["integer", "null"] | ["null", "integer"];
|
|
535
536
|
format: "categorical";
|
|
536
537
|
title?: string | undefined;
|
|
537
538
|
description?: string | undefined;
|
|
@@ -557,7 +558,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
557
558
|
})[] | undefined;
|
|
558
559
|
withOrder?: boolean | undefined;
|
|
559
560
|
} | {
|
|
560
|
-
type: "number";
|
|
561
|
+
type: "number" | ["number", "null"] | ["null", "number"];
|
|
561
562
|
title?: string | undefined;
|
|
562
563
|
description?: string | undefined;
|
|
563
564
|
rdfType?: string | undefined;
|
|
@@ -579,7 +580,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
579
580
|
withText?: boolean | undefined;
|
|
580
581
|
format?: "" | undefined;
|
|
581
582
|
} | {
|
|
582
|
-
type: "string";
|
|
583
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
583
584
|
format: "list";
|
|
584
585
|
title?: string | undefined;
|
|
585
586
|
description?: string | undefined;
|
|
@@ -600,7 +601,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
600
601
|
minItems?: number | undefined;
|
|
601
602
|
maxItems?: number | undefined;
|
|
602
603
|
} | {
|
|
603
|
-
type: "string";
|
|
604
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
604
605
|
format: "base64";
|
|
605
606
|
title?: string | undefined;
|
|
606
607
|
description?: string | undefined;
|
|
@@ -617,7 +618,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
617
618
|
maxLength?: number | undefined;
|
|
618
619
|
pattern?: string | undefined;
|
|
619
620
|
} | {
|
|
620
|
-
type: "string";
|
|
621
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
621
622
|
format: "hex";
|
|
622
623
|
title?: string | undefined;
|
|
623
624
|
description?: string | undefined;
|
|
@@ -634,7 +635,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
634
635
|
maxLength?: number | undefined;
|
|
635
636
|
pattern?: string | undefined;
|
|
636
637
|
} | {
|
|
637
|
-
type: "string";
|
|
638
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
638
639
|
format: "email";
|
|
639
640
|
title?: string | undefined;
|
|
640
641
|
description?: string | undefined;
|
|
@@ -651,7 +652,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
651
652
|
maxLength?: number | undefined;
|
|
652
653
|
pattern?: string | undefined;
|
|
653
654
|
} | {
|
|
654
|
-
type: "string";
|
|
655
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
655
656
|
format: "url";
|
|
656
657
|
title?: string | undefined;
|
|
657
658
|
description?: string | undefined;
|
|
@@ -668,7 +669,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
668
669
|
maxLength?: number | undefined;
|
|
669
670
|
pattern?: string | undefined;
|
|
670
671
|
} | {
|
|
671
|
-
type: "string";
|
|
672
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
672
673
|
format: "date-time";
|
|
673
674
|
title?: string | undefined;
|
|
674
675
|
description?: string | undefined;
|
|
@@ -686,7 +687,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
686
687
|
pattern?: string | undefined;
|
|
687
688
|
temporalFormat?: string | undefined;
|
|
688
689
|
} | {
|
|
689
|
-
type: "string";
|
|
690
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
690
691
|
format: "date";
|
|
691
692
|
title?: string | undefined;
|
|
692
693
|
description?: string | undefined;
|
|
@@ -704,7 +705,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
704
705
|
pattern?: string | undefined;
|
|
705
706
|
temporalFormat?: string | undefined;
|
|
706
707
|
} | {
|
|
707
|
-
type: "string";
|
|
708
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
708
709
|
format: "time";
|
|
709
710
|
title?: string | undefined;
|
|
710
711
|
description?: string | undefined;
|
|
@@ -722,7 +723,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
722
723
|
pattern?: string | undefined;
|
|
723
724
|
temporalFormat?: string | undefined;
|
|
724
725
|
} | {
|
|
725
|
-
type: "string";
|
|
726
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
726
727
|
format: "duration";
|
|
727
728
|
title?: string | undefined;
|
|
728
729
|
description?: string | undefined;
|
|
@@ -739,7 +740,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
739
740
|
maxLength?: number | undefined;
|
|
740
741
|
pattern?: string | undefined;
|
|
741
742
|
} | {
|
|
742
|
-
type: "string";
|
|
743
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
743
744
|
format: "wkt";
|
|
744
745
|
title?: string | undefined;
|
|
745
746
|
description?: string | undefined;
|
|
@@ -756,7 +757,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
756
757
|
maxLength?: number | undefined;
|
|
757
758
|
pattern?: string | undefined;
|
|
758
759
|
} | {
|
|
759
|
-
type: "string";
|
|
760
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
760
761
|
format: "wkb";
|
|
761
762
|
title?: string | undefined;
|
|
762
763
|
description?: string | undefined;
|
|
@@ -773,7 +774,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
773
774
|
maxLength?: number | undefined;
|
|
774
775
|
pattern?: string | undefined;
|
|
775
776
|
} | {
|
|
776
|
-
type: "string";
|
|
777
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
777
778
|
title?: string | undefined;
|
|
778
779
|
description?: string | undefined;
|
|
779
780
|
rdfType?: string | undefined;
|
|
@@ -790,7 +791,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
790
791
|
pattern?: string | undefined;
|
|
791
792
|
format?: "" | undefined;
|
|
792
793
|
} | {
|
|
793
|
-
type: "string";
|
|
794
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
794
795
|
format: "categorical";
|
|
795
796
|
title?: string | undefined;
|
|
796
797
|
description?: string | undefined;
|
|
@@ -812,7 +813,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
812
813
|
})[] | undefined;
|
|
813
814
|
withOrder?: boolean | undefined;
|
|
814
815
|
} | {
|
|
815
|
-
type: "string";
|
|
816
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
816
817
|
format: "decimal";
|
|
817
818
|
title?: string | undefined;
|
|
818
819
|
description?: string | undefined;
|
|
@@ -837,7 +838,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
837
838
|
groupChar?: string | undefined;
|
|
838
839
|
withText?: boolean | undefined;
|
|
839
840
|
} | {
|
|
840
|
-
type: "array";
|
|
841
|
+
type: "array" | ["array", "null"] | ["null", "array"];
|
|
841
842
|
title?: string | undefined;
|
|
842
843
|
description?: string | undefined;
|
|
843
844
|
rdfType?: string | undefined;
|
|
@@ -867,7 +868,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
867
868
|
minItems?: number | undefined;
|
|
868
869
|
uniqueItems?: boolean | undefined;
|
|
869
870
|
} | {
|
|
870
|
-
type: "object";
|
|
871
|
+
type: "object" | ["object", "null"] | ["null", "object"];
|
|
871
872
|
format: "geojson";
|
|
872
873
|
title?: string | undefined;
|
|
873
874
|
description?: string | undefined;
|
|
@@ -898,7 +899,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
898
899
|
dependentSchemas?: unknown;
|
|
899
900
|
required?: unknown;
|
|
900
901
|
} | {
|
|
901
|
-
type: "object";
|
|
902
|
+
type: "object" | ["object", "null"] | ["null", "object"];
|
|
902
903
|
format: "topojson";
|
|
903
904
|
title?: string | undefined;
|
|
904
905
|
description?: string | undefined;
|
|
@@ -929,7 +930,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
929
930
|
dependentSchemas?: unknown;
|
|
930
931
|
required?: unknown;
|
|
931
932
|
} | {
|
|
932
|
-
type: "object";
|
|
933
|
+
type: "object" | ["object", "null"] | ["null", "object"];
|
|
933
934
|
title?: string | undefined;
|
|
934
935
|
description?: string | undefined;
|
|
935
936
|
rdfType?: string | undefined;
|
|
@@ -1486,8 +1487,9 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
1486
1487
|
title?: string | undefined;
|
|
1487
1488
|
description?: string | undefined;
|
|
1488
1489
|
required?: string[] | undefined;
|
|
1490
|
+
allRequired?: boolean | undefined;
|
|
1489
1491
|
properties?: Record<string, {
|
|
1490
|
-
type: "boolean";
|
|
1492
|
+
type: "boolean" | ["boolean", "null"] | ["null", "boolean"];
|
|
1491
1493
|
title?: string | undefined;
|
|
1492
1494
|
description?: string | undefined;
|
|
1493
1495
|
rdfType?: string | undefined;
|
|
@@ -1503,7 +1505,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
1503
1505
|
trueValues?: string[] | undefined;
|
|
1504
1506
|
falseValues?: string[] | undefined;
|
|
1505
1507
|
} | {
|
|
1506
|
-
type: "integer";
|
|
1508
|
+
type: "integer" | ["integer", "null"] | ["null", "integer"];
|
|
1507
1509
|
title?: string | undefined;
|
|
1508
1510
|
description?: string | undefined;
|
|
1509
1511
|
rdfType?: string | undefined;
|
|
@@ -1524,7 +1526,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
1524
1526
|
withText?: boolean | undefined;
|
|
1525
1527
|
format?: "" | undefined;
|
|
1526
1528
|
} | {
|
|
1527
|
-
type: "integer";
|
|
1529
|
+
type: "integer" | ["integer", "null"] | ["null", "integer"];
|
|
1528
1530
|
format: "categorical";
|
|
1529
1531
|
title?: string | undefined;
|
|
1530
1532
|
description?: string | undefined;
|
|
@@ -1550,7 +1552,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
1550
1552
|
})[] | undefined;
|
|
1551
1553
|
withOrder?: boolean | undefined;
|
|
1552
1554
|
} | {
|
|
1553
|
-
type: "number";
|
|
1555
|
+
type: "number" | ["number", "null"] | ["null", "number"];
|
|
1554
1556
|
title?: string | undefined;
|
|
1555
1557
|
description?: string | undefined;
|
|
1556
1558
|
rdfType?: string | undefined;
|
|
@@ -1572,7 +1574,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
1572
1574
|
withText?: boolean | undefined;
|
|
1573
1575
|
format?: "" | undefined;
|
|
1574
1576
|
} | {
|
|
1575
|
-
type: "string";
|
|
1577
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
1576
1578
|
format: "list";
|
|
1577
1579
|
title?: string | undefined;
|
|
1578
1580
|
description?: string | undefined;
|
|
@@ -1593,7 +1595,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
1593
1595
|
minItems?: number | undefined;
|
|
1594
1596
|
maxItems?: number | undefined;
|
|
1595
1597
|
} | {
|
|
1596
|
-
type: "string";
|
|
1598
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
1597
1599
|
format: "base64";
|
|
1598
1600
|
title?: string | undefined;
|
|
1599
1601
|
description?: string | undefined;
|
|
@@ -1610,7 +1612,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
1610
1612
|
maxLength?: number | undefined;
|
|
1611
1613
|
pattern?: string | undefined;
|
|
1612
1614
|
} | {
|
|
1613
|
-
type: "string";
|
|
1615
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
1614
1616
|
format: "hex";
|
|
1615
1617
|
title?: string | undefined;
|
|
1616
1618
|
description?: string | undefined;
|
|
@@ -1627,7 +1629,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
1627
1629
|
maxLength?: number | undefined;
|
|
1628
1630
|
pattern?: string | undefined;
|
|
1629
1631
|
} | {
|
|
1630
|
-
type: "string";
|
|
1632
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
1631
1633
|
format: "email";
|
|
1632
1634
|
title?: string | undefined;
|
|
1633
1635
|
description?: string | undefined;
|
|
@@ -1644,7 +1646,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
1644
1646
|
maxLength?: number | undefined;
|
|
1645
1647
|
pattern?: string | undefined;
|
|
1646
1648
|
} | {
|
|
1647
|
-
type: "string";
|
|
1649
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
1648
1650
|
format: "url";
|
|
1649
1651
|
title?: string | undefined;
|
|
1650
1652
|
description?: string | undefined;
|
|
@@ -1661,7 +1663,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
1661
1663
|
maxLength?: number | undefined;
|
|
1662
1664
|
pattern?: string | undefined;
|
|
1663
1665
|
} | {
|
|
1664
|
-
type: "string";
|
|
1666
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
1665
1667
|
format: "date-time";
|
|
1666
1668
|
title?: string | undefined;
|
|
1667
1669
|
description?: string | undefined;
|
|
@@ -1679,7 +1681,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
1679
1681
|
pattern?: string | undefined;
|
|
1680
1682
|
temporalFormat?: string | undefined;
|
|
1681
1683
|
} | {
|
|
1682
|
-
type: "string";
|
|
1684
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
1683
1685
|
format: "date";
|
|
1684
1686
|
title?: string | undefined;
|
|
1685
1687
|
description?: string | undefined;
|
|
@@ -1697,7 +1699,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
1697
1699
|
pattern?: string | undefined;
|
|
1698
1700
|
temporalFormat?: string | undefined;
|
|
1699
1701
|
} | {
|
|
1700
|
-
type: "string";
|
|
1702
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
1701
1703
|
format: "time";
|
|
1702
1704
|
title?: string | undefined;
|
|
1703
1705
|
description?: string | undefined;
|
|
@@ -1715,7 +1717,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
1715
1717
|
pattern?: string | undefined;
|
|
1716
1718
|
temporalFormat?: string | undefined;
|
|
1717
1719
|
} | {
|
|
1718
|
-
type: "string";
|
|
1720
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
1719
1721
|
format: "duration";
|
|
1720
1722
|
title?: string | undefined;
|
|
1721
1723
|
description?: string | undefined;
|
|
@@ -1732,7 +1734,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
1732
1734
|
maxLength?: number | undefined;
|
|
1733
1735
|
pattern?: string | undefined;
|
|
1734
1736
|
} | {
|
|
1735
|
-
type: "string";
|
|
1737
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
1736
1738
|
format: "wkt";
|
|
1737
1739
|
title?: string | undefined;
|
|
1738
1740
|
description?: string | undefined;
|
|
@@ -1749,7 +1751,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
1749
1751
|
maxLength?: number | undefined;
|
|
1750
1752
|
pattern?: string | undefined;
|
|
1751
1753
|
} | {
|
|
1752
|
-
type: "string";
|
|
1754
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
1753
1755
|
format: "wkb";
|
|
1754
1756
|
title?: string | undefined;
|
|
1755
1757
|
description?: string | undefined;
|
|
@@ -1766,7 +1768,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
1766
1768
|
maxLength?: number | undefined;
|
|
1767
1769
|
pattern?: string | undefined;
|
|
1768
1770
|
} | {
|
|
1769
|
-
type: "string";
|
|
1771
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
1770
1772
|
title?: string | undefined;
|
|
1771
1773
|
description?: string | undefined;
|
|
1772
1774
|
rdfType?: string | undefined;
|
|
@@ -1783,7 +1785,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
1783
1785
|
pattern?: string | undefined;
|
|
1784
1786
|
format?: "" | undefined;
|
|
1785
1787
|
} | {
|
|
1786
|
-
type: "string";
|
|
1788
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
1787
1789
|
format: "categorical";
|
|
1788
1790
|
title?: string | undefined;
|
|
1789
1791
|
description?: string | undefined;
|
|
@@ -1805,7 +1807,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
1805
1807
|
})[] | undefined;
|
|
1806
1808
|
withOrder?: boolean | undefined;
|
|
1807
1809
|
} | {
|
|
1808
|
-
type: "string";
|
|
1810
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
1809
1811
|
format: "decimal";
|
|
1810
1812
|
title?: string | undefined;
|
|
1811
1813
|
description?: string | undefined;
|
|
@@ -1830,7 +1832,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
1830
1832
|
groupChar?: string | undefined;
|
|
1831
1833
|
withText?: boolean | undefined;
|
|
1832
1834
|
} | {
|
|
1833
|
-
type: "array";
|
|
1835
|
+
type: "array" | ["array", "null"] | ["null", "array"];
|
|
1834
1836
|
title?: string | undefined;
|
|
1835
1837
|
description?: string | undefined;
|
|
1836
1838
|
rdfType?: string | undefined;
|
|
@@ -1860,7 +1862,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
1860
1862
|
minItems?: number | undefined;
|
|
1861
1863
|
uniqueItems?: boolean | undefined;
|
|
1862
1864
|
} | {
|
|
1863
|
-
type: "object";
|
|
1865
|
+
type: "object" | ["object", "null"] | ["null", "object"];
|
|
1864
1866
|
format: "geojson";
|
|
1865
1867
|
title?: string | undefined;
|
|
1866
1868
|
description?: string | undefined;
|
|
@@ -1891,7 +1893,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
1891
1893
|
dependentSchemas?: unknown;
|
|
1892
1894
|
required?: unknown;
|
|
1893
1895
|
} | {
|
|
1894
|
-
type: "object";
|
|
1896
|
+
type: "object" | ["object", "null"] | ["null", "object"];
|
|
1895
1897
|
format: "topojson";
|
|
1896
1898
|
title?: string | undefined;
|
|
1897
1899
|
description?: string | undefined;
|
|
@@ -1922,7 +1924,7 @@ export declare const inferDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
1922
1924
|
dependentSchemas?: unknown;
|
|
1923
1925
|
required?: unknown;
|
|
1924
1926
|
} | {
|
|
1925
|
-
type: "object";
|
|
1927
|
+
type: "object" | ["object", "null"] | ["null", "object"];
|
|
1926
1928
|
title?: string | undefined;
|
|
1927
1929
|
description?: string | undefined;
|
|
1928
1930
|
rdfType?: string | undefined;
|
|
@@ -493,8 +493,9 @@ export declare const validateDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
493
493
|
title?: string | undefined;
|
|
494
494
|
description?: string | undefined;
|
|
495
495
|
required?: string[] | undefined;
|
|
496
|
+
allRequired?: boolean | undefined;
|
|
496
497
|
properties?: Record<string, {
|
|
497
|
-
type: "boolean";
|
|
498
|
+
type: "boolean" | ["boolean", "null"] | ["null", "boolean"];
|
|
498
499
|
title?: string | undefined;
|
|
499
500
|
description?: string | undefined;
|
|
500
501
|
rdfType?: string | undefined;
|
|
@@ -510,7 +511,7 @@ export declare const validateDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
510
511
|
trueValues?: string[] | undefined;
|
|
511
512
|
falseValues?: string[] | undefined;
|
|
512
513
|
} | {
|
|
513
|
-
type: "integer";
|
|
514
|
+
type: "integer" | ["integer", "null"] | ["null", "integer"];
|
|
514
515
|
title?: string | undefined;
|
|
515
516
|
description?: string | undefined;
|
|
516
517
|
rdfType?: string | undefined;
|
|
@@ -531,7 +532,7 @@ export declare const validateDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
531
532
|
withText?: boolean | undefined;
|
|
532
533
|
format?: "" | undefined;
|
|
533
534
|
} | {
|
|
534
|
-
type: "integer";
|
|
535
|
+
type: "integer" | ["integer", "null"] | ["null", "integer"];
|
|
535
536
|
format: "categorical";
|
|
536
537
|
title?: string | undefined;
|
|
537
538
|
description?: string | undefined;
|
|
@@ -557,7 +558,7 @@ export declare const validateDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
557
558
|
})[] | undefined;
|
|
558
559
|
withOrder?: boolean | undefined;
|
|
559
560
|
} | {
|
|
560
|
-
type: "number";
|
|
561
|
+
type: "number" | ["number", "null"] | ["null", "number"];
|
|
561
562
|
title?: string | undefined;
|
|
562
563
|
description?: string | undefined;
|
|
563
564
|
rdfType?: string | undefined;
|
|
@@ -579,7 +580,7 @@ export declare const validateDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
579
580
|
withText?: boolean | undefined;
|
|
580
581
|
format?: "" | undefined;
|
|
581
582
|
} | {
|
|
582
|
-
type: "string";
|
|
583
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
583
584
|
format: "list";
|
|
584
585
|
title?: string | undefined;
|
|
585
586
|
description?: string | undefined;
|
|
@@ -600,7 +601,7 @@ export declare const validateDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
600
601
|
minItems?: number | undefined;
|
|
601
602
|
maxItems?: number | undefined;
|
|
602
603
|
} | {
|
|
603
|
-
type: "string";
|
|
604
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
604
605
|
format: "base64";
|
|
605
606
|
title?: string | undefined;
|
|
606
607
|
description?: string | undefined;
|
|
@@ -617,7 +618,7 @@ export declare const validateDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
617
618
|
maxLength?: number | undefined;
|
|
618
619
|
pattern?: string | undefined;
|
|
619
620
|
} | {
|
|
620
|
-
type: "string";
|
|
621
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
621
622
|
format: "hex";
|
|
622
623
|
title?: string | undefined;
|
|
623
624
|
description?: string | undefined;
|
|
@@ -634,7 +635,7 @@ export declare const validateDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
634
635
|
maxLength?: number | undefined;
|
|
635
636
|
pattern?: string | undefined;
|
|
636
637
|
} | {
|
|
637
|
-
type: "string";
|
|
638
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
638
639
|
format: "email";
|
|
639
640
|
title?: string | undefined;
|
|
640
641
|
description?: string | undefined;
|
|
@@ -651,7 +652,7 @@ export declare const validateDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
651
652
|
maxLength?: number | undefined;
|
|
652
653
|
pattern?: string | undefined;
|
|
653
654
|
} | {
|
|
654
|
-
type: "string";
|
|
655
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
655
656
|
format: "url";
|
|
656
657
|
title?: string | undefined;
|
|
657
658
|
description?: string | undefined;
|
|
@@ -668,7 +669,7 @@ export declare const validateDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
668
669
|
maxLength?: number | undefined;
|
|
669
670
|
pattern?: string | undefined;
|
|
670
671
|
} | {
|
|
671
|
-
type: "string";
|
|
672
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
672
673
|
format: "date-time";
|
|
673
674
|
title?: string | undefined;
|
|
674
675
|
description?: string | undefined;
|
|
@@ -686,7 +687,7 @@ export declare const validateDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
686
687
|
pattern?: string | undefined;
|
|
687
688
|
temporalFormat?: string | undefined;
|
|
688
689
|
} | {
|
|
689
|
-
type: "string";
|
|
690
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
690
691
|
format: "date";
|
|
691
692
|
title?: string | undefined;
|
|
692
693
|
description?: string | undefined;
|
|
@@ -704,7 +705,7 @@ export declare const validateDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
704
705
|
pattern?: string | undefined;
|
|
705
706
|
temporalFormat?: string | undefined;
|
|
706
707
|
} | {
|
|
707
|
-
type: "string";
|
|
708
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
708
709
|
format: "time";
|
|
709
710
|
title?: string | undefined;
|
|
710
711
|
description?: string | undefined;
|
|
@@ -722,7 +723,7 @@ export declare const validateDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
722
723
|
pattern?: string | undefined;
|
|
723
724
|
temporalFormat?: string | undefined;
|
|
724
725
|
} | {
|
|
725
|
-
type: "string";
|
|
726
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
726
727
|
format: "duration";
|
|
727
728
|
title?: string | undefined;
|
|
728
729
|
description?: string | undefined;
|
|
@@ -739,7 +740,7 @@ export declare const validateDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
739
740
|
maxLength?: number | undefined;
|
|
740
741
|
pattern?: string | undefined;
|
|
741
742
|
} | {
|
|
742
|
-
type: "string";
|
|
743
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
743
744
|
format: "wkt";
|
|
744
745
|
title?: string | undefined;
|
|
745
746
|
description?: string | undefined;
|
|
@@ -756,7 +757,7 @@ export declare const validateDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
756
757
|
maxLength?: number | undefined;
|
|
757
758
|
pattern?: string | undefined;
|
|
758
759
|
} | {
|
|
759
|
-
type: "string";
|
|
760
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
760
761
|
format: "wkb";
|
|
761
762
|
title?: string | undefined;
|
|
762
763
|
description?: string | undefined;
|
|
@@ -773,7 +774,7 @@ export declare const validateDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
773
774
|
maxLength?: number | undefined;
|
|
774
775
|
pattern?: string | undefined;
|
|
775
776
|
} | {
|
|
776
|
-
type: "string";
|
|
777
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
777
778
|
title?: string | undefined;
|
|
778
779
|
description?: string | undefined;
|
|
779
780
|
rdfType?: string | undefined;
|
|
@@ -790,7 +791,7 @@ export declare const validateDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
790
791
|
pattern?: string | undefined;
|
|
791
792
|
format?: "" | undefined;
|
|
792
793
|
} | {
|
|
793
|
-
type: "string";
|
|
794
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
794
795
|
format: "categorical";
|
|
795
796
|
title?: string | undefined;
|
|
796
797
|
description?: string | undefined;
|
|
@@ -812,7 +813,7 @@ export declare const validateDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
812
813
|
})[] | undefined;
|
|
813
814
|
withOrder?: boolean | undefined;
|
|
814
815
|
} | {
|
|
815
|
-
type: "string";
|
|
816
|
+
type: "string" | ["string", "null"] | ["null", "string"];
|
|
816
817
|
format: "decimal";
|
|
817
818
|
title?: string | undefined;
|
|
818
819
|
description?: string | undefined;
|
|
@@ -837,7 +838,7 @@ export declare const validateDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
837
838
|
groupChar?: string | undefined;
|
|
838
839
|
withText?: boolean | undefined;
|
|
839
840
|
} | {
|
|
840
|
-
type: "array";
|
|
841
|
+
type: "array" | ["array", "null"] | ["null", "array"];
|
|
841
842
|
title?: string | undefined;
|
|
842
843
|
description?: string | undefined;
|
|
843
844
|
rdfType?: string | undefined;
|
|
@@ -867,7 +868,7 @@ export declare const validateDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
867
868
|
minItems?: number | undefined;
|
|
868
869
|
uniqueItems?: boolean | undefined;
|
|
869
870
|
} | {
|
|
870
|
-
type: "object";
|
|
871
|
+
type: "object" | ["object", "null"] | ["null", "object"];
|
|
871
872
|
format: "geojson";
|
|
872
873
|
title?: string | undefined;
|
|
873
874
|
description?: string | undefined;
|
|
@@ -898,7 +899,7 @@ export declare const validateDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
898
899
|
dependentSchemas?: unknown;
|
|
899
900
|
required?: unknown;
|
|
900
901
|
} | {
|
|
901
|
-
type: "object";
|
|
902
|
+
type: "object" | ["object", "null"] | ["null", "object"];
|
|
902
903
|
format: "topojson";
|
|
903
904
|
title?: string | undefined;
|
|
904
905
|
description?: string | undefined;
|
|
@@ -929,7 +930,7 @@ export declare const validateDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
929
930
|
dependentSchemas?: unknown;
|
|
930
931
|
required?: unknown;
|
|
931
932
|
} | {
|
|
932
|
-
type: "object";
|
|
933
|
+
type: "object" | ["object", "null"] | ["null", "object"];
|
|
933
934
|
title?: string | undefined;
|
|
934
935
|
description?: string | undefined;
|
|
935
936
|
rdfType?: string | undefined;
|
|
@@ -1039,7 +1040,7 @@ export declare const validateDatasetTool: import("@mastra/core/tools").Tool<{
|
|
|
1039
1040
|
columnName: string;
|
|
1040
1041
|
rowNumber: number;
|
|
1041
1042
|
cell: string;
|
|
1042
|
-
type: "cell/
|
|
1043
|
+
type: "cell/missing";
|
|
1043
1044
|
resourceName?: string | undefined;
|
|
1044
1045
|
} | {
|
|
1045
1046
|
columnName: string;
|