langchain 0.3.27 → 0.3.29
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/agents/agent.cjs +36 -3
- package/dist/agents/format_scratchpad/log.cjs +1 -2
- package/dist/agents/format_scratchpad/log_to_message.cjs +1 -2
- package/dist/agents/format_scratchpad/openai_functions.cjs +2 -3
- package/dist/agents/format_scratchpad/tool_calling.cjs +2 -3
- package/dist/agents/format_scratchpad/xml.cjs +1 -2
- package/dist/agents/initialize.cjs +2 -2
- package/dist/agents/openai_functions/index.cjs +3 -3
- package/dist/agents/openai_tools/index.cjs +2 -2
- package/dist/agents/react/index.cjs +1 -2
- package/dist/agents/structured_chat/index.cjs +6 -4
- package/dist/agents/structured_chat/index.js +5 -3
- package/dist/agents/structured_chat/prompt.d.ts +1 -1
- package/dist/agents/tool_calling/index.cjs +1 -2
- package/dist/agents/tool_calling/output_parser.cjs +2 -2
- package/dist/agents/toolkits/conversational_retrieval/openai_functions.cjs +1 -2
- package/dist/agents/toolkits/conversational_retrieval/tool.cjs +1 -2
- package/dist/agents/toolkits/json/json.cjs +2 -2
- package/dist/agents/toolkits/openapi/openapi.cjs +2 -2
- package/dist/agents/toolkits/sql/sql.cjs +2 -2
- package/dist/agents/toolkits/vectorstore/vectorstore.cjs +3 -3
- package/dist/agents/xml/index.cjs +2 -2
- package/dist/chains/api/prompts.d.ts +1 -1
- package/dist/chains/base.cjs +42 -9
- package/dist/chains/base.d.ts +2 -2
- package/dist/chains/base.js +1 -1
- package/dist/chains/combine_documents/base.cjs +2 -2
- package/dist/chains/combine_documents/reduce.cjs +2 -3
- package/dist/chains/combine_documents/stuff.cjs +1 -2
- package/dist/chains/history_aware_retriever.cjs +1 -2
- package/dist/chains/openai_functions/base.cjs +5 -6
- package/dist/chains/openai_functions/base.d.ts +3 -4
- package/dist/chains/openai_functions/base.js +4 -4
- package/dist/chains/openai_functions/extraction.cjs +6 -7
- package/dist/chains/openai_functions/extraction.d.ts +4 -4
- package/dist/chains/openai_functions/extraction.js +4 -4
- package/dist/chains/openai_functions/openapi.cjs +4 -5
- package/dist/chains/openai_functions/openapi.d.ts +1 -1
- package/dist/chains/openai_functions/openapi.js +1 -1
- package/dist/chains/openai_functions/structured_output.cjs +7 -7
- package/dist/chains/openai_functions/structured_output.d.ts +7 -8
- package/dist/chains/openai_functions/structured_output.js +5 -5
- package/dist/chains/openai_functions/tagging.cjs +4 -5
- package/dist/chains/openai_functions/tagging.d.ts +2 -2
- package/dist/chains/openai_functions/tagging.js +2 -2
- package/dist/chains/query_constructor/index.cjs +3 -3
- package/dist/chains/query_constructor/index.d.ts +2 -2
- package/dist/chains/question_answering/load.cjs +4 -4
- package/dist/chains/retrieval.cjs +1 -2
- package/dist/chains/router/utils.cjs +1 -2
- package/dist/chains/sequential_chain.cjs +2 -1
- package/dist/chains/sequential_chain.js +2 -1
- package/dist/chains/sql_db/sql_db_chain.cjs +2 -2
- package/dist/chat_models/universal.cjs +54 -21
- package/dist/document_loaders/fs/buffer.cjs +34 -1
- package/dist/document_loaders/fs/buffer.d.ts +0 -3
- package/dist/document_loaders/fs/directory.cjs +35 -2
- package/dist/document_loaders/fs/directory.d.ts +0 -2
- package/dist/document_loaders/fs/text.cjs +34 -1
- package/dist/document_loaders/fs/text.d.ts +0 -1
- package/dist/document_transformers/openai_functions.cjs +5 -5
- package/dist/document_transformers/openai_functions.d.ts +3 -3
- package/dist/document_transformers/openai_functions.js +2 -2
- package/dist/evaluation/embedding_distance/base.cjs +3 -3
- package/dist/evaluation/loader.cjs +1 -2
- package/dist/experimental/autogpt/output_parser.cjs +2 -2
- package/dist/experimental/autogpt/prompt_generator.cjs +4 -4
- package/dist/experimental/autogpt/prompt_generator.js +3 -3
- package/dist/experimental/generative_agents/generative_agent.cjs +1 -1
- package/dist/experimental/generative_agents/generative_agent.js +1 -1
- package/dist/experimental/openai_assistant/index.cjs +8 -4
- package/dist/experimental/openai_assistant/index.d.ts +6 -6
- package/dist/experimental/openai_assistant/index.js +9 -5
- package/dist/experimental/openai_files/index.cjs +2 -2
- package/dist/experimental/openai_files/index.d.ts +6 -4
- package/dist/experimental/openai_files/index.js +2 -2
- package/dist/experimental/plan_and_execute/agent_executor.cjs +2 -2
- package/dist/hub/base.cjs +4 -5
- package/dist/hub/index.cjs +2 -2
- package/dist/hub/node.cjs +43 -10
- package/dist/index.cjs +0 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +1 -1
- package/dist/load/import_map.cjs +17 -7
- package/dist/load/index.cjs +18 -9
- package/dist/output_parsers/expression_type_handlers/base.cjs +34 -1
- package/dist/output_parsers/openai_functions.d.ts +1 -1
- package/dist/output_parsers/router.d.ts +3 -3
- package/dist/output_parsers/structured.cjs +6 -5
- package/dist/output_parsers/structured.d.ts +9 -8
- package/dist/output_parsers/structured.js +6 -5
- package/dist/prompts/index.cjs +0 -1
- package/dist/prompts/index.d.ts +0 -1
- package/dist/prompts/index.js +1 -1
- package/dist/retrievers/hyde.cjs +2 -2
- package/dist/retrievers/parent_document.cjs +17 -7
- package/dist/smith/config.cjs +5 -6
- package/dist/smith/name_generation.cjs +1 -2
- package/dist/smith/runner_utils.cjs +1 -2
- package/dist/sql_db.cjs +35 -2
- package/dist/storage/encoder_backed.cjs +2 -2
- package/dist/storage/encoder_backed.d.ts +1 -1
- package/dist/storage/file_system.cjs +17 -7
- package/dist/storage/file_system.d.ts +1 -1
- package/dist/stores/file/node.cjs +17 -7
- package/dist/tools/convert_to_openai.cjs +5 -5
- package/dist/tools/convert_to_openai.js +4 -4
- package/dist/tools/fs.d.ts +3 -2
- package/dist/tools/render.cjs +6 -5
- package/dist/tools/render.js +5 -3
- package/dist/tools/retriever.cjs +1 -2
- package/dist/tools/webbrowser.cjs +17 -7
- package/dist/util/axios-fetch-adapter.cjs +1 -1
- package/dist/util/azure.cjs +1 -2
- package/dist/util/entrypoint_deprecation.cjs +2 -3
- package/dist/util/load.cjs +34 -1
- package/dist/util/ml-distance/distances.cjs +3 -4
- package/dist/util/ml-distance/similarities.cjs +1 -2
- package/dist/util/ml-distance-euclidean/euclidean.cjs +2 -3
- package/dist/util/openapi.cjs +17 -7
- package/dist/util/openapi.d.ts +32 -32
- package/dist/util/parse.cjs +17 -7
- package/dist/util/prompt-layer.d.ts +1 -1
- package/dist/util/set.cjs +3 -4
- package/dist/util/time.cjs +1 -2
- package/package.json +8 -9
package/dist/util/openapi.d.ts
CHANGED
|
@@ -8,8 +8,8 @@ export declare class OpenAPISpec {
|
|
|
8
8
|
getSchemasStrict(): Record<string, OpenAPIV3_1.SchemaObject>;
|
|
9
9
|
getRequestBodiesStrict(): Record<string, OpenAPIV3_1.ReferenceObject | OpenAPIV3_1.RequestBodyObject>;
|
|
10
10
|
getPathStrict(path: string): Omit<OpenAPIV3.PathItemObject<{}>, "servers" | "parameters"> & {
|
|
11
|
-
servers?: OpenAPIV3_1.ServerObject[]
|
|
12
|
-
parameters?: (
|
|
11
|
+
servers?: OpenAPIV3_1.ServerObject[];
|
|
12
|
+
parameters?: (OpenAPIV3_1.ReferenceObject | OpenAPIV3_1.ParameterObject)[];
|
|
13
13
|
} & {
|
|
14
14
|
get?: OpenAPIV3_1.OperationObject<{}> | undefined;
|
|
15
15
|
put?: OpenAPIV3_1.OperationObject<{}> | undefined;
|
|
@@ -24,48 +24,48 @@ export declare class OpenAPISpec {
|
|
|
24
24
|
getRootReferencedParameter(ref: OpenAPIV3_1.ReferenceObject): OpenAPIV3_1.ParameterObject;
|
|
25
25
|
getReferencedSchema(ref: OpenAPIV3_1.ReferenceObject): OpenAPIV3_1.SchemaObject;
|
|
26
26
|
getSchema(schema: OpenAPIV3_1.ReferenceObject | OpenAPIV3_1.SchemaObject): OpenAPIV3_1.SchemaObject;
|
|
27
|
-
getRootReferencedSchema(ref: OpenAPIV3_1.ReferenceObject):
|
|
27
|
+
getRootReferencedSchema(ref: OpenAPIV3_1.ReferenceObject): OpenAPIV3_1.ParameterObject;
|
|
28
28
|
getReferencedRequestBody(ref: OpenAPIV3_1.ReferenceObject): OpenAPIV3_1.ReferenceObject | OpenAPIV3_1.RequestBodyObject;
|
|
29
29
|
getRootReferencedRequestBody(ref: OpenAPIV3_1.ReferenceObject): OpenAPIV3_1.RequestBodyObject;
|
|
30
30
|
getMethodsForPath(path: string): OpenAPIV3.HttpMethods[];
|
|
31
31
|
getParametersForPath(path: string): OpenAPIV3.ParameterObject[];
|
|
32
|
-
getOperation(path: string, method: OpenAPIV3.HttpMethods):
|
|
33
|
-
tags?: string[]
|
|
34
|
-
summary?: string
|
|
35
|
-
description?: string
|
|
36
|
-
externalDocs?: OpenAPIV3.ExternalDocumentationObject
|
|
37
|
-
operationId?: string
|
|
38
|
-
parameters?: (OpenAPIV3.ReferenceObject | OpenAPIV3.ParameterObject)[]
|
|
39
|
-
requestBody?: OpenAPIV3.ReferenceObject | OpenAPIV3.RequestBodyObject
|
|
32
|
+
getOperation(path: string, method: OpenAPIV3.HttpMethods): {
|
|
33
|
+
tags?: string[];
|
|
34
|
+
summary?: string;
|
|
35
|
+
description?: string;
|
|
36
|
+
externalDocs?: OpenAPIV3.ExternalDocumentationObject;
|
|
37
|
+
operationId?: string;
|
|
38
|
+
parameters?: (OpenAPIV3.ReferenceObject | OpenAPIV3.ParameterObject)[];
|
|
39
|
+
requestBody?: OpenAPIV3.ReferenceObject | OpenAPIV3.RequestBodyObject;
|
|
40
40
|
responses: OpenAPIV3.ResponsesObject;
|
|
41
41
|
callbacks?: {
|
|
42
42
|
[callback: string]: OpenAPIV3.ReferenceObject | OpenAPIV3.CallbackObject;
|
|
43
|
-
}
|
|
44
|
-
deprecated?: boolean
|
|
45
|
-
security?: OpenAPIV3.SecurityRequirementObject[]
|
|
46
|
-
servers?: OpenAPIV3.ServerObject[]
|
|
43
|
+
};
|
|
44
|
+
deprecated?: boolean;
|
|
45
|
+
security?: OpenAPIV3.SecurityRequirementObject[];
|
|
46
|
+
servers?: OpenAPIV3.ServerObject[];
|
|
47
47
|
} & Omit<{
|
|
48
|
-
tags?: string[]
|
|
49
|
-
summary?: string
|
|
50
|
-
description?: string
|
|
51
|
-
externalDocs?: OpenAPIV3.ExternalDocumentationObject
|
|
52
|
-
operationId?: string
|
|
53
|
-
parameters?: (OpenAPIV3.ReferenceObject | OpenAPIV3.ParameterObject)[]
|
|
54
|
-
requestBody?: OpenAPIV3.ReferenceObject | OpenAPIV3.RequestBodyObject
|
|
48
|
+
tags?: string[];
|
|
49
|
+
summary?: string;
|
|
50
|
+
description?: string;
|
|
51
|
+
externalDocs?: OpenAPIV3.ExternalDocumentationObject;
|
|
52
|
+
operationId?: string;
|
|
53
|
+
parameters?: (OpenAPIV3.ReferenceObject | OpenAPIV3.ParameterObject)[];
|
|
54
|
+
requestBody?: OpenAPIV3.ReferenceObject | OpenAPIV3.RequestBodyObject;
|
|
55
55
|
responses: OpenAPIV3.ResponsesObject;
|
|
56
56
|
callbacks?: {
|
|
57
57
|
[callback: string]: OpenAPIV3.ReferenceObject | OpenAPIV3.CallbackObject;
|
|
58
|
-
}
|
|
59
|
-
deprecated?: boolean
|
|
60
|
-
security?: OpenAPIV3.SecurityRequirementObject[]
|
|
61
|
-
servers?: OpenAPIV3.ServerObject[]
|
|
58
|
+
};
|
|
59
|
+
deprecated?: boolean;
|
|
60
|
+
security?: OpenAPIV3.SecurityRequirementObject[];
|
|
61
|
+
servers?: OpenAPIV3.ServerObject[];
|
|
62
62
|
}, "callbacks" | "servers" | "parameters" | "responses" | "requestBody"> & {
|
|
63
|
-
parameters?: (
|
|
64
|
-
requestBody?: OpenAPIV3_1.ReferenceObject | OpenAPIV3_1.RequestBodyObject
|
|
65
|
-
responses?: OpenAPIV3_1.ResponsesObject
|
|
66
|
-
callbacks?: Record<string, OpenAPIV3_1.ReferenceObject | OpenAPIV3_1.CallbackObject
|
|
67
|
-
servers?: OpenAPIV3_1.ServerObject[]
|
|
68
|
-
}
|
|
63
|
+
parameters?: (OpenAPIV3_1.ReferenceObject | OpenAPIV3_1.ParameterObject)[];
|
|
64
|
+
requestBody?: OpenAPIV3_1.ReferenceObject | OpenAPIV3_1.RequestBodyObject;
|
|
65
|
+
responses?: OpenAPIV3_1.ResponsesObject;
|
|
66
|
+
callbacks?: Record<string, OpenAPIV3_1.ReferenceObject | OpenAPIV3_1.CallbackObject>;
|
|
67
|
+
servers?: OpenAPIV3_1.ServerObject[];
|
|
68
|
+
};
|
|
69
69
|
getParametersForOperation(operation: OpenAPIV3_1.OperationObject): OpenAPIV3.ParameterObject[];
|
|
70
70
|
getRequestBodyForOperation(operation: OpenAPIV3_1.OperationObject): OpenAPIV3_1.RequestBodyObject;
|
|
71
71
|
static getCleanedOperationId(operation: OpenAPIV3_1.OperationObject, path: string, method: OpenAPIV3_1.HttpMethods): string;
|
package/dist/util/parse.cjs
CHANGED
|
@@ -15,13 +15,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
15
15
|
}) : function(o, v) {
|
|
16
16
|
o["default"] = v;
|
|
17
17
|
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
};
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
25
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
36
|
exports.parseFileConfig = exports.loadFileContents = void 0;
|
|
27
37
|
const yaml = __importStar(require("yaml"));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { OpenAI as OpenAIClient } from "openai";
|
|
2
2
|
import { AsyncCaller } from "@langchain/core/utils/async_caller";
|
|
3
|
-
export declare const promptLayerTrackRequest: (callerFunc: AsyncCaller, functionName: string, kwargs: OpenAIClient.CompletionCreateParams | OpenAIClient.Chat.
|
|
3
|
+
export declare const promptLayerTrackRequest: (callerFunc: AsyncCaller, functionName: string, kwargs: OpenAIClient.CompletionCreateParams | OpenAIClient.Chat.ChatCompletionCreateParams, plTags: string[] | undefined, requestResponse: any, startTime: number, endTime: number, apiKey: string | undefined) => Promise<any>;
|
package/dist/util/set.cjs
CHANGED
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
* Source: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set#implementing_basic_set_operations
|
|
4
4
|
*/
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.
|
|
6
|
+
exports.intersection = intersection;
|
|
7
|
+
exports.union = union;
|
|
8
|
+
exports.difference = difference;
|
|
7
9
|
/**
|
|
8
10
|
* returns intersection of two sets
|
|
9
11
|
*/
|
|
@@ -16,7 +18,6 @@ function intersection(setA, setB) {
|
|
|
16
18
|
}
|
|
17
19
|
return _intersection;
|
|
18
20
|
}
|
|
19
|
-
exports.intersection = intersection;
|
|
20
21
|
/**
|
|
21
22
|
* returns union of two sets
|
|
22
23
|
*/
|
|
@@ -27,7 +28,6 @@ function union(setA, setB) {
|
|
|
27
28
|
}
|
|
28
29
|
return _union;
|
|
29
30
|
}
|
|
30
|
-
exports.union = union;
|
|
31
31
|
/**
|
|
32
32
|
* returns difference of two sets
|
|
33
33
|
*/
|
|
@@ -38,4 +38,3 @@ function difference(setA, setB) {
|
|
|
38
38
|
}
|
|
39
39
|
return _difference;
|
|
40
40
|
}
|
|
41
|
-
exports.difference = difference;
|
package/dist/util/time.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.sleep =
|
|
3
|
+
exports.sleep = sleep;
|
|
4
4
|
/**
|
|
5
5
|
* Sleep for a given amount of time.
|
|
6
6
|
* @param ms - The number of milliseconds to sleep for. Defaults to 1000.
|
|
@@ -11,4 +11,3 @@ async function sleep(ms = 1000) {
|
|
|
11
11
|
setTimeout(resolve, ms);
|
|
12
12
|
});
|
|
13
13
|
}
|
|
14
|
-
exports.sleep = sleep;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "langchain",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.29",
|
|
4
4
|
"description": "Typescript bindings for langchain",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -396,7 +396,7 @@
|
|
|
396
396
|
"build": "yarn turbo:command build:internal --filter=langchain",
|
|
397
397
|
"build:internal": "yarn lc_build --create-entrypoints --pre --tree-shaking --gen-maps",
|
|
398
398
|
"lint:eslint": "NODE_OPTIONS=--max-old-space-size=4096 eslint --cache --ext .ts,.js src/",
|
|
399
|
-
"lint:dpdm": "dpdm --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts",
|
|
399
|
+
"lint:dpdm": "dpdm --skip-dynamic-imports circular --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts",
|
|
400
400
|
"lint": "yarn lint:eslint && yarn lint:dpdm",
|
|
401
401
|
"lint:fix": "yarn lint:eslint --fix && yarn lint:dpdm",
|
|
402
402
|
"precommit": "lint-staged",
|
|
@@ -443,7 +443,7 @@
|
|
|
443
443
|
"axios": "^0.26.0",
|
|
444
444
|
"cheerio": "1.0.0-rc.12",
|
|
445
445
|
"dotenv": "^16.0.3",
|
|
446
|
-
"dpdm": "^3.
|
|
446
|
+
"dpdm": "^3.14.0",
|
|
447
447
|
"eslint": "^8.33.0",
|
|
448
448
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
449
449
|
"eslint-config-prettier": "^8.6.0",
|
|
@@ -454,7 +454,7 @@
|
|
|
454
454
|
"handlebars": "^4.7.8",
|
|
455
455
|
"jest": "^29.5.0",
|
|
456
456
|
"jest-environment-node": "^29.6.4",
|
|
457
|
-
"openai": "^
|
|
457
|
+
"openai": "^5.1.0",
|
|
458
458
|
"peggy": "^3.0.2",
|
|
459
459
|
"prettier": "^2.8.3",
|
|
460
460
|
"reflect-metadata": "^0.2.2",
|
|
@@ -463,7 +463,7 @@
|
|
|
463
463
|
"rollup": "^3.19.1",
|
|
464
464
|
"ts-jest": "^29.1.0",
|
|
465
465
|
"typeorm": "^0.3.20",
|
|
466
|
-
"typescript": "~5.
|
|
466
|
+
"typescript": "~5.8.3",
|
|
467
467
|
"wikipedia": "^2.1.2"
|
|
468
468
|
},
|
|
469
469
|
"peerDependencies": {
|
|
@@ -471,7 +471,7 @@
|
|
|
471
471
|
"@langchain/aws": "*",
|
|
472
472
|
"@langchain/cerebras": "*",
|
|
473
473
|
"@langchain/cohere": "*",
|
|
474
|
-
"@langchain/core": ">=0.
|
|
474
|
+
"@langchain/core": ">=0.3.58 <0.4.0",
|
|
475
475
|
"@langchain/deepseek": "*",
|
|
476
476
|
"@langchain/google-genai": "*",
|
|
477
477
|
"@langchain/google-vertexai": "*",
|
|
@@ -545,13 +545,12 @@
|
|
|
545
545
|
"js-tiktoken": "^1.0.12",
|
|
546
546
|
"js-yaml": "^4.1.0",
|
|
547
547
|
"jsonpointer": "^5.0.1",
|
|
548
|
-
"langsmith": "^0.3.
|
|
548
|
+
"langsmith": "^0.3.33",
|
|
549
549
|
"openapi-types": "^12.1.3",
|
|
550
550
|
"p-retry": "4",
|
|
551
551
|
"uuid": "^10.0.0",
|
|
552
552
|
"yaml": "^2.2.1",
|
|
553
|
-
"zod": "^3.
|
|
554
|
-
"zod-to-json-schema": "^3.22.3"
|
|
553
|
+
"zod": "^3.25.32"
|
|
555
554
|
},
|
|
556
555
|
"publishConfig": {
|
|
557
556
|
"access": "public"
|