Skip to content

Commit 8fad558

Browse files
authored
fix: Update deps (#361)
2 parents be112c2 + b022bdf commit 8fad558

File tree

8 files changed

+74
-108
lines changed

8 files changed

+74
-108
lines changed

.env.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# This file should contain secrets which are used inside the agent (apps/agents)
22

33
# LangSmith tracing
4-
LANGCHAIN_TRACING_V2="true"
5-
LANGCHAIN_API_KEY=""
4+
LANGSMITH_TRACING="true"
5+
LANGSMITH_API_KEY=""
66
# Optional, unless using a non default project
77
# LANGCHAIN_PROJECT=""
88

apps/agents/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@
2626
"@ffmpeg/util": "^0.12.2",
2727
"@langchain/anthropic": "^0.3.21",
2828
"@langchain/community": "^0.3.45",
29-
"@langchain/core": "^0.3.57",
29+
"@langchain/core": "^0.3.71",
3030
"@langchain/exa": "^0.1.0",
3131
"@langchain/google-genai": "^0.2.10",
3232
"@langchain/groq": "^0.2.2",
33-
"@langchain/langgraph": "^0.2.73",
34-
"@langchain/langgraph-sdk": "^0.0.78",
33+
"@langchain/langgraph": "^0.4.4",
34+
"@langchain/langgraph-sdk": "^0.0.107",
3535
"@langchain/ollama": "^0.2.0",
3636
"@langchain/openai": "^0.4.2",
3737
"@mendable/firecrawl-js": "1.10.1",
@@ -43,15 +43,15 @@
4343
"framer-motion": "^11.11.9",
4444
"groq-sdk": "^0.13.0",
4545
"langchain": "^0.3.27",
46-
"langsmith": "^0.3.29",
46+
"langsmith": "^0.3.60",
4747
"lodash": "^4.17.21",
4848
"pdf-parse": "^1.1.1",
4949
"uuid": "^10.0.0",
5050
"zod": "^3.23.8"
5151
},
5252
"devDependencies": {
5353
"@eslint/js": "^9.12.0",
54-
"@langchain/langgraph-cli": "^0.0.27",
54+
"@langchain/langgraph-cli": "^0.0.58",
5555
"@types/eslint__js": "^8.42.3",
5656
"@types/lodash": "^4.17.12",
5757
"@types/node": "^20",

apps/agents/src/open-canvas/nodes/rewrite-artifact/update-meta.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,7 @@ export async function optionallyUpdateArtifactMeta(
6060
recentHumanMessage,
6161
]);
6262

63-
return optionallyUpdateArtifactResponse;
63+
return optionallyUpdateArtifactResponse as z.infer<
64+
typeof OPTIONALLY_UPDATE_ARTIFACT_META_SCHEMA
65+
>;
6466
}

apps/web/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
"@ffmpeg/ffmpeg": "^0.12.15",
3838
"@ffmpeg/util": "^0.12.2",
3939
"@langchain/community": "^0.3.28",
40-
"@langchain/core": "^0.3.38",
41-
"@langchain/langgraph-sdk": "^0.0.40",
40+
"@langchain/core": "^0.3.71",
41+
"@langchain/langgraph-sdk": "^0.0.107",
4242
"@mendable/firecrawl-js": "1.10.1",
4343
"@nextjournal/lang-clojure": "^1.0.0",
4444
"@opencanvas/shared": "*",
@@ -74,7 +74,7 @@
7474
"framer-motion": "^11.11.9",
7575
"groq-sdk": "^0.13.0",
7676
"js-cookie": "^3.0.5",
77-
"langsmith": "^0.3.3",
77+
"langsmith": "^0.3.60",
7878
"lodash": "^4.17.21",
7979
"lucide-react": "^0.474.0",
8080
"next": "14.2.25",

package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,5 @@
2727
"eslint-plugin-no-instanceof": "^1.0.1",
2828
"eslint-plugin-prettier": "^4.2.1",
2929
"prettier": "^3.3.3"
30-
},
31-
"resolutions": {
32-
"@langchain/core": "^0.3.38"
3330
}
3431
}

packages/evals/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
"lint:fix": "eslint src --fix"
1515
},
1616
"dependencies": {
17-
"@langchain/core": "^0.3.38",
17+
"@langchain/core": "^0.3.71",
1818
"@langchain/openai": "^0.4.2",
1919
"@opencanvas/agents": "*",
20-
"langsmith": "^0.3.5",
20+
"langsmith": "^0.3.60",
2121
"zod": "^3.24.1",
2222
"dotenv": "^16.4.7"
2323
},

packages/shared/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@
4949
"typescript-eslint": "^8.8.1"
5050
},
5151
"dependencies": {
52-
"@langchain/core": "^0.3.38"
52+
"@langchain/core": "^0.3.71"
5353
}
5454
}

yarn.lock

Lines changed: 58 additions & 91 deletions
Original file line numberDiff line numberDiff line change
@@ -1078,22 +1078,22 @@
10781078
zod "^3.22.3"
10791079
zod-to-json-schema "^3.22.5"
10801080

1081-
"@langchain/core@^0.3.38", "@langchain/core@^0.3.57":
1082-
version "0.3.38"
1083-
resolved "https://registry.yarnpkg.com/@langchain/core/-/core-0.3.38.tgz#e0675d978d5141c720d9a2e143550d4411afa3be"
1084-
integrity sha512-o7mowk/0oIsYsPxRAJ3TKX6OG674HqcaNRged0sxaTegLAMyZDBDRXEAt3qoe5UfkHnqXAggDLjNVDhpMwECmg==
1081+
"@langchain/core@^0.3.71":
1082+
version "0.3.71"
1083+
resolved "https://registry.yarnpkg.com/@langchain/core/-/core-0.3.71.tgz#6aa33501d21a05873e0c6b29bc91a915f194bdcd"
1084+
integrity sha512-ejArFmm/lZ9je2rbMLpkFZnva8jkvDhFCn370WAAVP8akbPOLgDA+S2e5jvj+G/oHraOwmviY8EnxbPXXcDvfw==
10851085
dependencies:
10861086
"@cfworker/json-schema" "^4.0.2"
10871087
ansi-styles "^5.0.0"
10881088
camelcase "6"
10891089
decamelize "1.2.0"
10901090
js-tiktoken "^1.0.12"
1091-
langsmith ">=0.2.8 <0.4.0"
1091+
langsmith "^0.3.46"
10921092
mustache "^4.2.0"
10931093
p-queue "^6.6.2"
10941094
p-retry "4"
10951095
uuid "^10.0.0"
1096-
zod "^3.22.4"
1096+
zod "^3.25.32"
10971097
zod-to-json-schema "^3.22.3"
10981098

10991099
"@langchain/exa@^0.1.0":
@@ -1121,23 +1121,24 @@
11211121
zod "^3.22.4"
11221122
zod-to-json-schema "^3.22.5"
11231123

1124-
"@langchain/langgraph-api@0.0.27":
1125-
version "0.0.27"
1126-
resolved "https://registry.yarnpkg.com/@langchain/langgraph-api/-/langgraph-api-0.0.27.tgz#b76e150be5861616d70cce79c0228d858814a0c8"
1127-
integrity sha512-ldO9buJB2krblnHAm4pwST8L01wUFLertKMpM78RSQl3WLb1ft+IIBrEvj3ToHwCrYsd7DdNY/su0GiAGIR3yA==
1124+
"@langchain/langgraph-api@0.0.58":
1125+
version "0.0.58"
1126+
resolved "https://registry.yarnpkg.com/@langchain/langgraph-api/-/langgraph-api-0.0.58.tgz#7e09c38964104fa28cc4d6d64ab34ee1880023cf"
1127+
integrity sha512-g1WE0fkO+ZLlXYlQZswXLZ5hWEzE6OYyzeaG/qGADppTJWBtB4Cb1qWSJWIrMQKzjjLPxAuv296490/NlO++6g==
11281128
dependencies:
11291129
"@babel/code-frame" "^7.26.2"
11301130
"@hono/node-server" "^1.12.0"
11311131
"@hono/zod-validator" "^0.2.2"
1132-
"@langchain/langgraph-ui" "0.0.27"
1132+
"@langchain/langgraph-ui" "0.0.58"
11331133
"@types/json-schema" "^7.0.15"
11341134
"@typescript/vfs" "^1.6.0"
11351135
dedent "^1.5.3"
11361136
dotenv "^16.4.7"
11371137
exit-hook "^4.0.0"
11381138
hono "^4.5.4"
1139-
langsmith "^0.2.15"
1139+
langsmith "^0.3.33"
11401140
open "^10.1.0"
1141+
semver "^7.7.1"
11411142
stacktrace-parser "^0.1.10"
11421143
superjson "^2.2.2"
11431144
tsx "^4.19.3"
@@ -1146,87 +1147,68 @@
11461147
winston-console-format "^1.0.8"
11471148
zod "^3.23.8"
11481149

1149-
"@langchain/langgraph-checkpoint@~0.0.17":
1150-
version "0.0.17"
1151-
resolved "https://registry.yarnpkg.com/@langchain/langgraph-checkpoint/-/langgraph-checkpoint-0.0.17.tgz#d0a8824eb0769567da54262adebe65db4ee6d58f"
1152-
integrity sha512-6b3CuVVYx+7x0uWLG+7YXz9j2iBa+tn2AXvkLxzEvaAsLE6Sij++8PPbS2BZzC+S/FPJdWsz6I5bsrqL0BYrCA==
1150+
"@langchain/langgraph-checkpoint@^0.1.0":
1151+
version "0.1.0"
1152+
resolved "https://registry.yarnpkg.com/@langchain/langgraph-checkpoint/-/langgraph-checkpoint-0.1.0.tgz#d2a8bd9eb831f47cfe8b74bc196004388a6083bb"
1153+
integrity sha512-7oY5b0VQSxcV3DgoHdXiCgBhEzml/ZjZfKNeuq6oZ3ggcdUICa/fzrIBbFju6gxPU8ly93s0OsjF4yURnHw70Q==
11531154
dependencies:
11541155
uuid "^10.0.0"
11551156

1156-
"@langchain/langgraph-cli@^0.0.27":
1157-
version "0.0.27"
1158-
resolved "https://registry.yarnpkg.com/@langchain/langgraph-cli/-/langgraph-cli-0.0.27.tgz#eab23910c4884d6d73f09ac777570be75cbdaa01"
1159-
integrity sha512-fHNXxuc123b7uOK0IaEe4BipCfUHLGi25cowJzy3cYCvMQSG8f53CarH14HDmItyhHphvs3mzyF1fAjl1n6OHQ==
1157+
"@langchain/langgraph-cli@^0.0.58":
1158+
version "0.0.58"
1159+
resolved "https://registry.yarnpkg.com/@langchain/langgraph-cli/-/langgraph-cli-0.0.58.tgz#318d78398499ef838da0cb129ba7dfc440c5f8af"
1160+
integrity sha512-WXACTDN6o3DYrv9vuGncyPOEmXQciFJqsmmj4hJu+7DeKkc0kmAd6n1pocmcjY8xBFUNnvYoDqaxnQVMg5GxFA==
11601161
dependencies:
11611162
"@babel/code-frame" "^7.26.2"
11621163
"@commander-js/extra-typings" "^13.0.0"
1163-
"@langchain/langgraph-api" "0.0.27"
1164+
"@langchain/langgraph-api" "0.0.58"
11641165
chokidar "^4.0.3"
11651166
commander "^13.0.0"
11661167
dedent "^1.5.3"
11671168
dotenv "^16.4.7"
11681169
execa "^9.5.2"
11691170
exit-hook "^4.0.0"
11701171
extract-zip "^2.0.1"
1171-
langsmith "^0.2.15"
1172+
langsmith "^0.3.33"
11721173
open "^10.1.0"
1174+
package-manager-detector "^1.3.0"
11731175
stacktrace-parser "^0.1.10"
11741176
tar "^7.4.3"
11751177
winston "^3.17.0"
11761178
winston-console-format "^1.0.8"
11771179
yaml "^2.7.0"
11781180
zod "^3.23.8"
11791181

1180-
"@langchain/langgraph-sdk@^0.0.40":
1181-
version "0.0.40"
1182-
resolved "https://registry.yarnpkg.com/@langchain/langgraph-sdk/-/langgraph-sdk-0.0.40.tgz#c270d23c992fb77c877fa379b79920c84c99d99b"
1183-
integrity sha512-zntl+Iaa4Ym1JChbsFvqL84bF2lkZqeRhGbDtOSsdwABBfr3KNiPBbCueGqLFQ9l0sA55bYUbMcMvh4zXpdygA==
1184-
dependencies:
1185-
"@types/json-schema" "^7.0.15"
1186-
p-queue "^6.6.2"
1187-
p-retry "4"
1188-
uuid "^9.0.0"
1189-
1190-
"@langchain/langgraph-sdk@^0.0.78":
1191-
version "0.0.78"
1192-
resolved "https://registry.yarnpkg.com/@langchain/langgraph-sdk/-/langgraph-sdk-0.0.78.tgz#898fbd5d844e3b8a74341df89af008d878956766"
1193-
integrity sha512-skkUDmEhClWzlsr8jRaS1VpXVBISm5OFd0MUtS1jKRL5pn08K+IJRvHnlzgum9x7Dste9KXGcIGVoR7cNKJQrw==
1182+
"@langchain/langgraph-sdk@^0.0.107", "@langchain/langgraph-sdk@~0.0.107":
1183+
version "0.0.107"
1184+
resolved "https://registry.yarnpkg.com/@langchain/langgraph-sdk/-/langgraph-sdk-0.0.107.tgz#f99f8a0afbfc8f8cbc79a72a9d519a241a8d86f3"
1185+
integrity sha512-2qzboDgYH8KJNz7q2Yzvj6H9i4iZUYfZnB7xY+Dkye6yvI+2m1fFIdpP/Ppu+eFvoIUAsbDHDF+wvR4F11kS3Q==
11941186
dependencies:
11951187
"@types/json-schema" "^7.0.15"
11961188
p-queue "^6.6.2"
11971189
p-retry "4"
11981190
uuid "^9.0.0"
11991191

1200-
"@langchain/langgraph-sdk@~0.0.32":
1201-
version "0.0.36"
1202-
resolved "https://registry.yarnpkg.com/@langchain/langgraph-sdk/-/langgraph-sdk-0.0.36.tgz#b375884552ae3f1c7bf68a0248104786754d04cd"
1203-
integrity sha512-KkAZM0uXBaMcD/dpGTBppOhbvNX6gz+Y1zFAC898OblegFkSvICrkd0oRQ5Ro/GWK/NAoDymnMUDXeZDdUkSuw==
1204-
dependencies:
1205-
"@types/json-schema" "^7.0.15"
1206-
p-queue "^6.6.2"
1207-
p-retry "4"
1208-
uuid "^9.0.0"
1209-
1210-
"@langchain/langgraph-ui@0.0.27":
1211-
version "0.0.27"
1212-
resolved "https://registry.yarnpkg.com/@langchain/langgraph-ui/-/langgraph-ui-0.0.27.tgz#c29baee5b19f2e07cb518ce0af907700fb2c3ef8"
1213-
integrity sha512-rNFlx3uvU9a0KDTlLZWiceXjo94OHdzirg2TjfcBH3v4S3eI1r1ObQQ7Kjvn3FoHh8IYsPMa7HDmMBwIJe/hsg==
1192+
"@langchain/langgraph-ui@0.0.58":
1193+
version "0.0.58"
1194+
resolved "https://registry.yarnpkg.com/@langchain/langgraph-ui/-/langgraph-ui-0.0.58.tgz#77d17a2579c2a94e5def178b9b7f2ad660e72ecf"
1195+
integrity sha512-YenktF/6MUQ4jFFgNgKL160bbkt1RNlhxJLIs1erz7DT0gyT/Z+OSpYIKnZ8LJ7+Mutr0PIG+wzT6W+JDQHrfA==
12141196
dependencies:
12151197
"@commander-js/extra-typings" "^13.0.0"
12161198
commander "^13.0.0"
12171199
esbuild "^0.25.0"
12181200
esbuild-plugin-tailwindcss "^2.0.1"
12191201
zod "^3.23.8"
12201202

1221-
"@langchain/langgraph@^0.2.73":
1222-
version "0.2.73"
1223-
resolved "https://registry.yarnpkg.com/@langchain/langgraph/-/langgraph-0.2.73.tgz#f7fe53386c5dea046e7f0e498908c2fc65ff6e87"
1224-
integrity sha512-vw+IXV2Q7x/QaykNj3VE/Ak3aPlst3spkpM6zYtqwGkQlhLZU4Lb8PHHPjqNNYHSdOTDj9x4jIRUPZArGHx9Aw==
1203+
"@langchain/langgraph@^0.4.4":
1204+
version "0.4.4"
1205+
resolved "https://registry.yarnpkg.com/@langchain/langgraph/-/langgraph-0.4.4.tgz#36ce026e3a8cf7fc63a55bfd6159ba9799a6b115"
1206+
integrity sha512-ky/ObdX8PV/2GKnjyWoBzW7wBe8u0ZG6t0Dh8HR2mJLhjodMcKMJKHtc+xg/aS3l8bqx0Q8lgXfKCBy/eBXYjA==
12251207
dependencies:
1226-
"@langchain/langgraph-checkpoint" "~0.0.17"
1227-
"@langchain/langgraph-sdk" "~0.0.32"
1208+
"@langchain/langgraph-checkpoint" "^0.1.0"
1209+
"@langchain/langgraph-sdk" "~0.0.107"
12281210
uuid "^10.0.0"
1229-
zod "^3.23.8"
1211+
zod "^3.25.32"
12301212

12311213
"@langchain/ollama@^0.2.0":
12321214
version "0.2.0"
@@ -4048,11 +4030,6 @@ comma-separated-tokens@^2.0.0:
40484030
resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz#4e89c9458acb61bc8fef19f4529973b2392839ee"
40494031
integrity sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==
40504032

4051-
commander@^10.0.1:
4052-
version "10.0.1"
4053-
resolved "https://registry.yarnpkg.com/commander/-/commander-10.0.1.tgz#881ee46b4f77d1c1dccc5823433aa39b022cbe06"
4054-
integrity sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==
4055-
40564033
commander@^13.0.0:
40574034
version "13.1.0"
40584035
resolved "https://registry.yarnpkg.com/commander/-/commander-13.1.0.tgz#776167db68c78f38dcce1f9b8d7b8b9a488abf46"
@@ -6477,35 +6454,10 @@ langchain@^0.3.27:
64776454
zod "^3.22.4"
64786455
zod-to-json-schema "^3.22.3"
64796456

6480-
"langsmith@>=0.2.8 <0.4.0", langsmith@^0.3.3, langsmith@^0.3.5:
6481-
version "0.3.5"
6482-
resolved "https://registry.yarnpkg.com/langsmith/-/langsmith-0.3.5.tgz#9f31d7c500afab8dbf6255e807174e3806ada01b"
6483-
integrity sha512-ntXDsxMmV9wVBN4TO2szTjmw4u8+M1LKwkhG9IntMFZZn7HW4IVo9jFYhHBWtj/dwZI/8P7cs5VE8Yoa8mcwIg==
6484-
dependencies:
6485-
"@types/uuid" "^10.0.0"
6486-
chalk "^4.1.2"
6487-
console-table-printer "^2.12.1"
6488-
p-queue "^6.6.2"
6489-
p-retry "4"
6490-
semver "^7.6.3"
6491-
uuid "^10.0.0"
6492-
6493-
langsmith@^0.2.15:
6494-
version "0.2.15"
6495-
resolved "https://registry.yarnpkg.com/langsmith/-/langsmith-0.2.15.tgz#0692a00fc310817cb9b5939488468c93d4ba2c9d"
6496-
integrity sha512-homtJU41iitqIZVuuLW7iarCzD4f39KcfP9RTBWav9jifhrsDa1Ez89Ejr+4qi72iuBu8Y5xykchsGVgiEZ93w==
6497-
dependencies:
6498-
"@types/uuid" "^10.0.0"
6499-
commander "^10.0.1"
6500-
p-queue "^6.6.2"
6501-
p-retry "4"
6502-
semver "^7.6.3"
6503-
uuid "^10.0.0"
6504-
6505-
langsmith@^0.3.29:
6506-
version "0.3.29"
6507-
resolved "https://registry.yarnpkg.com/langsmith/-/langsmith-0.3.29.tgz#75b8df90b8a724f320ff0cdc784768117e17a922"
6508-
integrity sha512-JPF2B339qpYy9FyuY4Yz1aWYtgPlFc/a+VTj3L/JcFLHCiMP7+Ig8I9jO+o1QwVa+JU3iugL1RS0wwc+Glw0zA==
6457+
"langsmith@>=0.2.8 <0.4.0", langsmith@^0.3.29, langsmith@^0.3.33, langsmith@^0.3.46, langsmith@^0.3.60:
6458+
version "0.3.60"
6459+
resolved "https://registry.yarnpkg.com/langsmith/-/langsmith-0.3.60.tgz#33e6e16dd3325c4d1f878c8c67bda67a1add9a91"
6460+
integrity sha512-OC0fdl1gCzU0vWlvcyCAy7IOv2mfxrV1sN3eYDxiCpuPO9olamG2TMpwcJTt7G8EX9KVn48JfBGFV6FtuUz3WA==
65096461
dependencies:
65106462
"@types/uuid" "^10.0.0"
65116463
chalk "^4.1.2"
@@ -8090,6 +8042,11 @@ package-json-from-dist@^1.0.0:
80908042
resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz#4f1471a010827a86f94cfd9b0727e36d267de505"
80918043
integrity sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==
80928044

8045+
package-manager-detector@^1.3.0:
8046+
version "1.3.0"
8047+
resolved "https://registry.yarnpkg.com/package-manager-detector/-/package-manager-detector-1.3.0.tgz#b42d641c448826e03c2b354272456a771ce453c0"
8048+
integrity sha512-ZsEbbZORsyHuO00lY1kV3/t72yp6Ysay6Pd17ZAlNGuGwmWDLCJxFpRs0IzfXfj1o4icJOkUEioexFHzyPurSQ==
8049+
80938050
parent-module@^1.0.0:
80948051
version "1.0.1"
80958052
resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
@@ -9274,6 +9231,11 @@ semver@^7.3.7, semver@^7.5.4, semver@^7.6.0, semver@^7.6.3:
92749231
resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.1.tgz#abd5098d82b18c6c81f6074ff2647fd3e7220c9f"
92759232
integrity sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==
92769233

9234+
semver@^7.7.1:
9235+
version "7.7.2"
9236+
resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.2.tgz#67d99fdcd35cec21e6f8b87a7fd515a33f982b58"
9237+
integrity sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==
9238+
92779239
set-function-length@^1.2.2:
92789240
version "1.2.2"
92799241
resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449"
@@ -10654,6 +10616,11 @@ zod@^3.22.3, zod@^3.22.4, zod@^3.23.8, zod@^3.24.1:
1065410616
resolved "https://registry.yarnpkg.com/zod/-/zod-3.24.1.tgz#27445c912738c8ad1e9de1bea0359fa44d9d35ee"
1065510617
integrity sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==
1065610618

10619+
zod@^3.25.32:
10620+
version "3.25.76"
10621+
resolved "https://registry.yarnpkg.com/zod/-/zod-3.25.76.tgz#26841c3f6fd22a6a2760e7ccb719179768471e34"
10622+
integrity sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==
10623+
1065710624
zustand@^5.0.3:
1065810625
version "5.0.3"
1065910626
resolved "https://registry.yarnpkg.com/zustand/-/zustand-5.0.3.tgz#b323435b73d06b2512e93c77239634374b0e407f"

0 commit comments

Comments
 (0)