@agentforge/tools 0.16.33 → 0.16.34

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/index.d.ts CHANGED
@@ -2542,51 +2542,54 @@ declare function createXmlTools(config?: XmlToolsConfig): (_agentforge_core.Tool
2542
2542
  * Type definitions and schemas for data transformation tools.
2543
2543
  */
2544
2544
 
2545
+ declare const transformerValueSchema: z.ZodUnknown;
2546
+ declare const transformerArraySchema: z.ZodArray<z.ZodUnknown, "many">;
2547
+ declare const transformerObjectSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2545
2548
  /**
2546
2549
  * Array filter schema
2547
2550
  */
2548
2551
  declare const arrayFilterSchema: z.ZodObject<{
2549
- array: z.ZodArray<z.ZodAny, "many">;
2552
+ array: z.ZodArray<z.ZodUnknown, "many">;
2550
2553
  property: z.ZodString;
2551
2554
  operator: z.ZodEnum<["equals", "not-equals", "greater-than", "less-than", "contains", "starts-with", "ends-with"]>;
2552
- value: z.ZodAny;
2555
+ value: z.ZodUnknown;
2553
2556
  }, "strip", z.ZodTypeAny, {
2554
- array: any[];
2557
+ array: unknown[];
2555
2558
  property: string;
2556
2559
  operator: "equals" | "not-equals" | "greater-than" | "less-than" | "contains" | "starts-with" | "ends-with";
2557
- value?: any;
2560
+ value?: unknown;
2558
2561
  }, {
2559
- array: any[];
2562
+ array: unknown[];
2560
2563
  property: string;
2561
2564
  operator: "equals" | "not-equals" | "greater-than" | "less-than" | "contains" | "starts-with" | "ends-with";
2562
- value?: any;
2565
+ value?: unknown;
2563
2566
  }>;
2564
2567
  /**
2565
2568
  * Array map schema
2566
2569
  */
2567
2570
  declare const arrayMapSchema: z.ZodObject<{
2568
- array: z.ZodArray<z.ZodAny, "many">;
2571
+ array: z.ZodArray<z.ZodUnknown, "many">;
2569
2572
  properties: z.ZodArray<z.ZodString, "many">;
2570
2573
  }, "strip", z.ZodTypeAny, {
2571
- array: any[];
2574
+ array: unknown[];
2572
2575
  properties: string[];
2573
2576
  }, {
2574
- array: any[];
2577
+ array: unknown[];
2575
2578
  properties: string[];
2576
2579
  }>;
2577
2580
  /**
2578
2581
  * Array sort schema
2579
2582
  */
2580
2583
  declare const arraySortSchema: z.ZodObject<{
2581
- array: z.ZodArray<z.ZodAny, "many">;
2584
+ array: z.ZodArray<z.ZodUnknown, "many">;
2582
2585
  property: z.ZodString;
2583
2586
  order: z.ZodDefault<z.ZodEnum<["asc", "desc"]>>;
2584
2587
  }, "strip", z.ZodTypeAny, {
2585
- array: any[];
2588
+ array: unknown[];
2586
2589
  property: string;
2587
2590
  order: "asc" | "desc";
2588
2591
  }, {
2589
- array: any[];
2592
+ array: unknown[];
2590
2593
  property: string;
2591
2594
  order?: "asc" | "desc" | undefined;
2592
2595
  }>;
@@ -2594,39 +2597,39 @@ declare const arraySortSchema: z.ZodObject<{
2594
2597
  * Array group by schema
2595
2598
  */
2596
2599
  declare const arrayGroupBySchema: z.ZodObject<{
2597
- array: z.ZodArray<z.ZodAny, "many">;
2600
+ array: z.ZodArray<z.ZodUnknown, "many">;
2598
2601
  property: z.ZodString;
2599
2602
  }, "strip", z.ZodTypeAny, {
2600
- array: any[];
2603
+ array: unknown[];
2601
2604
  property: string;
2602
2605
  }, {
2603
- array: any[];
2606
+ array: unknown[];
2604
2607
  property: string;
2605
2608
  }>;
2606
2609
  /**
2607
2610
  * Object pick schema
2608
2611
  */
2609
2612
  declare const objectPickSchema: z.ZodObject<{
2610
- object: z.ZodRecord<z.ZodString, z.ZodAny>;
2613
+ object: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2611
2614
  properties: z.ZodArray<z.ZodString, "many">;
2612
2615
  }, "strip", z.ZodTypeAny, {
2613
- object: Record<string, any>;
2616
+ object: Record<string, unknown>;
2614
2617
  properties: string[];
2615
2618
  }, {
2616
- object: Record<string, any>;
2619
+ object: Record<string, unknown>;
2617
2620
  properties: string[];
2618
2621
  }>;
2619
2622
  /**
2620
2623
  * Object omit schema
2621
2624
  */
2622
2625
  declare const objectOmitSchema: z.ZodObject<{
2623
- object: z.ZodRecord<z.ZodString, z.ZodAny>;
2626
+ object: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2624
2627
  properties: z.ZodArray<z.ZodString, "many">;
2625
2628
  }, "strip", z.ZodTypeAny, {
2626
- object: Record<string, any>;
2629
+ object: Record<string, unknown>;
2627
2630
  properties: string[];
2628
2631
  }, {
2629
- object: Record<string, any>;
2632
+ object: Record<string, unknown>;
2630
2633
  properties: string[];
2631
2634
  }>;
2632
2635
  /**
@@ -2641,12 +2644,12 @@ type TransformerToolsConfig = Record<string, never>;
2641
2644
  * Create array filter tool
2642
2645
  */
2643
2646
  declare function createArrayFilterTool(): _agentforge_core.Tool<{
2644
- array: any[];
2647
+ array: unknown[];
2645
2648
  property: string;
2646
2649
  operator: "equals" | "not-equals" | "greater-than" | "less-than" | "contains" | "starts-with" | "ends-with";
2647
- value?: any;
2650
+ value?: unknown;
2648
2651
  }, {
2649
- filtered: any[];
2652
+ filtered: unknown[];
2650
2653
  originalCount: number;
2651
2654
  filteredCount: number;
2652
2655
  }>;
@@ -2658,10 +2661,10 @@ declare function createArrayFilterTool(): _agentforge_core.Tool<{
2658
2661
  * Create array map tool
2659
2662
  */
2660
2663
  declare function createArrayMapTool(): _agentforge_core.Tool<{
2661
- array: any[];
2664
+ array: unknown[];
2662
2665
  properties: string[];
2663
2666
  }, {
2664
- mapped: any[];
2667
+ mapped: Record<string, unknown>[];
2665
2668
  count: number;
2666
2669
  }>;
2667
2670
 
@@ -2672,11 +2675,11 @@ declare function createArrayMapTool(): _agentforge_core.Tool<{
2672
2675
  * Create array sort tool
2673
2676
  */
2674
2677
  declare function createArraySortTool(): _agentforge_core.Tool<{
2675
- array: any[];
2678
+ array: unknown[];
2676
2679
  property: string;
2677
2680
  order?: "asc" | "desc" | undefined;
2678
2681
  }, {
2679
- sorted: any[];
2682
+ sorted: unknown[];
2680
2683
  count: number;
2681
2684
  }>;
2682
2685
 
@@ -2687,10 +2690,10 @@ declare function createArraySortTool(): _agentforge_core.Tool<{
2687
2690
  * Create array group by tool
2688
2691
  */
2689
2692
  declare function createArrayGroupByTool(): _agentforge_core.Tool<{
2690
- array: any[];
2693
+ array: unknown[];
2691
2694
  property: string;
2692
2695
  }, {
2693
- groups: Record<string, any[]>;
2696
+ groups: Record<string, unknown[]>;
2694
2697
  groupCount: number;
2695
2698
  totalItems: number;
2696
2699
  }>;
@@ -2702,7 +2705,7 @@ declare function createArrayGroupByTool(): _agentforge_core.Tool<{
2702
2705
  * Create object pick tool
2703
2706
  */
2704
2707
  declare function createObjectPickTool(): _agentforge_core.Tool<{
2705
- object: Record<string, any>;
2708
+ object: Record<string, unknown>;
2706
2709
  properties: string[];
2707
2710
  }, {
2708
2711
  [x: string]: unknown;
@@ -2715,7 +2718,7 @@ declare function createObjectPickTool(): _agentforge_core.Tool<{
2715
2718
  * Create object omit tool
2716
2719
  */
2717
2720
  declare function createObjectOmitTool(): _agentforge_core.Tool<{
2718
- object: Record<string, any>;
2721
+ object: Record<string, unknown>;
2719
2722
  properties: string[];
2720
2723
  }, {
2721
2724
  [x: string]: unknown;
@@ -2725,12 +2728,12 @@ declare function createObjectOmitTool(): _agentforge_core.Tool<{
2725
2728
  * Default array filter tool instance
2726
2729
  */
2727
2730
  declare const arrayFilter: _agentforge_core.Tool<{
2728
- array: any[];
2731
+ array: unknown[];
2729
2732
  property: string;
2730
2733
  operator: "equals" | "not-equals" | "greater-than" | "less-than" | "contains" | "starts-with" | "ends-with";
2731
- value?: any;
2734
+ value?: unknown;
2732
2735
  }, {
2733
- filtered: any[];
2736
+ filtered: unknown[];
2734
2737
  originalCount: number;
2735
2738
  filteredCount: number;
2736
2739
  }>;
@@ -2738,31 +2741,31 @@ declare const arrayFilter: _agentforge_core.Tool<{
2738
2741
  * Default array map tool instance
2739
2742
  */
2740
2743
  declare const arrayMap: _agentforge_core.Tool<{
2741
- array: any[];
2744
+ array: unknown[];
2742
2745
  properties: string[];
2743
2746
  }, {
2744
- mapped: any[];
2747
+ mapped: Record<string, unknown>[];
2745
2748
  count: number;
2746
2749
  }>;
2747
2750
  /**
2748
2751
  * Default array sort tool instance
2749
2752
  */
2750
2753
  declare const arraySort: _agentforge_core.Tool<{
2751
- array: any[];
2754
+ array: unknown[];
2752
2755
  property: string;
2753
2756
  order?: "asc" | "desc" | undefined;
2754
2757
  }, {
2755
- sorted: any[];
2758
+ sorted: unknown[];
2756
2759
  count: number;
2757
2760
  }>;
2758
2761
  /**
2759
2762
  * Default array group by tool instance
2760
2763
  */
2761
2764
  declare const arrayGroupBy: _agentforge_core.Tool<{
2762
- array: any[];
2765
+ array: unknown[];
2763
2766
  property: string;
2764
2767
  }, {
2765
- groups: Record<string, any[]>;
2768
+ groups: Record<string, unknown[]>;
2766
2769
  groupCount: number;
2767
2770
  totalItems: number;
2768
2771
  }>;
@@ -2770,7 +2773,7 @@ declare const arrayGroupBy: _agentforge_core.Tool<{
2770
2773
  * Default object pick tool instance
2771
2774
  */
2772
2775
  declare const objectPick: _agentforge_core.Tool<{
2773
- object: Record<string, any>;
2776
+ object: Record<string, unknown>;
2774
2777
  properties: string[];
2775
2778
  }, {
2776
2779
  [x: string]: unknown;
@@ -2779,7 +2782,7 @@ declare const objectPick: _agentforge_core.Tool<{
2779
2782
  * Default object omit tool instance
2780
2783
  */
2781
2784
  declare const objectOmit: _agentforge_core.Tool<{
2782
- object: Record<string, any>;
2785
+ object: Record<string, unknown>;
2783
2786
  properties: string[];
2784
2787
  }, {
2785
2788
  [x: string]: unknown;
@@ -2788,36 +2791,36 @@ declare const objectOmit: _agentforge_core.Tool<{
2788
2791
  * All transformer tools
2789
2792
  */
2790
2793
  declare const transformerTools: (_agentforge_core.Tool<{
2791
- array: any[];
2794
+ array: unknown[];
2792
2795
  property: string;
2793
2796
  operator: "equals" | "not-equals" | "greater-than" | "less-than" | "contains" | "starts-with" | "ends-with";
2794
- value?: any;
2797
+ value?: unknown;
2795
2798
  }, {
2796
- filtered: any[];
2799
+ filtered: unknown[];
2797
2800
  originalCount: number;
2798
2801
  filteredCount: number;
2799
2802
  }> | _agentforge_core.Tool<{
2800
- array: any[];
2803
+ array: unknown[];
2801
2804
  properties: string[];
2802
2805
  }, {
2803
- mapped: any[];
2806
+ mapped: Record<string, unknown>[];
2804
2807
  count: number;
2805
2808
  }> | _agentforge_core.Tool<{
2806
- array: any[];
2809
+ array: unknown[];
2807
2810
  property: string;
2808
2811
  order?: "asc" | "desc" | undefined;
2809
2812
  }, {
2810
- sorted: any[];
2813
+ sorted: unknown[];
2811
2814
  count: number;
2812
2815
  }> | _agentforge_core.Tool<{
2813
- array: any[];
2816
+ array: unknown[];
2814
2817
  property: string;
2815
2818
  }, {
2816
- groups: Record<string, any[]>;
2819
+ groups: Record<string, unknown[]>;
2817
2820
  groupCount: number;
2818
2821
  totalItems: number;
2819
2822
  }> | _agentforge_core.Tool<{
2820
- object: Record<string, any>;
2823
+ object: Record<string, unknown>;
2821
2824
  properties: string[];
2822
2825
  }, {
2823
2826
  [x: string]: unknown;
@@ -2826,36 +2829,36 @@ declare const transformerTools: (_agentforge_core.Tool<{
2826
2829
  * Create transformer tools with custom configuration
2827
2830
  */
2828
2831
  declare function createTransformerTools(config?: TransformerToolsConfig): (_agentforge_core.Tool<{
2829
- array: any[];
2832
+ array: unknown[];
2830
2833
  property: string;
2831
2834
  operator: "equals" | "not-equals" | "greater-than" | "less-than" | "contains" | "starts-with" | "ends-with";
2832
- value?: any;
2835
+ value?: unknown;
2833
2836
  }, {
2834
- filtered: any[];
2837
+ filtered: unknown[];
2835
2838
  originalCount: number;
2836
2839
  filteredCount: number;
2837
2840
  }> | _agentforge_core.Tool<{
2838
- array: any[];
2841
+ array: unknown[];
2839
2842
  properties: string[];
2840
2843
  }, {
2841
- mapped: any[];
2844
+ mapped: Record<string, unknown>[];
2842
2845
  count: number;
2843
2846
  }> | _agentforge_core.Tool<{
2844
- array: any[];
2847
+ array: unknown[];
2845
2848
  property: string;
2846
2849
  order?: "asc" | "desc" | undefined;
2847
2850
  }, {
2848
- sorted: any[];
2851
+ sorted: unknown[];
2849
2852
  count: number;
2850
2853
  }> | _agentforge_core.Tool<{
2851
- array: any[];
2854
+ array: unknown[];
2852
2855
  property: string;
2853
2856
  }, {
2854
- groups: Record<string, any[]>;
2857
+ groups: Record<string, unknown[]>;
2855
2858
  groupCount: number;
2856
2859
  totalItems: number;
2857
2860
  }> | _agentforge_core.Tool<{
2858
- object: Record<string, any>;
2861
+ object: Record<string, unknown>;
2859
2862
  properties: string[];
2860
2863
  }, {
2861
2864
  [x: string]: unknown;
@@ -9072,4 +9075,4 @@ declare const askHumanTool: _agentforge_core.Tool<{
9072
9075
  suggestions?: string[] | undefined;
9073
9076
  }, AskHumanOutput>;
9074
9077
 
9075
- export { type AskHumanInput, AskHumanInputSchema, type AskHumanOutput, type BatchBenchmarkResult, type BatchEmbeddingResult, type BatchExecutionOptions, type BatchExecutionResult, type BatchExecutionTask, type BatchFailureDetail, type BatchProgressUpdate, type BuiltDeleteQuery, type BuiltInsertQuery, type BuiltUpdateQuery, type CalculatorInput, CalculatorSchema, type ColumnDiff, type ColumnSchema, type ConfluenceAuth, type ConfluenceToolsConfig, type ConnectionConfig, type ConnectionEvent, ConnectionManager, ConnectionState, type CreditCardValidatorInput, CreditCardValidatorSchema, type CsvToolsConfig, type CurrentDateTimeInput, CurrentDateTimeSchema, DEFAULT_BATCH_SIZE, DEFAULT_CHUNK_SIZE, DEFAULT_RETRY_CONFIG, type DatabaseConfig, type DatabaseConnection, type DatabaseSchema, type DatabaseVendor, type DateArithmeticInput, DateArithmeticSchema, type DateComparisonInput, DateComparisonSchema, type DateDifferenceInput, DateDifferenceSchema, type DateFormatterInput, DateFormatterSchema, type DateTimeConfig, type DeleteQueryInput, type DeleteSoftDeleteOptions, type DeleteWhereCondition, type DirectoryOperationsConfig, DuckDuckGoProvider, type EmailValidatorInput, EmailValidatorSchema, type EmbeddingConfig, EmbeddingManager, type EmbeddingProvider, type EmbeddingResult, type EmbeddingRetryConfig, type FileOperationsConfig, type ForeignKeySchema, type HtmlParserToolsConfig, HttpMethod, type HttpResponse, type HttpToolsConfig, type IEmbeddingProvider, type IndexSchema, type InsertData, type InsertQueryInput, type InsertReturningMode, type InsertReturningOptions, type InsertRow, type InsertValue, type IpValidatorInput, IpValidatorSchema, type JsonToolsConfig, MAX_BATCH_SIZE, type MappedType, type MathFunctionsInput, MathFunctionsSchema, type MathOperationsConfig, MissingPeerDependencyError, type MySQLConnectionConfig, type Neo4jConfig, type Neo4jNode, type Neo4jPath, type Neo4jRelationship, type Neo4jSchema, type Neo4jToolsConfig, OpenAIEmbeddingProvider, type PathUtilitiesConfig, type PhoneValidatorInput, PhoneValidatorSchema, type PoolConfig, type PostgreSQLConnectionConfig, type QueryExecutionResult, type QueryInput, type QueryMetadata, type QueryParams, type QueryResult, type RandomNumberInput, RandomNumberSchema, type ReconnectionConfig, type RetryConfig, type SQLiteConnectionConfig, type SchemaDiffResult, type SchemaInspectOptions, SchemaInspector, type SchemaInspectorConfig, type ScraperResult, type ScraperToolsConfig, type SearchProvider, type SearchResult, type SelectOrderBy, type SelectOrderDirection, type SelectQueryInput, type SelectWhereCondition, SerperProvider, type SlackClientConfig, type SlackToolsConfig, type SqlExecutor, type StatisticsInput, StatisticsSchema, type StreamingBenchmarkResult, type StreamingMemoryUsage$1 as StreamingMemoryUsage, type StreamingSelectChunk, type StreamingSelectOptions, type StreamingSelectResult, type StringCaseConverterInput, StringCaseConverterSchema, type StringJoinInput, StringJoinSchema, type StringLengthInput, StringLengthSchema, type StringReplaceInput, StringReplaceSchema, type StringSplitInput, StringSplitSchema, type StringSubstringInput, StringSubstringSchema, type StringTrimInput, StringTrimSchema, type StringUtilitiesConfig, type TableDiff, type TableSchema, type TransactionContext, type TransactionIsolationLevel, type TransactionOptions, type TransformerToolsConfig, type UpdateData, type UpdateOptimisticLock, type UpdateQueryInput, type UpdateValue, type UpdateWhereCondition, type UpdateWhereOperator, type UrlValidationResult, type UrlValidatorSimpleInput, UrlValidatorSimpleSchema, type UrlValidatorToolsConfig, type UuidValidatorInput, UuidValidatorSchema, type ValidationConfig, type ValidationResult, type VendorConnectionConfig, type WebSearchInput, type WebSearchOutput, type XmlToolsConfig, archiveConfluencePage, arrayFilter, arrayFilterSchema, arrayGroupBy, arrayGroupBySchema, arrayMap, arrayMapSchema, arraySort, arraySortSchema, askHumanTool, benchmarkBatchExecution, benchmarkStreamingSelectMemory, buildDeleteQuery, buildInsertQuery, buildSelectQuery, buildUpdateQuery, calculator, checkPeerDependency, confluenceTools, createArrayFilterTool, createArrayGroupByTool, createArrayMapTool, createArraySortTool, createAskHumanTool, createCalculatorTool, createConfluencePage, createConfluenceTools, createCreditCardValidatorTool, createCsvGeneratorTool, createCsvParserTool, createCsvToJsonTool, createCsvTools, createCurrentDateTimeTool, createDateArithmeticTool, createDateComparisonTool, createDateDifferenceTool, createDateFormatterTool, createDateTimeTools, createDirectoryCreateTool, createDirectoryDeleteTool, createDirectoryListTool, createDirectoryOperationTools, createDuckDuckGoProvider, createEmailValidatorTool, createExtractImagesTool, createExtractLinksTool, createFileAppendTool, createFileDeleteTool, createFileExistsTool, createFileOperationTools, createFileReaderTool, createFileSearchTool, createFileWriterTool, createHtmlParserTool, createHtmlParserTools, createHttpTools, createIpValidatorTool, createJsonMergeTool, createJsonParserTool, createJsonQueryTool, createJsonStringifyTool, createJsonToCsvTool, createJsonToXmlTool, createJsonTools, createJsonValidatorTool, createMathFunctionsTool, createMathOperationTools, createNeo4jCreateNodeWithEmbeddingTool, createNeo4jFindNodesTool, createNeo4jGetSchemaTool, createNeo4jQueryTool, createNeo4jTools, createNeo4jTraverseTool, createNeo4jVectorSearchTool, createNeo4jVectorSearchWithEmbeddingTool, createObjectOmitTool, createObjectPickTool, createPathBasenameTool, createPathDirnameTool, createPathExtensionTool, createPathJoinTool, createPathNormalizeTool, createPathParseTool, createPathRelativeTool, createPathResolveTool, createPathUtilityTools, createPhoneValidatorTool, createRandomNumberTool, createScraperTools, createSelectReadableStream, createSerperProvider, createSlackTools, createStatisticsTool, createStringCaseConverterTool, createStringJoinTool, createStringLengthTool, createStringReplaceTool, createStringSplitTool, createStringSubstringTool, createStringTrimTool, createStringUtilityTools, createTransformerTools, createUrlBuilderTool, createUrlQueryParserTool, createUrlValidatorSimpleTool, createUrlValidatorTool, createUrlValidatorTools, createUuidValidatorTool, createValidationTools, createWebScraperTool, createXmlGeneratorTool, createXmlParserTool, createXmlToJsonTool, createXmlTools, creditCardValidator, csvGenerator, csvGeneratorSchema, csvParser, csvParserSchema, csvToJson, csvToJsonSchema, csvTools, currentDateTime, dateArithmetic, dateComparison, dateDifference, dateFormatter, dateTimeTools, diffSchemas, directoryCreate, directoryCreateSchema, directoryDelete, directoryDeleteSchema, directoryList, directoryListSchema, directoryOperationTools, emailValidator, embeddingManager, executeBatchedTask, executeQuery, executeStreamingSelect, exportSchemaToJson, extractImages, extractImagesSchema, extractLinks, extractLinksSchema, fileAppend, fileAppendSchema, fileDelete, fileDeleteSchema, fileExists, fileExistsSchema, fileOperationTools, fileReader, fileReaderSchema, fileSearch, fileSearchSchema, fileWriter, fileWriterSchema, generateBatchEmbeddings, generateEmbedding, getCohereApiKey, getConfluencePage, getEmbeddingModel, getEmbeddingProvider, getHuggingFaceApiKey, getInstallationInstructions, getOllamaBaseUrl, getOpenAIApiKey, getPeerDependencyName, getSlackChannels, getSlackMessages, getSpacePages, getVendorTypeMap, getVoyageApiKey, htmlParser, htmlParserSchema, htmlParserTools, httpClient, httpGet, httpGetSchema, httpPost, httpPostSchema, httpRequestSchema, httpTools, importSchemaFromJson, initializeEmbeddings, initializeEmbeddingsWithConfig, initializeFromEnv, initializeNeo4jTools, ipValidator, isRetryableError, jsonMerge, jsonMergeSchema, jsonParser, jsonParserSchema, jsonQuery, jsonQuerySchema, jsonStringify, jsonStringifySchema, jsonToCsv, jsonToCsvSchema, jsonToXml, jsonToXmlSchema, jsonTools, jsonValidator, jsonValidatorSchema, listConfluenceSpaces, mapColumnType, mapSchemaTypes, mathFunctions, mathOperationTools, neo4jCoreTools, neo4jCreateNodeWithEmbedding, neo4jCreateNodeWithEmbeddingSchema, neo4jFindNodes, neo4jFindNodesSchema, neo4jGetSchema, neo4jGetSchemaSchema, neo4jPool, neo4jQuery, neo4jQuerySchema, neo4jTools, neo4jTraverse, neo4jTraverseSchema, neo4jVectorSearch, neo4jVectorSearchSchema, neo4jVectorSearchWithEmbedding, neo4jVectorSearchWithEmbeddingSchema, notifySlack, objectOmit, objectOmitSchema, objectPick, objectPickSchema, pathBasename, pathBasenameSchema, pathDirname, pathDirnameSchema, pathExtension, pathExtensionSchema, pathJoin, pathJoinSchema, pathNormalize, pathNormalizeSchema, pathParse, pathParseSchema, pathRelative, pathRelativeSchema, pathResolve, pathResolveSchema, pathUtilityTools, phoneValidator, randomNumber, relationalDelete, relationalGetSchema, relationalInsert, relationalQuery, relationalSelect, relationalUpdate, retryWithBackoff, scraperTools, searchConfluence, searchResultSchema, sendSlackMessage, slackTools, statistics, streamSelectChunks, stringCaseConverter, stringJoin, stringLength, stringReplace, stringSplit, stringSubstring, stringTrim, stringUtilityTools, transformerTools, updateConfluencePage, urlBuilder, urlBuilderSchema, urlQueryParser, urlQueryParserSchema, urlValidator, urlValidatorSchema, urlValidatorSimple, urlValidatorTools, uuidValidator, validateBatch, validateColumnTypes, validateColumnsExist, validateTableExists, validateText, validationTools, webScraper, webScraperSchema, webSearch, webSearchOutputSchema, webSearchSchema, withTransaction, xmlGenerator, xmlGeneratorSchema, xmlParser, xmlParserSchema, xmlToJson, xmlToJsonSchema, xmlTools };
9078
+ export { type AskHumanInput, AskHumanInputSchema, type AskHumanOutput, type BatchBenchmarkResult, type BatchEmbeddingResult, type BatchExecutionOptions, type BatchExecutionResult, type BatchExecutionTask, type BatchFailureDetail, type BatchProgressUpdate, type BuiltDeleteQuery, type BuiltInsertQuery, type BuiltUpdateQuery, type CalculatorInput, CalculatorSchema, type ColumnDiff, type ColumnSchema, type ConfluenceAuth, type ConfluenceToolsConfig, type ConnectionConfig, type ConnectionEvent, ConnectionManager, ConnectionState, type CreditCardValidatorInput, CreditCardValidatorSchema, type CsvToolsConfig, type CurrentDateTimeInput, CurrentDateTimeSchema, DEFAULT_BATCH_SIZE, DEFAULT_CHUNK_SIZE, DEFAULT_RETRY_CONFIG, type DatabaseConfig, type DatabaseConnection, type DatabaseSchema, type DatabaseVendor, type DateArithmeticInput, DateArithmeticSchema, type DateComparisonInput, DateComparisonSchema, type DateDifferenceInput, DateDifferenceSchema, type DateFormatterInput, DateFormatterSchema, type DateTimeConfig, type DeleteQueryInput, type DeleteSoftDeleteOptions, type DeleteWhereCondition, type DirectoryOperationsConfig, DuckDuckGoProvider, type EmailValidatorInput, EmailValidatorSchema, type EmbeddingConfig, EmbeddingManager, type EmbeddingProvider, type EmbeddingResult, type EmbeddingRetryConfig, type FileOperationsConfig, type ForeignKeySchema, type HtmlParserToolsConfig, HttpMethod, type HttpResponse, type HttpToolsConfig, type IEmbeddingProvider, type IndexSchema, type InsertData, type InsertQueryInput, type InsertReturningMode, type InsertReturningOptions, type InsertRow, type InsertValue, type IpValidatorInput, IpValidatorSchema, type JsonToolsConfig, MAX_BATCH_SIZE, type MappedType, type MathFunctionsInput, MathFunctionsSchema, type MathOperationsConfig, MissingPeerDependencyError, type MySQLConnectionConfig, type Neo4jConfig, type Neo4jNode, type Neo4jPath, type Neo4jRelationship, type Neo4jSchema, type Neo4jToolsConfig, OpenAIEmbeddingProvider, type PathUtilitiesConfig, type PhoneValidatorInput, PhoneValidatorSchema, type PoolConfig, type PostgreSQLConnectionConfig, type QueryExecutionResult, type QueryInput, type QueryMetadata, type QueryParams, type QueryResult, type RandomNumberInput, RandomNumberSchema, type ReconnectionConfig, type RetryConfig, type SQLiteConnectionConfig, type SchemaDiffResult, type SchemaInspectOptions, SchemaInspector, type SchemaInspectorConfig, type ScraperResult, type ScraperToolsConfig, type SearchProvider, type SearchResult, type SelectOrderBy, type SelectOrderDirection, type SelectQueryInput, type SelectWhereCondition, SerperProvider, type SlackClientConfig, type SlackToolsConfig, type SqlExecutor, type StatisticsInput, StatisticsSchema, type StreamingBenchmarkResult, type StreamingMemoryUsage$1 as StreamingMemoryUsage, type StreamingSelectChunk, type StreamingSelectOptions, type StreamingSelectResult, type StringCaseConverterInput, StringCaseConverterSchema, type StringJoinInput, StringJoinSchema, type StringLengthInput, StringLengthSchema, type StringReplaceInput, StringReplaceSchema, type StringSplitInput, StringSplitSchema, type StringSubstringInput, StringSubstringSchema, type StringTrimInput, StringTrimSchema, type StringUtilitiesConfig, type TableDiff, type TableSchema, type TransactionContext, type TransactionIsolationLevel, type TransactionOptions, type TransformerToolsConfig, type UpdateData, type UpdateOptimisticLock, type UpdateQueryInput, type UpdateValue, type UpdateWhereCondition, type UpdateWhereOperator, type UrlValidationResult, type UrlValidatorSimpleInput, UrlValidatorSimpleSchema, type UrlValidatorToolsConfig, type UuidValidatorInput, UuidValidatorSchema, type ValidationConfig, type ValidationResult, type VendorConnectionConfig, type WebSearchInput, type WebSearchOutput, type XmlToolsConfig, archiveConfluencePage, arrayFilter, arrayFilterSchema, arrayGroupBy, arrayGroupBySchema, arrayMap, arrayMapSchema, arraySort, arraySortSchema, askHumanTool, benchmarkBatchExecution, benchmarkStreamingSelectMemory, buildDeleteQuery, buildInsertQuery, buildSelectQuery, buildUpdateQuery, calculator, checkPeerDependency, confluenceTools, createArrayFilterTool, createArrayGroupByTool, createArrayMapTool, createArraySortTool, createAskHumanTool, createCalculatorTool, createConfluencePage, createConfluenceTools, createCreditCardValidatorTool, createCsvGeneratorTool, createCsvParserTool, createCsvToJsonTool, createCsvTools, createCurrentDateTimeTool, createDateArithmeticTool, createDateComparisonTool, createDateDifferenceTool, createDateFormatterTool, createDateTimeTools, createDirectoryCreateTool, createDirectoryDeleteTool, createDirectoryListTool, createDirectoryOperationTools, createDuckDuckGoProvider, createEmailValidatorTool, createExtractImagesTool, createExtractLinksTool, createFileAppendTool, createFileDeleteTool, createFileExistsTool, createFileOperationTools, createFileReaderTool, createFileSearchTool, createFileWriterTool, createHtmlParserTool, createHtmlParserTools, createHttpTools, createIpValidatorTool, createJsonMergeTool, createJsonParserTool, createJsonQueryTool, createJsonStringifyTool, createJsonToCsvTool, createJsonToXmlTool, createJsonTools, createJsonValidatorTool, createMathFunctionsTool, createMathOperationTools, createNeo4jCreateNodeWithEmbeddingTool, createNeo4jFindNodesTool, createNeo4jGetSchemaTool, createNeo4jQueryTool, createNeo4jTools, createNeo4jTraverseTool, createNeo4jVectorSearchTool, createNeo4jVectorSearchWithEmbeddingTool, createObjectOmitTool, createObjectPickTool, createPathBasenameTool, createPathDirnameTool, createPathExtensionTool, createPathJoinTool, createPathNormalizeTool, createPathParseTool, createPathRelativeTool, createPathResolveTool, createPathUtilityTools, createPhoneValidatorTool, createRandomNumberTool, createScraperTools, createSelectReadableStream, createSerperProvider, createSlackTools, createStatisticsTool, createStringCaseConverterTool, createStringJoinTool, createStringLengthTool, createStringReplaceTool, createStringSplitTool, createStringSubstringTool, createStringTrimTool, createStringUtilityTools, createTransformerTools, createUrlBuilderTool, createUrlQueryParserTool, createUrlValidatorSimpleTool, createUrlValidatorTool, createUrlValidatorTools, createUuidValidatorTool, createValidationTools, createWebScraperTool, createXmlGeneratorTool, createXmlParserTool, createXmlToJsonTool, createXmlTools, creditCardValidator, csvGenerator, csvGeneratorSchema, csvParser, csvParserSchema, csvToJson, csvToJsonSchema, csvTools, currentDateTime, dateArithmetic, dateComparison, dateDifference, dateFormatter, dateTimeTools, diffSchemas, directoryCreate, directoryCreateSchema, directoryDelete, directoryDeleteSchema, directoryList, directoryListSchema, directoryOperationTools, emailValidator, embeddingManager, executeBatchedTask, executeQuery, executeStreamingSelect, exportSchemaToJson, extractImages, extractImagesSchema, extractLinks, extractLinksSchema, fileAppend, fileAppendSchema, fileDelete, fileDeleteSchema, fileExists, fileExistsSchema, fileOperationTools, fileReader, fileReaderSchema, fileSearch, fileSearchSchema, fileWriter, fileWriterSchema, generateBatchEmbeddings, generateEmbedding, getCohereApiKey, getConfluencePage, getEmbeddingModel, getEmbeddingProvider, getHuggingFaceApiKey, getInstallationInstructions, getOllamaBaseUrl, getOpenAIApiKey, getPeerDependencyName, getSlackChannels, getSlackMessages, getSpacePages, getVendorTypeMap, getVoyageApiKey, htmlParser, htmlParserSchema, htmlParserTools, httpClient, httpGet, httpGetSchema, httpPost, httpPostSchema, httpRequestSchema, httpTools, importSchemaFromJson, initializeEmbeddings, initializeEmbeddingsWithConfig, initializeFromEnv, initializeNeo4jTools, ipValidator, isRetryableError, jsonMerge, jsonMergeSchema, jsonParser, jsonParserSchema, jsonQuery, jsonQuerySchema, jsonStringify, jsonStringifySchema, jsonToCsv, jsonToCsvSchema, jsonToXml, jsonToXmlSchema, jsonTools, jsonValidator, jsonValidatorSchema, listConfluenceSpaces, mapColumnType, mapSchemaTypes, mathFunctions, mathOperationTools, neo4jCoreTools, neo4jCreateNodeWithEmbedding, neo4jCreateNodeWithEmbeddingSchema, neo4jFindNodes, neo4jFindNodesSchema, neo4jGetSchema, neo4jGetSchemaSchema, neo4jPool, neo4jQuery, neo4jQuerySchema, neo4jTools, neo4jTraverse, neo4jTraverseSchema, neo4jVectorSearch, neo4jVectorSearchSchema, neo4jVectorSearchWithEmbedding, neo4jVectorSearchWithEmbeddingSchema, notifySlack, objectOmit, objectOmitSchema, objectPick, objectPickSchema, pathBasename, pathBasenameSchema, pathDirname, pathDirnameSchema, pathExtension, pathExtensionSchema, pathJoin, pathJoinSchema, pathNormalize, pathNormalizeSchema, pathParse, pathParseSchema, pathRelative, pathRelativeSchema, pathResolve, pathResolveSchema, pathUtilityTools, phoneValidator, randomNumber, relationalDelete, relationalGetSchema, relationalInsert, relationalQuery, relationalSelect, relationalUpdate, retryWithBackoff, scraperTools, searchConfluence, searchResultSchema, sendSlackMessage, slackTools, statistics, streamSelectChunks, stringCaseConverter, stringJoin, stringLength, stringReplace, stringSplit, stringSubstring, stringTrim, stringUtilityTools, transformerArraySchema, transformerObjectSchema, transformerTools, transformerValueSchema, updateConfluencePage, urlBuilder, urlBuilderSchema, urlQueryParser, urlQueryParserSchema, urlValidator, urlValidatorSchema, urlValidatorSimple, urlValidatorTools, uuidValidator, validateBatch, validateColumnTypes, validateColumnsExist, validateTableExists, validateText, validationTools, webScraper, webScraperSchema, webSearch, webSearchOutputSchema, webSearchSchema, withTransaction, xmlGenerator, xmlGeneratorSchema, xmlParser, xmlParserSchema, xmlToJson, xmlToJsonSchema, xmlTools };
package/dist/index.js CHANGED
@@ -1887,31 +1887,34 @@ function createXmlTools(config = {}) {
1887
1887
  createJsonToXmlTool(defaultRootName, defaultFormat)
1888
1888
  ];
1889
1889
  }
1890
+ var transformerValueSchema = z.unknown().describe("Transformer value");
1891
+ var transformerArraySchema = z.array(transformerValueSchema).describe("Array to transform");
1892
+ var transformerObjectSchema = z.record(z.string(), transformerValueSchema).describe("Source object");
1890
1893
  var arrayFilterSchema = z.object({
1891
- array: z.array(z.any().describe("Array element")).describe("Array to filter"),
1894
+ array: transformerArraySchema.describe("Array to filter"),
1892
1895
  property: z.string().describe("Property name to filter by (use dot notation for nested properties)"),
1893
1896
  operator: z.enum(["equals", "not-equals", "greater-than", "less-than", "contains", "starts-with", "ends-with"]).describe("Comparison operator"),
1894
- value: z.any().describe("Value to compare against")
1897
+ value: transformerValueSchema.describe("Value to compare against")
1895
1898
  });
1896
1899
  var arrayMapSchema = z.object({
1897
- array: z.array(z.any().describe("Array element")).describe("Array to map"),
1900
+ array: transformerArraySchema.describe("Array to map"),
1898
1901
  properties: z.array(z.string().describe("String value")).describe("List of property names to extract from each object")
1899
1902
  });
1900
1903
  var arraySortSchema = z.object({
1901
- array: z.array(z.any().describe("Array element")).describe("Array to sort"),
1904
+ array: transformerArraySchema.describe("Array to sort"),
1902
1905
  property: z.string().describe("Property name to sort by (use dot notation for nested properties)"),
1903
1906
  order: z.enum(["asc", "desc"]).default("asc").describe("Sort order: ascending or descending")
1904
1907
  });
1905
1908
  var arrayGroupBySchema = z.object({
1906
- array: z.array(z.any().describe("Array element")).describe("Array to group"),
1909
+ array: transformerArraySchema.describe("Array to group"),
1907
1910
  property: z.string().describe("Property name to group by")
1908
1911
  });
1909
1912
  var objectPickSchema = z.object({
1910
- object: z.record(z.any().describe("Property value")).describe("Source object"),
1913
+ object: transformerObjectSchema,
1911
1914
  properties: z.array(z.string().describe("String value")).describe("List of property names to pick")
1912
1915
  });
1913
1916
  var objectOmitSchema = z.object({
1914
- object: z.record(z.any().describe("Property value")).describe("Source object"),
1917
+ object: transformerObjectSchema,
1915
1918
  properties: z.array(z.string().describe("String value")).describe("List of property names to omit")
1916
1919
  });
1917
1920
 
@@ -1993,8 +1996,12 @@ function createArrayMapTool() {
1993
1996
  const mapped = input.array.map((item) => {
1994
1997
  const result = {};
1995
1998
  for (const prop of input.properties) {
1996
- const value = prop.split(".").reduce((current, key) => current?.[key], item);
1997
- result[prop] = value;
1999
+ Object.defineProperty(result, prop, {
2000
+ value: getNestedValue(item, prop),
2001
+ enumerable: true,
2002
+ configurable: true,
2003
+ writable: true
2004
+ });
1998
2005
  }
1999
2006
  return result;
2000
2007
  });
@@ -2025,9 +2032,17 @@ function createArrayGroupByTool() {
2025
2032
  return toolBuilder().name("array-group-by").description("Group an array of objects by a property value. Returns an object with groups as keys.").category(ToolCategory.UTILITY).tags(["array", "group", "data", "transform"]).schema(arrayGroupBySchema).implement(async (input) => {
2026
2033
  const groups = {};
2027
2034
  for (const item of input.array) {
2028
- const key = String(item[input.property]);
2029
- if (!groups[key]) {
2030
- groups[key] = [];
2035
+ if (item == null) {
2036
+ throw new TypeError(`Cannot read properties of ${item} (reading '${input.property}')`);
2037
+ }
2038
+ const key = String(Reflect.get(Object(item), input.property));
2039
+ if (!Object.hasOwn(groups, key)) {
2040
+ Object.defineProperty(groups, key, {
2041
+ value: [],
2042
+ enumerable: true,
2043
+ configurable: true,
2044
+ writable: true
2045
+ });
2031
2046
  }
2032
2047
  groups[key].push(item);
2033
2048
  }
@@ -10246,6 +10261,6 @@ function createAskHumanTool() {
10246
10261
  }
10247
10262
  var askHumanTool = createAskHumanTool();
10248
10263
 
10249
- export { AskHumanInputSchema, CalculatorSchema, ConnectionManager, ConnectionState, CreditCardValidatorSchema, CurrentDateTimeSchema, DEFAULT_BATCH_SIZE, DEFAULT_CHUNK_SIZE, DEFAULT_RETRY_CONFIG2 as DEFAULT_RETRY_CONFIG, DateArithmeticSchema, DateComparisonSchema, DateDifferenceSchema, DateFormatterSchema, DuckDuckGoProvider, EmailValidatorSchema, EmbeddingManager, HttpMethod, IpValidatorSchema, MAX_BATCH_SIZE, MathFunctionsSchema, MissingPeerDependencyError, OpenAIEmbeddingProvider, PhoneValidatorSchema, RandomNumberSchema, SchemaInspector, SerperProvider, StatisticsSchema, StringCaseConverterSchema, StringJoinSchema, StringLengthSchema, StringReplaceSchema, StringSplitSchema, StringSubstringSchema, StringTrimSchema, UrlValidatorSimpleSchema, UuidValidatorSchema, archiveConfluencePage, arrayFilter, arrayFilterSchema, arrayGroupBy, arrayGroupBySchema, arrayMap, arrayMapSchema, arraySort, arraySortSchema, askHumanTool, benchmarkBatchExecution, benchmarkStreamingSelectMemory, buildDeleteQuery, buildInsertQuery, buildSelectQuery, buildUpdateQuery, calculator, checkPeerDependency, confluenceTools, createArrayFilterTool, createArrayGroupByTool, createArrayMapTool, createArraySortTool, createAskHumanTool, createCalculatorTool, createConfluencePage, createConfluenceTools, createCreditCardValidatorTool, createCsvGeneratorTool, createCsvParserTool, createCsvToJsonTool, createCsvTools, createCurrentDateTimeTool, createDateArithmeticTool, createDateComparisonTool, createDateDifferenceTool, createDateFormatterTool, createDateTimeTools, createDirectoryCreateTool, createDirectoryDeleteTool, createDirectoryListTool, createDirectoryOperationTools, createDuckDuckGoProvider, createEmailValidatorTool, createExtractImagesTool, createExtractLinksTool, createFileAppendTool, createFileDeleteTool, createFileExistsTool, createFileOperationTools, createFileReaderTool, createFileSearchTool, createFileWriterTool, createHtmlParserTool, createHtmlParserTools, createHttpTools, createIpValidatorTool, createJsonMergeTool, createJsonParserTool, createJsonQueryTool, createJsonStringifyTool, createJsonToCsvTool, createJsonToXmlTool, createJsonTools, createJsonValidatorTool, createMathFunctionsTool, createMathOperationTools, createNeo4jCreateNodeWithEmbeddingTool, createNeo4jFindNodesTool, createNeo4jGetSchemaTool, createNeo4jQueryTool, createNeo4jTools, createNeo4jTraverseTool, createNeo4jVectorSearchTool, createNeo4jVectorSearchWithEmbeddingTool, createObjectOmitTool, createObjectPickTool, createPathBasenameTool, createPathDirnameTool, createPathExtensionTool, createPathJoinTool, createPathNormalizeTool, createPathParseTool, createPathRelativeTool, createPathResolveTool, createPathUtilityTools, createPhoneValidatorTool, createRandomNumberTool, createScraperTools, createSelectReadableStream, createSerperProvider, createSlackTools, createStatisticsTool, createStringCaseConverterTool, createStringJoinTool, createStringLengthTool, createStringReplaceTool, createStringSplitTool, createStringSubstringTool, createStringTrimTool, createStringUtilityTools, createTransformerTools, createUrlBuilderTool, createUrlQueryParserTool, createUrlValidatorSimpleTool, createUrlValidatorTool, createUrlValidatorTools, createUuidValidatorTool, createValidationTools, createWebScraperTool, createXmlGeneratorTool, createXmlParserTool, createXmlToJsonTool, createXmlTools, creditCardValidator, csvGenerator, csvGeneratorSchema, csvParser, csvParserSchema, csvToJson, csvToJsonSchema, csvTools, currentDateTime, dateArithmetic, dateComparison, dateDifference, dateFormatter, dateTimeTools, diffSchemas, directoryCreate, directoryCreateSchema, directoryDelete, directoryDeleteSchema, directoryList, directoryListSchema, directoryOperationTools, emailValidator, embeddingManager, executeBatchedTask, executeQuery2 as executeQuery, executeStreamingSelect, exportSchemaToJson, extractImages, extractImagesSchema, extractLinks, extractLinksSchema, fileAppend, fileAppendSchema, fileDelete, fileDeleteSchema, fileExists, fileExistsSchema, fileOperationTools, fileReader, fileReaderSchema, fileSearch, fileSearchSchema, fileWriter, fileWriterSchema, generateBatchEmbeddings, generateEmbedding, getCohereApiKey, getConfluencePage, getEmbeddingModel, getEmbeddingProvider, getHuggingFaceApiKey, getInstallationInstructions, getOllamaBaseUrl, getOpenAIApiKey, getPeerDependencyName, getSlackChannels, getSlackMessages, getSpacePages, getVendorTypeMap, getVoyageApiKey, htmlParser, htmlParserSchema, htmlParserTools, httpClient, httpGet, httpGetSchema, httpPost, httpPostSchema, httpRequestSchema, httpTools, importSchemaFromJson, initializeEmbeddings, initializeEmbeddingsWithConfig, initializeFromEnv, initializeNeo4jTools, ipValidator, isRetryableError2 as isRetryableError, jsonMerge, jsonMergeSchema, jsonParser, jsonParserSchema, jsonQuery, jsonQuerySchema, jsonStringify, jsonStringifySchema, jsonToCsv, jsonToCsvSchema, jsonToXml, jsonToXmlSchema, jsonTools, jsonValidator, jsonValidatorSchema, listConfluenceSpaces, mapColumnType, mapSchemaTypes, mathFunctions, mathOperationTools, neo4jCoreTools, neo4jCreateNodeWithEmbedding, neo4jCreateNodeWithEmbeddingSchema, neo4jFindNodes, neo4jFindNodesSchema, neo4jGetSchema, neo4jGetSchemaSchema, neo4jPool, neo4jQuery, neo4jQuerySchema, neo4jTools, neo4jTraverse, neo4jTraverseSchema, neo4jVectorSearch, neo4jVectorSearchSchema, neo4jVectorSearchWithEmbedding, neo4jVectorSearchWithEmbeddingSchema, notifySlack, objectOmit, objectOmitSchema, objectPick, objectPickSchema, pathBasename, pathBasenameSchema, pathDirname, pathDirnameSchema, pathExtension, pathExtensionSchema, pathJoin, pathJoinSchema, pathNormalize, pathNormalizeSchema, pathParse, pathParseSchema, pathRelative, pathRelativeSchema, pathResolve, pathResolveSchema, pathUtilityTools, phoneValidator, randomNumber, relationalDelete, relationalGetSchema, relationalInsert, relationalQuery, relationalSelect, relationalUpdate, retryWithBackoff2 as retryWithBackoff, scraperTools, searchConfluence, searchResultSchema, sendSlackMessage, slackTools, statistics, streamSelectChunks, stringCaseConverter, stringJoin, stringLength, stringReplace, stringSplit, stringSubstring, stringTrim, stringUtilityTools, transformerTools, updateConfluencePage, urlBuilder, urlBuilderSchema, urlQueryParser, urlQueryParserSchema, urlValidator, urlValidatorSchema, urlValidatorSimple, urlValidatorTools, uuidValidator, validateBatch, validateColumnTypes, validateColumnsExist, validateTableExists, validateText, validationTools, webScraper, webScraperSchema, webSearch, webSearchOutputSchema, webSearchSchema, withTransaction, xmlGenerator, xmlGeneratorSchema, xmlParser, xmlParserSchema, xmlToJson, xmlToJsonSchema, xmlTools };
10264
+ export { AskHumanInputSchema, CalculatorSchema, ConnectionManager, ConnectionState, CreditCardValidatorSchema, CurrentDateTimeSchema, DEFAULT_BATCH_SIZE, DEFAULT_CHUNK_SIZE, DEFAULT_RETRY_CONFIG2 as DEFAULT_RETRY_CONFIG, DateArithmeticSchema, DateComparisonSchema, DateDifferenceSchema, DateFormatterSchema, DuckDuckGoProvider, EmailValidatorSchema, EmbeddingManager, HttpMethod, IpValidatorSchema, MAX_BATCH_SIZE, MathFunctionsSchema, MissingPeerDependencyError, OpenAIEmbeddingProvider, PhoneValidatorSchema, RandomNumberSchema, SchemaInspector, SerperProvider, StatisticsSchema, StringCaseConverterSchema, StringJoinSchema, StringLengthSchema, StringReplaceSchema, StringSplitSchema, StringSubstringSchema, StringTrimSchema, UrlValidatorSimpleSchema, UuidValidatorSchema, archiveConfluencePage, arrayFilter, arrayFilterSchema, arrayGroupBy, arrayGroupBySchema, arrayMap, arrayMapSchema, arraySort, arraySortSchema, askHumanTool, benchmarkBatchExecution, benchmarkStreamingSelectMemory, buildDeleteQuery, buildInsertQuery, buildSelectQuery, buildUpdateQuery, calculator, checkPeerDependency, confluenceTools, createArrayFilterTool, createArrayGroupByTool, createArrayMapTool, createArraySortTool, createAskHumanTool, createCalculatorTool, createConfluencePage, createConfluenceTools, createCreditCardValidatorTool, createCsvGeneratorTool, createCsvParserTool, createCsvToJsonTool, createCsvTools, createCurrentDateTimeTool, createDateArithmeticTool, createDateComparisonTool, createDateDifferenceTool, createDateFormatterTool, createDateTimeTools, createDirectoryCreateTool, createDirectoryDeleteTool, createDirectoryListTool, createDirectoryOperationTools, createDuckDuckGoProvider, createEmailValidatorTool, createExtractImagesTool, createExtractLinksTool, createFileAppendTool, createFileDeleteTool, createFileExistsTool, createFileOperationTools, createFileReaderTool, createFileSearchTool, createFileWriterTool, createHtmlParserTool, createHtmlParserTools, createHttpTools, createIpValidatorTool, createJsonMergeTool, createJsonParserTool, createJsonQueryTool, createJsonStringifyTool, createJsonToCsvTool, createJsonToXmlTool, createJsonTools, createJsonValidatorTool, createMathFunctionsTool, createMathOperationTools, createNeo4jCreateNodeWithEmbeddingTool, createNeo4jFindNodesTool, createNeo4jGetSchemaTool, createNeo4jQueryTool, createNeo4jTools, createNeo4jTraverseTool, createNeo4jVectorSearchTool, createNeo4jVectorSearchWithEmbeddingTool, createObjectOmitTool, createObjectPickTool, createPathBasenameTool, createPathDirnameTool, createPathExtensionTool, createPathJoinTool, createPathNormalizeTool, createPathParseTool, createPathRelativeTool, createPathResolveTool, createPathUtilityTools, createPhoneValidatorTool, createRandomNumberTool, createScraperTools, createSelectReadableStream, createSerperProvider, createSlackTools, createStatisticsTool, createStringCaseConverterTool, createStringJoinTool, createStringLengthTool, createStringReplaceTool, createStringSplitTool, createStringSubstringTool, createStringTrimTool, createStringUtilityTools, createTransformerTools, createUrlBuilderTool, createUrlQueryParserTool, createUrlValidatorSimpleTool, createUrlValidatorTool, createUrlValidatorTools, createUuidValidatorTool, createValidationTools, createWebScraperTool, createXmlGeneratorTool, createXmlParserTool, createXmlToJsonTool, createXmlTools, creditCardValidator, csvGenerator, csvGeneratorSchema, csvParser, csvParserSchema, csvToJson, csvToJsonSchema, csvTools, currentDateTime, dateArithmetic, dateComparison, dateDifference, dateFormatter, dateTimeTools, diffSchemas, directoryCreate, directoryCreateSchema, directoryDelete, directoryDeleteSchema, directoryList, directoryListSchema, directoryOperationTools, emailValidator, embeddingManager, executeBatchedTask, executeQuery2 as executeQuery, executeStreamingSelect, exportSchemaToJson, extractImages, extractImagesSchema, extractLinks, extractLinksSchema, fileAppend, fileAppendSchema, fileDelete, fileDeleteSchema, fileExists, fileExistsSchema, fileOperationTools, fileReader, fileReaderSchema, fileSearch, fileSearchSchema, fileWriter, fileWriterSchema, generateBatchEmbeddings, generateEmbedding, getCohereApiKey, getConfluencePage, getEmbeddingModel, getEmbeddingProvider, getHuggingFaceApiKey, getInstallationInstructions, getOllamaBaseUrl, getOpenAIApiKey, getPeerDependencyName, getSlackChannels, getSlackMessages, getSpacePages, getVendorTypeMap, getVoyageApiKey, htmlParser, htmlParserSchema, htmlParserTools, httpClient, httpGet, httpGetSchema, httpPost, httpPostSchema, httpRequestSchema, httpTools, importSchemaFromJson, initializeEmbeddings, initializeEmbeddingsWithConfig, initializeFromEnv, initializeNeo4jTools, ipValidator, isRetryableError2 as isRetryableError, jsonMerge, jsonMergeSchema, jsonParser, jsonParserSchema, jsonQuery, jsonQuerySchema, jsonStringify, jsonStringifySchema, jsonToCsv, jsonToCsvSchema, jsonToXml, jsonToXmlSchema, jsonTools, jsonValidator, jsonValidatorSchema, listConfluenceSpaces, mapColumnType, mapSchemaTypes, mathFunctions, mathOperationTools, neo4jCoreTools, neo4jCreateNodeWithEmbedding, neo4jCreateNodeWithEmbeddingSchema, neo4jFindNodes, neo4jFindNodesSchema, neo4jGetSchema, neo4jGetSchemaSchema, neo4jPool, neo4jQuery, neo4jQuerySchema, neo4jTools, neo4jTraverse, neo4jTraverseSchema, neo4jVectorSearch, neo4jVectorSearchSchema, neo4jVectorSearchWithEmbedding, neo4jVectorSearchWithEmbeddingSchema, notifySlack, objectOmit, objectOmitSchema, objectPick, objectPickSchema, pathBasename, pathBasenameSchema, pathDirname, pathDirnameSchema, pathExtension, pathExtensionSchema, pathJoin, pathJoinSchema, pathNormalize, pathNormalizeSchema, pathParse, pathParseSchema, pathRelative, pathRelativeSchema, pathResolve, pathResolveSchema, pathUtilityTools, phoneValidator, randomNumber, relationalDelete, relationalGetSchema, relationalInsert, relationalQuery, relationalSelect, relationalUpdate, retryWithBackoff2 as retryWithBackoff, scraperTools, searchConfluence, searchResultSchema, sendSlackMessage, slackTools, statistics, streamSelectChunks, stringCaseConverter, stringJoin, stringLength, stringReplace, stringSplit, stringSubstring, stringTrim, stringUtilityTools, transformerArraySchema, transformerObjectSchema, transformerTools, transformerValueSchema, updateConfluencePage, urlBuilder, urlBuilderSchema, urlQueryParser, urlQueryParserSchema, urlValidator, urlValidatorSchema, urlValidatorSimple, urlValidatorTools, uuidValidator, validateBatch, validateColumnTypes, validateColumnsExist, validateTableExists, validateText, validationTools, webScraper, webScraperSchema, webSearch, webSearchOutputSchema, webSearchSchema, withTransaction, xmlGenerator, xmlGeneratorSchema, xmlParser, xmlParserSchema, xmlToJson, xmlToJsonSchema, xmlTools };
10250
10265
  //# sourceMappingURL=index.js.map
10251
10266
  //# sourceMappingURL=index.js.map