mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-12 08:00:27 +02:00
chore: Bump Axios, hono, vm2 and fast-xml-parser (#29829)
Co-authored-by: aikido-autofix[bot] <119856028+aikido-autofix[bot]@users.noreply.github.com> Co-authored-by: Matsuuu <huhta.matias@gmail.com>
This commit is contained in:
parent
30d9a168bc
commit
972d8d4ec7
|
|
@ -73,7 +73,7 @@
|
|||
"jest-mock-extended": "^3.0.4",
|
||||
"lefthook": "^1.7.15",
|
||||
"license-checker": "^25.0.1",
|
||||
"nock": "^14.0.13",
|
||||
"nock": "^14.0.14",
|
||||
"nodemon": "^3.0.1",
|
||||
"npm-run-all2": "^7.0.2",
|
||||
"p-limit": "^3.1.0",
|
||||
|
|
@ -103,7 +103,6 @@
|
|||
"@mistralai/mistralai": "^1.10.0",
|
||||
"@n8n/typeorm>@sentry/node": "catalog:sentry",
|
||||
"@types/node": "^20.17.50",
|
||||
"axios": "1.15.0",
|
||||
"chokidar": "4.0.3",
|
||||
"esbuild": "^0.25.0",
|
||||
"expr-eval@2.0.2": "npm:expr-eval-fork@3.0.0",
|
||||
|
|
@ -140,7 +139,6 @@
|
|||
"undici@6": "^6.24.0",
|
||||
"undici@7": "^7.24.0",
|
||||
"tar": "^7.5.11",
|
||||
"hono": "4.12.14",
|
||||
"ajv@6": "6.14.0",
|
||||
"ajv@7": "8.18.0",
|
||||
"ajv@8": "8.18.0",
|
||||
|
|
@ -167,10 +165,11 @@
|
|||
"@xmldom/xmldom": "0.8.13",
|
||||
"langsmith": "0.5.19",
|
||||
"yaml@<=2.8.3": "2.8.3",
|
||||
"fast-xml-parser": "5.7.0"
|
||||
"hono": "4.12.16",
|
||||
"axios": "1.16.0",
|
||||
"fast-xml-parser": "5.7.2"
|
||||
},
|
||||
"patchedDependencies": {
|
||||
"axios@1.15.0": "patches/axios@1.15.0.patch",
|
||||
"bull@4.16.4": "patches/bull@4.16.4.patch",
|
||||
"pdfjs-dist@5.3.31": "patches/pdfjs-dist@5.3.31.patch",
|
||||
"pkce-challenge@5.0.0": "patches/pkce-challenge@5.0.0.patch",
|
||||
|
|
|
|||
|
|
@ -501,7 +501,7 @@ describe('Request Helper Functions', () => {
|
|||
hostname: 'example.de',
|
||||
href: requestObject.uri,
|
||||
};
|
||||
axiosOptions.beforeRedirect!(redirectOptions, mock());
|
||||
axiosOptions.beforeRedirect!(redirectOptions, mock(), mock());
|
||||
expect(redirectOptions.agent).toEqual(redirectOptions.agents.https);
|
||||
expect((redirectOptions.agent as HttpsAgent).options).toMatchObject({
|
||||
servername: 'example.de',
|
||||
|
|
@ -2240,7 +2240,7 @@ describe('Request Helper Functions', () => {
|
|||
};
|
||||
|
||||
expect(axiosOptions.beforeRedirect).toBeDefined();
|
||||
expect(() => axiosOptions.beforeRedirect!(redirectOptions, mock())).toThrow(
|
||||
expect(() => axiosOptions.beforeRedirect!(redirectOptions, mock(), mock())).toThrow(
|
||||
'Domain not allowed',
|
||||
);
|
||||
});
|
||||
|
|
@ -2259,7 +2259,9 @@ describe('Request Helper Functions', () => {
|
|||
};
|
||||
|
||||
expect(axiosOptions.beforeRedirect).toBeDefined();
|
||||
expect(() => axiosOptions.beforeRedirect!(redirectOptions, mock())).not.toThrow();
|
||||
expect(() =>
|
||||
axiosOptions.beforeRedirect!(redirectOptions, mock(), mock()),
|
||||
).not.toThrow();
|
||||
},
|
||||
);
|
||||
});
|
||||
|
|
@ -2278,7 +2280,7 @@ describe('Request Helper Functions', () => {
|
|||
};
|
||||
|
||||
expect(axiosConfig.beforeRedirect).toBeDefined();
|
||||
expect(() => axiosConfig.beforeRedirect!(redirectOptions, mock())).toThrow(
|
||||
expect(() => axiosConfig.beforeRedirect!(redirectOptions, mock(), mock())).toThrow(
|
||||
'Domain not allowed',
|
||||
);
|
||||
});
|
||||
|
|
@ -2298,7 +2300,9 @@ describe('Request Helper Functions', () => {
|
|||
};
|
||||
|
||||
expect(axiosConfig.beforeRedirect).toBeDefined();
|
||||
expect(() => axiosConfig.beforeRedirect!(redirectOptions, mock())).not.toThrow();
|
||||
expect(() =>
|
||||
axiosConfig.beforeRedirect!(redirectOptions, mock(), mock()),
|
||||
).not.toThrow();
|
||||
},
|
||||
);
|
||||
});
|
||||
|
|
|
|||
|
|
@ -424,7 +424,11 @@ export async function proxyRequestToAxios(
|
|||
): Promise<any> {
|
||||
let axiosConfig: AxiosRequestConfig = {
|
||||
maxBodyLength: Infinity,
|
||||
maxContentLength: Infinity,
|
||||
// -1 is the Axios sentinel for "no limit". Infinity also means no limit but
|
||||
// Axios 1.15.1+ treats any value > -1 as a finite cap, wrapping stream responses
|
||||
// in Readable.from() even when the limit is Infinity. That breaks the downstream
|
||||
// `instanceof IncomingMessage` checks in parseIncomingMessage / prepareBinaryData.
|
||||
maxContentLength: -1,
|
||||
};
|
||||
let configObject: IRequestOptions;
|
||||
if (typeof uriOrObject === 'string') {
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ import nock from 'nock';
|
|||
describe('Test Binary Data Download', () => {
|
||||
const baseUrl = 'https://dummy.domain';
|
||||
|
||||
beforeAll(async () => {
|
||||
beforeAll(() => {
|
||||
nock(baseUrl)
|
||||
.persist()
|
||||
.get('/path/to/image.png')
|
||||
|
|
|
|||
|
|
@ -1,13 +0,0 @@
|
|||
diff --git a/lib/core/Axios.js b/lib/core/Axios.js
|
||||
index 0000000..0000001 100644
|
||||
--- a/lib/core/Axios.js
|
||||
+++ b/lib/core/Axios.js
|
||||
@@ -47,7 +47,7 @@ class Axios {
|
||||
|
||||
// slice off the Error: ... line
|
||||
const stack = (() => {
|
||||
- if (!dummy.stack) {
|
||||
+ if (typeof dummy.stack !== 'string') {
|
||||
return '';
|
||||
}
|
||||
|
||||
298
pnpm-lock.yaml
298
pnpm-lock.yaml
|
|
@ -265,8 +265,8 @@ catalogs:
|
|||
specifier: ^3.1.0
|
||||
version: 3.1.0
|
||||
vm2:
|
||||
specifier: ^3.10.5
|
||||
version: 3.10.5
|
||||
specifier: 3.11.2
|
||||
version: 3.11.2
|
||||
xml2js:
|
||||
specifier: 0.6.2
|
||||
version: 0.6.2
|
||||
|
|
@ -394,7 +394,6 @@ overrides:
|
|||
'@mistralai/mistralai': ^1.10.0
|
||||
'@n8n/typeorm>@sentry/node': ^10.36.0
|
||||
'@types/node': ^20.17.50
|
||||
axios: 1.15.0
|
||||
chokidar: 4.0.3
|
||||
esbuild: ^0.25.0
|
||||
expr-eval@2.0.2: npm:expr-eval-fork@3.0.0
|
||||
|
|
@ -431,7 +430,6 @@ overrides:
|
|||
undici@6: ^6.24.0
|
||||
undici@7: ^7.24.0
|
||||
tar: ^7.5.11
|
||||
hono: 4.12.14
|
||||
ajv@6: 6.14.0
|
||||
ajv@7: 8.18.0
|
||||
ajv@8: 8.18.0
|
||||
|
|
@ -458,7 +456,9 @@ overrides:
|
|||
'@xmldom/xmldom': 0.8.13
|
||||
langsmith: 0.5.19
|
||||
yaml@<=2.8.3: 2.8.3
|
||||
fast-xml-parser: 5.7.0
|
||||
hono: 4.12.16
|
||||
axios: 1.16.0
|
||||
fast-xml-parser: 5.7.2
|
||||
|
||||
patchedDependencies:
|
||||
'@lezer/highlight':
|
||||
|
|
@ -476,9 +476,6 @@ patchedDependencies:
|
|||
assert@2.1.0:
|
||||
hash: a73271b303dca8c10a0c9caf77d2083b52032b6a887227563bee3ce3dbf5e9d2
|
||||
path: patches/assert@2.1.0.patch
|
||||
axios@1.15.0:
|
||||
hash: d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7
|
||||
path: patches/axios@1.15.0.patch
|
||||
bull@4.16.4:
|
||||
hash: a4b6d56db16fe5870646929938466d6a5c668435fd1551bed6a93fffb597ba42
|
||||
path: patches/bull@4.16.4.patch
|
||||
|
|
@ -566,8 +563,8 @@ importers:
|
|||
specifier: ^25.0.1
|
||||
version: 25.0.1
|
||||
nock:
|
||||
specifier: ^14.0.13
|
||||
version: 14.0.13
|
||||
specifier: ^14.0.14
|
||||
version: 14.0.14
|
||||
nodemon:
|
||||
specifier: ^3.0.1
|
||||
version: 3.0.1
|
||||
|
|
@ -704,7 +701,7 @@ importers:
|
|||
version: 1.0.27(@langchain/core@1.1.41(@opentelemetry/api@1.9.0)(@opentelemetry/exporter-trace-otlp-proto@0.213.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.6.0(@opentelemetry/api@1.9.0))(openai@6.34.0(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(zod@3.25.67))(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)))(@opentelemetry/api@1.9.0)(@opentelemetry/exporter-trace-otlp-proto@0.213.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.6.0(@opentelemetry/api@1.9.0))(cheerio@1.0.0)(openai@6.34.0(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(zod@3.25.67))(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))
|
||||
'@langchain/community':
|
||||
specifier: 'catalog:'
|
||||
version: 1.1.27(9d1780938e2a3bdbdbc6aaf41ad92004)
|
||||
version: 1.1.27(fc62cbc93d74cace03ba310d8e53131b)
|
||||
'@langchain/core':
|
||||
specifier: 'catalog:'
|
||||
version: 1.1.41(@opentelemetry/api@1.9.0)(@opentelemetry/exporter-trace-otlp-proto@0.213.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.6.0(@opentelemetry/api@1.9.0))(openai@6.34.0(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(zod@3.25.67))(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))
|
||||
|
|
@ -752,8 +749,8 @@ importers:
|
|||
specifier: 'catalog:'
|
||||
version: 3.0.1
|
||||
axios:
|
||||
specifier: 1.15.0
|
||||
version: 1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7)
|
||||
specifier: 1.16.0
|
||||
version: 1.16.0
|
||||
jest-mock-extended:
|
||||
specifier: ^3.0.4
|
||||
version: 3.0.4(jest@29.7.0(@types/node@20.19.21)(ts-node@10.9.2(@swc/core@1.15.8(@swc/helpers@0.5.17))(@types/node@20.19.21)(typescript@6.0.2)))(typescript@6.0.2)
|
||||
|
|
@ -987,8 +984,8 @@ importers:
|
|||
specifier: 4.0.7
|
||||
version: 4.0.7
|
||||
axios:
|
||||
specifier: 1.15.0
|
||||
version: 1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7)
|
||||
specifier: 1.16.0
|
||||
version: 1.16.0
|
||||
dotenv:
|
||||
specifier: 17.2.3
|
||||
version: 17.2.3
|
||||
|
|
@ -1041,8 +1038,8 @@ importers:
|
|||
packages/@n8n/client-oauth2:
|
||||
dependencies:
|
||||
axios:
|
||||
specifier: 1.15.0
|
||||
version: 1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7)
|
||||
specifier: 1.16.0
|
||||
version: 1.16.0
|
||||
devDependencies:
|
||||
'@n8n/typescript-config':
|
||||
specifier: workspace:*
|
||||
|
|
@ -2036,7 +2033,7 @@ importers:
|
|||
version: 1.0.1(@langchain/core@1.1.41(@opentelemetry/api@1.9.0)(@opentelemetry/exporter-trace-otlp-proto@0.213.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.6.0(@opentelemetry/api@1.9.0))(openai@6.34.0(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(zod@3.25.67))(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)))(encoding@0.1.13)
|
||||
'@langchain/community':
|
||||
specifier: 'catalog:'
|
||||
version: 1.1.27(7d9a0518aab37da79d9f494cd5b9494b)
|
||||
version: 1.1.27(f2f54e7010350c3b50a1b81272c39ebc)
|
||||
'@langchain/core':
|
||||
specifier: 'catalog:'
|
||||
version: 1.1.41(@opentelemetry/api@1.9.0)(@opentelemetry/exporter-trace-otlp-proto@0.213.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.6.0(@opentelemetry/api@1.9.0))(openai@6.34.0(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(zod@3.25.67))(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))
|
||||
|
|
@ -2225,7 +2222,7 @@ importers:
|
|||
version: 3.0.3
|
||||
vm2:
|
||||
specifier: 'catalog:'
|
||||
version: 3.10.5
|
||||
version: 3.11.2
|
||||
weaviate-client:
|
||||
specifier: 3.9.0
|
||||
version: 3.9.0(encoding@0.1.13)
|
||||
|
|
@ -2313,8 +2310,8 @@ importers:
|
|||
specifier: ^8.35.0
|
||||
version: 8.35.0(eslint@9.29.0(jiti@2.6.1))(typescript@6.0.2)
|
||||
axios:
|
||||
specifier: 1.15.0
|
||||
version: 1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7)
|
||||
specifier: 1.16.0
|
||||
version: 1.16.0
|
||||
eslint:
|
||||
specifier: 'catalog:'
|
||||
version: 9.29.0(jiti@2.6.1)
|
||||
|
|
@ -2710,8 +2707,8 @@ importers:
|
|||
specifier: 1.11.0
|
||||
version: 1.11.0
|
||||
axios:
|
||||
specifier: 1.15.0
|
||||
version: 1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7)
|
||||
specifier: 1.16.0
|
||||
version: 1.16.0
|
||||
bcryptjs:
|
||||
specifier: 2.4.3
|
||||
version: 2.4.3
|
||||
|
|
@ -3095,8 +3092,8 @@ importers:
|
|||
specifier: catalog:sentry
|
||||
version: 10.36.0
|
||||
axios:
|
||||
specifier: 1.15.0
|
||||
version: 1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7)
|
||||
specifier: 1.16.0
|
||||
version: 1.16.0
|
||||
callsites:
|
||||
specifier: 'catalog:'
|
||||
version: 3.1.0
|
||||
|
|
@ -3568,8 +3565,8 @@ importers:
|
|||
specifier: workspace:*
|
||||
version: link:../../../@n8n/utils
|
||||
axios:
|
||||
specifier: 1.15.0
|
||||
version: 1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7)
|
||||
specifier: 1.16.0
|
||||
version: 1.16.0
|
||||
flatted:
|
||||
specifier: 3.4.2
|
||||
version: 3.4.2
|
||||
|
|
@ -3895,8 +3892,8 @@ importers:
|
|||
specifier: 1.1.4
|
||||
version: 1.1.4
|
||||
axios:
|
||||
specifier: 1.15.0
|
||||
version: 1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7)
|
||||
specifier: 1.16.0
|
||||
version: 1.16.0
|
||||
bowser:
|
||||
specifier: 2.11.0
|
||||
version: 2.11.0
|
||||
|
|
@ -4405,7 +4402,7 @@ importers:
|
|||
version: 10.0.0
|
||||
vm2:
|
||||
specifier: 'catalog:'
|
||||
version: 3.10.5
|
||||
version: 3.11.2
|
||||
xlsx:
|
||||
specifier: https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz
|
||||
version: https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz
|
||||
|
|
@ -7122,7 +7119,7 @@ packages:
|
|||
resolution: {integrity: sha512-TsQLe4i2gvoTtrHje625ngThGBySOgSK3Xo2XRYOdqGN1teR8+I7vchQC46uLJi8OF62YTYA3AhSpumtkhsaKQ==}
|
||||
engines: {node: '>=18.14.1'}
|
||||
peerDependencies:
|
||||
hono: 4.12.14
|
||||
hono: 4.12.16
|
||||
|
||||
'@huggingface/inference@4.0.5':
|
||||
resolution: {integrity: sha512-/Qc45BGrN+FBA3JfdeoHfafxfNShH/dxvOsXbBdcxyxIRIYOyefeiXSlShZGVCaiqYpm+10na28D0YtvjKPTlw==}
|
||||
|
|
@ -7675,7 +7672,7 @@ packages:
|
|||
duck-duck-scrape: ^2.2.5
|
||||
epub2: ^3.0.1
|
||||
faiss-node: '*'
|
||||
fast-xml-parser: 5.7.0
|
||||
fast-xml-parser: 5.7.2
|
||||
firebase-admin: ^13.6.1
|
||||
google-auth-library: '*'
|
||||
googleapis: '*'
|
||||
|
|
@ -8765,12 +8762,6 @@ packages:
|
|||
peerDependencies:
|
||||
'@opentelemetry/api': '>=1.0.0 <1.10.0'
|
||||
|
||||
'@opentelemetry/context-async-hooks@2.5.0':
|
||||
resolution: {integrity: sha512-uOXpVX0ZjO7heSVjhheW2XEPrhQAWr2BScDPoZ9UDycl5iuHG+Usyc3AIfG6kZeC1GyLpMInpQ6X5+9n69yOFw==}
|
||||
engines: {node: ^18.19.0 || >=20.6.0}
|
||||
peerDependencies:
|
||||
'@opentelemetry/api': '>=1.0.0 <1.10.0'
|
||||
|
||||
'@opentelemetry/context-async-hooks@2.6.0':
|
||||
resolution: {integrity: sha512-L8UyDwqpTcbkIK5cgwDRDYDoEhQoj8wp8BwsO19w3LB1Z41yEQm2VJyNfAi9DrLP/YTqXqWpKHyZfR9/tFYo1Q==}
|
||||
engines: {node: ^18.19.0 || >=20.6.0}
|
||||
|
|
@ -12861,10 +12852,10 @@ packages:
|
|||
axios-retry@4.5.0:
|
||||
resolution: {integrity: sha512-aR99oXhpEDGo0UuAlYcn2iGRds30k366Zfa05XWScR9QaQD4JYiP3/1Qt1u7YlefUOK+cn0CcwoL1oefavQUlQ==}
|
||||
peerDependencies:
|
||||
axios: 1.15.0
|
||||
axios: 1.16.0
|
||||
|
||||
axios@1.15.0:
|
||||
resolution: {integrity: sha512-wWyJDlAatxk30ZJer+GeCWS209sA42X+N5jU2jy6oHTp7ufw8uzUTVFBX9+wTfAlhiJXGS0Bq7X6efruWjuK9Q==}
|
||||
axios@1.16.0:
|
||||
resolution: {integrity: sha512-6hp5CwvTPlN2A31g5dxnwAX0orzM7pmCRDLnZSX772mv8WDqICwFjowHuPs04Mc8deIld1+ejhtaMn5vp6b+1w==}
|
||||
|
||||
b4a@1.6.7:
|
||||
resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==}
|
||||
|
|
@ -15057,10 +15048,6 @@ packages:
|
|||
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
|
||||
engines: {node: '>=10'}
|
||||
|
||||
execa@9.6.0:
|
||||
resolution: {integrity: sha512-jpWzZ1ZhwUmeWRhS7Qv3mhpOhLfwI+uAX4e5fOcXqwMR7EcJ0pj2kV1CVzHVMX/LphnKWD3LObjZCoJ71lKpHw==}
|
||||
engines: {node: ^18.19.0 || >=20.5.0}
|
||||
|
||||
execa@9.6.1:
|
||||
resolution: {integrity: sha512-9Be3ZoN4LmYR90tUoVu2te2BsbzHfhJyfEiAVfz7N5/zv+jduIfLrV2xdQXOHbaD6KgpGdO9PRPM1Y4Q9QkPkA==}
|
||||
engines: {node: ^18.19.0 || >=20.5.0}
|
||||
|
|
@ -15218,8 +15205,8 @@ packages:
|
|||
fast-xml-builder@1.1.5:
|
||||
resolution: {integrity: sha512-4TJn/8FKLeslLAH3dnohXqE3QSoxkhvaMzepOIZytwJXZO69Bfz0HBdDHzOTOon6G59Zrk6VQ2bEiv1t61rfkA==}
|
||||
|
||||
fast-xml-parser@5.7.0:
|
||||
resolution: {integrity: sha512-MTcrUoRQ1GSQ9iG3QJzBGquYYYeA7piZaJoIWbPFGbRn6Jj6z7xgoAyi4DrZX4y2ZIQQBF59gc/zmvvejjgoFQ==}
|
||||
fast-xml-parser@5.7.2:
|
||||
resolution: {integrity: sha512-P7oW7tLbYnhOLQk/Gv7cZgzgMPP/XN03K02/Jy6Y/NHzyIAIpxuZIM/YqAkfiXFPxA2CTm7NtCijK9EDu09u2w==}
|
||||
hasBin: true
|
||||
|
||||
fastest-levenshtein@1.0.16:
|
||||
|
|
@ -15844,7 +15831,7 @@ packages:
|
|||
'@standard-community/standard-json': ^0.3.5
|
||||
'@standard-community/standard-openapi': ^0.2.9
|
||||
'@types/json-schema': ^7.0.15
|
||||
hono: 4.12.14
|
||||
hono: 4.12.16
|
||||
openapi-types: ^12.1.3
|
||||
peerDependenciesMeta:
|
||||
'@hono/standard-validator':
|
||||
|
|
@ -15852,8 +15839,8 @@ packages:
|
|||
hono:
|
||||
optional: true
|
||||
|
||||
hono@4.12.14:
|
||||
resolution: {integrity: sha512-am5zfg3yu6sqn5yjKBNqhnTX7Cv+m00ox+7jbaKkrLMRJ4rAdldd1xPd/JzbBWspqaQv6RSTrgFN95EsfhC+7w==}
|
||||
hono@4.12.16:
|
||||
resolution: {integrity: sha512-jN0ZewiNAWSe5khM3EyCmBb250+b40wWbwNILNfEvq84VREWwOIkuUsFONk/3i3nqkz7Oe1PcpM2mwQEK2L9Kg==}
|
||||
engines: {node: '>=16.9.0'}
|
||||
|
||||
hookable@5.5.3:
|
||||
|
|
@ -18324,8 +18311,8 @@ packages:
|
|||
no-case@3.0.4:
|
||||
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
|
||||
|
||||
nock@14.0.13:
|
||||
resolution: {integrity: sha512-SCPsQmGVNY8h1rfS3aU0MzOGYY+wKIFukHEsoSIwPRCYocZkya7MFIlWIEYPWQZj+Gaksg6EyUaY255ZDqpQuA==}
|
||||
nock@14.0.14:
|
||||
resolution: {integrity: sha512-PKk7tex0O3RRXUZC5XDKJ9yM3rYRPS13myduT85VIIYDBnib42Fpxoe6KxRSzqB4iL2NDxkcJ2yiskZ18hGLEQ==}
|
||||
engines: {node: '>=18.20.0 <20 || >=20.12.1'}
|
||||
|
||||
node-abi@3.75.0:
|
||||
|
|
@ -19026,10 +19013,6 @@ packages:
|
|||
resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
|
||||
engines: {node: '>=16 || 14 >=14.18'}
|
||||
|
||||
path-scurry@2.0.1:
|
||||
resolution: {integrity: sha512-oWyT4gICAu+kaA7QWk/jvCHWarMKNs6pXOGWKDTr7cw4IGcUbW+PeTfbaQiLGheFRpjo6O9J0PmyMfQPjH71oA==}
|
||||
engines: {node: 20 || >=22}
|
||||
|
||||
path-scurry@2.0.2:
|
||||
resolution: {integrity: sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==}
|
||||
engines: {node: 18 || 20 || >=22}
|
||||
|
|
@ -19625,7 +19608,6 @@ packages:
|
|||
resolution: {integrity: sha512-gv6vLGcmAOg96/fgo3d9tvA4dJNZL3fMyBqVRrGxQ+Q/o4k9QzbJ3NQF9cOO/71wRodoXhaPgphvMFU68qVAJQ==}
|
||||
deprecated: |-
|
||||
You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other.
|
||||
|
||||
(For a CapTP with native promises, see @endo/eventual-send and @endo/captp)
|
||||
|
||||
qrcode.vue@3.3.4:
|
||||
|
|
@ -19997,7 +19979,7 @@ packages:
|
|||
resolution: {integrity: sha512-pOLi+Gdll3JekwuFjXO3fTq+L9lzMQGcSq7M5gIjExcl3Gu1hd4XXuf5o3+LuSBsaULQH7DiNbsqPd1chVpQGQ==}
|
||||
engines: {node: '>=10.7.0'}
|
||||
peerDependencies:
|
||||
axios: 1.15.0
|
||||
axios: 1.16.0
|
||||
|
||||
retry-request@7.0.2:
|
||||
resolution: {integrity: sha512-dUOvLMJ0/JJYEn8NrpOaGNE7X3vpI5XlZS/u0ANjqtcZVKnIxP7IgCFwrKTxENw29emmwug53awKtaMm4i9g5w==}
|
||||
|
|
@ -21809,6 +21791,7 @@ packages:
|
|||
|
||||
uuid@10.0.0:
|
||||
resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==}
|
||||
deprecated: uuid@10 and below is no longer supported. For ESM codebases, update to uuid@latest. For CommonJS codebases, use uuid@11 (but be aware this version will likely be deprecated in 2028).
|
||||
hasBin: true
|
||||
|
||||
uuid@11.1.0:
|
||||
|
|
@ -21826,6 +21809,7 @@ packages:
|
|||
|
||||
uuid@9.0.1:
|
||||
resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==}
|
||||
deprecated: uuid@10 and below is no longer supported. For ESM codebases, update to uuid@latest. For CommonJS codebases, use uuid@11 (but be aware this version will likely be deprecated in 2028).
|
||||
hasBin: true
|
||||
|
||||
v-code-diff@1.13.1:
|
||||
|
|
@ -22007,8 +21991,8 @@ packages:
|
|||
vm-browserify@1.1.2:
|
||||
resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==}
|
||||
|
||||
vm2@3.10.5:
|
||||
resolution: {integrity: sha512-3P/2QDccVFBcujfCOeP8vVNuGfuBJHEuvGR8eMmI10p/iwLL2UwF5PDaNaoOS2pRGQEDmJRyeEcc8kmm2Z59RA==}
|
||||
vm2@3.11.2:
|
||||
resolution: {integrity: sha512-hnsYAgBSAgwwPM/Gq66gMmUY0VlY9mKC8nvVRAZiJp+tYxF4sfNRlZymP8uqzIUK2U/7+SVZ/H8p7USxNHLlZA==}
|
||||
engines: {node: '>=6.0'}
|
||||
hasBin: true
|
||||
|
||||
|
|
@ -22050,8 +22034,8 @@ packages:
|
|||
vue-component-type-helpers@2.2.12:
|
||||
resolution: {integrity: sha512-YbGqHZ5/eW4SnkPNR44mKVc6ZKQoRs/Rux1sxC6rdwXb4qpbOSYfDr9DsTHolOTGmIKgM9j141mZbBeg05R1pw==}
|
||||
|
||||
vue-component-type-helpers@3.2.7:
|
||||
resolution: {integrity: sha512-+gPp5YGmhfsj1IN+xUo7y0fb4clfnOiiUA39y07yW1VzCRjzVgwLbtmdWlghh7mXrPsEaYc7rrIir/HT6C8vYQ==}
|
||||
vue-component-type-helpers@3.2.8:
|
||||
resolution: {integrity: sha512-9689efAXhN/EV86plgkL/XFiJSXhGtWPG6JDboZ+QnjlUWUUQrQ0ILKQtw4iQsuwIwu5k6Aw+JnehDe7161e7A==}
|
||||
|
||||
vue-demi@0.14.10:
|
||||
resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
|
||||
|
|
@ -22617,7 +22601,7 @@ snapshots:
|
|||
|
||||
'@1password/connect@1.4.2':
|
||||
dependencies:
|
||||
axios: 1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7)(debug@4.4.3)
|
||||
axios: 1.16.0(debug@4.4.3)
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
lodash.clonedeep: 4.5.0
|
||||
slugify: 1.6.6
|
||||
|
|
@ -23549,7 +23533,7 @@ snapshots:
|
|||
'@smithy/smithy-client': 4.9.8
|
||||
'@smithy/types': 4.13.1
|
||||
'@smithy/util-middleware': 4.2.5
|
||||
fast-xml-parser: 5.7.0
|
||||
fast-xml-parser: 5.7.2
|
||||
tslib: 2.8.1
|
||||
|
||||
'@aws-sdk/core@3.916.0':
|
||||
|
|
@ -24441,13 +24425,13 @@ snapshots:
|
|||
'@aws-sdk/xml-builder@3.914.0':
|
||||
dependencies:
|
||||
'@smithy/types': 4.13.1
|
||||
fast-xml-parser: 5.7.0
|
||||
fast-xml-parser: 5.7.2
|
||||
tslib: 2.8.1
|
||||
|
||||
'@aws-sdk/xml-builder@3.930.0':
|
||||
dependencies:
|
||||
'@smithy/types': 4.13.1
|
||||
fast-xml-parser: 5.7.0
|
||||
fast-xml-parser: 5.7.2
|
||||
tslib: 2.8.1
|
||||
|
||||
'@aws/lambda-invoke-store@0.0.1': {}
|
||||
|
|
@ -24582,7 +24566,7 @@ snapshots:
|
|||
|
||||
'@azure/core-xml@1.4.5':
|
||||
dependencies:
|
||||
fast-xml-parser: 5.7.0
|
||||
fast-xml-parser: 5.7.2
|
||||
tslib: 2.8.1
|
||||
|
||||
'@azure/identity@4.13.0':
|
||||
|
|
@ -24704,6 +24688,7 @@ snapshots:
|
|||
'@babel/helper-validator-identifier': 7.28.5
|
||||
js-tokens: 4.0.0
|
||||
picocolors: 1.1.1
|
||||
optional: true
|
||||
|
||||
'@babel/code-frame@7.29.0':
|
||||
dependencies:
|
||||
|
|
@ -25881,7 +25866,7 @@ snapshots:
|
|||
|
||||
'@babel/template@7.26.9':
|
||||
dependencies:
|
||||
'@babel/code-frame': 7.27.1
|
||||
'@babel/code-frame': 7.29.0
|
||||
'@babel/parser': 7.29.2
|
||||
'@babel/types': 7.29.0
|
||||
|
||||
|
|
@ -26156,7 +26141,7 @@ snapshots:
|
|||
|
||||
'@codspeed/core@5.2.0':
|
||||
dependencies:
|
||||
axios: 1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7)
|
||||
axios: 1.16.0
|
||||
find-up: 6.3.0
|
||||
form-data: 4.0.4
|
||||
node-gyp-build: 4.8.4
|
||||
|
|
@ -26215,19 +26200,19 @@ snapshots:
|
|||
|
||||
'@currents/playwright@1.15.3(bufferutil@4.0.9)(magicast@0.3.5)(utf-8-validate@5.0.10)':
|
||||
dependencies:
|
||||
'@babel/code-frame': 7.27.1
|
||||
'@babel/code-frame': 7.29.0
|
||||
'@commander-js/extra-typings': 12.1.0(commander@12.1.0)
|
||||
'@currents/commit-info': 1.0.1-beta.0
|
||||
async-retry: 1.3.3
|
||||
axios: 1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7)(debug@4.4.3)
|
||||
axios-retry: 4.5.0(axios@1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7))
|
||||
axios: 1.16.0(debug@4.4.3)
|
||||
axios-retry: 4.5.0(axios@1.16.0(debug@4.4.3))
|
||||
c12: 1.11.2(magicast@0.3.5)
|
||||
chalk: 4.1.2
|
||||
commander: 12.1.0
|
||||
date-fns: 2.30.0
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
dotenv: 16.6.1
|
||||
execa: 9.6.0
|
||||
execa: 9.6.1
|
||||
getos: 3.2.1
|
||||
https-proxy-agent: 7.0.6
|
||||
istanbul-lib-coverage: 3.2.2
|
||||
|
|
@ -26270,13 +26255,13 @@ snapshots:
|
|||
|
||||
'@daytonaio/api-client@0.143.0':
|
||||
dependencies:
|
||||
axios: 1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7)
|
||||
axios: 1.16.0
|
||||
transitivePeerDependencies:
|
||||
- debug
|
||||
|
||||
'@daytonaio/api-client@0.149.0':
|
||||
dependencies:
|
||||
axios: 1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7)
|
||||
axios: 1.16.0
|
||||
transitivePeerDependencies:
|
||||
- debug
|
||||
|
||||
|
|
@ -26295,7 +26280,7 @@ snapshots:
|
|||
'@opentelemetry/sdk-node': 0.207.0(@opentelemetry/api@1.9.0)
|
||||
'@opentelemetry/sdk-trace-base': 2.6.0(@opentelemetry/api@1.9.0)
|
||||
'@opentelemetry/semantic-conventions': 1.40.0
|
||||
axios: 1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7)
|
||||
axios: 1.16.0
|
||||
busboy: 1.6.0
|
||||
dotenv: 17.2.3
|
||||
expand-tilde: 2.0.2
|
||||
|
|
@ -26326,7 +26311,7 @@ snapshots:
|
|||
'@opentelemetry/sdk-node': 0.207.0(@opentelemetry/api@1.9.0)
|
||||
'@opentelemetry/sdk-trace-base': 2.6.0(@opentelemetry/api@1.9.0)
|
||||
'@opentelemetry/semantic-conventions': 1.40.0
|
||||
axios: 1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7)
|
||||
axios: 1.16.0
|
||||
busboy: 1.6.0
|
||||
dotenv: 17.2.3
|
||||
expand-tilde: 2.0.2
|
||||
|
|
@ -26344,13 +26329,13 @@ snapshots:
|
|||
|
||||
'@daytonaio/toolbox-api-client@0.143.0':
|
||||
dependencies:
|
||||
axios: 1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7)
|
||||
axios: 1.16.0
|
||||
transitivePeerDependencies:
|
||||
- debug
|
||||
|
||||
'@daytonaio/toolbox-api-client@0.149.0':
|
||||
dependencies:
|
||||
axios: 1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7)
|
||||
axios: 1.16.0
|
||||
transitivePeerDependencies:
|
||||
- debug
|
||||
|
||||
|
|
@ -26721,7 +26706,7 @@ snapshots:
|
|||
abort-controller: 3.0.0
|
||||
async-retry: 1.3.3
|
||||
duplexify: 4.1.3
|
||||
fast-xml-parser: 5.7.0
|
||||
fast-xml-parser: 5.7.2
|
||||
gaxios: 7.1.3
|
||||
google-auth-library: 9.15.1
|
||||
html-entities: 2.5.2
|
||||
|
|
@ -26775,9 +26760,9 @@ snapshots:
|
|||
protobufjs: 7.5.5
|
||||
yargs: 17.7.2
|
||||
|
||||
'@hono/node-server@1.19.13(hono@4.12.14)':
|
||||
'@hono/node-server@1.19.13(hono@4.12.16)':
|
||||
dependencies:
|
||||
hono: 4.12.14
|
||||
hono: 4.12.16
|
||||
|
||||
'@huggingface/inference@4.0.5':
|
||||
dependencies:
|
||||
|
|
@ -27460,7 +27445,7 @@ snapshots:
|
|||
- aws-crt
|
||||
- encoding
|
||||
|
||||
'@langchain/community@1.1.27(7d9a0518aab37da79d9f494cd5b9494b)':
|
||||
'@langchain/community@1.1.27(f2f54e7010350c3b50a1b81272c39ebc)':
|
||||
dependencies:
|
||||
'@browserbasehq/stagehand': 1.14.0(@playwright/test@1.58.0)(bufferutil@4.0.9)(deepmerge@4.3.1)(dotenv@17.3.1)(encoding@0.1.13)(openai@6.34.0(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(zod@3.25.67))(utf-8-validate@5.0.10)(zod@3.25.67)
|
||||
'@ibm-cloud/watsonx-ai': 1.1.2
|
||||
|
|
@ -27500,7 +27485,7 @@ snapshots:
|
|||
crypto-js: 4.2.0
|
||||
d3-dsv: 2.0.0
|
||||
epub2: 3.0.2(ts-toolbelt@9.6.0)
|
||||
fast-xml-parser: 5.7.0
|
||||
fast-xml-parser: 5.7.2
|
||||
google-auth-library: 10.1.0
|
||||
html-to-text: 9.0.5
|
||||
ignore: 5.2.4
|
||||
|
|
@ -27522,7 +27507,7 @@ snapshots:
|
|||
- '@opentelemetry/sdk-trace-base'
|
||||
- peggy
|
||||
|
||||
'@langchain/community@1.1.27(9d1780938e2a3bdbdbc6aaf41ad92004)':
|
||||
'@langchain/community@1.1.27(fc62cbc93d74cace03ba310d8e53131b)':
|
||||
dependencies:
|
||||
'@browserbasehq/stagehand': 1.14.0(@playwright/test@1.58.0)(bufferutil@4.0.9)(deepmerge@4.3.1)(dotenv@17.3.1)(encoding@0.1.13)(openai@6.34.0(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(zod@3.25.67))(utf-8-validate@5.0.10)(zod@3.25.67)
|
||||
'@ibm-cloud/watsonx-ai': 1.1.2
|
||||
|
|
@ -27553,7 +27538,7 @@ snapshots:
|
|||
chromadb: 3.2.0
|
||||
crypto-js: 4.2.0
|
||||
epub2: 3.0.2(ts-toolbelt@9.6.0)
|
||||
fast-xml-parser: 5.7.0
|
||||
fast-xml-parser: 5.7.2
|
||||
google-auth-library: 10.1.0
|
||||
html-to-text: 9.0.5
|
||||
ignore: 7.0.5
|
||||
|
|
@ -27931,8 +27916,8 @@ snapshots:
|
|||
dotenv: 17.3.1
|
||||
execa: 9.6.1
|
||||
gray-matter: 4.0.3
|
||||
hono: 4.12.14
|
||||
hono-openapi: 1.3.0(@standard-community/standard-json@0.3.5(@standard-schema/spec@1.1.0)(@types/json-schema@7.0.15)(quansync@0.2.11)(zod-to-json-schema@3.25.1(zod@3.25.67))(zod@3.25.67))(@standard-community/standard-openapi@0.2.9(@standard-community/standard-json@0.3.5(@standard-schema/spec@1.1.0)(@types/json-schema@7.0.15)(quansync@0.2.11)(zod-to-json-schema@3.25.1(zod@3.25.67))(zod@3.25.67))(@standard-schema/spec@1.1.0)(openapi-types@12.1.3)(zod@3.25.67))(@types/json-schema@7.0.15)(hono@4.12.14)(openapi-types@12.1.3)
|
||||
hono: 4.12.16
|
||||
hono-openapi: 1.3.0(@standard-community/standard-json@0.3.5(@standard-schema/spec@1.1.0)(@types/json-schema@7.0.15)(quansync@0.2.11)(zod-to-json-schema@3.25.1(zod@3.25.67))(zod@3.25.67))(@standard-community/standard-openapi@0.2.9(@standard-community/standard-json@0.3.5(@standard-schema/spec@1.1.0)(@types/json-schema@7.0.15)(quansync@0.2.11)(zod-to-json-schema@3.25.1(zod@3.25.67))(zod@3.25.67))(@standard-schema/spec@1.1.0)(openapi-types@12.1.3)(zod@3.25.67))(@types/json-schema@7.0.15)(hono@4.12.16)(openapi-types@12.1.3)
|
||||
ignore: 7.0.5
|
||||
js-tiktoken: 1.0.21
|
||||
json-schema: 0.4.0
|
||||
|
|
@ -28133,7 +28118,7 @@ snapshots:
|
|||
'@microsoft/agents-a365-runtime': 0.1.0-preview.113
|
||||
'@microsoft/agents-a365-tooling': 0.1.0-preview.113(zod@3.25.67)
|
||||
'@microsoft/agents-hosting': 1.2.3
|
||||
hono: 4.12.14
|
||||
hono: 4.12.16
|
||||
langchain: 1.2.30(@langchain/core@1.1.41(@opentelemetry/api@1.9.0)(@opentelemetry/exporter-trace-otlp-proto@0.213.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.6.0(@opentelemetry/api@1.9.0))(openai@6.34.0(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(zod@3.25.67))(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)))(@opentelemetry/api@1.9.0)(@opentelemetry/exporter-trace-otlp-proto@0.213.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.6.0(@opentelemetry/api@1.9.0))(openai@6.34.0(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(zod@3.25.67))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue@3.5.26(typescript@6.0.2))(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(zod-to-json-schema@3.23.3(zod@3.25.67))
|
||||
uuid: 9.0.1
|
||||
optionalDependencies:
|
||||
|
|
@ -28161,7 +28146,7 @@ snapshots:
|
|||
'@microsoft/agents-hosting': 1.2.3
|
||||
'@modelcontextprotocol/sdk': 1.26.0(zod@3.25.67)
|
||||
express: 5.2.1
|
||||
hono: 4.12.14
|
||||
hono: 4.12.16
|
||||
transitivePeerDependencies:
|
||||
- '@cfworker/json-schema'
|
||||
- debug
|
||||
|
|
@ -28181,7 +28166,7 @@ snapshots:
|
|||
'@azure/core-auth': 1.10.1
|
||||
'@azure/msal-node': 3.8.4
|
||||
'@microsoft/agents-activity': 1.2.3
|
||||
axios: 1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7)
|
||||
axios: 1.16.0
|
||||
jsonwebtoken: 9.0.3
|
||||
jwks-rsa: 3.2.2
|
||||
object-path: 0.11.8
|
||||
|
|
@ -28240,7 +28225,7 @@ snapshots:
|
|||
|
||||
'@modelcontextprotocol/sdk@1.26.0(zod@3.25.67)':
|
||||
dependencies:
|
||||
'@hono/node-server': 1.19.13(hono@4.12.14)
|
||||
'@hono/node-server': 1.19.13(hono@4.12.16)
|
||||
ajv: 8.18.0
|
||||
ajv-formats: 3.0.1(ajv@8.18.0)
|
||||
content-type: 1.0.5
|
||||
|
|
@ -28250,7 +28235,7 @@ snapshots:
|
|||
eventsource-parser: 3.0.6
|
||||
express: 5.2.1
|
||||
express-rate-limit: 8.2.2(express@5.2.1)
|
||||
hono: 4.12.14
|
||||
hono: 4.12.16
|
||||
jose: 6.1.3
|
||||
json-schema-typed: 8.0.2
|
||||
pkce-challenge: 5.0.0(patch_hash=651e785d0b7bbf5be9210e1e895c39a16dc3ce8a5a3843b4819565fb6e175b90)
|
||||
|
|
@ -28262,7 +28247,7 @@ snapshots:
|
|||
|
||||
'@modelcontextprotocol/sdk@1.28.0(zod@3.25.67)':
|
||||
dependencies:
|
||||
'@hono/node-server': 1.19.13(hono@4.12.14)
|
||||
'@hono/node-server': 1.19.13(hono@4.12.16)
|
||||
ajv: 8.18.0
|
||||
ajv-formats: 3.0.1(ajv@8.18.0)
|
||||
content-type: 1.0.5
|
||||
|
|
@ -28272,7 +28257,7 @@ snapshots:
|
|||
eventsource-parser: 3.0.6
|
||||
express: 5.2.1
|
||||
express-rate-limit: 8.2.2(express@5.2.1)
|
||||
hono: 4.12.14
|
||||
hono: 4.12.16
|
||||
jose: 6.2.2
|
||||
json-schema-typed: 8.0.2
|
||||
pkce-challenge: 5.0.0(patch_hash=651e785d0b7bbf5be9210e1e895c39a16dc3ce8a5a3843b4819565fb6e175b90)
|
||||
|
|
@ -28669,10 +28654,6 @@ snapshots:
|
|||
dependencies:
|
||||
'@opentelemetry/api': 1.9.0
|
||||
|
||||
'@opentelemetry/context-async-hooks@2.5.0(@opentelemetry/api@1.9.0)':
|
||||
dependencies:
|
||||
'@opentelemetry/api': 1.9.0
|
||||
|
||||
'@opentelemetry/context-async-hooks@2.6.0(@opentelemetry/api@1.9.0)':
|
||||
dependencies:
|
||||
'@opentelemetry/api': 1.9.0
|
||||
|
|
@ -30154,8 +30135,8 @@ snapshots:
|
|||
|
||||
'@rudderstack/rudder-sdk-node@3.0.5':
|
||||
dependencies:
|
||||
axios: 1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7)
|
||||
axios-retry: 4.5.0(axios@1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7))
|
||||
axios: 1.16.0
|
||||
axios-retry: 4.5.0(axios@1.16.0)
|
||||
component-type: 2.0.0
|
||||
join-component: 1.1.0
|
||||
lodash.clonedeep: 4.5.0
|
||||
|
|
@ -30310,18 +30291,18 @@ snapshots:
|
|||
|
||||
'@sentry/core@10.36.0': {}
|
||||
|
||||
'@sentry/node-core@10.36.0(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@2.5.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.5.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.210.0(@opentelemetry/api@1.9.0))(@opentelemetry/resources@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.40.0)':
|
||||
'@sentry/node-core@10.36.0(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.210.0(@opentelemetry/api@1.9.0))(@opentelemetry/resources@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.40.0)':
|
||||
dependencies:
|
||||
'@apm-js-collab/tracing-hooks': 0.3.1
|
||||
'@opentelemetry/api': 1.9.0
|
||||
'@opentelemetry/context-async-hooks': 2.5.0(@opentelemetry/api@1.9.0)
|
||||
'@opentelemetry/core': 2.5.0(@opentelemetry/api@1.9.0)
|
||||
'@opentelemetry/context-async-hooks': 2.6.0(@opentelemetry/api@1.9.0)
|
||||
'@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
|
||||
'@opentelemetry/instrumentation': 0.210.0(@opentelemetry/api@1.9.0)
|
||||
'@opentelemetry/resources': 2.6.0(@opentelemetry/api@1.9.0)
|
||||
'@opentelemetry/sdk-trace-base': 2.6.0(@opentelemetry/api@1.9.0)
|
||||
'@opentelemetry/semantic-conventions': 1.40.0
|
||||
'@sentry/core': 10.36.0
|
||||
'@sentry/opentelemetry': 10.36.0(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@2.5.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.5.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.40.0)
|
||||
'@sentry/opentelemetry': 10.36.0(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.40.0)
|
||||
import-in-the-middle: 2.0.5
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
|
@ -30337,8 +30318,8 @@ snapshots:
|
|||
'@sentry/node@10.36.0':
|
||||
dependencies:
|
||||
'@opentelemetry/api': 1.9.0
|
||||
'@opentelemetry/context-async-hooks': 2.5.0(@opentelemetry/api@1.9.0)
|
||||
'@opentelemetry/core': 2.5.0(@opentelemetry/api@1.9.0)
|
||||
'@opentelemetry/context-async-hooks': 2.6.0(@opentelemetry/api@1.9.0)
|
||||
'@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
|
||||
'@opentelemetry/instrumentation': 0.210.0(@opentelemetry/api@1.9.0)
|
||||
'@opentelemetry/instrumentation-amqplib': 0.57.0(@opentelemetry/api@1.9.0)
|
||||
'@opentelemetry/instrumentation-connect': 0.53.0(@opentelemetry/api@1.9.0)
|
||||
|
|
@ -30367,18 +30348,18 @@ snapshots:
|
|||
'@opentelemetry/semantic-conventions': 1.40.0
|
||||
'@prisma/instrumentation': 7.2.0(@opentelemetry/api@1.9.0)
|
||||
'@sentry/core': 10.36.0
|
||||
'@sentry/node-core': 10.36.0(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@2.5.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.5.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.210.0(@opentelemetry/api@1.9.0))(@opentelemetry/resources@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.40.0)
|
||||
'@sentry/opentelemetry': 10.36.0(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@2.5.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.5.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.40.0)
|
||||
'@sentry/node-core': 10.36.0(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.210.0(@opentelemetry/api@1.9.0))(@opentelemetry/resources@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.40.0)
|
||||
'@sentry/opentelemetry': 10.36.0(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.40.0)
|
||||
import-in-the-middle: 2.0.5
|
||||
minimatch: 9.0.9
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
'@sentry/opentelemetry@10.36.0(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@2.5.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.5.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.40.0)':
|
||||
'@sentry/opentelemetry@10.36.0(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.40.0)':
|
||||
dependencies:
|
||||
'@opentelemetry/api': 1.9.0
|
||||
'@opentelemetry/context-async-hooks': 2.5.0(@opentelemetry/api@1.9.0)
|
||||
'@opentelemetry/core': 2.5.0(@opentelemetry/api@1.9.0)
|
||||
'@opentelemetry/context-async-hooks': 2.6.0(@opentelemetry/api@1.9.0)
|
||||
'@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
|
||||
'@opentelemetry/sdk-trace-base': 2.6.0(@opentelemetry/api@1.9.0)
|
||||
'@opentelemetry/semantic-conventions': 1.40.0
|
||||
'@sentry/core': 10.36.0
|
||||
|
|
@ -30458,7 +30439,7 @@ snapshots:
|
|||
'@slack/types': 2.20.1
|
||||
'@types/node': 20.19.21
|
||||
'@types/retry': 0.12.0
|
||||
axios: 1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7)
|
||||
axios: 1.16.0
|
||||
eventemitter3: 5.0.1
|
||||
form-data: 4.0.4
|
||||
is-electron: 2.2.2
|
||||
|
|
@ -31444,7 +31425,7 @@ snapshots:
|
|||
storybook: 10.1.11(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(prettier@3.6.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10)
|
||||
type-fest: 2.19.0
|
||||
vue: 3.5.26(typescript@6.0.2)
|
||||
vue-component-type-helpers: 3.2.7
|
||||
vue-component-type-helpers: 3.2.8
|
||||
|
||||
'@stylistic/eslint-plugin@5.0.0(eslint@9.29.0(jiti@2.6.1))':
|
||||
dependencies:
|
||||
|
|
@ -32868,7 +32849,7 @@ snapshots:
|
|||
'@vue/shared': 3.5.26
|
||||
estree-walker: 2.0.2
|
||||
magic-string: 0.30.21
|
||||
postcss: 8.5.6
|
||||
postcss: 8.5.8
|
||||
source-map-js: 1.2.1
|
||||
|
||||
'@vue/compiler-ssr@3.5.26':
|
||||
|
|
@ -33566,12 +33547,17 @@ snapshots:
|
|||
|
||||
axe-core@4.7.2: {}
|
||||
|
||||
axios-retry@4.5.0(axios@1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7)):
|
||||
axios-retry@4.5.0(axios@1.16.0(debug@4.4.3)):
|
||||
dependencies:
|
||||
axios: 1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7)
|
||||
axios: 1.16.0(debug@4.4.3)
|
||||
is-retry-allowed: 2.2.0
|
||||
|
||||
axios@1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7):
|
||||
axios-retry@4.5.0(axios@1.16.0):
|
||||
dependencies:
|
||||
axios: 1.16.0
|
||||
is-retry-allowed: 2.2.0
|
||||
|
||||
axios@1.16.0:
|
||||
dependencies:
|
||||
follow-redirects: 1.16.0(debug@4.4.1)
|
||||
form-data: 4.0.4
|
||||
|
|
@ -33579,7 +33565,7 @@ snapshots:
|
|||
transitivePeerDependencies:
|
||||
- debug
|
||||
|
||||
axios@1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7)(debug@4.4.3):
|
||||
axios@1.16.0(debug@4.4.3):
|
||||
dependencies:
|
||||
follow-redirects: 1.16.0(debug@4.4.3)
|
||||
form-data: 4.0.4
|
||||
|
|
@ -35236,11 +35222,11 @@ snapshots:
|
|||
dependencies:
|
||||
node-source-walk: 7.0.1
|
||||
|
||||
detective-postcss@7.0.1(postcss@8.5.6):
|
||||
detective-postcss@7.0.1(postcss@8.5.8):
|
||||
dependencies:
|
||||
is-url: 1.2.4
|
||||
postcss: 8.5.6
|
||||
postcss-values-parser: 6.0.2(postcss@8.5.6)
|
||||
postcss: 8.5.8
|
||||
postcss-values-parser: 6.0.2(postcss@8.5.8)
|
||||
|
||||
detective-sass@6.0.1:
|
||||
dependencies:
|
||||
|
|
@ -35941,7 +35927,7 @@ snapshots:
|
|||
|
||||
eslint-import-context@0.1.8(unrs-resolver@1.9.2):
|
||||
dependencies:
|
||||
get-tsconfig: 4.10.1
|
||||
get-tsconfig: 4.13.0
|
||||
stable-hash-x: 0.1.1
|
||||
optionalDependencies:
|
||||
unrs-resolver: 1.9.2
|
||||
|
|
@ -36277,21 +36263,6 @@ snapshots:
|
|||
signal-exit: 3.0.7
|
||||
strip-final-newline: 2.0.0
|
||||
|
||||
execa@9.6.0:
|
||||
dependencies:
|
||||
'@sindresorhus/merge-streams': 4.0.0
|
||||
cross-spawn: 7.0.6
|
||||
figures: 6.1.0
|
||||
get-stream: 9.0.1
|
||||
human-signals: 8.0.1
|
||||
is-plain-obj: 4.1.0
|
||||
is-stream: 4.0.1
|
||||
npm-run-path: 6.0.0
|
||||
pretty-ms: 9.2.0
|
||||
signal-exit: 4.1.0
|
||||
strip-final-newline: 4.0.0
|
||||
yoctocolors: 2.1.1
|
||||
|
||||
execa@9.6.1:
|
||||
dependencies:
|
||||
'@sindresorhus/merge-streams': 4.0.0
|
||||
|
|
@ -36577,7 +36548,7 @@ snapshots:
|
|||
dependencies:
|
||||
path-expression-matcher: 1.5.0
|
||||
|
||||
fast-xml-parser@5.7.0:
|
||||
fast-xml-parser@5.7.2:
|
||||
dependencies:
|
||||
'@nodable/entities': 2.1.0
|
||||
fast-xml-builder: 1.1.5
|
||||
|
|
@ -37047,9 +37018,9 @@ snapshots:
|
|||
foreground-child: 3.3.1
|
||||
jackspeak: 4.1.1
|
||||
minimatch: 10.2.3
|
||||
minipass: 7.1.2
|
||||
minipass: 7.1.3
|
||||
package-json-from-dist: 1.0.0
|
||||
path-scurry: 2.0.1
|
||||
path-scurry: 2.0.2
|
||||
|
||||
glob@13.0.6:
|
||||
dependencies:
|
||||
|
|
@ -37338,16 +37309,16 @@ snapshots:
|
|||
dependencies:
|
||||
parse-passwd: 1.0.0
|
||||
|
||||
hono-openapi@1.3.0(@standard-community/standard-json@0.3.5(@standard-schema/spec@1.1.0)(@types/json-schema@7.0.15)(quansync@0.2.11)(zod-to-json-schema@3.25.1(zod@3.25.67))(zod@3.25.67))(@standard-community/standard-openapi@0.2.9(@standard-community/standard-json@0.3.5(@standard-schema/spec@1.1.0)(@types/json-schema@7.0.15)(quansync@0.2.11)(zod-to-json-schema@3.25.1(zod@3.25.67))(zod@3.25.67))(@standard-schema/spec@1.1.0)(openapi-types@12.1.3)(zod@3.25.67))(@types/json-schema@7.0.15)(hono@4.12.14)(openapi-types@12.1.3):
|
||||
hono-openapi@1.3.0(@standard-community/standard-json@0.3.5(@standard-schema/spec@1.1.0)(@types/json-schema@7.0.15)(quansync@0.2.11)(zod-to-json-schema@3.25.1(zod@3.25.67))(zod@3.25.67))(@standard-community/standard-openapi@0.2.9(@standard-community/standard-json@0.3.5(@standard-schema/spec@1.1.0)(@types/json-schema@7.0.15)(quansync@0.2.11)(zod-to-json-schema@3.25.1(zod@3.25.67))(zod@3.25.67))(@standard-schema/spec@1.1.0)(openapi-types@12.1.3)(zod@3.25.67))(@types/json-schema@7.0.15)(hono@4.12.16)(openapi-types@12.1.3):
|
||||
dependencies:
|
||||
'@standard-community/standard-json': 0.3.5(@standard-schema/spec@1.1.0)(@types/json-schema@7.0.15)(quansync@0.2.11)(zod-to-json-schema@3.25.1(zod@3.25.67))(zod@3.25.67)
|
||||
'@standard-community/standard-openapi': 0.2.9(@standard-community/standard-json@0.3.5(@standard-schema/spec@1.1.0)(@types/json-schema@7.0.15)(quansync@0.2.11)(zod-to-json-schema@3.25.1(zod@3.25.67))(zod@3.25.67))(@standard-schema/spec@1.1.0)(openapi-types@12.1.3)(zod@3.25.67)
|
||||
'@types/json-schema': 7.0.15
|
||||
openapi-types: 12.1.3
|
||||
optionalDependencies:
|
||||
hono: 4.12.14
|
||||
hono: 4.12.16
|
||||
|
||||
hono@4.12.14: {}
|
||||
hono@4.12.16: {}
|
||||
|
||||
hookable@5.5.3: {}
|
||||
|
||||
|
|
@ -37542,7 +37513,7 @@ snapshots:
|
|||
'@types/debug': 4.1.12
|
||||
'@types/node': 20.19.21
|
||||
'@types/tough-cookie': 4.0.5
|
||||
axios: 1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7)(debug@4.4.3)
|
||||
axios: 1.16.0(debug@4.4.3)
|
||||
camelcase: 6.3.0
|
||||
debug: 4.4.3(supports-color@8.1.1)
|
||||
dotenv: 16.6.1
|
||||
|
|
@ -37552,7 +37523,7 @@ snapshots:
|
|||
isstream: 0.1.2
|
||||
jsonwebtoken: 9.0.3
|
||||
mime-types: 2.1.35
|
||||
retry-axios: 2.6.0(axios@1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7))
|
||||
retry-axios: 2.6.0(axios@1.16.0)
|
||||
tough-cookie: 4.1.4
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
|
@ -37656,7 +37627,7 @@ snapshots:
|
|||
|
||||
infisical-node@1.3.0:
|
||||
dependencies:
|
||||
axios: 1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7)
|
||||
axios: 1.16.0
|
||||
dotenv: 16.6.1
|
||||
tweetnacl: 1.0.3
|
||||
tweetnacl-util: 0.15.1
|
||||
|
|
@ -40671,7 +40642,7 @@ snapshots:
|
|||
lower-case: 2.0.2
|
||||
tslib: 2.8.1
|
||||
|
||||
nock@14.0.13:
|
||||
nock@14.0.14:
|
||||
dependencies:
|
||||
'@mswjs/interceptors': 0.41.6
|
||||
json-stringify-safe: 5.0.1
|
||||
|
|
@ -41477,11 +41448,6 @@ snapshots:
|
|||
lru-cache: 10.2.2
|
||||
minipass: 7.1.3
|
||||
|
||||
path-scurry@2.0.1:
|
||||
dependencies:
|
||||
lru-cache: 11.2.7
|
||||
minipass: 7.1.3
|
||||
|
||||
path-scurry@2.0.2:
|
||||
dependencies:
|
||||
lru-cache: 11.2.7
|
||||
|
|
@ -41771,11 +41737,11 @@ snapshots:
|
|||
|
||||
postcss-value-parser@4.2.0: {}
|
||||
|
||||
postcss-values-parser@6.0.2(postcss@8.5.6):
|
||||
postcss-values-parser@6.0.2(postcss@8.5.8):
|
||||
dependencies:
|
||||
color-name: 1.1.4
|
||||
is-url-superb: 4.0.0
|
||||
postcss: 8.5.6
|
||||
postcss: 8.5.8
|
||||
quote-unquote: 1.0.0
|
||||
|
||||
postcss@8.4.31:
|
||||
|
|
@ -41814,7 +41780,7 @@ snapshots:
|
|||
|
||||
posthog-node@3.2.1:
|
||||
dependencies:
|
||||
axios: 1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7)
|
||||
axios: 1.16.0
|
||||
rusha: 0.8.14
|
||||
transitivePeerDependencies:
|
||||
- debug
|
||||
|
|
@ -41846,7 +41812,7 @@ snapshots:
|
|||
detective-amd: 6.0.1
|
||||
detective-cjs: 6.0.1
|
||||
detective-es6: 5.0.1
|
||||
detective-postcss: 7.0.1(postcss@8.5.6)
|
||||
detective-postcss: 7.0.1(postcss@8.5.8)
|
||||
detective-sass: 6.0.1
|
||||
detective-scss: 5.0.1
|
||||
detective-stylus: 5.0.1
|
||||
|
|
@ -41854,7 +41820,7 @@ snapshots:
|
|||
detective-vue2: 2.2.0(typescript@6.0.2)
|
||||
module-definition: 6.0.1
|
||||
node-source-walk: 7.0.1
|
||||
postcss: 8.5.6
|
||||
postcss: 8.5.8
|
||||
typescript: 6.0.2
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
|
@ -42062,7 +42028,7 @@ snapshots:
|
|||
jstransformer: 1.0.0
|
||||
pug-error: 2.1.0
|
||||
pug-walk: 2.0.0
|
||||
resolve: 1.22.10
|
||||
resolve: 1.22.11
|
||||
|
||||
pug-lexer@5.0.1:
|
||||
dependencies:
|
||||
|
|
@ -42622,9 +42588,9 @@ snapshots:
|
|||
|
||||
retimer@3.0.0: {}
|
||||
|
||||
retry-axios@2.6.0(axios@1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7)):
|
||||
retry-axios@2.6.0(axios@1.16.0):
|
||||
dependencies:
|
||||
axios: 1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7)
|
||||
axios: 1.16.0
|
||||
|
||||
retry-request@7.0.2(encoding@0.1.13):
|
||||
dependencies:
|
||||
|
|
@ -43336,14 +43302,14 @@ snapshots:
|
|||
asn1.js: 5.4.1
|
||||
asn1.js-rfc2560: 5.0.1(asn1.js@5.4.1)
|
||||
asn1.js-rfc5280: 3.0.0
|
||||
axios: 1.15.0(patch_hash=d862e214ea9e6eb9abaef9414a626ca7ad9fc23d23e36b950f1eb14b6fdbded7)
|
||||
axios: 1.16.0
|
||||
big-integer: 1.6.52
|
||||
bignumber.js: 9.1.2
|
||||
binascii: 0.0.2
|
||||
bn.js: 5.2.3
|
||||
browser-request: 0.3.3
|
||||
expand-tilde: 2.0.2
|
||||
fast-xml-parser: 5.7.0
|
||||
fast-xml-parser: 5.7.2
|
||||
fastest-levenshtein: 1.0.16
|
||||
generic-pool: 3.9.0
|
||||
glob: 10.5.0
|
||||
|
|
@ -45089,9 +45055,9 @@ snapshots:
|
|||
|
||||
vm-browserify@1.1.2: {}
|
||||
|
||||
vm2@3.10.5:
|
||||
vm2@3.11.2:
|
||||
dependencies:
|
||||
acorn: 8.15.0
|
||||
acorn: 8.16.0
|
||||
acorn-walk: 8.3.4
|
||||
|
||||
void-elements@3.1.0: {}
|
||||
|
|
@ -45127,7 +45093,7 @@ snapshots:
|
|||
|
||||
vue-component-type-helpers@2.2.12: {}
|
||||
|
||||
vue-component-type-helpers@3.2.7: {}
|
||||
vue-component-type-helpers@3.2.8: {}
|
||||
|
||||
vue-demi@0.14.10(vue@3.5.26(typescript@6.0.2)):
|
||||
dependencies:
|
||||
|
|
|
|||
|
|
@ -62,8 +62,8 @@ catalog:
|
|||
'@types/uuid': ^10.0.0
|
||||
'@types/xml2js': ^0.4.14
|
||||
'@vitest/coverage-v8': 4.1.1
|
||||
axios: 1.16.0
|
||||
agent-browser: 0.26.0
|
||||
axios: 1.15.1
|
||||
basic-auth: 2.0.1
|
||||
callsites: 3.1.0
|
||||
chokidar: 4.0.3
|
||||
|
|
@ -112,7 +112,7 @@ catalog:
|
|||
vite-plugin-dts: ^4.5.4
|
||||
vitest: ^4.1.1
|
||||
vitest-mock-extended: ^3.1.0
|
||||
vm2: ^3.10.5
|
||||
vm2: 3.11.2
|
||||
xml2js: 0.6.2
|
||||
xss: 1.0.15
|
||||
yaml: 2.8.3
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user