langgraph-api 0.12.0.dev12__py3-none-any.whl → 0.12.0.dev14__py3-none-any.whl
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.
- langgraph_api/__init__.py +1 -1
- langgraph_api/asyncio.py +2 -0
- langgraph_api/config/_parse.py +1 -1
- langgraph_api/config/schemas.py +1 -1
- langgraph_api/js/package.json +2 -2
- langgraph_api/js/yarn.lock +237 -32
- langgraph_api/metadata.py +19 -4
- {langgraph_api-0.12.0.dev12.dist-info → langgraph_api-0.12.0.dev14.dist-info}/METADATA +1 -1
- {langgraph_api-0.12.0.dev12.dist-info → langgraph_api-0.12.0.dev14.dist-info}/RECORD +12 -12
- {langgraph_api-0.12.0.dev12.dist-info → langgraph_api-0.12.0.dev14.dist-info}/WHEEL +0 -0
- {langgraph_api-0.12.0.dev12.dist-info → langgraph_api-0.12.0.dev14.dist-info}/entry_points.txt +0 -0
- {langgraph_api-0.12.0.dev12.dist-info → langgraph_api-0.12.0.dev14.dist-info}/licenses/LICENSE +0 -0
langgraph_api/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.12.0.
|
|
1
|
+
__version__ = "0.12.0.dev14"
|
langgraph_api/asyncio.py
CHANGED
|
@@ -103,6 +103,8 @@ async def wait_if_not_done(coro: Coroutine[Any, Any, T], done: ValueEvent) -> T:
|
|
|
103
103
|
await logger.ainfo("Done awaiting.", task=str(fut))
|
|
104
104
|
if e.args and isinstance(e.args[0], Exception):
|
|
105
105
|
raise e.args[0] from None
|
|
106
|
+
if isinstance(done._value, Exception):
|
|
107
|
+
raise done._value from None
|
|
106
108
|
raise
|
|
107
109
|
except ExceptionGroup as e:
|
|
108
110
|
raise e.exceptions[0] from None
|
langgraph_api/config/_parse.py
CHANGED
|
@@ -55,7 +55,7 @@ def parse_thread_ttl(value: str | None) -> ThreadTTLConfig | None:
|
|
|
55
55
|
# We permit float values mainly for testing purposes
|
|
56
56
|
"default_ttl": float(value),
|
|
57
57
|
"sweep_interval_minutes": 5.1,
|
|
58
|
-
"sweep_limit":
|
|
58
|
+
"sweep_limit": 10000, # Default max threads per sweep iteration
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
|
langgraph_api/config/schemas.py
CHANGED
|
@@ -142,7 +142,7 @@ class ThreadTTLConfig(TypedDict, total=False):
|
|
|
142
142
|
sweep_interval_minutes: int | None
|
|
143
143
|
"""How often to scan for expired threads, in minutes."""
|
|
144
144
|
sweep_limit: int | None
|
|
145
|
-
"""Maximum number of threads to process per sweep iteration. Defaults to
|
|
145
|
+
"""Maximum number of threads to process per sweep iteration. Defaults to 10000."""
|
|
146
146
|
|
|
147
147
|
|
|
148
148
|
class IndexConfig(TypedDict, total=False):
|
langgraph_api/js/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"format": "prettier --write ."
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@hono/node-server": "^
|
|
10
|
+
"@hono/node-server": "^2.0.5",
|
|
11
11
|
"@hono/zod-validator": "^0.7.6",
|
|
12
12
|
"@langchain/core": "^1.1.48",
|
|
13
13
|
"@langchain/langgraph": "^1.2.6",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"typescript": "^5.9.3",
|
|
27
27
|
"undici": "^7.28.0",
|
|
28
28
|
"uuid": "^14.0.0",
|
|
29
|
-
"vite": "^
|
|
29
|
+
"vite": "^8.0.16",
|
|
30
30
|
"winston": "^3.19.0",
|
|
31
31
|
"zod": "^4.3.6"
|
|
32
32
|
},
|
langgraph_api/js/yarn.lock
CHANGED
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
enabled "2.0.x"
|
|
46
46
|
kuler "^2.0.0"
|
|
47
47
|
|
|
48
|
-
"@emnapi/core@^1.7.1":
|
|
48
|
+
"@emnapi/core@1.10.0", "@emnapi/core@^1.7.1":
|
|
49
49
|
version "1.10.0"
|
|
50
50
|
resolved "https://registry.yarnpkg.com/@emnapi/core/-/core-1.10.0.tgz#380ccc8f2412ea22d1d972df7f8ee23a3b9c7467"
|
|
51
51
|
integrity sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"@emnapi/wasi-threads" "1.2.1"
|
|
54
54
|
tslib "^2.4.0"
|
|
55
55
|
|
|
56
|
-
"@emnapi/runtime@^1.7.1":
|
|
56
|
+
"@emnapi/runtime@1.10.0", "@emnapi/runtime@^1.7.1":
|
|
57
57
|
version "1.10.0"
|
|
58
58
|
resolved "https://registry.yarnpkg.com/@emnapi/runtime/-/runtime-1.10.0.tgz#4b260c0d3534204e98c6110b8db1a987d26ec87c"
|
|
59
59
|
integrity sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==
|
|
@@ -197,11 +197,16 @@
|
|
|
197
197
|
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.28.1.tgz#10064ee44f4347b90c9a02b446bbf80a91632b12"
|
|
198
198
|
integrity sha512-bm4Mowrv+GXMlpWX++EcXw/iLyd1o3+bJkC2DkWXYVvgZCqD/bSj9ctZeAMC3cIxgjRVR2Dufaiu4YPxr5gW1A==
|
|
199
199
|
|
|
200
|
-
"@hono/node-server@^1.12.0"
|
|
200
|
+
"@hono/node-server@^1.12.0":
|
|
201
201
|
version "1.19.13"
|
|
202
202
|
resolved "https://registry.npmjs.org/@hono/node-server/-/node-server-1.19.13.tgz"
|
|
203
203
|
integrity sha512-TsQLe4i2gvoTtrHje625ngThGBySOgSK3Xo2XRYOdqGN1teR8+I7vchQC46uLJi8OF62YTYA3AhSpumtkhsaKQ==
|
|
204
204
|
|
|
205
|
+
"@hono/node-server@^2.0.5":
|
|
206
|
+
version "2.0.5"
|
|
207
|
+
resolved "https://registry.yarnpkg.com/@hono/node-server/-/node-server-2.0.5.tgz#54c58f722032ccb7394d8860277cfd0415cd6ce5"
|
|
208
|
+
integrity sha512-yQFvDmyDo3y6rEOJZDUYPJ49DIKTPpIk4kGvm40xx4Ejne0Pu9a1+exxPN+C1UppWK/WGZX9F++/Xs231tE86g==
|
|
209
|
+
|
|
205
210
|
"@hono/zod-validator@^0.7.6":
|
|
206
211
|
version "0.7.6"
|
|
207
212
|
resolved "https://registry.npmjs.org/@hono/zod-validator/-/zod-validator-0.7.6.tgz"
|
|
@@ -336,6 +341,102 @@
|
|
|
336
341
|
dependencies:
|
|
337
342
|
"@tybys/wasm-util" "^0.10.1"
|
|
338
343
|
|
|
344
|
+
"@napi-rs/wasm-runtime@^1.1.4":
|
|
345
|
+
version "1.1.6"
|
|
346
|
+
resolved "https://registry.yarnpkg.com/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.6.tgz#ed33806d0f9be98dc76d0c3d4fd872fda701b5d5"
|
|
347
|
+
integrity sha512-ZLv/JdUfkvOy9eCnnBaGfiO+XimbjebAeO+MRQqD/B+FR1tnRN0tpKSJHRbE8sFfS6aqsXZ67TQjfwfsxULVbg==
|
|
348
|
+
dependencies:
|
|
349
|
+
"@tybys/wasm-util" "^0.10.3"
|
|
350
|
+
|
|
351
|
+
"@oxc-project/types@=0.133.0":
|
|
352
|
+
version "0.133.0"
|
|
353
|
+
resolved "https://registry.yarnpkg.com/@oxc-project/types/-/types-0.133.0.tgz#2e282ef9e1d26e06b68ccd14b73f310a3b2cf7f8"
|
|
354
|
+
integrity sha512-KzkdCd6Uxqnf6l3HOw1xfatAlUURA0g14cvBYFyJ5SaNOQbOUvBr9PKArcPcrNIeRsBdgcUzOGrhKveVpvOIGA==
|
|
355
|
+
|
|
356
|
+
"@rolldown/binding-android-arm64@1.0.3":
|
|
357
|
+
version "1.0.3"
|
|
358
|
+
resolved "https://registry.yarnpkg.com/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.3.tgz#54ce8f8382213f4a314a0c2f7ba83f81ffeae592"
|
|
359
|
+
integrity sha512-454rs7jHngixp/NMxd5srYD57OnzSlZ/eFTETjORQHLwJG1lRtmNOJcBerZlfu4GjKqeq8aCCIQrMdHyhI51Hw==
|
|
360
|
+
|
|
361
|
+
"@rolldown/binding-darwin-arm64@1.0.3":
|
|
362
|
+
version "1.0.3"
|
|
363
|
+
resolved "https://registry.yarnpkg.com/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.3.tgz#388fca1566c14c00c4b446fc3928630e7f0d95fc"
|
|
364
|
+
integrity sha512-PcAhP+ynjURNyy8SKGl5DQP94aGuB/7JrXJb/t7P+hanXvQVMWzUvRRhBAcg/lNRadBhoUPqSoP4xw5tR/KBEA==
|
|
365
|
+
|
|
366
|
+
"@rolldown/binding-darwin-x64@1.0.3":
|
|
367
|
+
version "1.0.3"
|
|
368
|
+
resolved "https://registry.yarnpkg.com/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.3.tgz#53f57de1f599ecf1db13823cfc88c18fb80954ad"
|
|
369
|
+
integrity sha512-9YpfeUvSE2RS7wysJ81uOZkXJz7f7Q55H2Gvp3VEw/EsahqDtrphrZ0EwDLK5vvKOzaCrBsjF8JmnMLcUt78Gg==
|
|
370
|
+
|
|
371
|
+
"@rolldown/binding-freebsd-x64@1.0.3":
|
|
372
|
+
version "1.0.3"
|
|
373
|
+
resolved "https://registry.yarnpkg.com/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.3.tgz#6f3fdda1b7aeaac9d268a526804b4fb96e4e35f1"
|
|
374
|
+
integrity sha512-yB1IlAsSNHncV6SCTL27/MVGR5htvQsoGxIv5KMGXALp+Ll1wYsn+x98M9MW7qa+NdSbvrrY7ANI4wLJ0n1e6g==
|
|
375
|
+
|
|
376
|
+
"@rolldown/binding-linux-arm-gnueabihf@1.0.3":
|
|
377
|
+
version "1.0.3"
|
|
378
|
+
resolved "https://registry.yarnpkg.com/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.3.tgz#d87a454bf585cc9676849377e91d6e375297326f"
|
|
379
|
+
integrity sha512-Yi30IVAAfLUCy2MseFjbB1jAMDl1VMCAas5StnYp8da9+CKvMd2H2cbEjWcw5NPaPqzvYkVIaF1nNUG+b7u/sw==
|
|
380
|
+
|
|
381
|
+
"@rolldown/binding-linux-arm64-gnu@1.0.3":
|
|
382
|
+
version "1.0.3"
|
|
383
|
+
resolved "https://registry.yarnpkg.com/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.3.tgz#419fd6bf612cf348f10528cbcd94ebab9607d8d1"
|
|
384
|
+
integrity sha512-jsO7R8To+AdlYgUmN5sHSCZbfhtMBkO0WUx8iORQnPcMMdgr7qM2DQmMwgabs3GhNztdmoKkMKQFHD6DTMCIQw==
|
|
385
|
+
|
|
386
|
+
"@rolldown/binding-linux-arm64-musl@1.0.3":
|
|
387
|
+
version "1.0.3"
|
|
388
|
+
resolved "https://registry.yarnpkg.com/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.3.tgz#fcc6918696bb76844877e1e4930a18fd0d374069"
|
|
389
|
+
integrity sha512-VWkUHwWriDciit80wleYwKILoR/KMvxh/IdwS/paX+ZgpuRpCrKLUdadJbc0NpBEiyhpYawsJ73j9aCvOH+f7Q==
|
|
390
|
+
|
|
391
|
+
"@rolldown/binding-linux-ppc64-gnu@1.0.3":
|
|
392
|
+
version "1.0.3"
|
|
393
|
+
resolved "https://registry.yarnpkg.com/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.3.tgz#32aecb7c8dae5d4f2a8cde57a058ec86991542f8"
|
|
394
|
+
integrity sha512-5f1laC0SlIR0yDbFCd8acUhvJIag6N3zC5P7oUPN6wX0aOma+uKJ0wBDH5aq7I1PVI2ttTlhJwzwRIBnLiSGEg==
|
|
395
|
+
|
|
396
|
+
"@rolldown/binding-linux-s390x-gnu@1.0.3":
|
|
397
|
+
version "1.0.3"
|
|
398
|
+
resolved "https://registry.yarnpkg.com/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.3.tgz#bed9346ea81e6bb8b93cf11f5d88b77db890b763"
|
|
399
|
+
integrity sha512-Iq4ko0r4XsgbrF/LunNgHtAGLRRVE2kXonAXQ/MV0mC6jQpMOhW1SvtZja2EhC/kd05++bP78dsqBeIQyYJ6Yg==
|
|
400
|
+
|
|
401
|
+
"@rolldown/binding-linux-x64-gnu@1.0.3":
|
|
402
|
+
version "1.0.3"
|
|
403
|
+
resolved "https://registry.yarnpkg.com/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.3.tgz#64c2d26f75dffd9b5a1f97557a00ae77250c8cb7"
|
|
404
|
+
integrity sha512-B8m6tD5+/N5FeNQFbKlLA/2yVq9ycQP1SeedyEYYKWBNR3ZQbkvIUcNnDNM03lO1l5F2roiiFJGgvoLLyZXtSg==
|
|
405
|
+
|
|
406
|
+
"@rolldown/binding-linux-x64-musl@1.0.3":
|
|
407
|
+
version "1.0.3"
|
|
408
|
+
resolved "https://registry.yarnpkg.com/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.3.tgz#5a45132e8a47659eeaaf3b540c2954a97c860ff3"
|
|
409
|
+
integrity sha512-pSdpdUJHkuCxun9LE7jvgUB9qsRgaiyNNCX7m/AvHTcq67AiT/Yhoxvw5zPfhrM8k/BfP8ce/hMOpthKDpEUow==
|
|
410
|
+
|
|
411
|
+
"@rolldown/binding-openharmony-arm64@1.0.3":
|
|
412
|
+
version "1.0.3"
|
|
413
|
+
resolved "https://registry.yarnpkg.com/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.3.tgz#290513068c55e849dc8457a32afee1d7b0acb309"
|
|
414
|
+
integrity sha512-OXXS3RKJgX2uLwM+gYyuH5omcH8fL1LJs96pZGgtetVCahON57+d4SJHzTgZiOjxgGkSnpXpOsWuPDGAKAigEg==
|
|
415
|
+
|
|
416
|
+
"@rolldown/binding-wasm32-wasi@1.0.3":
|
|
417
|
+
version "1.0.3"
|
|
418
|
+
resolved "https://registry.yarnpkg.com/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.3.tgz#3d9972dbf1a953d3c7afaa4a0f20ef2b2e39f31b"
|
|
419
|
+
integrity sha512-JTtb8BWFynicNSoPrehsCzBtOKjZ6jhMiPFEmOiuXg1Fl8dn2KHQob+GuPSGR0dryQa1PQJbzjF3dqO/whhjLg==
|
|
420
|
+
dependencies:
|
|
421
|
+
"@emnapi/core" "1.10.0"
|
|
422
|
+
"@emnapi/runtime" "1.10.0"
|
|
423
|
+
"@napi-rs/wasm-runtime" "^1.1.4"
|
|
424
|
+
|
|
425
|
+
"@rolldown/binding-win32-arm64-msvc@1.0.3":
|
|
426
|
+
version "1.0.3"
|
|
427
|
+
resolved "https://registry.yarnpkg.com/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.3.tgz#a004ab607a16d6f03bcb555728ff888af75773ad"
|
|
428
|
+
integrity sha512-gEdFFEN70A/jxb2svrWsN3aDL7OUtmvlOy+6fa2jxG8K0wQ1ZbdeLGnidov6Yu5/733dI5ySfzFlQ/cb0bSz1g==
|
|
429
|
+
|
|
430
|
+
"@rolldown/binding-win32-x64-msvc@1.0.3":
|
|
431
|
+
version "1.0.3"
|
|
432
|
+
resolved "https://registry.yarnpkg.com/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.3.tgz#e2a25b34691a1cc8a1209d7de709063026dd0cdb"
|
|
433
|
+
integrity sha512-eXB7CHuaQdqmJcc3koCNtNPmT/bj2gc999kUFgBxG8Ac0NdgXc4rkCHhqrgrhN3zddvvvrgzj1e90SuSfmyIXA==
|
|
434
|
+
|
|
435
|
+
"@rolldown/pluginutils@^1.0.0":
|
|
436
|
+
version "1.0.1"
|
|
437
|
+
resolved "https://registry.yarnpkg.com/@rolldown/pluginutils/-/pluginutils-1.0.1.tgz#e3fcee093fbb5ce765e1ad088ff4de2889f6f9be"
|
|
438
|
+
integrity sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==
|
|
439
|
+
|
|
339
440
|
"@rollup/rollup-android-arm-eabi@4.60.3":
|
|
340
441
|
version "4.60.3"
|
|
341
442
|
resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.3.tgz#31503ca40424374cd6c5198031cf4d5a73de9727"
|
|
@@ -590,6 +691,13 @@
|
|
|
590
691
|
dependencies:
|
|
591
692
|
tslib "^2.4.0"
|
|
592
693
|
|
|
694
|
+
"@tybys/wasm-util@^0.10.3":
|
|
695
|
+
version "0.10.3"
|
|
696
|
+
resolved "https://registry.yarnpkg.com/@tybys/wasm-util/-/wasm-util-0.10.3.tgz#015cba9e9dd47ce14d03d2a8c5d547bfb169665d"
|
|
697
|
+
integrity sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==
|
|
698
|
+
dependencies:
|
|
699
|
+
tslib "^2.4.0"
|
|
700
|
+
|
|
593
701
|
"@types/chai@^5.2.2":
|
|
594
702
|
version "5.2.3"
|
|
595
703
|
resolved "https://registry.npmjs.org/@types/chai/-/chai-5.2.3.tgz"
|
|
@@ -895,7 +1003,7 @@ esbuild-plugin-tailwindcss@^2.0.1:
|
|
|
895
1003
|
postcss "^8.5.1"
|
|
896
1004
|
postcss-modules "^6.0.1"
|
|
897
1005
|
|
|
898
|
-
esbuild@^0.25.0, esbuild@^0.
|
|
1006
|
+
esbuild@^0.25.0, esbuild@^0.28.1, esbuild@~0.27.0, esbuild@~0.28.0:
|
|
899
1007
|
version "0.28.1"
|
|
900
1008
|
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.28.1.tgz#ef45b4634c9c9d97a296aea4114a5f9840f95578"
|
|
901
1009
|
integrity sha512-HrJrvZv5ayxBzPfwphOoNzkzOIIlifzk0KJrGK2c8R4+LKpMtpYLQeUdjnwjWv/LZlkH2laZk+4w78pi99D4Vw==
|
|
@@ -1036,9 +1144,9 @@ is-inside-container@^1.0.0:
|
|
|
1036
1144
|
is-docker "^3.0.0"
|
|
1037
1145
|
|
|
1038
1146
|
is-network-error@^1.1.0:
|
|
1039
|
-
version "1.3.
|
|
1040
|
-
resolved "https://registry.
|
|
1041
|
-
integrity sha512-
|
|
1147
|
+
version "1.3.2"
|
|
1148
|
+
resolved "https://registry.yarnpkg.com/is-network-error/-/is-network-error-1.3.2.tgz#9460bc30f8419a4bca77114f4de88a3ee5e0c519"
|
|
1149
|
+
integrity sha512-PhBY86zaxNZUuWP6h13Vu5oFe0XY6/UlKzQnYFELzGVHygP3MxmvTfYSG7GN3aIab/iWudSMgjSnG9Dq+nHrgA==
|
|
1042
1150
|
|
|
1043
1151
|
is-stream@^2.0.0:
|
|
1044
1152
|
version "2.0.1"
|
|
@@ -1096,56 +1204,111 @@ lightningcss-android-arm64@1.30.2:
|
|
|
1096
1204
|
resolved "https://registry.yarnpkg.com/lightningcss-android-arm64/-/lightningcss-android-arm64-1.30.2.tgz#6966b7024d39c94994008b548b71ab360eb3a307"
|
|
1097
1205
|
integrity sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==
|
|
1098
1206
|
|
|
1207
|
+
lightningcss-android-arm64@1.32.0:
|
|
1208
|
+
version "1.32.0"
|
|
1209
|
+
resolved "https://registry.yarnpkg.com/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz#f033885116dfefd9c6f54787523e3514b61e1968"
|
|
1210
|
+
integrity sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==
|
|
1211
|
+
|
|
1099
1212
|
lightningcss-darwin-arm64@1.30.2:
|
|
1100
1213
|
version "1.30.2"
|
|
1101
1214
|
resolved "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.2.tgz"
|
|
1102
1215
|
integrity sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==
|
|
1103
1216
|
|
|
1217
|
+
lightningcss-darwin-arm64@1.32.0:
|
|
1218
|
+
version "1.32.0"
|
|
1219
|
+
resolved "https://registry.yarnpkg.com/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz#50b71871b01c8199584b649e292547faea7af9b5"
|
|
1220
|
+
integrity sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==
|
|
1221
|
+
|
|
1104
1222
|
lightningcss-darwin-x64@1.30.2:
|
|
1105
1223
|
version "1.30.2"
|
|
1106
1224
|
resolved "https://registry.yarnpkg.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.2.tgz#5ce87e9cd7c4f2dcc1b713f5e8ee185c88d9b7cd"
|
|
1107
1225
|
integrity sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==
|
|
1108
1226
|
|
|
1227
|
+
lightningcss-darwin-x64@1.32.0:
|
|
1228
|
+
version "1.32.0"
|
|
1229
|
+
resolved "https://registry.yarnpkg.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz#35f3e97332d130b9ca181e11b568ded6aebc6d5e"
|
|
1230
|
+
integrity sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==
|
|
1231
|
+
|
|
1109
1232
|
lightningcss-freebsd-x64@1.30.2:
|
|
1110
1233
|
version "1.30.2"
|
|
1111
1234
|
resolved "https://registry.yarnpkg.com/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.2.tgz#6ae1d5e773c97961df5cff57b851807ef33692a5"
|
|
1112
1235
|
integrity sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==
|
|
1113
1236
|
|
|
1237
|
+
lightningcss-freebsd-x64@1.32.0:
|
|
1238
|
+
version "1.32.0"
|
|
1239
|
+
resolved "https://registry.yarnpkg.com/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz#9777a76472b64ed6ff94342ad64c7bafd794a575"
|
|
1240
|
+
integrity sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==
|
|
1241
|
+
|
|
1114
1242
|
lightningcss-linux-arm-gnueabihf@1.30.2:
|
|
1115
1243
|
version "1.30.2"
|
|
1116
1244
|
resolved "https://registry.yarnpkg.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.2.tgz#62c489610c0424151a6121fa99d77731536cdaeb"
|
|
1117
1245
|
integrity sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==
|
|
1118
1246
|
|
|
1247
|
+
lightningcss-linux-arm-gnueabihf@1.32.0:
|
|
1248
|
+
version "1.32.0"
|
|
1249
|
+
resolved "https://registry.yarnpkg.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz#13ae652e1ab73b9135d7b7da172f666c410ad53d"
|
|
1250
|
+
integrity sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==
|
|
1251
|
+
|
|
1119
1252
|
lightningcss-linux-arm64-gnu@1.30.2:
|
|
1120
1253
|
version "1.30.2"
|
|
1121
1254
|
resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.2.tgz#2a3661b56fe95a0cafae90be026fe0590d089298"
|
|
1122
1255
|
integrity sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==
|
|
1123
1256
|
|
|
1257
|
+
lightningcss-linux-arm64-gnu@1.32.0:
|
|
1258
|
+
version "1.32.0"
|
|
1259
|
+
resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz#417858795a94592f680123a1b1f9da8a0e1ef335"
|
|
1260
|
+
integrity sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==
|
|
1261
|
+
|
|
1124
1262
|
lightningcss-linux-arm64-musl@1.30.2:
|
|
1125
1263
|
version "1.30.2"
|
|
1126
1264
|
resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.2.tgz#d7ddd6b26959245e026bc1ad9eb6aa983aa90e6b"
|
|
1127
1265
|
integrity sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==
|
|
1128
1266
|
|
|
1267
|
+
lightningcss-linux-arm64-musl@1.32.0:
|
|
1268
|
+
version "1.32.0"
|
|
1269
|
+
resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz#6be36692e810b718040802fd809623cffe732133"
|
|
1270
|
+
integrity sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==
|
|
1271
|
+
|
|
1129
1272
|
lightningcss-linux-x64-gnu@1.30.2:
|
|
1130
1273
|
version "1.30.2"
|
|
1131
1274
|
resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.2.tgz#5a89814c8e63213a5965c3d166dff83c36152b1a"
|
|
1132
1275
|
integrity sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==
|
|
1133
1276
|
|
|
1277
|
+
lightningcss-linux-x64-gnu@1.32.0:
|
|
1278
|
+
version "1.32.0"
|
|
1279
|
+
resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz#0b7803af4eb21cfd38dd39fe2abbb53c7dd091f6"
|
|
1280
|
+
integrity sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==
|
|
1281
|
+
|
|
1134
1282
|
lightningcss-linux-x64-musl@1.30.2:
|
|
1135
1283
|
version "1.30.2"
|
|
1136
1284
|
resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.2.tgz#808c2e91ce0bf5d0af0e867c6152e5378c049728"
|
|
1137
1285
|
integrity sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==
|
|
1138
1286
|
|
|
1287
|
+
lightningcss-linux-x64-musl@1.32.0:
|
|
1288
|
+
version "1.32.0"
|
|
1289
|
+
resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz#88dc8ba865ddddb1ac5ef04b0f161804418c163b"
|
|
1290
|
+
integrity sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==
|
|
1291
|
+
|
|
1139
1292
|
lightningcss-win32-arm64-msvc@1.30.2:
|
|
1140
1293
|
version "1.30.2"
|
|
1141
1294
|
resolved "https://registry.yarnpkg.com/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.2.tgz#ab4a8a8a2e6a82a4531e8bbb6bf0ff161ee6625a"
|
|
1142
1295
|
integrity sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==
|
|
1143
1296
|
|
|
1297
|
+
lightningcss-win32-arm64-msvc@1.32.0:
|
|
1298
|
+
version "1.32.0"
|
|
1299
|
+
resolved "https://registry.yarnpkg.com/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz#4f30ba3fa5e925f5b79f945e8cc0d176c3b1ab38"
|
|
1300
|
+
integrity sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==
|
|
1301
|
+
|
|
1144
1302
|
lightningcss-win32-x64-msvc@1.30.2:
|
|
1145
1303
|
version "1.30.2"
|
|
1146
1304
|
resolved "https://registry.yarnpkg.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.2.tgz#f01f382c8e0a27e1c018b0bee316d210eac43b6e"
|
|
1147
1305
|
integrity sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==
|
|
1148
1306
|
|
|
1307
|
+
lightningcss-win32-x64-msvc@1.32.0:
|
|
1308
|
+
version "1.32.0"
|
|
1309
|
+
resolved "https://registry.yarnpkg.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz#141aa5605645064928902bb4af045fa7d9f4220a"
|
|
1310
|
+
integrity sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==
|
|
1311
|
+
|
|
1149
1312
|
lightningcss@1.30.2:
|
|
1150
1313
|
version "1.30.2"
|
|
1151
1314
|
resolved "https://registry.npmjs.org/lightningcss/-/lightningcss-1.30.2.tgz"
|
|
@@ -1165,6 +1328,25 @@ lightningcss@1.30.2:
|
|
|
1165
1328
|
lightningcss-win32-arm64-msvc "1.30.2"
|
|
1166
1329
|
lightningcss-win32-x64-msvc "1.30.2"
|
|
1167
1330
|
|
|
1331
|
+
lightningcss@^1.32.0:
|
|
1332
|
+
version "1.32.0"
|
|
1333
|
+
resolved "https://registry.yarnpkg.com/lightningcss/-/lightningcss-1.32.0.tgz#b85aae96486dcb1bf49a7c8571221273f4f1e4a9"
|
|
1334
|
+
integrity sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==
|
|
1335
|
+
dependencies:
|
|
1336
|
+
detect-libc "^2.0.3"
|
|
1337
|
+
optionalDependencies:
|
|
1338
|
+
lightningcss-android-arm64 "1.32.0"
|
|
1339
|
+
lightningcss-darwin-arm64 "1.32.0"
|
|
1340
|
+
lightningcss-darwin-x64 "1.32.0"
|
|
1341
|
+
lightningcss-freebsd-x64 "1.32.0"
|
|
1342
|
+
lightningcss-linux-arm-gnueabihf "1.32.0"
|
|
1343
|
+
lightningcss-linux-arm64-gnu "1.32.0"
|
|
1344
|
+
lightningcss-linux-arm64-musl "1.32.0"
|
|
1345
|
+
lightningcss-linux-x64-gnu "1.32.0"
|
|
1346
|
+
lightningcss-linux-x64-musl "1.32.0"
|
|
1347
|
+
lightningcss-win32-arm64-msvc "1.32.0"
|
|
1348
|
+
lightningcss-win32-x64-msvc "1.32.0"
|
|
1349
|
+
|
|
1168
1350
|
loader-utils@^3.2.0:
|
|
1169
1351
|
version "3.3.1"
|
|
1170
1352
|
resolved "https://registry.npmjs.org/loader-utils/-/loader-utils-3.3.1.tgz"
|
|
@@ -1204,10 +1386,10 @@ mustache@^4.2.0:
|
|
|
1204
1386
|
resolved "https://registry.npmjs.org/mustache/-/mustache-4.2.0.tgz"
|
|
1205
1387
|
integrity sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==
|
|
1206
1388
|
|
|
1207
|
-
nanoid@^3.3.
|
|
1208
|
-
version "3.3.
|
|
1209
|
-
resolved "https://registry.
|
|
1210
|
-
integrity sha512-
|
|
1389
|
+
nanoid@^3.3.12:
|
|
1390
|
+
version "3.3.15"
|
|
1391
|
+
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.15.tgz#36c490fad8c6e86c824c940dfdde999b69ed4316"
|
|
1392
|
+
integrity sha512-y7Wygv/7mEOvxTuEQDB8StXdMRBWf1kR/tlhAzBRUFkB2jfcLOAxO/SHmOO2zgz1pVgK29/kyupn059/bCHdjA==
|
|
1211
1393
|
|
|
1212
1394
|
node-releases@^2.0.27:
|
|
1213
1395
|
version "2.0.27"
|
|
@@ -1346,12 +1528,12 @@ postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0:
|
|
|
1346
1528
|
resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz"
|
|
1347
1529
|
integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
|
|
1348
1530
|
|
|
1349
|
-
postcss@^8.4.41, postcss@^8.5.1, postcss@^8.5.
|
|
1350
|
-
version "8.5.
|
|
1351
|
-
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.5.
|
|
1352
|
-
integrity sha512-
|
|
1531
|
+
postcss@^8.4.41, postcss@^8.5.1, postcss@^8.5.15, postcss@^8.5.3:
|
|
1532
|
+
version "8.5.15"
|
|
1533
|
+
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.5.15.tgz#d1eaf677a324e9ec02196da2d3fecf4a0b9a735c"
|
|
1534
|
+
integrity sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==
|
|
1353
1535
|
dependencies:
|
|
1354
|
-
nanoid "^3.3.
|
|
1536
|
+
nanoid "^3.3.12"
|
|
1355
1537
|
picocolors "^1.1.1"
|
|
1356
1538
|
source-map-js "^1.2.1"
|
|
1357
1539
|
|
|
@@ -1379,7 +1561,31 @@ resolve-pkg-maps@^1.0.0:
|
|
|
1379
1561
|
resolved "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz"
|
|
1380
1562
|
integrity sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==
|
|
1381
1563
|
|
|
1382
|
-
|
|
1564
|
+
rolldown@1.0.3:
|
|
1565
|
+
version "1.0.3"
|
|
1566
|
+
resolved "https://registry.yarnpkg.com/rolldown/-/rolldown-1.0.3.tgz#db88a3008fb0e28230a00423727ce75ba32121ac"
|
|
1567
|
+
integrity sha512-i00lAJ2ks1BYr7rjNjKC7BcqAS7nVfiT3QX1SI5aY+AFHblCmaUf9OE9dbdzDvW6dJxbi2ZCZiy9v3CcwOiX3g==
|
|
1568
|
+
dependencies:
|
|
1569
|
+
"@oxc-project/types" "=0.133.0"
|
|
1570
|
+
"@rolldown/pluginutils" "^1.0.0"
|
|
1571
|
+
optionalDependencies:
|
|
1572
|
+
"@rolldown/binding-android-arm64" "1.0.3"
|
|
1573
|
+
"@rolldown/binding-darwin-arm64" "1.0.3"
|
|
1574
|
+
"@rolldown/binding-darwin-x64" "1.0.3"
|
|
1575
|
+
"@rolldown/binding-freebsd-x64" "1.0.3"
|
|
1576
|
+
"@rolldown/binding-linux-arm-gnueabihf" "1.0.3"
|
|
1577
|
+
"@rolldown/binding-linux-arm64-gnu" "1.0.3"
|
|
1578
|
+
"@rolldown/binding-linux-arm64-musl" "1.0.3"
|
|
1579
|
+
"@rolldown/binding-linux-ppc64-gnu" "1.0.3"
|
|
1580
|
+
"@rolldown/binding-linux-s390x-gnu" "1.0.3"
|
|
1581
|
+
"@rolldown/binding-linux-x64-gnu" "1.0.3"
|
|
1582
|
+
"@rolldown/binding-linux-x64-musl" "1.0.3"
|
|
1583
|
+
"@rolldown/binding-openharmony-arm64" "1.0.3"
|
|
1584
|
+
"@rolldown/binding-wasm32-wasi" "1.0.3"
|
|
1585
|
+
"@rolldown/binding-win32-arm64-msvc" "1.0.3"
|
|
1586
|
+
"@rolldown/binding-win32-x64-msvc" "1.0.3"
|
|
1587
|
+
|
|
1588
|
+
rollup@^4.34.9:
|
|
1383
1589
|
version "4.60.3"
|
|
1384
1590
|
resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.60.3.tgz#789258d41d090687d0ca7e80e8583d733711ddd3"
|
|
1385
1591
|
integrity sha512-pAQK9HalE84QSm4Po3EmWIZPd3FnjkShVkiMlz1iligWYkWQ7wHYd1PF/T7QZ5TVSD6uSTon5gBVMSM4JfBV+A==
|
|
@@ -1509,10 +1715,10 @@ tinyexec@^1.0.2:
|
|
|
1509
1715
|
resolved "https://registry.npmjs.org/tinyexec/-/tinyexec-1.0.2.tgz"
|
|
1510
1716
|
integrity sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==
|
|
1511
1717
|
|
|
1512
|
-
tinyglobby@^0.2.13, tinyglobby@^0.2.15:
|
|
1513
|
-
version "0.2.
|
|
1514
|
-
resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.
|
|
1515
|
-
integrity sha512-
|
|
1718
|
+
tinyglobby@^0.2.13, tinyglobby@^0.2.15, tinyglobby@^0.2.17:
|
|
1719
|
+
version "0.2.17"
|
|
1720
|
+
resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.17.tgz#562a9a6c9eb2b3b123d39719f9af5bb44fcd7631"
|
|
1721
|
+
integrity sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==
|
|
1516
1722
|
dependencies:
|
|
1517
1723
|
fdir "^6.5.0"
|
|
1518
1724
|
picomatch "^4.0.4"
|
|
@@ -1558,7 +1764,7 @@ type-fest@^0.7.1:
|
|
|
1558
1764
|
|
|
1559
1765
|
typescript@^5.9.3:
|
|
1560
1766
|
version "5.9.3"
|
|
1561
|
-
resolved "https://registry.
|
|
1767
|
+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.9.3.tgz#5b4f59e15310ab17a216f5d6cf53ee476ede670f"
|
|
1562
1768
|
integrity sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==
|
|
1563
1769
|
|
|
1564
1770
|
undici-types@~7.18.0:
|
|
@@ -1613,17 +1819,16 @@ uuid@^14.0.0:
|
|
|
1613
1819
|
optionalDependencies:
|
|
1614
1820
|
fsevents "~2.3.3"
|
|
1615
1821
|
|
|
1616
|
-
vite@^
|
|
1617
|
-
version "
|
|
1618
|
-
resolved "https://registry.yarnpkg.com/vite/-/vite-
|
|
1619
|
-
integrity sha512-
|
|
1822
|
+
vite@^8.0.16:
|
|
1823
|
+
version "8.0.16"
|
|
1824
|
+
resolved "https://registry.yarnpkg.com/vite/-/vite-8.0.16.tgz#ae073866c06563d6634a90169a496e11bd84f1a6"
|
|
1825
|
+
integrity sha512-h9bXPmJichP5fLmVQo3PyaGSDE2n3aPuomeAlVRm0JLmt4rY6zmPKd59HYI4LNW8oTK7tlTsuC7l/m7awx9Jcw==
|
|
1620
1826
|
dependencies:
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
tinyglobby "^0.2.15"
|
|
1827
|
+
lightningcss "^1.32.0"
|
|
1828
|
+
picomatch "^4.0.4"
|
|
1829
|
+
postcss "^8.5.15"
|
|
1830
|
+
rolldown "1.0.3"
|
|
1831
|
+
tinyglobby "^0.2.17"
|
|
1627
1832
|
optionalDependencies:
|
|
1628
1833
|
fsevents "~2.3.3"
|
|
1629
1834
|
|
langgraph_api/metadata.py
CHANGED
|
@@ -2,9 +2,9 @@ import asyncio
|
|
|
2
2
|
import os
|
|
3
3
|
import uuid
|
|
4
4
|
from datetime import UTC, datetime
|
|
5
|
+
from importlib import metadata as importlib_metadata
|
|
5
6
|
from typing import Any
|
|
6
7
|
|
|
7
|
-
import langgraph.version
|
|
8
8
|
import orjson
|
|
9
9
|
import structlog
|
|
10
10
|
|
|
@@ -58,6 +58,10 @@ else:
|
|
|
58
58
|
HOST = "self-hosted"
|
|
59
59
|
PLAN = "enterprise" if plus_features_enabled() else "developer"
|
|
60
60
|
USER_API_URL = os.getenv("LANGGRAPH_API_URL", None)
|
|
61
|
+
DEPENDENCY_VERSION_DISTRIBUTIONS = {
|
|
62
|
+
"langgraph.python.version": "langgraph",
|
|
63
|
+
"starlette.version": "starlette",
|
|
64
|
+
}
|
|
61
65
|
|
|
62
66
|
RUN_COUNTER = 0
|
|
63
67
|
NODE_COUNTER = 0
|
|
@@ -80,6 +84,19 @@ if LANGSMITH_AUTH_ENDPOINT:
|
|
|
80
84
|
)
|
|
81
85
|
|
|
82
86
|
|
|
87
|
+
def _dependency_version_metadata() -> dict[str, str]:
|
|
88
|
+
tags = {}
|
|
89
|
+
for tag, distribution in DEPENDENCY_VERSION_DISTRIBUTIONS.items():
|
|
90
|
+
try:
|
|
91
|
+
tags[tag] = importlib_metadata.version(distribution)
|
|
92
|
+
except importlib_metadata.PackageNotFoundError:
|
|
93
|
+
logger.debug(
|
|
94
|
+
"Dependency package not found for metadata", package=distribution
|
|
95
|
+
)
|
|
96
|
+
tags[tag] = ""
|
|
97
|
+
return tags
|
|
98
|
+
|
|
99
|
+
|
|
83
100
|
def _lang_usage_metadata() -> tuple[dict[str, str], dict[str, int]]:
|
|
84
101
|
js_graph_count = sum(1 for graph_id in GRAPHS if is_js_graph(graph_id))
|
|
85
102
|
py_graph_count = len(GRAPHS) - js_graph_count
|
|
@@ -130,8 +147,6 @@ async def metadata_loop() -> None:
|
|
|
130
147
|
"No license key or control plane API key set, skipping metadata loop"
|
|
131
148
|
)
|
|
132
149
|
return
|
|
133
|
-
lg_version = langgraph.version.__version__
|
|
134
|
-
|
|
135
150
|
if (
|
|
136
151
|
LANGGRAPH_CLOUD_LICENSE_KEY
|
|
137
152
|
and not LANGGRAPH_CLOUD_LICENSE_KEY.startswith("lcl_")
|
|
@@ -160,7 +175,7 @@ async def metadata_loop() -> None:
|
|
|
160
175
|
base_tags = _ensure_strings(
|
|
161
176
|
# Tag values must be strings.
|
|
162
177
|
{
|
|
163
|
-
|
|
178
|
+
**_dependency_version_metadata(),
|
|
164
179
|
"langgraph_api.version": __version__ or "",
|
|
165
180
|
"langgraph.platform.revision": REVISION or "",
|
|
166
181
|
"langgraph.platform.variant": VARIANT or "",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
langgraph_api/__init__.py,sha256
|
|
1
|
+
langgraph_api/__init__.py,sha256=-QlAaSjuNluGg0H_gwVm8vuSM9gjDKkdM4rOChZ_TZw,29
|
|
2
2
|
langgraph_api/_factory_utils.py,sha256=5JsiJbg_YocVSryN2jwoZTg03-eyymlWMK6sKCmXwz0,5756
|
|
3
3
|
langgraph_api/asgi_transport.py,sha256=XApY3lIWBZTMbbsl8dDJzl0cLGirmAGE0SifqZUnXvs,11896
|
|
4
|
-
langgraph_api/asyncio.py,sha256=
|
|
4
|
+
langgraph_api/asyncio.py,sha256=smqyAoO9nIyPPQRw1IVSCh85fwoZP4PEo-5dDhxGruc,10676
|
|
5
5
|
langgraph_api/cache.py,sha256=LuB3Te0UdXC8a-uEJoRHoe5XsgXulXI59f_Q6DCJNKc,13005
|
|
6
6
|
langgraph_api/cli.py,sha256=ATtS9s9Cx7QNiGPJceKnMCko29A25ZA-xz39fdxmgfg,22389
|
|
7
7
|
langgraph_api/command.py,sha256=d-k8h6H4ix1n7fSZ-Zb01NbSkEyqrD6cMKfDFXEIYEw,821
|
|
@@ -13,7 +13,7 @@ langgraph_api/http.py,sha256=7hPxKbj-xoAKcm7iucBpT5nM_hXOgGVCPbBsCD693Cw,6977
|
|
|
13
13
|
langgraph_api/http_metrics.py,sha256=etxbZNmYxdb58DVLNkHP7S-N6njXPTiQh2OWKMaIZi8,5336
|
|
14
14
|
langgraph_api/http_metrics_utils.py,sha256=sjxF7SYGTzY0Wz_G0dzatsYNnWr31S6ujej4JmBG2yo,866
|
|
15
15
|
langgraph_api/logging.py,sha256=V1RCnqVLuMvJtrBiyMMLfaEdbS3k5A2M8Unhr4FUUdQ,6801
|
|
16
|
-
langgraph_api/metadata.py,sha256=
|
|
16
|
+
langgraph_api/metadata.py,sha256=hXkF55cWxxnjAJ0MB_PhU_4NfVzpLuwU4xwFDaAgi7I,10314
|
|
17
17
|
langgraph_api/metrics_collector.py,sha256=gMLHL18rJyYl985AOmu9eH7W1ttdRdkPHzeyczjCOBw,8280
|
|
18
18
|
langgraph_api/metrics_otlp.py,sha256=t9oJrxfxY2O5jY4JW2gONPKoBiBuklhzCrnZvn1qTxQ,28730
|
|
19
19
|
langgraph_api/otel_context.py,sha256=DWFwW4Yu88QY4W2J0IRcURR450Th9J2DupvDDkSkMBA,7166
|
|
@@ -65,8 +65,8 @@ langgraph_api/auth/langsmith/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
|
|
|
65
65
|
langgraph_api/auth/langsmith/backend.py,sha256=Y6-VxD7zfV1jzGdjmQ66CgNa3SenLbo3d_375CcKZ9U,3770
|
|
66
66
|
langgraph_api/auth/langsmith/client.py,sha256=79kwCVeHU64nsHsxWipfZhf44lM6vfs2nlfTxlJF6LU,4142
|
|
67
67
|
langgraph_api/config/__init__.py,sha256=qj7HF1XmojpG6WXahlFxrMZiO8hUI6QlPNVT-32xfvs,25528
|
|
68
|
-
langgraph_api/config/_parse.py,sha256=
|
|
69
|
-
langgraph_api/config/schemas.py,sha256=
|
|
68
|
+
langgraph_api/config/_parse.py,sha256=RpfZgFAPJlRMv13AzGr3kAYbIrqHcgjzO8IgeboTw4A,3922
|
|
69
|
+
langgraph_api/config/schemas.py,sha256=cHzVvepthpD7DDeWE2ytkOHah-iDNH7xRx9dSWUatQI,20864
|
|
70
70
|
langgraph_api/encryption/__init__.py,sha256=gaCZ00CocSbqSqrDn6XJHaSp2CZCnC8qnrD9G4fbzyI,363
|
|
71
71
|
langgraph_api/encryption/aes_json.py,sha256=ExLgrthzVYGP4X51TStU2Td_Sn_3-kXHyk6UKTFmzW4,6139
|
|
72
72
|
langgraph_api/encryption/context.py,sha256=twnDvH3FcC8rlnPOAhI09dLZcxGgMVlplIH2ZpJ-8P4,1121
|
|
@@ -104,14 +104,14 @@ langgraph_api/js/client.http.mts,sha256=0k9O9q_3xouymBrx50r_xQchvx-Wx7C0UHzExlSc
|
|
|
104
104
|
langgraph_api/js/client.mts,sha256=W37FC_u9qdT6nuo46OFqXQo-L-nrHaAJ-ICddwSt_EU,38793
|
|
105
105
|
langgraph_api/js/errors.py,sha256=Cm1TKWlUCwZReDC5AQ6SgNIVGD27Qov2xcgHyf8-GXo,361
|
|
106
106
|
langgraph_api/js/global.d.ts,sha256=j4GhgtQSZ5_cHzjSPcHgMJ8tfBThxrH-pUOrrJGteOU,196
|
|
107
|
-
langgraph_api/js/package.json,sha256=
|
|
107
|
+
langgraph_api/js/package.json,sha256=nQaRwAT6gmR2bC1sN0-ZtSctve74zARvQJk-VN-a-LQ,1384
|
|
108
108
|
langgraph_api/js/remote.py,sha256=R6JcRJoYnwjJJpUQklUzut5SHcidewqzy2R9OgK3dTQ,46027
|
|
109
109
|
langgraph_api/js/schema.py,sha256=M4fLtr50O1jck8H1hm_0W4cZOGYGdkrB7riLyCes4oY,438
|
|
110
110
|
langgraph_api/js/sse.py,sha256=IfcEpknyZeqqjYTOWRdijc6o2EBfatbWCZarGQQ0SQI,4088
|
|
111
111
|
langgraph_api/js/traceblock.mts,sha256=QtGSN5VpzmGqDfbArrGXkMiONY94pMQ5CgzetT_bKYg,761
|
|
112
112
|
langgraph_api/js/tsconfig.json,sha256=imCYqVnqFpaBoZPx8k1nO4slHIWBFsSlmCYhO73cpBs,341
|
|
113
113
|
langgraph_api/js/ui.py,sha256=plqcWSmqfc9tY2nCUzNRBSofHTMdYDmVD9A6i5L3pSI,2571
|
|
114
|
-
langgraph_api/js/yarn.lock,sha256=
|
|
114
|
+
langgraph_api/js/yarn.lock,sha256=0A53OD6v3Mzzv1nxTpU1gS5sxbZ4tish4r4JpDSKI9k,89703
|
|
115
115
|
langgraph_api/js/src/graph.mts,sha256=-4DopUXBvUr-THI3tCkJol1wwquVevHdcbADAHdPU4s,3556
|
|
116
116
|
langgraph_api/js/src/load.hooks.mjs,sha256=sqgVptq70mJb2EDprRIbMqRmPbCJlT_nHCqZQgg9zw4,2256
|
|
117
117
|
langgraph_api/js/src/preload.mjs,sha256=WL6MVSeFuxusFscySrDDnloXJNVhkNcMOFwP70UAMbs,4106
|
|
@@ -229,8 +229,8 @@ langgraph_grpc_common/proto/errors_pb2.py,sha256=JI6x-vBK1AE7DHZ5DQwN1mZWF6C4xTR
|
|
|
229
229
|
langgraph_grpc_common/proto/errors_pb2.pyi,sha256=rd3-BYUH8V-aO66taL7OOblaLgdrDtf1Vcd38GUoVVM,2181
|
|
230
230
|
langgraph_grpc_common/proto/errors_pb2_grpc.py,sha256=2-LwQ0OPGo-NtC0269q7Fw6GPBxnTLYWq3xP5Eq0_YA,886
|
|
231
231
|
langgraph_grpc_common/proto/errors_pb2_grpc.pyi,sha256=uC9Wnq6uyg488QiONpJ0ba1s_iouQCOYsjd_FDd1XUM,495
|
|
232
|
-
langgraph_api-0.12.0.
|
|
233
|
-
langgraph_api-0.12.0.
|
|
234
|
-
langgraph_api-0.12.0.
|
|
235
|
-
langgraph_api-0.12.0.
|
|
236
|
-
langgraph_api-0.12.0.
|
|
232
|
+
langgraph_api-0.12.0.dev14.dist-info/METADATA,sha256=1V1Zxm9x49BqTxlUEXLtfxgNykA2vlXHpExniGt2Tzo,4632
|
|
233
|
+
langgraph_api-0.12.0.dev14.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
|
|
234
|
+
langgraph_api-0.12.0.dev14.dist-info/entry_points.txt,sha256=hGedv8n7cgi41PypMfinwS_HfCwA7xJIfS0jAp8htV8,78
|
|
235
|
+
langgraph_api-0.12.0.dev14.dist-info/licenses/LICENSE,sha256=ZPwVR73Biwm3sK6vR54djCrhaRiM4cAD2zvOQZV8Xis,3859
|
|
236
|
+
langgraph_api-0.12.0.dev14.dist-info/RECORD,,
|
|
File without changes
|
{langgraph_api-0.12.0.dev12.dist-info → langgraph_api-0.12.0.dev14.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{langgraph_api-0.12.0.dev12.dist-info → langgraph_api-0.12.0.dev14.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|