@agentforge/tools 0.16.33 → 0.16.35

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.js CHANGED
@@ -26,7 +26,7 @@ var httpRequestSchema = z.object({
26
26
  url: z.string().url().describe("The URL to make the request to"),
27
27
  method: HttpMethod.default("GET").describe("HTTP method to use"),
28
28
  headers: z.record(z.string()).optional().describe("Optional HTTP headers"),
29
- body: z.any().optional().describe("Optional request body (for POST, PUT, PATCH)"),
29
+ body: z.unknown().optional().describe("Optional request body (for POST, PUT, PATCH)"),
30
30
  timeout: z.number().default(3e4).describe("Request timeout in milliseconds"),
31
31
  params: z.record(z.string()).optional().describe("Optional URL query parameters")
32
32
  });
@@ -37,7 +37,7 @@ var httpGetSchema = z.object({
37
37
  });
38
38
  var httpPostSchema = z.object({
39
39
  url: z.string().url().describe("The URL to post to"),
40
- body: z.any().describe("The request body (will be sent as JSON)"),
40
+ body: z.unknown().describe("The request body (will be sent as JSON)"),
41
41
  headers: z.record(z.string()).optional().describe("Optional HTTP headers")
42
42
  });
43
43
 
@@ -1644,19 +1644,21 @@ var jsonParserSchema = z.object({
1644
1644
  strict: z.boolean().default(true).describe("Use strict JSON parsing (no trailing commas, etc.)")
1645
1645
  });
1646
1646
  var jsonStringifySchema = z.object({
1647
- data: z.any().describe("Data to convert to JSON string"),
1647
+ data: z.unknown().describe("Data to convert to JSON string"),
1648
1648
  pretty: z.boolean().default(false).describe("Format with indentation for readability"),
1649
1649
  indent: z.number().default(2).describe("Number of spaces for indentation (when pretty is true)")
1650
1650
  });
1651
1651
  var jsonQuerySchema = z.object({
1652
- data: z.any().describe("JSON data to query"),
1652
+ data: z.unknown().describe("JSON data to query"),
1653
1653
  path: z.string().describe('Dot notation path to query (e.g., "user.name" or "items[0].id")')
1654
1654
  });
1655
1655
  var jsonValidatorSchema = z.object({
1656
1656
  json: z.string().describe("JSON string to validate")
1657
1657
  });
1658
1658
  var jsonMergeSchema = z.object({
1659
- objects: z.array(z.any().describe("Object to merge")).describe("Array of objects to merge"),
1659
+ objects: z.array(
1660
+ z.record(z.unknown().describe("Value associated with the object key")).describe("Object to merge")
1661
+ ).describe("Array of objects to merge"),
1660
1662
  deep: z.boolean().default(false).describe("Perform deep merge (nested objects)")
1661
1663
  });
1662
1664
  function createJsonParserTool() {
@@ -1679,18 +1681,33 @@ function createJsonStringifyTool(defaultIndent = 2, defaultPretty = false) {
1679
1681
  };
1680
1682
  }).build();
1681
1683
  }
1684
+ function isRecord(value) {
1685
+ return typeof value === "object" && value !== null && !Array.isArray(value);
1686
+ }
1687
+ function getPathValue(current, part) {
1688
+ const arrayMatch = part.match(/^(\w+)\[(\d+)\]$/);
1689
+ if (arrayMatch) {
1690
+ const [, key, index] = arrayMatch;
1691
+ if (!isRecord(current)) {
1692
+ return void 0;
1693
+ }
1694
+ const candidate = current[key];
1695
+ if (!Array.isArray(candidate)) {
1696
+ return void 0;
1697
+ }
1698
+ return candidate[parseInt(index, 10)];
1699
+ }
1700
+ if (!isRecord(current)) {
1701
+ return void 0;
1702
+ }
1703
+ return current[part];
1704
+ }
1682
1705
  function createJsonQueryTool() {
1683
1706
  return toolBuilder().name("json-query").description('Query JSON data using dot notation path (e.g., "user.address.city"). Supports array indexing.').category(ToolCategory.UTILITY).tags(["json", "query", "path", "data"]).schema(jsonQuerySchema).implementSafe(async (input) => {
1684
1707
  const parts = input.path.split(".");
1685
1708
  let current = input.data;
1686
1709
  for (const part of parts) {
1687
- const arrayMatch = part.match(/^(\w+)\[(\d+)\]$/);
1688
- if (arrayMatch) {
1689
- const [, key, index] = arrayMatch;
1690
- current = current[key][parseInt(index, 10)];
1691
- } else {
1692
- current = current[part];
1693
- }
1710
+ current = getPathValue(current, part);
1694
1711
  if (current === void 0) {
1695
1712
  throw new Error(`Path not found: ${input.path}`);
1696
1713
  }
@@ -1710,23 +1727,59 @@ function createJsonValidatorTool() {
1710
1727
  };
1711
1728
  }).build();
1712
1729
  }
1730
+ function isMergeObject(value) {
1731
+ return typeof value === "object" && value !== null && !Array.isArray(value);
1732
+ }
1733
+ function setMergeProperty(target, key, value) {
1734
+ Object.defineProperty(target, key, {
1735
+ value,
1736
+ enumerable: true,
1737
+ configurable: true,
1738
+ writable: true
1739
+ });
1740
+ }
1741
+ function cloneMergeObject(source) {
1742
+ const output = {};
1743
+ for (const [key, value] of Object.entries(source)) {
1744
+ if (isMergeObject(value)) {
1745
+ setMergeProperty(output, key, cloneMergeObject(value));
1746
+ continue;
1747
+ }
1748
+ setMergeProperty(output, key, value);
1749
+ }
1750
+ return output;
1751
+ }
1752
+ function deepMerge(target, source) {
1753
+ const output = cloneMergeObject(target);
1754
+ for (const [key, sourceValue] of Object.entries(source)) {
1755
+ const targetValue = output[key];
1756
+ if (isMergeObject(sourceValue) && isMergeObject(targetValue)) {
1757
+ setMergeProperty(output, key, deepMerge(targetValue, sourceValue));
1758
+ continue;
1759
+ }
1760
+ if (isMergeObject(sourceValue)) {
1761
+ setMergeProperty(output, key, cloneMergeObject(sourceValue));
1762
+ continue;
1763
+ }
1764
+ setMergeProperty(output, key, sourceValue);
1765
+ }
1766
+ return output;
1767
+ }
1768
+ function shallowMerge(objects) {
1769
+ const output = {};
1770
+ for (const object of objects) {
1771
+ for (const [key, value] of Object.entries(object)) {
1772
+ setMergeProperty(output, key, value);
1773
+ }
1774
+ }
1775
+ return output;
1776
+ }
1713
1777
  function createJsonMergeTool() {
1714
1778
  return toolBuilder().name("json-merge").description("Merge two or more JSON objects. Later objects override earlier ones for conflicting keys.").category(ToolCategory.UTILITY).tags(["json", "merge", "combine", "data"]).schema(jsonMergeSchema).implement(async (input) => {
1715
1779
  if (input.deep) {
1716
- const deepMerge = (target, source) => {
1717
- const output = { ...target };
1718
- for (const key in source) {
1719
- if (source[key] && typeof source[key] === "object" && !Array.isArray(source[key])) {
1720
- output[key] = deepMerge(output[key] || {}, source[key]);
1721
- } else {
1722
- output[key] = source[key];
1723
- }
1724
- }
1725
- return output;
1726
- };
1727
1780
  return input.objects.reduce((acc, obj) => deepMerge(acc, obj), {});
1728
1781
  } else {
1729
- return Object.assign({}, ...input.objects);
1782
+ return shallowMerge(input.objects);
1730
1783
  }
1731
1784
  }).build();
1732
1785
  }
@@ -1887,31 +1940,34 @@ function createXmlTools(config = {}) {
1887
1940
  createJsonToXmlTool(defaultRootName, defaultFormat)
1888
1941
  ];
1889
1942
  }
1943
+ var transformerValueSchema = z.unknown().describe("Transformer value");
1944
+ var transformerArraySchema = z.array(transformerValueSchema).describe("Array to transform");
1945
+ var transformerObjectSchema = z.record(z.string(), transformerValueSchema).describe("Source object");
1890
1946
  var arrayFilterSchema = z.object({
1891
- array: z.array(z.any().describe("Array element")).describe("Array to filter"),
1947
+ array: transformerArraySchema.describe("Array to filter"),
1892
1948
  property: z.string().describe("Property name to filter by (use dot notation for nested properties)"),
1893
1949
  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")
1950
+ value: transformerValueSchema.describe("Value to compare against")
1895
1951
  });
1896
1952
  var arrayMapSchema = z.object({
1897
- array: z.array(z.any().describe("Array element")).describe("Array to map"),
1953
+ array: transformerArraySchema.describe("Array to map"),
1898
1954
  properties: z.array(z.string().describe("String value")).describe("List of property names to extract from each object")
1899
1955
  });
1900
1956
  var arraySortSchema = z.object({
1901
- array: z.array(z.any().describe("Array element")).describe("Array to sort"),
1957
+ array: transformerArraySchema.describe("Array to sort"),
1902
1958
  property: z.string().describe("Property name to sort by (use dot notation for nested properties)"),
1903
1959
  order: z.enum(["asc", "desc"]).default("asc").describe("Sort order: ascending or descending")
1904
1960
  });
1905
1961
  var arrayGroupBySchema = z.object({
1906
- array: z.array(z.any().describe("Array element")).describe("Array to group"),
1962
+ array: transformerArraySchema.describe("Array to group"),
1907
1963
  property: z.string().describe("Property name to group by")
1908
1964
  });
1909
1965
  var objectPickSchema = z.object({
1910
- object: z.record(z.any().describe("Property value")).describe("Source object"),
1966
+ object: transformerObjectSchema,
1911
1967
  properties: z.array(z.string().describe("String value")).describe("List of property names to pick")
1912
1968
  });
1913
1969
  var objectOmitSchema = z.object({
1914
- object: z.record(z.any().describe("Property value")).describe("Source object"),
1970
+ object: transformerObjectSchema,
1915
1971
  properties: z.array(z.string().describe("String value")).describe("List of property names to omit")
1916
1972
  });
1917
1973
 
@@ -1993,8 +2049,12 @@ function createArrayMapTool() {
1993
2049
  const mapped = input.array.map((item) => {
1994
2050
  const result = {};
1995
2051
  for (const prop of input.properties) {
1996
- const value = prop.split(".").reduce((current, key) => current?.[key], item);
1997
- result[prop] = value;
2052
+ Object.defineProperty(result, prop, {
2053
+ value: getNestedValue(item, prop),
2054
+ enumerable: true,
2055
+ configurable: true,
2056
+ writable: true
2057
+ });
1998
2058
  }
1999
2059
  return result;
2000
2060
  });
@@ -2025,9 +2085,17 @@ function createArrayGroupByTool() {
2025
2085
  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
2086
  const groups = {};
2027
2087
  for (const item of input.array) {
2028
- const key = String(item[input.property]);
2029
- if (!groups[key]) {
2030
- groups[key] = [];
2088
+ if (item == null) {
2089
+ throw new TypeError(`Cannot read properties of ${item} (reading '${input.property}')`);
2090
+ }
2091
+ const key = String(Reflect.get(Object(item), input.property));
2092
+ if (!Object.hasOwn(groups, key)) {
2093
+ Object.defineProperty(groups, key, {
2094
+ value: [],
2095
+ enumerable: true,
2096
+ configurable: true,
2097
+ writable: true
2098
+ });
2031
2099
  }
2032
2100
  groups[key].push(item);
2033
2101
  }
@@ -10135,11 +10203,11 @@ var AskHumanInputSchema = z.object({
10135
10203
  });
10136
10204
  var logLevel3 = process.env.LOG_LEVEL?.toLowerCase() || LogLevel.INFO;
10137
10205
  var logger22 = createLogger("agentforge:tools:agent:ask-human", { level: logLevel3 });
10138
- function isRecord(value) {
10206
+ function isRecord2(value) {
10139
10207
  return typeof value === "object" && value !== null;
10140
10208
  }
10141
10209
  function resolveInterrupt(module) {
10142
- if (!isRecord(module)) {
10210
+ if (!isRecord2(module)) {
10143
10211
  return void 0;
10144
10212
  }
10145
10213
  const candidate = module.interrupt;
@@ -10246,6 +10314,6 @@ function createAskHumanTool() {
10246
10314
  }
10247
10315
  var askHumanTool = createAskHumanTool();
10248
10316
 
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 };
10317
+ 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
10318
  //# sourceMappingURL=index.js.map
10251
10319
  //# sourceMappingURL=index.js.map