From 3f00fcbaac242b0808b61421243b71e5c1e85a79 Mon Sep 17 00:00:00 2001 From: angrykoala Date: Thu, 21 Aug 2025 10:19:21 +0100 Subject: [PATCH 01/30] Remove experimental decorators --- tsconfig.json | 1 - 1 file changed, 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 76c5874e..5bbc0ad7 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,7 +5,6 @@ "declarationMap": true, "sourceMap": true, "resolveJsonModule": true, - "experimentalDecorators": true, "noImplicitAny": true, "rootDir": ".", "baseUrl": ".", From 480fc96376411d5bb350a314c47759e8ae50cf74 Mon Sep 17 00:00:00 2001 From: angrykoala Date: Thu, 21 Aug 2025 10:22:15 +0100 Subject: [PATCH 02/30] Increase node version to 20 --- .changeset/cool-signs-start.md | 5 +++++ package.json | 30 +++++++++++++++--------------- tsconfig.json | 2 +- 3 files changed, 21 insertions(+), 16 deletions(-) create mode 100644 .changeset/cool-signs-start.md diff --git a/.changeset/cool-signs-start.md b/.changeset/cool-signs-start.md new file mode 100644 index 00000000..9e6f18f6 --- /dev/null +++ b/.changeset/cool-signs-start.md @@ -0,0 +1,5 @@ +--- +"@neo4j/cypher-builder": major +--- + +Updates minimum node engine to 20.0.0 diff --git a/package.json b/package.json index 1a84c447..e240b3ce 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "dist/**/*.js.map" ], "engines": { - "node": ">=16.0.0" + "node": ">=20.0.0" }, "scripts": { "test": "jest", @@ -43,22 +43,22 @@ "homepage": "https://neo4j.github.io/cypher-builder/", "devDependencies": { "@changesets/changelog-github": "^0.5.1", - "@changesets/cli": "^2.27.10", - "@eslint/js": "^9.15.0", - "@tsconfig/node16": "^16.1.3", - "@types/jest": "^29.5.14", - "@types/node": "^22.10.0", - "@typescript-eslint/eslint-plugin": "^8.16.0", - "@typescript-eslint/parser": "^8.16.0", - "eslint": "^9.15.0", - "eslint-config-prettier": "^10.0.0", + "@changesets/cli": "^2.29.6", + "@eslint/js": "^9.33.0", + "@tsconfig/node20": "^20.1.6", + "@types/jest": "^30.0.0", + "@types/node": "^24.3.0", + "@typescript-eslint/eslint-plugin": "^8.40.0", + "@typescript-eslint/parser": "^8.40.0", + "eslint": "^9.33.0", + "eslint-config-prettier": "^10.1.8", "eslint-plugin-tsdoc": "^0.4.0", - "globals": "^16.0.0", - "jest": "^29.7.0", + "globals": "^16.3.0", + "jest": "^30.0.5", "jest-extended": "^6.0.0", - "prettier": "^3.4.1", - "ts-jest": "^29.2.5", + "prettier": "^3.6.2", + "ts-jest": "^29.4.1", "typedoc": "^0.28.10", - "typescript": "^5.6.3" + "typescript": "^5.9.2" } } diff --git a/tsconfig.json b/tsconfig.json index 5bbc0ad7..6e6e4f6f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "@tsconfig/node16/tsconfig.json", + "extends": "@tsconfig/node20/tsconfig.json", "compilerOptions": { "declaration": true, "declarationMap": true, From 98a4e91e3d99858ff713d5f76e07117b0b06ca1e Mon Sep 17 00:00:00 2001 From: angrykoala Date: Thu, 21 Aug 2025 10:28:12 +0100 Subject: [PATCH 03/30] Update GH workflows --- .github/workflows/cla-assistant.yml | 38 ----------------------------- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 2 +- 3 files changed, 2 insertions(+), 40 deletions(-) delete mode 100644 .github/workflows/cla-assistant.yml diff --git a/.github/workflows/cla-assistant.yml b/.github/workflows/cla-assistant.yml deleted file mode 100644 index f04bf6a4..00000000 --- a/.github/workflows/cla-assistant.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: "CLA Assistant" -on: - # Using workflow call so it is disabled - workflow_call: -# issue_comment: -# types: [created] -# pull_request_target: -# types: [opened,closed,synchronize] - -jobs: - CLAAssistant: - runs-on: ubuntu-latest - steps: - - name: "CLA Assistant" - if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target' - # Beta Release - uses: contributor-assistant/github-action@ca4a40a7d1004f18d9960b404b97e5f30a505a08 # v2.6.1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - # the below token should have repo scope and must be manually added by you in the repository's secret - PERSONAL_ACCESS_TOKEN: ${{ secrets.CLA_ASSISTANT_PERSONAL_ACCESS_TOKEN }} - with: - path-to-signatures: "signatures.json" - path-to-document: "https://gist.githubusercontent.com/neo4j-cla-assistant/29060d034c080197be7bfdc9231b234d/raw/763bf48d3c709a7521ff66bb8b240d42a396ebd0/cla.md" # e.g. a CLA or a DCO document - # branch should not be protected - branch: "main" - #allowlist: user1,bot* - - # the followings are the optional inputs - If the optional inputs are not given, then default values will be taken - remote-organization-name: neo4j - remote-repository-name: cla-assistant - #create-file-commit-message: 'For example: Creating file for storing CLA Signatures' - #signed-commit-message: 'For example: $contributorName has signed the CLA in #$pullRequestNo' - #custom-notsigned-prcomment: 'pull request comment with Introductory message to ask new contributors to sign' - #custom-pr-sign-comment: 'The signature to be committed in order to sign the CLA' - #custom-allsigned-prcomment: 'pull request comment when all contributors has signed, defaults to **CLA Assistant Lite bot** All Contributors have signed the CLA.' - #lock-pullrequest-aftermerge: false - if you don't want this bot to automatically lock the pull request after merging (default - true) - #use-dco-flag: true - If you are using DCO instead of CLA diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 42c656b3..06b31777 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,7 +25,7 @@ jobs: fetch-depth: 0 persist-credentials: false - - name: Setup Node.js 16.x + - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: lts/* diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a9a84c0c..0dbdd745 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - node-version: [16.x, latest] + node-version: [20.x, latest] steps: - uses: actions/checkout@v5 From 9f5621350eddc92adfdd2513a13d2eb088c570ad Mon Sep 17 00:00:00 2001 From: angrykoala Date: Thu, 17 Jul 2025 17:12:23 +0100 Subject: [PATCH 04/30] Remove type Cypher.Operation --- .changeset/all-signs-live.md | 5 +++++ src/Cypher.ts | 2 +- src/types.ts | 6 ------ 3 files changed, 6 insertions(+), 7 deletions(-) create mode 100644 .changeset/all-signs-live.md diff --git a/.changeset/all-signs-live.md b/.changeset/all-signs-live.md new file mode 100644 index 00000000..a16fa26e --- /dev/null +++ b/.changeset/all-signs-live.md @@ -0,0 +1,5 @@ +--- +"@neo4j/cypher-builder": major +--- + +Remove type `Cypher.Operation` in favor of `Cypher.Expr` diff --git a/src/Cypher.ts b/src/Cypher.ts index 618e55d0..53fa6919 100644 --- a/src/Cypher.ts +++ b/src/Cypher.ts @@ -190,7 +190,7 @@ export type { PathAssign } from "./pattern/PathAssign"; export type { InputArgument } from "./procedures/CypherProcedure"; export type { Yield, YieldProjectionColumn } from "./procedures/Yield"; export type { Label } from "./references/Label"; -export type { CypherResult, Expr, NormalizationType, Operation, Predicate } from "./types"; +export type { CypherResult, Expr, NormalizationType, Predicate } from "./types"; /** * Utility functions diff --git a/src/types.ts b/src/types.ts index 4519ceec..e3fe8902 100644 --- a/src/types.ts +++ b/src/types.ts @@ -41,12 +41,6 @@ import type { Literal } from "./references/Literal"; import type { PropertyRef } from "./references/PropertyRef"; import type { Variable } from "./references/Variable"; -/** - * @group Expressions - * @deprecated This type will no longer be exported, use {@link Expr} instead - */ -export type Operation = BooleanOp | ComparisonOp | MathOp | ConcatOp; - /** Represents a Cypher Expression * @group Expressions * @see {@link https://neo4j.com/docs/cypher-manual/current/syntax/expressions/ | Cypher Documentation} From b399bb09be3734129d05166b0df159ef03ba5ff4 Mon Sep 17 00:00:00 2001 From: angrykoala Date: Thu, 17 Jul 2025 17:19:07 +0100 Subject: [PATCH 05/30] Remove method children from concat --- .changeset/floppy-llamas-teach.md | 10 +++ src/clauses/utils/concat.ts | 5 -- tests/deprecated/concat.test.ts | 127 ------------------------------ 3 files changed, 10 insertions(+), 132 deletions(-) create mode 100644 .changeset/floppy-llamas-teach.md delete mode 100644 tests/deprecated/concat.test.ts diff --git a/.changeset/floppy-llamas-teach.md b/.changeset/floppy-llamas-teach.md new file mode 100644 index 00000000..6c8b0d05 --- /dev/null +++ b/.changeset/floppy-llamas-teach.md @@ -0,0 +1,10 @@ +--- +"@neo4j/cypher-builder": major +--- + +Remove method `.children` from concat clauses: + +```js +const query = Cypher.utils.concat(clause1, clause2); +query.children; // No longer supported +``` diff --git a/src/clauses/utils/concat.ts b/src/clauses/utils/concat.ts index fe2b471e..9a553491 100644 --- a/src/clauses/utils/concat.ts +++ b/src/clauses/utils/concat.ts @@ -52,11 +52,6 @@ export class CompositeClause extends Clause { return this._children.length === 0; } - /** @deprecated Children from a composite clause should not be accessed as this will lead to unexpected behaviour */ - public get children(): Array { - return this._children; - } - /** @internal */ public getCypher(env: CypherEnvironment, importWithCypher?: string): string { // NOTE: importWithCypher used to pass down import WITH to UNION clauses diff --git a/tests/deprecated/concat.test.ts b/tests/deprecated/concat.test.ts deleted file mode 100644 index ce35cdfe..00000000 --- a/tests/deprecated/concat.test.ts +++ /dev/null @@ -1,127 +0,0 @@ -/* - * Copyright (c) "Neo4j" - * Neo4j Sweden AB [http://neo4j.com] - * - * This file is part of Neo4j. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import Cypher from "../../src"; - -describe("CypherBuilder utils.concat", () => { - test("concatenates Match and Return", () => { - const node = new Cypher.Node(); - - const clause = new Cypher.Match(new Cypher.Pattern(node, { labels: ["Movie"] })).where( - Cypher.eq(new Cypher.Param("aa"), new Cypher.Param("bb")) - ); - const returnClause = new Cypher.Return([node.property("title"), "movie"]); - - const query = Cypher.utils.concat(clause, returnClause); - - const queryResult = query.build(); - expect(queryResult.cypher).toMatchInlineSnapshot(` - "MATCH (this0:Movie) - WHERE $param0 = $param1 - RETURN this0.title AS movie" - `); - - expect(queryResult.params).toMatchInlineSnapshot(` - { - "param0": "aa", - "param1": "bb", - } - `); - expect(query.children).toHaveLength(2); - }); - - test("Empty composite clause", () => { - const compositeClause = Cypher.utils.concat(undefined); - expect(compositeClause.empty).toBeTrue(); - expect(compositeClause.children).toHaveLength(0); - - const queryResult = compositeClause.build(); - - expect(queryResult.cypher).toMatchInlineSnapshot(`""`); - }); - - test("Empty nested composite clause", () => { - const compositeClause = Cypher.utils.concat(Cypher.utils.concat()); - expect(compositeClause.empty).toBeTrue(); - expect(compositeClause.children).toHaveLength(0); - - const queryResult = compositeClause.build(); - - expect(queryResult.cypher).toMatchInlineSnapshot(`""`); - }); - - test("Nested composite clause with multiple elements", () => { - const compositeClause = Cypher.utils.concat( - Cypher.utils.concat( - new Cypher.Match(new Cypher.Pattern(new Cypher.Node())), - new Cypher.Match(new Cypher.Pattern(new Cypher.Node())) - ) - ); - expect(compositeClause.empty).toBeFalse(); - expect(compositeClause.children).toHaveLength(1); - - const queryResult = compositeClause.build(); - - expect(queryResult.cypher).toMatchInlineSnapshot(` - "MATCH (this0) - MATCH (this1)" - `); - }); - - test("Non-Empty composite clause", () => { - const node = new Cypher.Node(); - - const clause = new Cypher.Match(new Cypher.Pattern(node, { labels: ["Movie"] })).where( - Cypher.eq(new Cypher.Param("aa"), new Cypher.Param("bb")) - ); - const compositeClause = Cypher.utils.concat(clause); - expect(compositeClause.empty).toBeFalse(); - expect(compositeClause.children).toHaveLength(1); - }); - - test("Nested concatenation flattens the tree if composite clause has 1 element", () => { - const node = new Cypher.Node(); - - const clause = new Cypher.Match(new Cypher.Pattern(node, { labels: ["Movie"] })).where( - Cypher.eq(new Cypher.Param("aa"), new Cypher.Param("bb")) - ); - const returnClause = new Cypher.Return([node.property("title"), "movie"]); - - const nestedConcat = Cypher.utils.concat(clause); - - const topLevelConcat = Cypher.utils.concat(nestedConcat, returnClause); - - const queryResult = topLevelConcat.build(); - expect(queryResult.cypher).toMatchInlineSnapshot(` - "MATCH (this0:Movie) - WHERE $param0 = $param1 - RETURN this0.title AS movie" - `); - - expect(queryResult.params).toMatchInlineSnapshot(` - { - "param0": "aa", - "param1": "bb", - } - `); - - // Three children as nested concat was flattened - expect(topLevelConcat.children).toHaveLength(2); - }); -}); From 9153289e733d35944971309fe8e5c98c8a76d58d Mon Sep 17 00:00:00 2001 From: angrykoala Date: Thu, 17 Jul 2025 17:23:14 +0100 Subject: [PATCH 06/30] Remove functions deprecated in Cypher 5 --- .changeset/thin-radios-poke.md | 8 ++++++++ src/expressions/functions/scalar.test.ts | 1 - src/expressions/functions/scalar.ts | 10 ---------- src/expressions/functions/spatial.test.ts | 15 +-------------- src/expressions/functions/spatial.ts | 10 ---------- 5 files changed, 9 insertions(+), 35 deletions(-) create mode 100644 .changeset/thin-radios-poke.md diff --git a/.changeset/thin-radios-poke.md b/.changeset/thin-radios-poke.md new file mode 100644 index 00000000..bcbc0013 --- /dev/null +++ b/.changeset/thin-radios-poke.md @@ -0,0 +1,8 @@ +--- +"@neo4j/cypher-builder": major +--- + +Remove functions deprecated in Cypher 5: + +- `distance` in favor of `point.distance` +- `id` in favor of `elementId` diff --git a/src/expressions/functions/scalar.test.ts b/src/expressions/functions/scalar.test.ts index 29c83de6..01c2a6a6 100644 --- a/src/expressions/functions/scalar.test.ts +++ b/src/expressions/functions/scalar.test.ts @@ -31,7 +31,6 @@ describe("Scalar Functions", () => { // 1 parameter functions test.each([ - "id", "elementId", "endNode", "size", diff --git a/src/expressions/functions/scalar.ts b/src/expressions/functions/scalar.ts index d5aa2331..71e122e1 100644 --- a/src/expressions/functions/scalar.ts +++ b/src/expressions/functions/scalar.ts @@ -58,16 +58,6 @@ export function head(expr: Expr): CypherFunction { return new CypherFunction("head", [expr]); } -/** - * @see {@link https://neo4j.com/docs/cypher-manual/current/functions/scalar/#functions-id | Cypher Documentation} - * @group Functions - * @category Scalar - * @deprecated Use {@link elementId} instead - */ -export function id(variable: Expr): CypherFunction { - return new CypherFunction("id", [variable]); -} - /** * @see {@link https://neo4j.com/docs/cypher-manual/current/functions/scalar/#functions-last | Cypher Documentation} * @group Functions diff --git a/src/expressions/functions/spatial.test.ts b/src/expressions/functions/spatial.test.ts index 51415b6a..b53cf4c3 100644 --- a/src/expressions/functions/spatial.test.ts +++ b/src/expressions/functions/spatial.test.ts @@ -17,23 +17,10 @@ * limitations under the License. */ -import { TestClause } from "../../utils/TestClause"; import Cypher from "../.."; +import { TestClause } from "../../utils/TestClause"; describe("Spatial Functions", () => { - describe("4.x deprecated functions", () => { - test.each(["distance"] as const)("%s", (value) => { - const leftExpr = new Cypher.Variable(); - const rightExpr = new Cypher.Variable(); - const spatialFn = Cypher[value](leftExpr, rightExpr); - - const queryResult = new TestClause(spatialFn).build(); - - expect(queryResult.cypher).toBe(`${value}(var0, var1)`); - expect(queryResult.params).toEqual({}); - }); - }); - test("point function", () => { const pointFn = Cypher.point(new Cypher.Variable()); diff --git a/src/expressions/functions/spatial.ts b/src/expressions/functions/spatial.ts index b6d2e9f5..382220b5 100644 --- a/src/expressions/functions/spatial.ts +++ b/src/expressions/functions/spatial.ts @@ -29,16 +29,6 @@ export function point(variable: Expr): CypherFunction { return new CypherFunction("point", [variable]); } -/** - * @see {@link https://neo4j.com/docs/cypher-manual/4.3/functions/spatial/#functions-distance | Cypher Documentation} - * @group Functions - * @category Spatial - * @deprecated No longer supported in Neo4j 5. Use {@link point.distance} instead. - */ -export function distance(lexpr: Expr, rexpr: Expr): CypherFunction { - return new CypherFunction("distance", [lexpr, rexpr]); -} - /** * @see {@link https://neo4j.com/docs/cypher-manual/current/functions/spatial/#functions-distance | Cypher Documentation} * @group Functions From c3fc3f4e01fc4afdc0df267c3cf0b978759f00b9 Mon Sep 17 00:00:00 2001 From: angrykoala Date: Thu, 21 Aug 2025 16:50:45 +0100 Subject: [PATCH 07/30] Remove importWith --- .changeset/sharp-women-kick.md | 30 +++++++ src/clauses/Call.test.ts | 145 --------------------------------- src/clauses/Call.ts | 37 +-------- src/clauses/Union.test.ts | 89 -------------------- src/clauses/Union.ts | 4 +- src/clauses/utils/concat.ts | 6 +- 6 files changed, 35 insertions(+), 276 deletions(-) create mode 100644 .changeset/sharp-women-kick.md diff --git a/.changeset/sharp-women-kick.md b/.changeset/sharp-women-kick.md new file mode 100644 index 00000000..dba542d5 --- /dev/null +++ b/.changeset/sharp-women-kick.md @@ -0,0 +1,30 @@ +--- +"@neo4j/cypher-builder": major +--- + +Remove `.importWith` from `Call` clauses in favor of constructor options + +_Before_ + +```js +const clause = new Cypher.Call(nestedClause).importWith(movieNode, actorNode); +``` + +```cypher +CALL { + WITH var0, var1 + // Nested clause +} +``` + +_After_ + +```js +const clause = new Cypher.Call(nestedClause, [movieNode, actorNode]); +``` + +```cypher +CALL (var0, var1){ + // Nested clause +} +``` diff --git a/src/clauses/Call.test.ts b/src/clauses/Call.test.ts index c92c9772..c935f4f9 100644 --- a/src/clauses/Call.test.ts +++ b/src/clauses/Call.test.ts @@ -71,138 +71,6 @@ describe("CypherBuilder Call", () => { `); }); - test("CALL with import with", () => { - const node = new Cypher.Node(); - - const matchClause = new Cypher.Match(new Cypher.Pattern(node, { labels: ["Movie"] })) - .where(Cypher.eq(new Cypher.Param("aa"), new Cypher.Param("bb"))) - .return([node.property("title"), "movie"]); - - const clause = new Cypher.Call(matchClause).importWith(node); - const queryResult = clause.build(); - expect(queryResult.cypher).toMatchInlineSnapshot(` - "CALL { - WITH this0 - MATCH (this0:Movie) - WHERE $param0 = $param1 - RETURN this0.title AS movie - }" - `); - - expect(queryResult.params).toMatchInlineSnapshot(` - { - "param0": "aa", - "param1": "bb", - } - `); - }); - - test("CALL with import with *", () => { - const node = new Cypher.Node(); - - const matchClause = new Cypher.Match(new Cypher.Pattern(node, { labels: ["Movie"] })).return([ - node.property("title"), - "movie", - ]); - - const clause = new Cypher.Call(matchClause).importWith("*"); - const queryResult = clause.build(); - expect(queryResult.cypher).toMatchInlineSnapshot(` - "CALL { - WITH * - MATCH (this0:Movie) - RETURN this0.title AS movie - }" - `); - - expect(queryResult.params).toMatchInlineSnapshot(`{}`); - }); - - test("CALL with import with * and extra fields", () => { - const node = new Cypher.Node(); - - const matchClause = new Cypher.Match(new Cypher.Pattern(node, { labels: ["Movie"] })).return([ - node.property("title"), - "movie", - ]); - - const clause = new Cypher.Call(matchClause).importWith(node, "*"); - const queryResult = clause.build(); - expect(queryResult.cypher).toMatchInlineSnapshot(` - "CALL { - WITH *, this0 - MATCH (this0:Movie) - RETURN this0.title AS movie - }" - `); - - expect(queryResult.params).toMatchInlineSnapshot(`{}`); - }); - - test("CALL with import with without parameters", () => { - const node = new Cypher.Node(); - - const matchClause = new Cypher.Match(new Cypher.Pattern(node, { labels: ["Movie"] })) - .where(Cypher.eq(new Cypher.Param("aa"), new Cypher.Param("bb"))) - .return([node.property("title"), "movie"]); - - const clause = new Cypher.Call(matchClause).importWith(); - const queryResult = clause.build(); - expect(queryResult.cypher).toMatchInlineSnapshot(` - "CALL { - MATCH (this0:Movie) - WHERE $param0 = $param1 - RETURN this0.title AS movie - }" - `); - - expect(queryResult.params).toMatchInlineSnapshot(` - { - "param0": "aa", - "param1": "bb", - } - `); - }); - - test("CALL with import with multiple parameters", () => { - const node = new Cypher.Node(); - - const matchClause = new Cypher.Match(new Cypher.Pattern(node, { labels: ["Movie"] })) - .where(Cypher.eq(new Cypher.Param("aa"), new Cypher.Param("bb"))) - .return([node.property("title"), "movie"]); - - const clause = new Cypher.Call(matchClause).importWith(node, new Cypher.Variable()); - const queryResult = clause.build(); - expect(queryResult.cypher).toMatchInlineSnapshot(` - "CALL { - WITH this0, var1 - MATCH (this0:Movie) - WHERE $param0 = $param1 - RETURN this0.title AS movie - }" - `); - - expect(queryResult.params).toMatchInlineSnapshot(` - { - "param0": "aa", - "param1": "bb", - } - `); - }); - - test("CALL with import with fails if import with is already set", () => { - const node = new Cypher.Node(); - - const matchClause = new Cypher.Match(new Cypher.Pattern(node, { labels: ["Movie"] })) - .where(Cypher.eq(new Cypher.Param("aa"), new Cypher.Param("bb"))) - .return([node.property("title"), "movie"]); - - const clause = new Cypher.Call(matchClause).importWith(node); - expect(() => { - clause.importWith(node); - }).toThrow(`Call import "WITH" already set`); - }); - test("CALL with external with", () => { const node = new Cypher.Node(); @@ -700,19 +568,6 @@ RETURN this0" expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); - test("ImportWith fails when variable scope is set", () => { - const movieNode = new Cypher.Node(); - - const call = new Cypher.Call( - new Cypher.Create(new Cypher.Pattern(movieNode).related().to(new Cypher.Node())), - [movieNode] - ); - - expect(() => { - call.importWith("*"); - }).toThrow(`Call import cannot be used along with scope clauses "Call ()"`); - }); - test("Call with empty variable scope", () => { const movieNode = new Cypher.Node(); const actorNode = new Cypher.Node(); diff --git a/src/clauses/Call.ts b/src/clauses/Call.ts index 685592b2..d165515b 100644 --- a/src/clauses/Call.ts +++ b/src/clauses/Call.ts @@ -24,7 +24,6 @@ import { compileCypherIfExists } from "../utils/compile-cypher-if-exists"; import { isNumber } from "../utils/is-number"; import { padBlock } from "../utils/pad-block"; import { Clause } from "./Clause"; -import { Union } from "./Union"; import { WithCreate } from "./mixins/clauses/WithCreate"; import { WithMatch } from "./mixins/clauses/WithMatch"; import { WithMerge } from "./mixins/clauses/WithMerge"; @@ -34,8 +33,6 @@ import { WithWith } from "./mixins/clauses/WithWith"; import { WithDelete } from "./mixins/sub-clauses/WithDelete"; import { WithOrder } from "./mixins/sub-clauses/WithOrder"; import { WithSetRemove } from "./mixins/sub-clauses/WithSetRemove"; -import { ImportWith } from "./sub-clauses/ImportWith"; -import { CompositeClause } from "./utils/concat"; import { mixin } from "./utils/mixin"; export interface Call @@ -69,7 +66,6 @@ export type CallInTransactionOptions = { @mixin(WithReturn, WithWith, WithUnwind, WithDelete, WithSetRemove, WithMatch, WithCreate, WithMerge, WithOrder) export class Call extends Clause { private readonly subquery: CypherASTNode; - private _importWith?: ImportWith; private inTransactionsConfig?: CallInTransactionOptions; private readonly variableScope?: Variable[] | "*"; private _optional: boolean = false; @@ -82,24 +78,6 @@ export class Call extends Clause { this.variableScope = variableScope; } - /** Adds a `WITH` statement inside `CALL {`, this `WITH` can is used to import variables outside of the subquery - * @see {@link https://neo4j.com/docs/cypher-manual/current/subqueries/call-subquery/#call-importing-variables | Cypher Documentation} - * @deprecated Use constructor parameter `variableScope` instead - */ - public importWith(...params: Array): this { - if (this._importWith) { - throw new Error(`Call import "WITH" already set`); - } - if (this.variableScope) { - throw new Error(`Call import cannot be used along with scope clauses "Call ()"`); - } - if (params.length > 0) { - this._importWith = new ImportWith(this, [...params]); - this.addChildren(this._importWith); - } - return this; - } - public inTransactions(config: CallInTransactionOptions = {}): this { this.inTransactionsConfig = config; return this; @@ -116,30 +94,19 @@ export class Call extends Clause { /** @internal */ public getCypher(env: CypherEnvironment): string { - const importWithCypher = compileCypherIfExists(this._importWith, env, { suffix: "\n" }); - - const subQueryStr = this.getSubqueryCypher(env, importWithCypher); + const subQueryStr = this.subquery.getCypher(env); const setCypher = this.compileSetCypher(env); const deleteCypher = compileCypherIfExists(this.deleteClause, env, { prefix: "\n" }); const orderByCypher = compileCypherIfExists(this.orderByStatement, env, { prefix: "\n" }); const inTransactionCypher = this.generateInTransactionsStr(); - const inCallBlock = `${importWithCypher}${subQueryStr}`; const variableScopeStr = this.generateVariableScopeStr(env); const nextClause = this.compileNextClause(env); const optionalStr = this._optional ? "OPTIONAL " : ""; - return `${optionalStr}CALL${variableScopeStr} {\n${padBlock(inCallBlock)}\n}${inTransactionCypher}${setCypher}${deleteCypher}${orderByCypher}${nextClause}`; - } - - private getSubqueryCypher(env: CypherEnvironment, importWithCypher: string | undefined): string { - // This ensures the import with is added to all the union subqueries - if (this.subquery instanceof Union || this.subquery instanceof CompositeClause) { - return this.subquery.getCypher(env, importWithCypher); - } - return this.subquery.getCypher(env); + return `${optionalStr}CALL${variableScopeStr} {\n${padBlock(subQueryStr)}\n}${inTransactionCypher}${setCypher}${deleteCypher}${orderByCypher}${nextClause}`; } private generateVariableScopeStr(env: CypherEnvironment): string { diff --git a/src/clauses/Union.test.ts b/src/clauses/Union.test.ts index 081ce145..16f86c22 100644 --- a/src/clauses/Union.test.ts +++ b/src/clauses/Union.test.ts @@ -89,93 +89,4 @@ describe("CypherBuilder UNION", () => { RETURN this3 AS var1" `); }); - - test("Union in CALL statement with import with", () => { - const returnVar = new Cypher.Variable(); - const n1 = new Cypher.Node(); - const query1 = new Cypher.Match(new Cypher.Pattern(n1, { labels: ["Movie"] })).return([n1, returnVar]); - const n2 = new Cypher.Node(); - const query2 = new Cypher.Match(new Cypher.Pattern(n2, { labels: ["Movie"] })).return([n2, returnVar]); - const n3 = new Cypher.Node(); - const query3 = new Cypher.Match(new Cypher.Pattern(n3, { labels: ["Movie"] })).return([n3, returnVar]); - - const unionQuery = new Cypher.Union(query1, query2, query3); - const callQuery = new Cypher.Call(unionQuery).importWith(new Cypher.Variable()); - const queryResult = callQuery.build(); - expect(queryResult.cypher).toMatchInlineSnapshot(` -"CALL { - WITH var0 - MATCH (this1:Movie) - RETURN this1 AS var2 - UNION - WITH var0 - MATCH (this3:Movie) - RETURN this3 AS var2 - UNION - WITH var0 - MATCH (this4:Movie) - RETURN this4 AS var2 -}" -`); - expect(queryResult.params).toMatchInlineSnapshot(`{}`); - }); - test("Union in concat in CALL statement with import with", () => { - const returnVar = new Cypher.Variable(); - const n1 = new Cypher.Node(); - const query1 = new Cypher.Match(new Cypher.Pattern(n1, { labels: ["Movie"] })).return([n1, returnVar]); - const n2 = new Cypher.Node(); - const query2 = new Cypher.Match(new Cypher.Pattern(n2, { labels: ["Movie"] })).return([n2, returnVar]); - const n3 = new Cypher.Node(); - const query3 = new Cypher.Match(new Cypher.Pattern(n3, { labels: ["Movie"] })).return([n3, returnVar]); - - const unionQuery = new Cypher.Union(query1, query2, query3); - const callQuery = new Cypher.Call(Cypher.utils.concat(unionQuery)).importWith(new Cypher.Variable()); - const queryResult = callQuery.build(); - expect(queryResult.cypher).toMatchInlineSnapshot(` -"CALL { - WITH var0 - MATCH (this1:Movie) - RETURN this1 AS var2 - UNION - WITH var0 - MATCH (this3:Movie) - RETURN this3 AS var2 - UNION - WITH var0 - MATCH (this4:Movie) - RETURN this4 AS var2 -}" -`); - expect(queryResult.params).toMatchInlineSnapshot(`{}`); - }); - - test("Union in nested CALL statement should not append top import with", () => { - const returnVar = new Cypher.Variable(); - const n1 = new Cypher.Node(); - const query1 = new Cypher.Match(new Cypher.Pattern(n1, { labels: ["Movie"] })).return([n1, returnVar]); - const n2 = new Cypher.Node(); - const query2 = new Cypher.Match(new Cypher.Pattern(n2, { labels: ["Movie"] })).return([n2, returnVar]); - const n3 = new Cypher.Node(); - const query3 = new Cypher.Match(new Cypher.Pattern(n3, { labels: ["Movie"] })).return([n3, returnVar]); - - const unionQuery = new Cypher.Union(query1, query2, query3); - const callQuery = new Cypher.Call(new Cypher.Call(unionQuery)).importWith(new Cypher.Variable()); - const queryResult = callQuery.build(); - expect(queryResult.cypher).toMatchInlineSnapshot(` -"CALL { - WITH var0 - CALL { - MATCH (this1:Movie) - RETURN this1 AS var2 - UNION - MATCH (this3:Movie) - RETURN this3 AS var2 - UNION - MATCH (this4:Movie) - RETURN this4 AS var2 - } -}" -`); - expect(queryResult.params).toMatchInlineSnapshot(`{}`); - }); }); diff --git a/src/clauses/Union.ts b/src/clauses/Union.ts index 6fb87548..e5bd1edb 100644 --- a/src/clauses/Union.ts +++ b/src/clauses/Union.ts @@ -54,10 +54,10 @@ export class Union extends Clause { * If importWithCypher is provided, it will be added at the beginning of each subquery except first * @internal */ - public getCypher(env: CypherEnvironment, importWithCypher?: string): string { + public getCypher(env: CypherEnvironment): string { const subqueriesStr = this.subqueries.map((s) => s.getCypher(env)); const unionTypeStr = this.unionType ? ` ${this.unionType}` : ""; - return subqueriesStr.join(`\nUNION${unionTypeStr}\n${importWithCypher ?? ""}`); + return subqueriesStr.join(`\nUNION${unionTypeStr}\n`); } } diff --git a/src/clauses/utils/concat.ts b/src/clauses/utils/concat.ts index fe2b471e..1827e34a 100644 --- a/src/clauses/utils/concat.ts +++ b/src/clauses/utils/concat.ts @@ -21,7 +21,6 @@ import type { CypherASTNode } from "../../CypherASTNode"; import type { CypherEnvironment } from "../../Environment"; import { filterTruthy } from "../../utils/filter-truthy"; import { Clause } from "../Clause"; -import { Union } from "../Union"; /** The result of multiple clauses concatenated with `Cypher.utils.concat` * @group Utils @@ -58,12 +57,9 @@ export class CompositeClause extends Clause { } /** @internal */ - public getCypher(env: CypherEnvironment, importWithCypher?: string): string { + public getCypher(env: CypherEnvironment): string { // NOTE: importWithCypher used to pass down import WITH to UNION clauses const childrenStrs = this._children.map((c) => { - if (importWithCypher && c instanceof Union) { - return c.getCypher(env, importWithCypher); - } return c.getCypher(env); }); return childrenStrs.join(this.separator); From 4e74c1b7471d55b5a103772ddb0f5888a740a56a Mon Sep 17 00:00:00 2001 From: angrykoala Date: Thu, 17 Jul 2025 17:25:02 +0100 Subject: [PATCH 08/30] Remove support for patterns in size --- .changeset/common-cycles-obey.md | 11 +++++++++++ src/expressions/functions/scalar.test.ts | 8 -------- src/expressions/functions/scalar.ts | 15 ++------------- 3 files changed, 13 insertions(+), 21 deletions(-) create mode 100644 .changeset/common-cycles-obey.md diff --git a/.changeset/common-cycles-obey.md b/.changeset/common-cycles-obey.md new file mode 100644 index 00000000..6ca5c806 --- /dev/null +++ b/.changeset/common-cycles-obey.md @@ -0,0 +1,11 @@ +--- +"@neo4j/cypher-builder": major +--- + +Remove support for patterns in size. + +_No longer supported_ + +```js +Cypher.size(new Cypher.Pattern(node)); +``` diff --git a/src/expressions/functions/scalar.test.ts b/src/expressions/functions/scalar.test.ts index 01c2a6a6..b1d6535c 100644 --- a/src/expressions/functions/scalar.test.ts +++ b/src/expressions/functions/scalar.test.ts @@ -102,12 +102,4 @@ describe("Scalar Functions", () => { expect(queryResult.cypher).toMatchInlineSnapshot(`"size(\\"Hello\\")"`); }); - - test("size() applied to a pattern", () => { - const pattern = new Cypher.Pattern(new Cypher.Node()).related().to(); - const cypherFunction = Cypher.size(pattern); - const queryResult = new TestClause(cypherFunction).build(); - - expect(queryResult.cypher).toMatchInlineSnapshot(`"size((this0)-[]->())"`); - }); }); diff --git a/src/expressions/functions/scalar.ts b/src/expressions/functions/scalar.ts index 71e122e1..be581766 100644 --- a/src/expressions/functions/scalar.ts +++ b/src/expressions/functions/scalar.ts @@ -17,8 +17,6 @@ * limitations under the License. */ -import { Raw } from "../../clauses/Raw"; -import type { Pattern } from "../../pattern/Pattern"; import type { Expr } from "../../types"; import { CypherFunction } from "./CypherFunctions"; @@ -99,17 +97,8 @@ export function randomUUID(): CypherFunction { * @group Functions * @category Scalar */ -export function size(expr: Expr): CypherFunction; -/** @deprecated size() with pattern is deprecated in Neo4j 5 */ -export function size(expr: Pattern): CypherFunction; -export function size(expr: Expr | Pattern): CypherFunction { - // Support for patterns in size() in Neo4j 4 - // Using Raw to avoid adding Patterns to CypherFunction - const sizeParam = new Raw((env) => { - return env.compile(expr); - }); - - return new CypherFunction("size", [sizeParam]); +export function size(expr: Expr): CypherFunction { + return new CypherFunction("size", [expr]); } /** From 507934c240d3c8c78eac4f6488e94d159086af3b Mon Sep 17 00:00:00 2001 From: angrykoala Date: Thu, 17 Jul 2025 17:16:52 +0100 Subject: [PATCH 09/30] Remove extra parameters in Foreach --- .changeset/violet-sloths-hug.md | 45 +++++++++++++++ src/clauses/Foreach.ts | 6 +- tests/clause-chaining.test.ts | 2 +- tests/deprecated/Foreach.test.ts | 96 -------------------------------- 4 files changed, 47 insertions(+), 102 deletions(-) create mode 100644 .changeset/violet-sloths-hug.md delete mode 100644 tests/deprecated/Foreach.test.ts diff --git a/.changeset/violet-sloths-hug.md b/.changeset/violet-sloths-hug.md new file mode 100644 index 00000000..f2a964f2 --- /dev/null +++ b/.changeset/violet-sloths-hug.md @@ -0,0 +1,45 @@ +--- +"@neo4j/cypher-builder": major +--- + +Remove extra parameters in `Cypher.Foreach` in favor of methods `in` and `do`. + +For example, to create the following Cypher: + +```cypher +FOREACH (var0 IN [1, 2, 3] | + CREATE (this1:Movie) + SET + this1.id = var0 + ) +``` + +_before_ + +```js +const list = new Cypher.Literal([1, 2, 3]); +const variable = new Cypher.Variable(); + +const movieNode = new Cypher.Node(); +const createMovie = new Cypher.Create(new Cypher.Pattern(movieNode, { labels: ["Movie"] })).set([ + movieNode.property("id"), + variable, +]); + +const foreachClause = new Cypher.Foreach(variable, list, createMovie); +``` + +_after_ + +```js +const list = new Cypher.Literal([1, 2, 3]); +const variable = new Cypher.Variable(); + +const movieNode = new Cypher.Node(); +const createMovie = new Cypher.Create(new Cypher.Pattern(movieNode, { labels: ["Movie"] })).set([ + movieNode.property("id"), + variable, +]); + +const foreachClause = new Cypher.Foreach(variable).in(list).do(createMovie); +``` diff --git a/src/clauses/Foreach.ts b/src/clauses/Foreach.ts index fd27865f..c4820693 100644 --- a/src/clauses/Foreach.ts +++ b/src/clauses/Foreach.ts @@ -51,13 +51,9 @@ export class Foreach extends Clause { private mapClause: ForeachClauses | undefined; constructor(variable: Variable); - /** @deprecated Use `in` and `do` instead of passing the constructor */ - constructor(variable: Variable, listExpr: Expr, mapClause: ForeachClauses); - constructor(variable: Variable, listExpr?: Expr, mapClause?: ForeachClauses) { + constructor(variable: Variable) { super(); this.variable = variable; - this.listExpr = listExpr; - this.mapClause = mapClause; } public in(listExpr: Expr): this { diff --git a/tests/clause-chaining.test.ts b/tests/clause-chaining.test.ts index 2c62890b..28b2da52 100644 --- a/tests/clause-chaining.test.ts +++ b/tests/clause-chaining.test.ts @@ -99,7 +99,7 @@ describe("Clause chaining", () => { const movieNode = new Cypher.Node(); const createMovie = new Cypher.Create(new Cypher.Pattern(movieNode)).set([movieNode.property("id"), variable]); - const clause = new Cypher.Foreach(variable, list, createMovie); + const clause = new Cypher.Foreach(variable).in(list).do(createMovie); it.each(["return", "remove", "set", "delete", "detachDelete", "with", "merge", "create"] as const)( "Foreach.%s", diff --git a/tests/deprecated/Foreach.test.ts b/tests/deprecated/Foreach.test.ts deleted file mode 100644 index 3c08d81a..00000000 --- a/tests/deprecated/Foreach.test.ts +++ /dev/null @@ -1,96 +0,0 @@ -/* - * Copyright (c) "Neo4j" - * Neo4j Sweden AB [http://neo4j.com] - * - * This file is part of Neo4j. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import Cypher from "../../src"; - -describe("Foreach", () => { - test("Foreach create", () => { - const list = new Cypher.Literal([1, 2, 3]); - const variable = new Cypher.Variable(); - - const movieNode = new Cypher.Node(); - const createMovie = new Cypher.Create(new Cypher.Pattern(movieNode, { labels: ["Movie"] })).set([ - movieNode.property("id"), - variable, - ]); - - const foreachClause = new Cypher.Foreach(variable, list, createMovie).with("*"); - - const queryResult = foreachClause.build(); - expect(queryResult.cypher).toMatchInlineSnapshot(` - "FOREACH (var0 IN [1, 2, 3] | - CREATE (this1:Movie) - SET - this1.id = var0 - ) - WITH *" - `); - - expect(queryResult.params).toMatchInlineSnapshot(`{}`); - }); - - test("Foreach create with set, remove and delete", () => { - const list = new Cypher.Literal([1, 2, 3]); - const variable = new Cypher.Variable(); - - const movieNode = new Cypher.Node(); - const createMovie = new Cypher.Create(new Cypher.Pattern(movieNode, { labels: ["Movie"] })); - - const foreachClause = new Cypher.Foreach(variable, list, createMovie) - .remove(movieNode.property("title")) - .set([movieNode.property("id"), variable]) - .delete(movieNode) - .with("*"); - - const queryResult = foreachClause.build(); - expect(queryResult.cypher).toMatchInlineSnapshot(` -"FOREACH (var0 IN [1, 2, 3] | - CREATE (this1:Movie) -) -REMOVE this1.title -SET - this1.id = var0 -DELETE this1 -WITH *" -`); - - expect(queryResult.params).toMatchInlineSnapshot(`{}`); - }); - - test("Foreach create detachDelete", () => { - const list = new Cypher.Literal([1, 2, 3]); - const variable = new Cypher.Variable(); - - const movieNode = new Cypher.Node(); - const createMovie = new Cypher.Create(new Cypher.Pattern(movieNode, { labels: ["Movie"] })); - - const foreachClause = new Cypher.Foreach(variable, list, createMovie).detachDelete(movieNode).with("*"); - - const queryResult = foreachClause.build(); - expect(queryResult.cypher).toMatchInlineSnapshot(` -"FOREACH (var0 IN [1, 2, 3] | - CREATE (this1:Movie) -) -DETACH DELETE this1 -WITH *" -`); - - expect(queryResult.params).toMatchInlineSnapshot(`{}`); - }); -}); From 5d7ef2b3e8ec700b4ab4464633888c9e23407a96 Mon Sep 17 00:00:00 2001 From: angrykoala Date: Thu, 21 Aug 2025 16:44:55 +0100 Subject: [PATCH 10/30] Support for Cypher 25 prefix --- .changeset/blue-ends-relate.md | 11 +++++++++++ src/clauses/Clause.ts | 2 +- tests/build-config/cypher-version.test.ts | 24 ++++++++++++++++++++++- 3 files changed, 35 insertions(+), 2 deletions(-) create mode 100644 .changeset/blue-ends-relate.md diff --git a/.changeset/blue-ends-relate.md b/.changeset/blue-ends-relate.md new file mode 100644 index 00000000..449b7e2a --- /dev/null +++ b/.changeset/blue-ends-relate.md @@ -0,0 +1,11 @@ +--- +"@neo4j/cypher-builder": patch +--- + +Add support for `Cypher 25` version prefix: + +```js +const { cypher } = matchQuery.build({ + cypherVersion: "25", +}); +``` diff --git a/src/clauses/Clause.ts b/src/clauses/Clause.ts index 63d41138..e10c8950 100644 --- a/src/clauses/Clause.ts +++ b/src/clauses/Clause.ts @@ -45,7 +45,7 @@ export type BuildConfig = Partial<{ /** Will prefix generated queries with the Cypher version * @example `CYPHER 5` */ - cypherVersion: "5"; + cypherVersion: "5" | "25"; /** Prefix variables with given string. * * This is useful to avoid name collisions if separate Cypher queries are generated and merged after generating the strings. diff --git a/tests/build-config/cypher-version.test.ts b/tests/build-config/cypher-version.test.ts index 375f87a0..17f9ffbd 100644 --- a/tests/build-config/cypher-version.test.ts +++ b/tests/build-config/cypher-version.test.ts @@ -20,7 +20,7 @@ import Cypher from "../../src"; describe("Cypher version", () => { - test("Add cypher version on .build", () => { + test("Add cypher version 5 on .build", () => { const movieNode = new Cypher.Node(); const pattern = new Cypher.Pattern(movieNode, { labels: ["Movie"] }); @@ -39,6 +39,28 @@ describe("Cypher version", () => { MATCH (this0:Movie) WHERE this0.title = $param0 RETURN this0.title" +`); + }); + + test("Add cypher version 25 on .build", () => { + const movieNode = new Cypher.Node(); + const pattern = new Cypher.Pattern(movieNode, { labels: ["Movie"] }); + + const matchQuery = new Cypher.Match(pattern) + .where(movieNode, { + title: new Cypher.Param("The Matrix"), + }) + .return(movieNode.property("title")); + + const { cypher } = matchQuery.build({ + cypherVersion: "25", + }); + + expect(cypher).toMatchInlineSnapshot(` +"CYPHER 25 +MATCH (this0:Movie) +WHERE this0.title = $param0 +RETURN this0.title" `); }); }); From 4ef105e54a6e1a1b353d18266a6b62021d101622 Mon Sep 17 00:00:00 2001 From: angrykoala Date: Wed, 24 Sep 2025 16:19:33 +0100 Subject: [PATCH 11/30] Rename testing cases from 'it' to 'test' --- src/expressions/list/ListComprehension.test.ts | 4 ++-- src/pattern/Pattern.test.ts | 14 ++++++-------- src/procedures/CypherProcedure.test.ts | 18 +++++++++--------- src/utils/utils.test.ts | 2 +- 4 files changed, 18 insertions(+), 20 deletions(-) diff --git a/src/expressions/list/ListComprehension.test.ts b/src/expressions/list/ListComprehension.test.ts index 57b4dff4..6e552774 100644 --- a/src/expressions/list/ListComprehension.test.ts +++ b/src/expressions/list/ListComprehension.test.ts @@ -91,7 +91,7 @@ describe("List comprehension", () => { `); }); - it("Fails to set a expression twice", () => { + test("Fails to set a expression twice", () => { const variable = new Cypher.Variable(); const exprVariable = new Cypher.Param([1, 2, 5]); @@ -100,7 +100,7 @@ describe("List comprehension", () => { }).toThrow("Cannot set 2 lists in list comprehension IN"); }); - it("Fails to build if no expression is set", () => { + test("Fails to build if no expression is set", () => { const variable = new Cypher.Variable(); const listComprehension = new Cypher.ListComprehension(variable); diff --git a/src/pattern/Pattern.test.ts b/src/pattern/Pattern.test.ts index 42049b0e..00d9e4fc 100644 --- a/src/pattern/Pattern.test.ts +++ b/src/pattern/Pattern.test.ts @@ -283,9 +283,7 @@ describe("Patterns", () => { const a = new Cypher.Node(); const rel = new Cypher.Variable(); - const query = new TestClause( - new Cypher.Pattern(a as Cypher.Node | undefined).related(rel).to(a as Cypher.Node | undefined) - ); + const query = new TestClause(new Cypher.Pattern(a).related(rel).to(a)); const queryResult = query.build(); expect(queryResult.cypher).toMatchInlineSnapshot(`"(this0)-[var1]->(this0)"`); @@ -429,7 +427,7 @@ describe("Patterns", () => { }); describe("Where predicate", () => { - it("Node pattern with where predicate", () => { + test("Node pattern with where predicate", () => { const node = new Cypher.Node(); const pattern = new Cypher.Pattern(node, { labels: ["TestLabel"] }).where( @@ -439,7 +437,7 @@ describe("Patterns", () => { expect(queryResult.cypher).toMatchInlineSnapshot(`"(this0:TestLabel WHERE this0.name = \\"Keanu\\")"`); }); - it("Node pattern with where predicate and properties", () => { + test("Node pattern with where predicate and properties", () => { const node = new Cypher.Node(); const pattern = new Cypher.Pattern(node, { @@ -457,7 +455,7 @@ describe("Patterns", () => { ); }); - it("Node pattern with where predicate in target node", () => { + test("Node pattern with where predicate in target node", () => { const node = new Cypher.Node(); const pattern = new Cypher.Pattern(node, { labels: ["TestLabel"] }) @@ -470,7 +468,7 @@ describe("Patterns", () => { ); }); - it("Relationship pattern with where predicate", () => { + test("Relationship pattern with where predicate", () => { const node = new Cypher.Node(); const relationship = new Cypher.Relationship(); @@ -484,7 +482,7 @@ describe("Patterns", () => { ); }); - it("Relationship pattern with where predicate and properties", () => { + test("Relationship pattern with where predicate and properties", () => { const node = new Cypher.Node(); const relationship = new Cypher.Relationship(); diff --git a/src/procedures/CypherProcedure.test.ts b/src/procedures/CypherProcedure.test.ts index ff9492ad..b6d5039d 100644 --- a/src/procedures/CypherProcedure.test.ts +++ b/src/procedures/CypherProcedure.test.ts @@ -134,7 +134,7 @@ describe("Procedures", () => { }); describe("Procedure with Yield and nested clauses", () => { - it("Procedure with Where", () => { + test("Procedure with Where", () => { const procedure = new Cypher.Procedure("custom-procedure").yield("test"); procedure.where(Cypher.true).and(Cypher.false).return("*"); @@ -148,7 +148,7 @@ RETURN *" expect(params).toMatchInlineSnapshot(`{}`); }); - it("Procedure with Delete", () => { + test("Procedure with Delete", () => { const procedure = new Cypher.Procedure("custom-procedure").yield("test"); procedure.delete(new Cypher.Node()); @@ -161,7 +161,7 @@ DELETE this0" expect(params).toMatchInlineSnapshot(`{}`); }); - it("Procedure with Detach Delete", () => { + test("Procedure with Detach Delete", () => { const procedure = new Cypher.Procedure("custom-procedure").yield("test"); procedure.detachDelete(new Cypher.Node()); @@ -174,7 +174,7 @@ DETACH DELETE this0" expect(params).toMatchInlineSnapshot(`{}`); }); - it("Procedure with Remove", () => { + test("Procedure with Remove", () => { const procedure = new Cypher.Procedure("custom-procedure").yield("test"); procedure.remove(new Cypher.Node().property("test")); @@ -187,7 +187,7 @@ REMOVE this0.test" expect(params).toMatchInlineSnapshot(`{}`); }); - it("Procedure with Set", () => { + test("Procedure with Set", () => { const procedure = new Cypher.Procedure("custom-procedure").yield("test"); procedure.set([new Cypher.Variable().property("test"), new Cypher.Literal("hello")]); @@ -201,7 +201,7 @@ SET expect(params).toMatchInlineSnapshot(`{}`); }); - it("Procedure with Unwind", () => { + test("Procedure with Unwind", () => { const yieldVar = new Cypher.Variable(); const procedure = new Cypher.Procedure("custom-procedure").yield(["test", yieldVar]); @@ -215,7 +215,7 @@ UNWIND var0 AS var1" expect(params).toMatchInlineSnapshot(`{}`); }); - it("Procedure with Merge", () => { + test("Procedure with Merge", () => { const procedure = new Cypher.Procedure("custom-procedure").yield("test"); procedure.merge(new Cypher.Pattern(new Cypher.Node())); @@ -228,7 +228,7 @@ MERGE (this0)" expect(params).toMatchInlineSnapshot(`{}`); }); - it("Procedure with Create", () => { + test("Procedure with Create", () => { const procedure = new Cypher.Procedure("custom-procedure").yield("test"); procedure.create(new Cypher.Pattern(new Cypher.Node())); @@ -241,7 +241,7 @@ CREATE (this0)" expect(params).toMatchInlineSnapshot(`{}`); }); - it("Procedure with Order by", () => { + test("Procedure with Order by", () => { const testVar = new Cypher.NamedVariable("test"); const procedure = new Cypher.Procedure("custom-procedure").yield("test").orderBy(testVar).skip(1).limit(10); diff --git a/src/utils/utils.test.ts b/src/utils/utils.test.ts index 9f055031..8299a429 100644 --- a/src/utils/utils.test.ts +++ b/src/utils/utils.test.ts @@ -83,7 +83,7 @@ describe("CypherBuilder Utils", () => { }); }); - it("toCypherParams", () => { + test("toCypherParams", () => { const cypherParams = Cypher.utils.toCypherParams({ param1: "my param", param2: 5, From fa74345b86056e356cf0abd8b999cd27adf2b0fb Mon Sep 17 00:00:00 2001 From: angrykoala Date: Wed, 24 Sep 2025 16:31:08 +0100 Subject: [PATCH 12/30] Remove second parameter of listComprehension --- .changeset/clean-items-greet.md | 5 +++++ src/expressions/list/ListComprehension.test.ts | 6 +++--- src/expressions/list/ListComprehension.ts | 3 +-- 3 files changed, 9 insertions(+), 5 deletions(-) create mode 100644 .changeset/clean-items-greet.md diff --git a/.changeset/clean-items-greet.md b/.changeset/clean-items-greet.md new file mode 100644 index 00000000..51bd3da2 --- /dev/null +++ b/.changeset/clean-items-greet.md @@ -0,0 +1,5 @@ +--- +"@neo4j/cypher-builder": major +--- + +Remove second parameter of `ListComprehension` in favor of `.in` diff --git a/src/expressions/list/ListComprehension.test.ts b/src/expressions/list/ListComprehension.test.ts index 6e552774..714d3072 100644 --- a/src/expressions/list/ListComprehension.test.ts +++ b/src/expressions/list/ListComprehension.test.ts @@ -25,7 +25,7 @@ describe("List comprehension", () => { const variable = new Cypher.Variable(); const exprVariable = new Cypher.Param([1, 2, 5]); - const listComprehension = new Cypher.ListComprehension(variable, exprVariable); + const listComprehension = new Cypher.ListComprehension(variable).in(exprVariable); const queryResult = new TestClause(listComprehension).build(); @@ -47,7 +47,7 @@ describe("List comprehension", () => { const exprVariable = new Cypher.Param([1, 2, 5]); const andExpr = Cypher.eq(variable, new Cypher.Param(5)); - const listComprehension = new Cypher.ListComprehension(variable, exprVariable).where(andExpr); + const listComprehension = new Cypher.ListComprehension(variable).in(exprVariable).where(andExpr); const queryResult = new TestClause(listComprehension).build(); @@ -96,7 +96,7 @@ describe("List comprehension", () => { const exprVariable = new Cypher.Param([1, 2, 5]); expect(() => { - new Cypher.ListComprehension(variable, exprVariable).in(exprVariable); + new Cypher.ListComprehension(variable).in(exprVariable).in(exprVariable); }).toThrow("Cannot set 2 lists in list comprehension IN"); }); diff --git a/src/expressions/list/ListComprehension.ts b/src/expressions/list/ListComprehension.ts index 177e4d78..fb5aeffd 100644 --- a/src/expressions/list/ListComprehension.ts +++ b/src/expressions/list/ListComprehension.ts @@ -38,10 +38,9 @@ export class ListComprehension extends CypherASTNode { private listExpr: Expr | undefined; private mapExpr: Expr | undefined; // Expression for list mapping - constructor(variable: Variable, listExpr?: Expr) { + constructor(variable: Variable) { super(); this.variable = variable; - this.listExpr = listExpr; } public in(listExpr: Expr): this { From 117a320b921bac142da7d6d548676c89e77418f6 Mon Sep 17 00:00:00 2001 From: angrykoala Date: Wed, 24 Sep 2025 16:36:06 +0100 Subject: [PATCH 13/30] listComprehension in method overrides the expression if called twice --- .changeset/bright-meals-arrive.md | 5 +++++ .../list/ListComprehension.test.ts | 19 +++++++++++++++---- src/expressions/list/ListComprehension.ts | 2 +- 3 files changed, 21 insertions(+), 5 deletions(-) create mode 100644 .changeset/bright-meals-arrive.md diff --git a/.changeset/bright-meals-arrive.md b/.changeset/bright-meals-arrive.md new file mode 100644 index 00000000..2b00ce13 --- /dev/null +++ b/.changeset/bright-meals-arrive.md @@ -0,0 +1,5 @@ +--- +"@neo4j/cypher-builder": major +--- + +ListComprehension `.in` method no longer throws if called twice. It will instead override the expression diff --git a/src/expressions/list/ListComprehension.test.ts b/src/expressions/list/ListComprehension.test.ts index 714d3072..905d8a2a 100644 --- a/src/expressions/list/ListComprehension.test.ts +++ b/src/expressions/list/ListComprehension.test.ts @@ -91,13 +91,24 @@ describe("List comprehension", () => { `); }); - test("Fails to set a expression twice", () => { + test("Overrides if a expression is set twice", () => { const variable = new Cypher.Variable(); const exprVariable = new Cypher.Param([1, 2, 5]); + const exprVariable2 = new Cypher.Param([1, 3]); - expect(() => { - new Cypher.ListComprehension(variable).in(exprVariable).in(exprVariable); - }).toThrow("Cannot set 2 lists in list comprehension IN"); + const listComprehension = new Cypher.ListComprehension(variable).in(exprVariable).in(exprVariable2); + + const queryResult = new TestClause(listComprehension).build(); + + expect(queryResult.cypher).toMatchInlineSnapshot(`"[var0 IN $param0]"`); + expect(queryResult.params).toMatchInlineSnapshot(` + { + "param0": [ + 1, + 3, + ], + } + `); }); test("Fails to build if no expression is set", () => { diff --git a/src/expressions/list/ListComprehension.ts b/src/expressions/list/ListComprehension.ts index fb5aeffd..a62532aa 100644 --- a/src/expressions/list/ListComprehension.ts +++ b/src/expressions/list/ListComprehension.ts @@ -43,8 +43,8 @@ export class ListComprehension extends CypherASTNode { this.variable = variable; } + /** Sets the list expression to be used for the comprehension. If called twice, the expression will be overriden */ public in(listExpr: Expr): this { - if (this.listExpr) throw new Error("Cannot set 2 lists in list comprehension IN"); this.listExpr = listExpr; return this; } From 79d5abf9dd1436b2506b4976ed807a8a853fe71e Mon Sep 17 00:00:00 2001 From: angrykoala Date: Mon, 13 Oct 2025 16:28:00 +0100 Subject: [PATCH 14/30] Add example to changelog --- .changeset/clean-items-greet.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.changeset/clean-items-greet.md b/.changeset/clean-items-greet.md index 51bd3da2..3ec4da9c 100644 --- a/.changeset/clean-items-greet.md +++ b/.changeset/clean-items-greet.md @@ -3,3 +3,21 @@ --- Remove second parameter of `ListComprehension` in favor of `.in` + +_Before_ + +```js +new Cypher.ListComprehension(variable, new Cypher.Literal([1, 2])); +``` + +_After_ + +```js +new Cypher.ListComprehension(variable).in(new Cypher.Literal([1, 2])); +``` + +In both cases, the same comprehension will be generated: + +```cypher +[var0 IN [1, 2]] +``` From 7c47adba6eaebae4749be1bfb858910516fc7a8c Mon Sep 17 00:00:00 2001 From: angrykoala Date: Tue, 14 Oct 2025 17:04:13 +0100 Subject: [PATCH 15/30] remove labelOperator --- .changeset/easy-horses-repeat.md | 25 ++++++++++ examples/patterns/label-expressions.ts | 4 +- examples/patterns/length.ts | 4 +- examples/patterns/quantified-path-patterns.ts | 4 +- src/Environment.ts | 2 - src/clauses/Clause.ts | 17 +------ src/expressions/HasLabel.test.ts | 6 +-- src/expressions/HasLabel.ts | 4 +- src/pattern/Pattern.test.ts | 8 +--- src/pattern/labels-to-string.ts | 4 +- src/references/Label.ts | 4 +- src/utils/add-label-token.test.ts | 22 ++++----- src/utils/add-label-token.ts | 4 +- tests/build-config/label-operator.test.ts | 48 ------------------- tests/issues/479.test.ts | 2 +- 15 files changed, 55 insertions(+), 103 deletions(-) create mode 100644 .changeset/easy-horses-repeat.md delete mode 100644 tests/build-config/label-operator.test.ts diff --git a/.changeset/easy-horses-repeat.md b/.changeset/easy-horses-repeat.md new file mode 100644 index 00000000..267ae183 --- /dev/null +++ b/.changeset/easy-horses-repeat.md @@ -0,0 +1,25 @@ +--- +"@neo4j/cypher-builder": major +--- + +Remove labelOperator, all labels will now use operator `&` + +No longer supported: + +```js +const { cypher, params } = matchQuery.build({ + labelOperator: "&", +}); +``` + +_Before_ + +```js +MATCH (this1:Movie:Film) +``` + +_After_ + +```cypher +MATCH (this1:Movie&Film) +``` diff --git a/examples/patterns/label-expressions.ts b/examples/patterns/label-expressions.ts index 75dcc67f..275f77bf 100644 --- a/examples/patterns/label-expressions.ts +++ b/examples/patterns/label-expressions.ts @@ -30,9 +30,7 @@ const matchQuery = new Cypher.Match( }) ).return(movieNode); -const { cypher, params } = matchQuery.build({ - labelOperator: "&", -}); +const { cypher, params } = matchQuery.build(); console.log("Cypher"); console.log(cypher); diff --git a/examples/patterns/length.ts b/examples/patterns/length.ts index f39bce04..7332254b 100644 --- a/examples/patterns/length.ts +++ b/examples/patterns/length.ts @@ -29,9 +29,7 @@ const pattern = new Cypher.Pattern(movie).related(actedIn, { type: "ACTED_IN", l const matchQuery = new Cypher.Match(pattern).return(movie); -const { cypher, params } = matchQuery.build({ - labelOperator: "&", -}); +const { cypher, params } = matchQuery.build(); console.log("Cypher"); console.log(cypher); diff --git a/examples/patterns/quantified-path-patterns.ts b/examples/patterns/quantified-path-patterns.ts index 31bd9f5b..4431b23e 100644 --- a/examples/patterns/quantified-path-patterns.ts +++ b/examples/patterns/quantified-path-patterns.ts @@ -41,9 +41,7 @@ const quantifiedPath = new Cypher.QuantifiedPath( const query = new Cypher.Match(quantifiedPath).return(m2); -const { cypher, params } = query.build({ - labelOperator: "&", -}); +const { cypher, params } = query.build(); console.log("Cypher"); console.log(cypher); diff --git a/src/Environment.ts b/src/Environment.ts index f1b1d9c4..4607175f 100644 --- a/src/Environment.ts +++ b/src/Environment.ts @@ -27,13 +27,11 @@ export type EnvPrefix = { }; export type EnvConfig = { - labelOperator: NonNullable; unsafeEscapeOptions: NonNullable; cypherVersion: BuildConfig["cypherVersion"]; }; const defaultConfig: EnvConfig = { - labelOperator: ":", unsafeEscapeOptions: {}, cypherVersion: undefined, }; diff --git a/src/clauses/Clause.ts b/src/clauses/Clause.ts index 63d41138..bfcfe8bf 100644 --- a/src/clauses/Clause.ts +++ b/src/clauses/Clause.ts @@ -30,18 +30,6 @@ const customInspectSymbol = Symbol.for("nodejs.util.inspect.custom"); * @group Clauses */ export type BuildConfig = Partial<{ - /** Defines the default operator for adding multiple labels in a Pattern. Defaults to `":"` - * - * If the target Cypher is version 5 or above, `"&"` is recommended - * - * @example - * `MATCH (this:Movie:Film)` - * `MATCH (this:Movie&Film)` - * - * @deprecated This will be removed in the following major release and the value `"&"` will be used in the generated Cypher - * - */ - labelOperator: ":" | "&"; /** Will prefix generated queries with the Cypher version * @example `CYPHER 5` */ @@ -85,11 +73,10 @@ export abstract class Clause extends CypherASTNode { /** Compiles a clause into Cypher and params */ public build(config?: BuildConfig): CypherResult { - const { prefix, extraParams = {}, labelOperator = ":", cypherVersion, unsafeEscapeOptions = {} } = config ?? {}; + const { prefix, extraParams = {}, cypherVersion, unsafeEscapeOptions = {} } = config ?? {}; if (this.isRoot) { const env = this.getEnv(prefix, { - labelOperator, cypherVersion, unsafeEscapeOptions, }); @@ -104,7 +91,7 @@ export abstract class Clause extends CypherASTNode { } const root = this.getRoot(); if (root instanceof Clause) { - return root.build({ prefix, extraParams, labelOperator, cypherVersion, unsafeEscapeOptions }); + return root.build({ prefix, extraParams, cypherVersion, unsafeEscapeOptions }); } throw new Error(`Cannot build root: ${root.constructor.name}`); } diff --git a/src/expressions/HasLabel.test.ts b/src/expressions/HasLabel.test.ts index 7b7fd1c8..4a03980a 100644 --- a/src/expressions/HasLabel.test.ts +++ b/src/expressions/HasLabel.test.ts @@ -55,9 +55,9 @@ describe("HasLabel", () => { const queryResult = new TestClause(query).build(); expect(queryResult.cypher).toMatchInlineSnapshot(` - "MATCH (this0:Movie) - WHERE this0:Movie:Film" - `); +"MATCH (this0:Movie) +WHERE this0:Movie&Film" +`); expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); diff --git a/src/expressions/HasLabel.ts b/src/expressions/HasLabel.ts index 7958e265..3f29556a 100644 --- a/src/expressions/HasLabel.ts +++ b/src/expressions/HasLabel.ts @@ -58,9 +58,9 @@ export class HasLabel extends CypherASTNode { private generateLabelExpressionStr(env: CypherEnvironment): string { if (Array.isArray(this.expectedLabels)) { const escapedLabels = this.expectedLabels.map((label) => escapeLabel(label)); - return addLabelToken(env.config.labelOperator, ...escapedLabels); + return addLabelToken(...escapedLabels); } else { - return addLabelToken(env.config.labelOperator, this.expectedLabels.getCypher(env)); + return addLabelToken(this.expectedLabels.getCypher(env)); } } diff --git a/src/pattern/Pattern.test.ts b/src/pattern/Pattern.test.ts index 00d9e4fc..888ec48c 100644 --- a/src/pattern/Pattern.test.ts +++ b/src/pattern/Pattern.test.ts @@ -191,9 +191,7 @@ describe("Patterns", () => { .to(b) ); const queryResult = query.build(); - expect(queryResult.cypher).toMatchInlineSnapshot( - `"(this0:Person:Actor { name: $param0, surname: $param1 })-[this1:ACTED_IN { roles: $param2 }]->(this2)"` - ); + expect(queryResult.cypher).toMatchInlineSnapshot(`"(this0:Person&Actor { name: $param0, surname: $param1 })-[this1:ACTED_IN { roles: $param2 }]->(this2)"`); expect(queryResult.params).toMatchInlineSnapshot(` { @@ -225,9 +223,7 @@ describe("Patterns", () => { .to(b) ); const queryResult = query.build(); - expect(queryResult.cypher).toMatchInlineSnapshot( - `"(this0:Person:Actor)-[this1:ACTED_IN { roles: (\\"The \\" + \\"Matrix\\") }]->(this2)"` - ); + expect(queryResult.cypher).toMatchInlineSnapshot(`"(this0:Person&Actor)-[this1:ACTED_IN { roles: (\\"The \\" + \\"Matrix\\") }]->(this2)"`); expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); diff --git a/src/pattern/labels-to-string.ts b/src/pattern/labels-to-string.ts index c490f1c7..6a8dabfa 100644 --- a/src/pattern/labels-to-string.ts +++ b/src/pattern/labels-to-string.ts @@ -44,7 +44,7 @@ function labelOrTypeToString( escapeFunc: (s: string) => string ): string { if (elements instanceof LabelExpr) { - return addLabelToken(env.config.labelOperator, elements.getCypher(env)); + return addLabelToken(elements.getCypher(env)); } else { const escapedLabels = asArray(elements).map((label: string | Expr) => { if (typeof label === "string") { @@ -54,6 +54,6 @@ function labelOrTypeToString( } }); - return addLabelToken(env.config.labelOperator, ...escapedLabels); + return addLabelToken(...escapedLabels); } } diff --git a/src/references/Label.ts b/src/references/Label.ts index 3510a158..1abdbca0 100644 --- a/src/references/Label.ts +++ b/src/references/Label.ts @@ -58,7 +58,7 @@ export class Label extends CypherASTNode { } private generateLabelExpressionStr(env: CypherEnvironment): string { - return addLabelToken(env.config.labelOperator, escapeLabel(this.label)); + return addLabelToken(escapeLabel(this.label)); } } @@ -77,7 +77,7 @@ export class DynamicLabel extends Label { public getCypher(env: CypherEnvironment): string { const nodeId = this.node.getCypher(env); const exprStr = `$(${this.expr.getCypher(env)})`; - const labelStr = addLabelToken(env.config.labelOperator, exprStr); + const labelStr = addLabelToken(exprStr); return `${nodeId}${labelStr}`; } } diff --git a/src/utils/add-label-token.test.ts b/src/utils/add-label-token.test.ts index 17c00b61..8814f1c0 100644 --- a/src/utils/add-label-token.test.ts +++ b/src/utils/add-label-token.test.ts @@ -19,24 +19,24 @@ import { addLabelToken } from "./add-label-token"; -describe.each([":", "&"] as const)("addLabelToken", (operator) => { - test("addLabelToken without labels using operator %s", () => { - const result = addLabelToken(operator); +describe("addLabelToken", () => { + test("addLabelToken without labels", () => { + const result = addLabelToken(); expect(result).toBe(""); }); - test("addLabelToken with a single label using operator %s", () => { - const result = addLabelToken(operator, "Movie"); + test("addLabelToken with a single label", () => { + const result = addLabelToken("Movie"); expect(result).toBe(":Movie"); }); - test("addLabelToken with two labels using operator %s", () => { - const result = addLabelToken(operator, "Movie", "Film"); - expect(result).toBe(`:Movie${operator}Film`); + test("addLabelToken with two labels", () => { + const result = addLabelToken("Movie", "Film"); + expect(result).toBe(`:Movie&Film`); }); - test("addLabelToken with multiple labels using operator %s", () => { - const result = addLabelToken(operator, "Movie", "Film", "Video"); - expect(result).toBe(`:Movie${operator}Film${operator}Video`); + test("addLabelToken with multiple labels", () => { + const result = addLabelToken("Movie", "Film", "Video"); + expect(result).toBe(`:Movie&Film&Video`); }); }); diff --git a/src/utils/add-label-token.ts b/src/utils/add-label-token.ts index 2720c975..626f90fb 100644 --- a/src/utils/add-label-token.ts +++ b/src/utils/add-label-token.ts @@ -18,11 +18,11 @@ */ /** Generates a string with all the labels. For example `:Movie&Film` */ -export function addLabelToken(andToken: ":" | "&", ...labels: string[]): string { +export function addLabelToken(...labels: string[]): string { const firstLabel = labels.shift(); if (!firstLabel) return ""; - const extraLabels = labels.map((label) => `${andToken}${label}`).join(""); + const extraLabels = labels.map((label) => `&${label}`).join(""); return `:${firstLabel}${extraLabels}`; } diff --git a/tests/build-config/label-operator.test.ts b/tests/build-config/label-operator.test.ts deleted file mode 100644 index f807b5e6..00000000 --- a/tests/build-config/label-operator.test.ts +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Copyright (c) "Neo4j" - * Neo4j Sweden AB [http://neo4j.com] - * - * This file is part of Neo4j. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import Cypher from "../../src"; -import { TestClause } from "../../src/utils/TestClause"; - -describe.each([":", "&"] as const)("Config.labelOperator", (labelOperator) => { - test("Pattern", () => { - const node = new Cypher.Node(); - const query = new Cypher.Match(new Cypher.Pattern(node, { labels: ["Movie", "Film"] })); - - const queryResult = new TestClause(query).build({ - labelOperator, - }); - - expect(queryResult.cypher).toBe(`MATCH (this0:Movie${labelOperator}Film)`); - }); - - test("hasLabel", () => { - const node = new Cypher.Node(); - const query = new Cypher.Match(new Cypher.Pattern(node, { labels: ["Movie"] })).where( - node.hasLabels("Movie", "Film") - ); - - const queryResult = new TestClause(query).build({ - labelOperator, - }); - - expect(queryResult.cypher).toBe(`MATCH (this0:Movie) -WHERE this0:Movie${labelOperator}Film`); - }); -}); diff --git a/tests/issues/479.test.ts b/tests/issues/479.test.ts index b9ca5ad8..bd9ffd2e 100644 --- a/tests/issues/479.test.ts +++ b/tests/issues/479.test.ts @@ -116,7 +116,7 @@ RETURN count(this1)" expect(queryResult.cypher).toMatchInlineSnapshot(` "WITH $param0 AS var0 -MATCH (this1:$(var0):\`normal$Label\`:$($param1)) +MATCH (this1:$(var0)&\`normal$Label\`&$($param1)) RETURN count(this1)" `); From 2fe15f634b91d9940426df02c1e6d90f2a82a3c8 Mon Sep 17 00:00:00 2001 From: angrykoala Date: Wed, 15 Oct 2025 09:10:43 +0100 Subject: [PATCH 16/30] Remove apoc functions and procedures --- .changeset/fine-roses-film.md | 30 +++ src/Cypher.ts | 5 - src/clauses/With.test.ts | 7 +- src/namespaces/apoc/apoc.ts | 33 --- src/namespaces/apoc/cypher/cypher.ts | 20 -- .../apoc/cypher/run-first-column.test.ts | 191 ------------------ .../apoc/cypher/run-first-column.ts | 111 ---------- src/namespaces/apoc/date.test.ts | 66 ------ src/namespaces/apoc/date.ts | 44 ---- src/namespaces/apoc/util.test.ts | 54 ----- src/namespaces/apoc/util.ts | 51 ----- 11 files changed, 35 insertions(+), 577 deletions(-) create mode 100644 .changeset/fine-roses-film.md delete mode 100644 src/namespaces/apoc/apoc.ts delete mode 100644 src/namespaces/apoc/cypher/cypher.ts delete mode 100644 src/namespaces/apoc/cypher/run-first-column.test.ts delete mode 100644 src/namespaces/apoc/cypher/run-first-column.ts delete mode 100644 src/namespaces/apoc/date.test.ts delete mode 100644 src/namespaces/apoc/date.ts delete mode 100644 src/namespaces/apoc/util.test.ts delete mode 100644 src/namespaces/apoc/util.ts diff --git a/.changeset/fine-roses-film.md b/.changeset/fine-roses-film.md new file mode 100644 index 00000000..b6edc1f8 --- /dev/null +++ b/.changeset/fine-roses-film.md @@ -0,0 +1,30 @@ +--- +"@neo4j/cypher-builder": major +--- + +Remove all apoc functions and procedures: + +- `apoc.util.validate` +- `apoc.util.validatePredicate` +- `apoc.date.convertFormat` +- `apoc.cypher.runFirstColumnMany` +- `apoc.cypher.runFirstColumnSingle` + +In order to use apoc methods, create a custom function or procedure. For example: + +```js +function validate( + predicate: Predicate, + message: string, + params: List | Literal | Map +): VoidCypherProcedure { + return new VoidCypherProcedure("apoc.util.validate", [predicate, new Literal(message), params]); +} +``` + +```js +function validatePredicate(predicate: Predicate, message: string): CypherFunction { + return new CypherFunction("apoc.util.validatePredicate", [predicate, new Literal(message), new Literal([0])]); +} + +``` diff --git a/src/Cypher.ts b/src/Cypher.ts index 53fa6919..fe553c36 100644 --- a/src/Cypher.ts +++ b/src/Cypher.ts @@ -63,11 +63,6 @@ export { Collect } from "./expressions/subquery/Collect"; export { Count } from "./expressions/subquery/Count"; export { Exists } from "./expressions/subquery/Exists"; -/** - * @hideGroups - */ -export * as apoc from "./namespaces/apoc/apoc"; - export * as db from "./namespaces/db/db"; /** * @hideGroups diff --git a/src/clauses/With.test.ts b/src/clauses/With.test.ts index aad22123..f911fb89 100644 --- a/src/clauses/With.test.ts +++ b/src/clauses/With.test.ts @@ -286,12 +286,15 @@ CALL db.labels() YIELD label" }); test("With * and cypher void procedure", () => { - const withQuery = new Cypher.With("*").callProcedure(Cypher.apoc.util.validate(Cypher.true, "message")); + const targetNode = new Cypher.Node(); + const customProcedure = new Cypher.VoidProcedure("customProcedure", [targetNode]); + + const withQuery = new Cypher.With("*").callProcedure(customProcedure); const queryResult = withQuery.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` "WITH * -CALL apoc.util.validate(true, \\"message\\", [0])" +CALL customProcedure(this0)" `); expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); diff --git a/src/namespaces/apoc/apoc.ts b/src/namespaces/apoc/apoc.ts deleted file mode 100644 index bd5c8859..00000000 --- a/src/namespaces/apoc/apoc.ts +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Copyright (c) "Neo4j" - * Neo4j Sweden AB [http://neo4j.com] - * - * This file is part of Neo4j. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/** Functions and procedures in `apoc.date` - * @see [Apoc Documentation](https://neo4j.com/docs/apoc/current/overview/apoc.date/) - */ -export * as date from "./date"; - -/** Functions and procedures in `apoc.util` - * @see [Apoc Documentation](https://neo4j.com/docs/apoc/current/overview/apoc.util/) - */ -export * as util from "./util"; - -/** Functions and procedures in `apoc.cypher` - * @see [Apoc Documentation](https://neo4j.com/docs/apoc/current/overview/apoc.cypher/) - */ -export * as cypher from "./cypher/cypher"; diff --git a/src/namespaces/apoc/cypher/cypher.ts b/src/namespaces/apoc/cypher/cypher.ts deleted file mode 100644 index 3bd8046a..00000000 --- a/src/namespaces/apoc/cypher/cypher.ts +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Copyright (c) "Neo4j" - * Neo4j Sweden AB [http://neo4j.com] - * - * This file is part of Neo4j. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -export { runFirstColumnMany, runFirstColumnSingle } from "./run-first-column"; diff --git a/src/namespaces/apoc/cypher/run-first-column.test.ts b/src/namespaces/apoc/cypher/run-first-column.test.ts deleted file mode 100644 index 5d1dddd4..00000000 --- a/src/namespaces/apoc/cypher/run-first-column.test.ts +++ /dev/null @@ -1,191 +0,0 @@ -/* - * Copyright (c) "Neo4j" - * Neo4j Sweden AB [http://neo4j.com] - * - * This file is part of Neo4j. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import Cypher from "../../.."; -import { TestClause } from "../../../utils/TestClause"; - -describe("apoc.cypher", () => { - test("runFirstColumnSingle", () => { - const node = new Cypher.Node(); - const subquery = new Cypher.Match(new Cypher.Pattern(node, { labels: ["Movie"] })).return(node); - - const apocRunFirstColum = Cypher.apoc.cypher.runFirstColumnSingle(subquery); - const queryResult = new TestClause(apocRunFirstColum).build(); - expect(queryResult.cypher).toMatchInlineSnapshot(` - "apoc.cypher.runFirstColumnSingle(\\"MATCH (this0:Movie) - RETURN this0\\", { })" - `); - - expect(queryResult.params).toMatchInlineSnapshot(`{}`); - }); - - test("runFirstColumnSingle with parameters", () => { - const node = new Cypher.Node(); - const subquery = new Cypher.Match(new Cypher.Pattern(node, { labels: ["Movie"] })).return(node); - - const apocRunFirstColum = Cypher.apoc.cypher.runFirstColumnSingle(subquery, [node]); - const queryResult = new TestClause(apocRunFirstColum).build(); - expect(queryResult.cypher).toMatchInlineSnapshot(` - "apoc.cypher.runFirstColumnSingle(\\"MATCH (this0:Movie) - RETURN this0\\", { this0: this0 })" - `); - - expect(queryResult.params).toMatchInlineSnapshot(`{}`); - }); - - test("runFirstColumnMany", () => { - const node = new Cypher.Node(); - const subquery = new Cypher.Match(new Cypher.Pattern(node, { labels: ["Movie"] })).return(node); - - const apocRunFirstColum = Cypher.apoc.cypher.runFirstColumnMany(subquery); - const queryResult = new TestClause(apocRunFirstColum).build(); - expect(queryResult.cypher).toMatchInlineSnapshot(` - "apoc.cypher.runFirstColumnMany(\\"MATCH (this0:Movie) - RETURN this0\\", { })" - `); - - expect(queryResult.params).toMatchInlineSnapshot(`{}`); - }); - - test("runFirstColumnMany with parameters", () => { - const node = new Cypher.Node(); - const subquery = new Cypher.Match(new Cypher.Pattern(node, { labels: ["Movie"] })).return(node); - - const apocRunFirstColum = Cypher.apoc.cypher.runFirstColumnMany(subquery, [node]); - const queryResult = new TestClause(apocRunFirstColum).build(); - expect(queryResult.cypher).toMatchInlineSnapshot(` - "apoc.cypher.runFirstColumnMany(\\"MATCH (this0:Movie) - RETURN this0\\", { this0: this0 })" - `); - - expect(queryResult.params).toMatchInlineSnapshot(`{}`); - }); - - test("runFirstColumn with string", () => { - const node = new Cypher.Node(); - const subquery = "MATCH (n:Film) RETURN n"; - - const apocRunFirstColum = Cypher.apoc.cypher.runFirstColumnSingle(subquery, [node]); - const queryResult = new TestClause(apocRunFirstColum).build(); - expect(queryResult.cypher).toMatchInlineSnapshot( - `"apoc.cypher.runFirstColumnSingle(\\"MATCH (n:Film) RETURN n\\", { this0: this0 })"` - ); - - expect(queryResult.params).toMatchInlineSnapshot(`{}`); - }); - - test("runFirstColumn with a map for parameters", () => { - const node = new Cypher.Node(); - const subquery = "MATCH (n) RETURN n"; - - const params = new Cypher.Map({ - n: node, - param: new Cypher.Param("Test param"), - }); - - const apocRunFirstColum = Cypher.apoc.cypher.runFirstColumnSingle(subquery, params); - const queryResult = new TestClause(apocRunFirstColum).build(); - expect(queryResult.cypher).toMatchInlineSnapshot( - `"apoc.cypher.runFirstColumnSingle(\\"MATCH (n) RETURN n\\", { n: this0, param: $param0 })"` - ); - - expect(queryResult.params).toMatchInlineSnapshot(` - { - "param0": "Test param", - } - `); - }); - - test("Complex subquery with scoped env and params", () => { - const node = new Cypher.Node(); - const param1 = new Cypher.Param("The Matrix"); - - const topQuery = new Cypher.Match(new Cypher.Pattern(node, { labels: ["Movie"] })).where( - Cypher.eq(node.property("title"), param1) - ); - - const nestedPattern = new Cypher.Pattern(node); - const releasedParam = new Cypher.Param(1999); - const subQuery = new Cypher.Match(nestedPattern).set([node.property("released"), releasedParam]).return(node); - const apocCall = Cypher.apoc.cypher.runFirstColumnMany(subQuery, [node, releasedParam]); - - topQuery.return( - new Cypher.Map({ - result: apocCall, - }) - ); - - const cypherResult = topQuery.build(); - - expect(cypherResult.cypher).toMatchInlineSnapshot(` - "MATCH (this0:Movie) - WHERE this0.title = $param0 - RETURN { result: apoc.cypher.runFirstColumnMany(\\"MATCH (this0) - SET - this0.released = $param1 - RETURN this0\\", { this0: this0, param1: $param1 }) }" - `); - expect(cypherResult.params).toMatchInlineSnapshot(` - { - "param0": "The Matrix", - "param1": 1999, - } - `); - }); - - test("runFirstColumn with an object for parameters", () => { - const node = new Cypher.Node(); - const subquery = "MATCH (n) RETURN n"; - - const params = { - n: node, - param: new Cypher.Param("Test param"), - }; - - const apocRunFirstColum = Cypher.apoc.cypher.runFirstColumnSingle(subquery, params); - const queryResult = new TestClause(apocRunFirstColum).build(); - expect(queryResult.cypher).toMatchInlineSnapshot( - `"apoc.cypher.runFirstColumnSingle(\\"MATCH (n) RETURN n\\", { n: this0, param: $param0 })"` - ); - - expect(queryResult.params).toMatchInlineSnapshot(` - { - "param0": "Test param", - } - `); - }); - - test("runFirstColumnSingle", () => { - const node = new Cypher.Node(); - - const nestedSubquery = new Cypher.Match(new Cypher.Pattern(node, { labels: ["Movie"] })).return(node); - const nestedRunFirstColumn = Cypher.apoc.cypher.runFirstColumnSingle(nestedSubquery); - - const subquery = new Cypher.Return([nestedRunFirstColumn, "result"]); - - const apocRunFirstColum = Cypher.apoc.cypher.runFirstColumnSingle(subquery); - const queryResult = new TestClause(apocRunFirstColum).build(); - expect(queryResult.cypher).toMatchInlineSnapshot(` - "apoc.cypher.runFirstColumnSingle(\\"RETURN apoc.cypher.runFirstColumnSingle(\\\\\\"MATCH (this0:Movie) - RETURN this0\\\\\\", { }) AS result\\", { })" - `); - - expect(queryResult.params).toMatchInlineSnapshot(`{}`); - }); -}); diff --git a/src/namespaces/apoc/cypher/run-first-column.ts b/src/namespaces/apoc/cypher/run-first-column.ts deleted file mode 100644 index 552c004d..00000000 --- a/src/namespaces/apoc/cypher/run-first-column.ts +++ /dev/null @@ -1,111 +0,0 @@ -/* - * Copyright (c) "Neo4j" - * Neo4j Sweden AB [http://neo4j.com] - * - * This file is part of Neo4j. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import type { CypherEnvironment } from "../../../Environment"; -import type { Clause } from "../../../clauses/Clause"; -import { CypherFunction } from "../../../expressions/functions/CypherFunctions"; -import { MapExpr } from "../../../expressions/map/MapExpr"; -import type { Variable } from "../../../references/Variable"; -import type { Expr } from "../../../types"; - -/** - * @group Functions - * @deprecated apoc methods will no longer be supported in Cypher Builder version 3 - * @see [Apoc Documentation](https://neo4j.com/docs/apoc/current/overview/apoc.cypher/apoc.cypher.runFirstColumnMany/) - */ -export function runFirstColumnMany( - clause: Clause | string, - params: Variable[] | MapExpr | Record = [] -): CypherFunction { - return new RunFirstColumnFunction(clause, params, true); -} - -/** - * @group Functions - * @deprecated apoc methods will no longer be supported in Cypher Builder version 3 - * @see [Apoc Documentation](https://neo4j.com/docs/apoc/current/overview/apoc.cypher/apoc.cypher.runFirstColumnSingle/) - */ -export function runFirstColumnSingle( - clause: Clause | string, - params: Variable[] | MapExpr | Record = [] -): CypherFunction { - return new RunFirstColumnFunction(clause, params, false); -} - -class RunFirstColumnFunction extends CypherFunction { - private readonly innerClause: Clause | string; - private readonly variables: Variable[] | MapExpr; - private readonly many: boolean; - - constructor(clause: Clause | string, variables: Variable[] | MapExpr | Record, many: boolean) { - super(`apoc.cypher.runFirstColumn${many ? "Many" : "Single"}`); // Note: this argument is never used - - this.innerClause = clause; - this.variables = this.parseVariablesInput(variables); - this.many = many; - } - - /** @internal */ - public getCypher(env: CypherEnvironment): string { - let clauseStr: string; - let paramsStr: string; - if (typeof this.innerClause === "string") { - clauseStr = this.innerClause; - } else { - clauseStr = this.innerClause.getRoot().getCypher(env); - } - - if (Array.isArray(this.variables)) { - paramsStr = this.convertArrayToParams(env, this.variables); - } else { - paramsStr = this.variables.getCypher(env); - } - - if (this.many) { - return `apoc.cypher.runFirstColumnMany("${this.escapeQuery(clauseStr)}", ${paramsStr})`; - } - - return `apoc.cypher.runFirstColumnSingle("${this.escapeQuery(clauseStr)}", ${paramsStr})`; - } - - private escapeQuery(query: string): string { - return query.replace(/(["\\])/g, "\\$1"); - } - - private parseVariablesInput(variables: Variable[] | MapExpr | Record): Variable[] | MapExpr { - if (Array.isArray(variables) || variables instanceof MapExpr) return variables; - return new MapExpr(variables); - } - - private convertArrayToParams(env: CypherEnvironment, variables: Variable[]): string { - const params = variables.reduce((acc: Record, variable) => { - const globalScopeName = variable.getCypher(env); - const key = env.getReferenceId(variable); - acc[key] = globalScopeName; - return acc; - }, {}); - - const paramsStr = Object.entries(params) - .map(([key, value]) => { - return `${key}: ${value}`; - }) - .join(", "); - return `{ ${paramsStr} }`; - } -} diff --git a/src/namespaces/apoc/date.test.ts b/src/namespaces/apoc/date.test.ts deleted file mode 100644 index 06e4489c..00000000 --- a/src/namespaces/apoc/date.test.ts +++ /dev/null @@ -1,66 +0,0 @@ -/* - * Copyright (c) "Neo4j" - * Neo4j Sweden AB [http://neo4j.com] - * - * This file is part of Neo4j. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import { TestClause } from "../../utils/TestClause"; -import Cypher from "../.."; - -describe("apoc.date", () => { - test("convertFormat", () => { - const convertFormat = Cypher.apoc.date.convertFormat( - new Cypher.Variable(), - "iso_zoned_date_time", - "iso_offset_date_time" - ); - - const queryResult = new TestClause(convertFormat).build(); - - expect(queryResult.cypher).toMatchInlineSnapshot( - `"apoc.date.convertFormat(toString(var0), \\"iso_zoned_date_time\\", \\"iso_offset_date_time\\")"` - ); - - expect(queryResult.params).toMatchInlineSnapshot(`{}`); - }); - test("convertFormat with expression", () => { - const convertFormat = Cypher.apoc.date.convertFormat( - Cypher.max(new Cypher.Variable()), - "iso_zoned_date_time", - "iso_offset_date_time" - ); - - const queryResult = new TestClause(convertFormat).build(); - - expect(queryResult.cypher).toMatchInlineSnapshot( - `"apoc.date.convertFormat(toString(max(var0)), \\"iso_zoned_date_time\\", \\"iso_offset_date_time\\")"` - ); - - expect(queryResult.params).toMatchInlineSnapshot(`{}`); - }); - - test("convertFormat with default convertTo", () => { - const convertFormat = Cypher.apoc.date.convertFormat(new Cypher.Variable(), "iso_zoned_date_time"); - - const queryResult = new TestClause(convertFormat).build(); - - expect(queryResult.cypher).toMatchInlineSnapshot( - `"apoc.date.convertFormat(toString(var0), \\"iso_zoned_date_time\\", \\"yyyy-MM-dd\\")"` - ); - - expect(queryResult.params).toMatchInlineSnapshot(`{}`); - }); -}); diff --git a/src/namespaces/apoc/date.ts b/src/namespaces/apoc/date.ts deleted file mode 100644 index f0b77d5d..00000000 --- a/src/namespaces/apoc/date.ts +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Copyright (c) "Neo4j" - * Neo4j Sweden AB [http://neo4j.com] - * - * This file is part of Neo4j. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import { CypherFunction } from "../../expressions/functions/CypherFunctions"; -import { toString } from "../../expressions/functions/string"; -import { Literal } from "../../references/Literal"; -import type { Expr } from "../../types"; - -/** - * @group Functions - * @see [Apoc Documentation](https://neo4j.com/docs/apoc/current/overview/apoc.date/apoc.date.convertFormat/) - * @deprecated apoc methods will no longer be supported in Cypher Builder version 3 - * @example - * ```ts - * Cypher.apoc.date.convertFormat( - * new Cypher.Param("2020-11-04"), - * "date", - * "basic_date" - * ) - *``` - */ -export function convertFormat(temporalParam: Expr, currentFormat: string, convertTo = "yyyy-MM-dd"): CypherFunction { - return new CypherFunction("apoc.date.convertFormat", [ - toString(temporalParam), // NOTE: should this be `toString` by default? - new Literal(currentFormat), - new Literal(convertTo), - ]); -} diff --git a/src/namespaces/apoc/util.test.ts b/src/namespaces/apoc/util.test.ts deleted file mode 100644 index 1a23f595..00000000 --- a/src/namespaces/apoc/util.test.ts +++ /dev/null @@ -1,54 +0,0 @@ -/* - * Copyright (c) "Neo4j" - * Neo4j Sweden AB [http://neo4j.com] - * - * This file is part of Neo4j. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import Cypher from "../.."; -describe("apoc.util", () => { - describe("Validate", () => { - test("Simple Validate", () => { - const validate = Cypher.apoc.util.validate( - Cypher.eq(new Cypher.Literal(1), new Cypher.Literal(2)), - "That's not how math works" - ); - expect(validate.build().cypher).toMatchInlineSnapshot( - `"CALL apoc.util.validate(1 = 2, \\"That's not how math works\\", [0])"` - ); - }); - }); - - describe("ValidatePredicate", () => { - test("Simple validatePredicate", () => { - const node = new Cypher.Node(); - const validatePredicate = Cypher.apoc.util.validatePredicate( - Cypher.eq(new Cypher.Literal(1), new Cypher.Literal(2)), - "That's not how math works" - ); - - const query = new Cypher.Match(new Cypher.Pattern(node, { labels: ["Movie"] })); - query.where(validatePredicate).return(node); - - const { cypher, params } = query.build(); - expect(cypher).toMatchInlineSnapshot(` - "MATCH (this0:Movie) - WHERE apoc.util.validatePredicate(1 = 2, \\"That's not how math works\\", [0]) - RETURN this0" - `); - expect(params).toMatchInlineSnapshot(`{}`); - }); - }); -}); diff --git a/src/namespaces/apoc/util.ts b/src/namespaces/apoc/util.ts deleted file mode 100644 index 00677ac7..00000000 --- a/src/namespaces/apoc/util.ts +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Copyright (c) "Neo4j" - * Neo4j Sweden AB [http://neo4j.com] - * - * This file is part of Neo4j. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import { CypherFunction } from "../../expressions/functions/CypherFunctions"; -import type { ListExpr as List } from "../../expressions/list/ListExpr"; -import type { MapExpr as Map } from "../../expressions/map/MapExpr"; -import { VoidCypherProcedure } from "../../procedures/CypherProcedure"; -import { Literal } from "../../references/Literal"; -import type { Predicate } from "../../types"; -import { normalizeVariable } from "../../utils/normalize-variable"; - -/** - * @group Procedures - * @deprecated apoc methods will no longer be supported in Cypher Builder version 3 - * @see [Apoc Documentation](https://neo4j.com/docs/apoc/current/overview/apoc.util/apoc.util.validate/) - */ -export function validate( - predicate: Predicate, - message: string | Literal, - params: List | Literal | Map = new Literal([0]) -): VoidCypherProcedure { - const messageVar = normalizeVariable(message); - return new VoidCypherProcedure("apoc.util.validate", [predicate, messageVar, params]); -} - -/** - * @group Functions - * @deprecated apoc methods will no longer be supported in Cypher Builder version 3 - * @see [Apoc Documentation](https://neo4j.com/docs/apoc/current/overview/apoc.util/apoc.util.validatePredicate/) - */ -export function validatePredicate(predicate: Predicate, message: string): CypherFunction { - const defaultParam = new Literal([0]); - - return new CypherFunction("apoc.util.validatePredicate", [predicate, new Literal(message), defaultParam]); -} From b6cd8caa3283c78e625d624f5b1f1d2ba0918643 Mon Sep 17 00:00:00 2001 From: angrykoala Date: Wed, 22 Oct 2025 11:01:47 +0100 Subject: [PATCH 17/30] Fix lint and prettier --- src/pattern/Pattern.test.ts | 8 ++++++-- src/references/Label.ts | 4 ++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/pattern/Pattern.test.ts b/src/pattern/Pattern.test.ts index 888ec48c..e7db0bff 100644 --- a/src/pattern/Pattern.test.ts +++ b/src/pattern/Pattern.test.ts @@ -191,7 +191,9 @@ describe("Patterns", () => { .to(b) ); const queryResult = query.build(); - expect(queryResult.cypher).toMatchInlineSnapshot(`"(this0:Person&Actor { name: $param0, surname: $param1 })-[this1:ACTED_IN { roles: $param2 }]->(this2)"`); + expect(queryResult.cypher).toMatchInlineSnapshot( + `"(this0:Person&Actor { name: $param0, surname: $param1 })-[this1:ACTED_IN { roles: $param2 }]->(this2)"` + ); expect(queryResult.params).toMatchInlineSnapshot(` { @@ -223,7 +225,9 @@ describe("Patterns", () => { .to(b) ); const queryResult = query.build(); - expect(queryResult.cypher).toMatchInlineSnapshot(`"(this0:Person&Actor)-[this1:ACTED_IN { roles: (\\"The \\" + \\"Matrix\\") }]->(this2)"`); + expect(queryResult.cypher).toMatchInlineSnapshot( + `"(this0:Person&Actor)-[this1:ACTED_IN { roles: (\\"The \\" + \\"Matrix\\") }]->(this2)"` + ); expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); diff --git a/src/references/Label.ts b/src/references/Label.ts index 1abdbca0..cb6b7594 100644 --- a/src/references/Label.ts +++ b/src/references/Label.ts @@ -53,11 +53,11 @@ export class Label extends CypherASTNode { /** @internal */ public getCypher(env: CypherEnvironment): string { const nodeId = this.node.getCypher(env); - const labelsStr = this.generateLabelExpressionStr(env); + const labelsStr = this.generateLabelExpressionStr(); return `${nodeId}${labelsStr}`; } - private generateLabelExpressionStr(env: CypherEnvironment): string { + private generateLabelExpressionStr(): string { return addLabelToken(escapeLabel(this.label)); } } From 56720a29e8347a4c293930d5754a1725b27acaa2 Mon Sep 17 00:00:00 2001 From: angrykoala Date: Wed, 22 Oct 2025 13:05:38 +0100 Subject: [PATCH 18/30] Add alternative in changelog --- .changeset/common-cycles-obey.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.changeset/common-cycles-obey.md b/.changeset/common-cycles-obey.md index 6ca5c806..e26895e4 100644 --- a/.changeset/common-cycles-obey.md +++ b/.changeset/common-cycles-obey.md @@ -9,3 +9,5 @@ _No longer supported_ ```js Cypher.size(new Cypher.Pattern(node)); ``` + +Use `new Cypher.Count(pattern)` instead. From a49bc98155f7cbba065e27b79a901eaac54966b8 Mon Sep 17 00:00:00 2001 From: angrykoala Date: Wed, 29 Oct 2025 17:24:02 +0000 Subject: [PATCH 19/30] WIP migration guide for v3 --- .changeset/easy-horses-repeat.md | 2 +- docs/modules/ROOT/content-nav.adoc | 1 + .../modules/ROOT/pages/migration-guide-2.adoc | 2 +- .../modules/ROOT/pages/migration-guide-3.adoc | 293 ++++++++++++++++++ 4 files changed, 296 insertions(+), 2 deletions(-) create mode 100644 docs/modules/ROOT/pages/migration-guide-3.adoc diff --git a/.changeset/easy-horses-repeat.md b/.changeset/easy-horses-repeat.md index 267ae183..4f2a828d 100644 --- a/.changeset/easy-horses-repeat.md +++ b/.changeset/easy-horses-repeat.md @@ -14,7 +14,7 @@ const { cypher, params } = matchQuery.build({ _Before_ -```js +```cypher MATCH (this1:Movie:Film) ``` diff --git a/docs/modules/ROOT/content-nav.adoc b/docs/modules/ROOT/content-nav.adoc index 14df508d..f2e7c152 100644 --- a/docs/modules/ROOT/content-nav.adoc +++ b/docs/modules/ROOT/content-nav.adoc @@ -45,5 +45,6 @@ ** xref:how-to/define-cypher-version.adoc[] * xref:compatibility.adoc[] * xref:migration-guide-2.adoc[] +* xref:migration-guide-3.adoc[] * link:https://github.com/neo4j/cypher-builder/tree/main/examples[Examples] * link:https://neo4j.github.io/cypher-builder/reference/[Reference] diff --git a/docs/modules/ROOT/pages/migration-guide-2.adoc b/docs/modules/ROOT/pages/migration-guide-2.adoc index eccec4dc..533aadde 100644 --- a/docs/modules/ROOT/pages/migration-guide-2.adoc +++ b/docs/modules/ROOT/pages/migration-guide-2.adoc @@ -1,4 +1,4 @@ -[[migration]] +[[migration-2]] :description: This page describes how to migrate to version 2.x = Migration to Cypher Builder 2 diff --git a/docs/modules/ROOT/pages/migration-guide-3.adoc b/docs/modules/ROOT/pages/migration-guide-3.adoc new file mode 100644 index 00000000..87f2550f --- /dev/null +++ b/docs/modules/ROOT/pages/migration-guide-3.adoc @@ -0,0 +1,293 @@ +[[migration]] +:description: This page describes how to migrate to version 3.x from version 2 += Migration to Cypher Builder 3 + +Cypher Builder 3 targets Cypher 5 and 25, dropping support for Cypher 4. If you need to support Cypher 4, stay with Cypher Builder 2.x, otherwise, migrate to version 3. + +== Compatibility changes + +=== Minimum node engine changed to 20.0.0 + +Node.js 16 is no longer supported. Update to version 20.0.0 or above. + +=== Cypher 4 no longer supported + +Cypher 4, and Neo4j 4 databases are no longer supported. Cypher Builder targets Cypher 5 and 25 only. + + + + +== Remove support for apoc + +No apoc functions or procedures are supported in Cypher Builder 3. The following are no longer available: + +- `apoc.util.validate` +- `apoc.util.validatePredicate` +- `apoc.date.convertFormat` +- `apoc.cypher.runFirstColumnMany` +- `apoc.cypher.runFirstColumnSingle` + +To use apoc methods, create a xref:how-to/customize-cypher.adoc#_custom_functions_and_procedures[custom function or procedure]. For example: + +[source, Javascript] +---- +function validate( + predicate: Predicate, + message: string, + params: List | Literal | Map +): Cypher.VoidCypherProcedure { + return new Cypher.VoidCypherProcedure( + "apoc.util.validate", + [predicate, new Literal(message), params] + ); +} +---- + +[source, Javascript] +---- +function validatePredicate(predicate: Predicate, message: string): CypherFunction { + return new CypherFunction(" + apoc.util.validatePredicate", + [predicate, new Literal(message), new Literal([0])] + ); +} +---- + +== Cypher 4 only features + +The following features have been either removed or deprecated in Cypher 5, and are no longer available in Cypher Builder 3 + + +=== Remove functions deprecated in Cypher 5 + +- `distance` in favor of `point.distance` +- `id` in favor of `elementId` + +=== Remove support for patterns in size + +_No longer supported_ + +[source, javascript] +---- +Cypher.size(new Cypher.Pattern(node)); +---- + +[source, Cypher] +---- +size((this0)); +---- + +Instead, use `new Cypher.Count`: + +[source, javascript] +---- +new Cypher.Count(new Cypher.Pattern(node)); +---- + +[source, Cypher] +---- +COUNT { + (this0) +} +---- + + +=== Remove `labelOperator` + +Removed option `labelOperator`. All labels now use operator `&` + + +_No longer supported_ + +[source, javascript] +---- +const { cypher, params } = matchQuery.build({ + labelOperator: "&", +}); +---- + + +_Before_ + +[source, Cypher] +---- +MATCH (this1:Movie:Film) +---- + +_After_ + +[source, Cypher] +---- +MATCH (this1:Movie&Film) +---- + + +=== Remove `.importWith` from `Call` + +Remove `.importWith` from `Call` clauses in favor of constructor options + +_No longer supported_ + +[source, Javascript] +---- +const clause = new Cypher.Call(nestedClause).importWith(movieNode, actorNode); +---- + +[source, Cypher] +---- +CALL { + WITH var0, var1 + // Nested clause +} +---- + +_After_ + +[source, Javascript] +---- +const clause = new Cypher.Call(nestedClause, [movieNode, actorNode]); +---- + +[source, Cypher] +---- +CALL (var0, var1){ + // Nested clause +} +---- + + +== ListComprehension + +The methods for `ListComprehension` have been changed to improve consistency with other elements of Cypher Builder. + + +=== Remove second parameter of constructor +Remove second parameter of `ListComprehension` constructor in favor of `.in` + +Before: +[source, javascript] +---- +new Cypher.ListComprehension(variable, new Cypher.Literal([1, 2])); +---- + +After: +[source, javascript] +---- +new Cypher.ListComprehension(variable).in(new Cypher.Literal([1, 2])); +---- + +In both cases, the same comprehension will be generated: + +```cypher +[var0 IN [1, 2]] +``` + +=== ListComprehension `.in` method no longer throws if called twice. + +ListComprehension `.in` method no longer throws if called twice. It will instead override the expression + +Before, it will throw: +[source, javascript] +---- +new Cypher.ListComprehension(variable).in(new Cypher.Literal([1, 2])).in(new Cypher.Literal([1])) +---- + +After, this is valid: +[source, javascript] +---- +new Cypher.ListComprehension(variable).in(new Cypher.Literal([1, 2])).in(new Cypher.Literal([1])) +---- + +Will generate the following Cypher: + +[source, cypher] +---- +[var0 IN [1]] +---- + +Note that the same Cypher is generated if we omit the first `.in`: + +After, this is valid: +[source, javascript] +---- +new Cypher.ListComprehension(variable).in(new Cypher.Literal([1])) +---- + + +== Foreach + +The methods for `Foreach` have been changed to improve consistency with other elements of Cypher Builder. + +=== Remove extra parameters in `Cypher.Foreach` constructor +Remove extra parameters in `Cypher.Foreach` constructor in favor of methods `in` and `do`. + +For example, to create the following Cypher: + +[source, Cypher] +---- +FOREACH (var0 IN [1, 2, 3] | + CREATE (this1:Movie) + SET + this1.id = var0 + ) +---- + +_before_ + +[source, javascript] +---- +const list = new Cypher.Literal([1, 2, 3]); +const variable = new Cypher.Variable(); + +const movieNode = new Cypher.Node(); +const createMovie = new Cypher.Create(new Cypher.Pattern(movieNode, { labels: ["Movie"] })).set([ + movieNode.property("id"), + variable, +]); + +const foreachClause = new Cypher.Foreach(variable, list, createMovie); +---- + +_after_ + +[source, javascript] +---- +const list = new Cypher.Literal([1, 2, 3]); +const variable = new Cypher.Variable(); + +const movieNode = new Cypher.Node(); +const createMovie = new Cypher.Create(new Cypher.Pattern(movieNode, { labels: ["Movie"] })).set([ + movieNode.property("id"), + variable, +]); + +const foreachClause = new Cypher.Foreach(variable).in(list).do(createMovie); +---- + +== Other breaking changes + +=== Remove method `.children` from concat clauses + +[source, Javascript] +---- +const query = Cypher.utils.concat(clause1, clause2); +query.children; // No longer supported +---- + +=== Remove type `Cypher.Operation` +Remove type `Cypher.Operation` in favor of `Cypher.Expr` + +The type `Cypher.Operation` is no longer availabe, use `Cypher.Expr` instead: + +Before: +[source, javascript] +---- +const myOperation: Cypher.Operation = Cypher.and() +---- + +After: +[source, javascript] +---- +const myOperation: Cypher.Expr = Cypher.and() +---- + From b7bf8e22fbff4ac77d3d823f6831b1b162856a4e Mon Sep 17 00:00:00 2001 From: angrykoala Date: Thu, 30 Oct 2025 16:55:11 +0000 Subject: [PATCH 20/30] Add migration guide for version 3 --- docs/modules/ROOT/content-nav.adoc | 1 - .../modules/ROOT/pages/migration-guide-2.adoc | 450 ------------------ .../modules/ROOT/pages/migration-guide-3.adoc | 131 +++-- 3 files changed, 60 insertions(+), 522 deletions(-) delete mode 100644 docs/modules/ROOT/pages/migration-guide-2.adoc diff --git a/docs/modules/ROOT/content-nav.adoc b/docs/modules/ROOT/content-nav.adoc index f2e7c152..1a248a0a 100644 --- a/docs/modules/ROOT/content-nav.adoc +++ b/docs/modules/ROOT/content-nav.adoc @@ -44,7 +44,6 @@ ** xref:how-to/update-labels.adoc[] ** xref:how-to/define-cypher-version.adoc[] * xref:compatibility.adoc[] -* xref:migration-guide-2.adoc[] * xref:migration-guide-3.adoc[] * link:https://github.com/neo4j/cypher-builder/tree/main/examples[Examples] * link:https://neo4j.github.io/cypher-builder/reference/[Reference] diff --git a/docs/modules/ROOT/pages/migration-guide-2.adoc b/docs/modules/ROOT/pages/migration-guide-2.adoc deleted file mode 100644 index 533aadde..00000000 --- a/docs/modules/ROOT/pages/migration-guide-2.adoc +++ /dev/null @@ -1,450 +0,0 @@ -[[migration-2]] -:description: This page describes how to migrate to version 2.x -= Migration to Cypher Builder 2 - -This guide describes the changes required to migrate from Cypher Builder 1.x to 2.0, as well as some breaking changes that may affect projects using Cypher Builder. - -The full, up to date changelog can be found link:https://github.com/neo4j/cypher-builder/blob/main/CHANGELOG.md[here]. - -== Patterns - -xref:patterns.adoc[Patterns] have been reworked in version 1.x, and the old behavior have been removed in version 2.0. - - -=== Node shorthand removed from clauses - -Clauses using Patterns no longer accept a `Cypher.Node` as a shorthand. An explicit pattern must be provided: - - -Before: -[source, javascript] ----- -const movieNode = new Cypher.Node(); - -const matchQuery = new Cypher.Match(movieNode) ----- - - -Now: -[source, javascript] ----- -const movieNode = new Cypher.Node(); - -const matchQuery = new Cypher.Match( - new Cypher.Pattern(movieNode) -); ----- - -This affects all clauses using patterns: - -* `Cypher.Match` -* `Cypher.Create` -* `Cypher.Merge` - -This also affects pattern comprehensions `Cypher.PatternComprehension`. - - -=== Patterns no longer create a variable by default - -Creating a Pattern without options will no longer add variables to the generated Cypher: - -[source, javascript] ----- -const pattern = new Cypher.Pattern() ----- - -Before - -[source, cypher] ----- -(this0) ----- - -Now - -[source, cypher] ----- -() ----- - -To add a variable, it must be passed when creating the pattern: - -[source, javascript] ----- -const movieNode = new Cypher.Node(); -const pattern = new Cypher.Pattern(movieNode) ----- - - -==== `.getVariables` - -The method `.getVariables` has been removed from Patterns, as Patterns no longer create variables, `getVariables` is no longer useful. - -=== Patterns configuration - -The following methods to configure the resulting pattern have been removed from `Pattern`: - -- `.withoutLabels` -- `.withoutVariable` -- `.withProperties` -- `.withVariables` -- `.withoutType` -- `.withDirection` -- `.withLength` - -Instead, Patterns are now configured through objects in the constructor, as well as the `related` and `to` methods: - -Before -[source, javascript] ----- -const a = new Cypher.Node({ - labels: ["Person", "Actor"], -}); - -const aProperties = { - name: new Cypher.Param("Arthur"), - surname: new Cypher.Param("Dent"), -}; -const b = new Cypher.Node(); -const rel = new Cypher.Relationship({ - type: "ACTED_IN", -}); - -new Cypher.Pattern(a) - .withProperties({a: new Cypher.Param("Example")}) - .withoutVariable() - .related(rel) - .to(b) ----- - -Now - -[source, javascript] ----- -const aProperties = { - name: new Cypher.Param("Arthur"), - surname: new Cypher.Param("Dent"), -}; -const b = new Cypher.Node(); -const rel = new Cypher.Relationship(); - - -new Cypher.Pattern({ properties: aProperties, labels: ["Person", "Actor"] }) - .related(rel, { type: "ACTED_IN"}) - .to(b) ----- - - -The generated Cypher: - -[source, Cypher] ----- -(:Person:Actor { name: $param0, surname: $param1 })-[this1:ACTED_IN]->(this2) ----- - -Note that labels and types are now defined in the Pattern, not in the `Node` and `Relationship` classes. - -=== Assign to path variable - -The method `assignToPath` has been removed in the following clauses: - -- `Match` -- `Merge` -- `Create` - -Instead, the method `assignTo` in `Patterns` must be used: - -Before: - -```js -const pathVariable = new Cypher.Cypher.PathVariable() -new Cypher.Match(pattern).assignToPath(pathVariable).return(pathVariable); -``` - -Now: - -```js -const pathVariable = new Cypher.Cypher.PathVariable() -new Cypher.Match(pattern.assignTo(pathVariable)).return(pathVariable); -``` - -Generates the Cypher: - -```cypher -MATCH p = ()-[]-() -RETURN p -``` - - -== Node and Relationship variables - -`Cypher.Node` and `Cypher.Relationship` no longer hold any data about labels, or types. Making them more similar to `Cypher.Variable`. To add labels or types, these need to be passed to the `Cypher.Pattern` instead of relying on `Cypher.Node` and `Cypher.Relationship`. - -Before -[source, javascript] ----- -const a = new Cypher.Node({ - labels: ["Person", "Actor"], -}); -const b = new Cypher.Node(); -const rel = new Cypher.Relationship({ - type: "ACTED_IN", -}); - -new Cypher.Pattern(a) - .related(rel) - .to(b) ----- - -Now - -[source, javascript] ----- -const a = new Cypher.Node(); -const b = new Cypher.Node(); -const rel = new Cypher.Relationship(); - - -new Cypher.Pattern(a, { labels: ["Person", "Actor"] }) - .related(rel, { type: "ACTED_IN"}) - .to(b) ----- - -=== Path variables - -The variables used for paths `Cypher.Path` and `Cypher.NamedPath` have been removed in favor of the more accurate names: `Cypher.PathVariable` and `Cypher.NamedPathVariable` - -== Renamed features - -The following features where deprecated in favor of a different name with the same functionality. The deprecated features have been removed in version 2.0: - -* `Cypher.concat` in favor of `Cypher.utils.concat` -* `pointDistance` in favor of `point.distance` -* `Merge.onCreate` in favor of `Merge.onCreateSet` -* `Call.innerWith` in favor of `Call.importWith` -* `cdc` namespace in favor of `db.cdc` -** `db.cdc.current` -** `db.cdc.earliest` -** `db.cdc.query` -* `rTrim` and `lTrim` in favor of `rtrim` and `ltrim` respectively - -== `.build()` - -The options for `.build()` are now passed as a single object rather than parameters: - -Before: -[source, javascript] ----- -myClause.build( - "another-this", - { myParam: "hello"}, - { - labelOperator: "&" - } -); ----- - - -Now: -[source, javascript] ----- -myClause.build({ - prefix: "another-this", - extraParams: { - myParam: "hello", - }, - labelOperator: "&", -}); ----- - -All parameters are optional, and `build` can still be called without parameters. - -=== Remove support for fine-grained prefix - -The first parameter "prefix" for the `.build` method in 1.x supports passing an object with the parameters `params` and `variables` for fine grained control of what prefix to use in different kind of variables. This has been removed in 2.x, supporting only a `string` as global prefix: - -No longer supported: -[source, javascript] ----- -myClause.build({ - variable: "var_prefix_", - params: "param_prefix_" -}); ----- - -Instead, a single string can be used as prefix for both, variables and params: - -Now: -[source, javascript] ----- -myClause.build({ - prefix: "my-custom-prefix" -}); ----- - -== `With` - -The method `.with` no longer adds new columns into the existing clause. It will always create a new `WITH` statement instead. The method `.addColumns` should be used instead to add extra columns. - -Before -[source, javascript] ----- -const withQuery = new Cypher.With(node); -withQuery.with(node); -withQuery.with("*"); ----- - -Now -[source, javascript] ----- -const withQuery = new Cypher.With(node); -withQuery.with(node) -withQuery.addColumns("*"); ----- - - -The generated Cypher: - -[source, cypher] ----- -WITH this0 -WITH *, this0 ----- - -== `RawCypher` - -`Cypher.RawCypher` has been removed in favor of `Cypher.Raw`. - -=== Update callback parameter - -`Cypher.Raw` no longer exposes a `Cypher.Environment` variable. Instead, it provides an instance of `CypherRawContext` with a `compile` method to compile nested elements in custom cypher. - - -Before: -[source, typescript] ----- -const releasedParam = new Cypher.Param(1999); -const rawCypher = new Cypher.Raw((env: Cypher.Environment) => { - const releasedParamId = env.compile(releasedParam); // Gets the raw Cypher for the param - - const customCypher = `MATCH(n) WHERE n.title=$title_param AND n.released=${releasedParamId}`; - - return customCypher; -}); ----- - -Now: -[source, typescript] ----- -const releasedParam = new Cypher.Param(1999); -const rawCypher = new Cypher.Raw((ctx: Cypher.RawCypherContext) => { - const releasedParamId = ctx.compile(releasedParam); // Gets the raw Cypher for the param - - const customCypher = `MATCH(n) WHERE n.title=$title_param AND n.released=${releasedParamId}`; - - return customCypher; -}); ----- - -Note that the code itself has not changed, and just the type passed to `Cypher.Raw` callback has been changed from `Cypher.Environment` to `Cypher.RawCypherContext`. - -=== Remove `utils.compileCypher` - -The utility function `compileCypher` has been removed, in favor of using `CypherRawContext.compile`, which offers the same functionality. - -== `PatternComprehension` - -`PatternComprehension` no longer accept a node as an argument in the constructor, a Pattern must be passed instead: - -Before -[source, javascript] ----- -const node = new Cypher.Node(); -const comprehension = new Cypher.PatternComprehension(node); ----- - -Now -[source, javascript] ----- -const node = new Cypher.Node(); -const comprehension = new Cypher.PatternComprehension(new Cypher.Pattern(node)); ----- - -=== `.map` - -`PatternComprehension` no longer accepts a second argument for the Map expression. The method `.map` must be used instead: - -Before -[source, javascript] ----- -const andExpr = Cypher.eq(node.property("released"), new Cypher.Param(1999)); - -const comprehension = new Cypher.PatternComprehension(new Cypher.Pattern(node), andExpr) ----- - -Now -[source, javascript] ----- -const andExpr = Cypher.eq(node.property("released"), new Cypher.Param(1999)); - -const comprehension = new Cypher.PatternComprehension(new Cypher.Pattern(node)).map(andExpr); ----- - - -== Other Breaking changes - -These are breaking changes that do not require changes, but may affect the behaviour of projects updating to Cypher Builder 2.0. - - -=== Fix TypeScript typings for boolean operators - -The typings for the following boolean operators have been fixed to better reflect the result of these functions when spread parameters are used: - -* `Cypher.and` -* `Cypher.or` -* `Cypher.xor` - -The following: - -[source, typescript] ----- -const predicates: Cypher.Predicate[] = []; -const andPredicate = Cypher.and(...predicates); ----- - -Will now return the correct type `Cypher.Predicate | undefined`. This change means that additional checks may be needed when using boolean operators: - -[source, typescript] ----- -const predicates = [Cypher.true, Cypher.false]; -const andPredicate = Cypher.and(...predicates); // type Cypher.Predicate | undefined ----- - -Passing parameters without spread will still return a defined type. - - -=== Literals escaping - -`Cypher.Literal` will now escape strings if these contain invalid characters. This is to avoid code injection. - - -[source, javascript] ----- -new Cypher.Literal(`Hello "World"`); ----- - -Would generate the following Cypher: - -Before: -[source, cypher] ----- -"Hello "World"" ----- - -Now: -[source, cypher] ----- -"Hello \"World\"" ----- - -Note that `Cypher.Param` is still preferred over `Cypher.Literal` for dynamic values. diff --git a/docs/modules/ROOT/pages/migration-guide-3.adoc b/docs/modules/ROOT/pages/migration-guide-3.adoc index 87f2550f..99f6c230 100644 --- a/docs/modules/ROOT/pages/migration-guide-3.adoc +++ b/docs/modules/ROOT/pages/migration-guide-3.adoc @@ -2,71 +2,33 @@ :description: This page describes how to migrate to version 3.x from version 2 = Migration to Cypher Builder 3 -Cypher Builder 3 targets Cypher 5 and 25, dropping support for Cypher 4. If you need to support Cypher 4, stay with Cypher Builder 2.x, otherwise, migrate to version 3. +This guide details all the changes needed to migrate from Cypher Builder version 2 to version 3. + +[NOTE] +==== +If you need to support Neo4j 4, stay with Cypher Builder 2.x, otherwise, migrate to version 3. +==== == Compatibility changes === Minimum node engine changed to 20.0.0 -Node.js 16 is no longer supported. Update to version 20.0.0 or above. +Node.js 16 is no longer supported. Update Node.js to version 20.0.0 or above. === Cypher 4 no longer supported -Cypher 4, and Neo4j 4 databases are no longer supported. Cypher Builder targets Cypher 5 and 25 only. - - - - -== Remove support for apoc - -No apoc functions or procedures are supported in Cypher Builder 3. The following are no longer available: - -- `apoc.util.validate` -- `apoc.util.validatePredicate` -- `apoc.date.convertFormat` -- `apoc.cypher.runFirstColumnMany` -- `apoc.cypher.runFirstColumnSingle` - -To use apoc methods, create a xref:how-to/customize-cypher.adoc#_custom_functions_and_procedures[custom function or procedure]. For example: - -[source, Javascript] ----- -function validate( - predicate: Predicate, - message: string, - params: List | Literal | Map -): Cypher.VoidCypherProcedure { - return new Cypher.VoidCypherProcedure( - "apoc.util.validate", - [predicate, new Literal(message), params] - ); -} ----- - -[source, Javascript] ----- -function validatePredicate(predicate: Predicate, message: string): CypherFunction { - return new CypherFunction(" - apoc.util.validatePredicate", - [predicate, new Literal(message), new Literal([0])] - ); -} ----- - -== Cypher 4 only features - -The following features have been either removed or deprecated in Cypher 5, and are no longer available in Cypher Builder 3 +Cypher 4, and Neo4j 4 databases are no longer supported. Cypher Builder 3 targets Cypher 5 and 25. +The following features are Cypher 4 only, and have been removed from Cypher Builder. -=== Remove functions deprecated in Cypher 5 +==== Removed functions deprecated in Cypher 5 - `distance` in favor of `point.distance` - `id` in favor of `elementId` -=== Remove support for patterns in size +==== Removed support for patterns in size _No longer supported_ - [source, javascript] ---- Cypher.size(new Cypher.Pattern(node)); @@ -91,14 +53,12 @@ COUNT { } ---- +==== Removed `labelOperator` -=== Remove `labelOperator` - -Removed option `labelOperator`. All labels now use operator `&` +Removed option `labelOperator`. Now, the operator `&` is used by default when using multiple labels: _No longer supported_ - [source, javascript] ---- const { cypher, params } = matchQuery.build({ @@ -108,21 +68,19 @@ const { cypher, params } = matchQuery.build({ _Before_ - [source, Cypher] ---- MATCH (this1:Movie:Film) ---- _After_ - [source, Cypher] ---- MATCH (this1:Movie&Film) ---- -=== Remove `.importWith` from `Call` +==== Removed `.importWith` from `Call` Remove `.importWith` from `Call` clauses in favor of constructor options @@ -155,13 +113,48 @@ CALL (var0, var1){ } ---- +== Removed support for apoc -== ListComprehension +No apoc functions or procedures are supported in Cypher Builder 3. The following are no longer available: -The methods for `ListComprehension` have been changed to improve consistency with other elements of Cypher Builder. +- `apoc.util.validate` +- `apoc.util.validatePredicate` +- `apoc.date.convertFormat` +- `apoc.cypher.runFirstColumnMany` +- `apoc.cypher.runFirstColumnSingle` +To use apoc methods, create a xref:how-to/customize-cypher.adoc#_custom_functions_and_procedures[custom function or procedure]. For example: -=== Remove second parameter of constructor +[source, Javascript] +---- +function validate( + predicate: Predicate, + message: string, + params: List | Literal | Map +): Cypher.VoidCypherProcedure { + return new Cypher.VoidCypherProcedure( + "apoc.util.validate", + [predicate, new Literal(message), params] + ); +} +---- + +[source, Javascript] +---- +function validatePredicate(predicate: Predicate, message: string): CypherFunction { + return new CypherFunction(" + apoc.util.validatePredicate", + [predicate, new Literal(message), new Literal([0])] + ); +} +---- + +== API changes +The following are changes to the API, made to improve consistency across the Cypher Builder API. + +=== ListComprehension + +==== Remove second parameter of constructor Remove second parameter of `ListComprehension` constructor in favor of `.in` Before: @@ -182,7 +175,7 @@ In both cases, the same comprehension will be generated: [var0 IN [1, 2]] ``` -=== ListComprehension `.in` method no longer throws if called twice. +==== ListComprehension `.in` method no longer throws if called twice. ListComprehension `.in` method no longer throws if called twice. It will instead override the expression @@ -207,18 +200,15 @@ Will generate the following Cypher: Note that the same Cypher is generated if we omit the first `.in`: -After, this is valid: [source, javascript] ---- new Cypher.ListComprehension(variable).in(new Cypher.Literal([1])) ---- -== Foreach +=== Foreach -The methods for `Foreach` have been changed to improve consistency with other elements of Cypher Builder. - -=== Remove extra parameters in `Cypher.Foreach` constructor +==== Remove extra parameters in `Cypher.Foreach` constructor Remove extra parameters in `Cypher.Foreach` constructor in favor of methods `in` and `do`. For example, to create the following Cypher: @@ -232,7 +222,7 @@ FOREACH (var0 IN [1, 2, 3] | ) ---- -_before_ +_Before_ [source, javascript] ---- @@ -248,7 +238,7 @@ const createMovie = new Cypher.Create(new Cypher.Pattern(movieNode, { labels: [" const foreachClause = new Cypher.Foreach(variable, list, createMovie); ---- -_after_ +_After_ [source, javascript] ---- @@ -274,18 +264,17 @@ const query = Cypher.utils.concat(clause1, clause2); query.children; // No longer supported ---- -=== Remove type `Cypher.Operation` -Remove type `Cypher.Operation` in favor of `Cypher.Expr` +=== Remove type `Operation` The type `Cypher.Operation` is no longer availabe, use `Cypher.Expr` instead: -Before: +_Before_ [source, javascript] ---- const myOperation: Cypher.Operation = Cypher.and() ---- -After: +_After_ [source, javascript] ---- const myOperation: Cypher.Expr = Cypher.and() From 6c711c26fe7734e6b8f04a03d65057ed5fd40f53 Mon Sep 17 00:00:00 2001 From: angrykoala Date: Thu, 30 Oct 2025 17:02:46 +0000 Subject: [PATCH 21/30] Update docs to v3 --- .../ROOT/pages/build-configuration.adoc | 3 +- docs/modules/ROOT/pages/clauses/with.adoc | 2 +- docs/modules/ROOT/pages/compatibility.adoc | 10 ++-- .../pages/getting-started/installation.adoc | 2 +- .../pages/how-to/define-cypher-version.adoc | 4 +- docs/modules/ROOT/pages/subqueries/call.adoc | 48 ------------------- .../pages/variables-and-params/lists.adoc | 9 +--- 7 files changed, 11 insertions(+), 67 deletions(-) diff --git a/docs/modules/ROOT/pages/build-configuration.adoc b/docs/modules/ROOT/pages/build-configuration.adoc index 6483ad9c..19f96479 100644 --- a/docs/modules/ROOT/pages/build-configuration.adoc +++ b/docs/modules/ROOT/pages/build-configuration.adoc @@ -14,8 +14,7 @@ The method `build` accepts an object with options to configure the build process [cols="2,1,1,3",options="header"] |=== | Setting | Type | Default | Description -| `labelOperator` | String | `":"` | Define the default operator to use when using multiple labels in a Pattern. It can be either `:` or `&` -| `cypherVersion` | String | `undefined` | If set, will prepend all queries with a `CYPHER [Version]` statement. The only valid value is `"5"` +| `cypherVersion` | String | `undefined` | If set, will prepend all queries with a `CYPHER [Version]` statement. The possible values are `"5"` and `"25"` | `prefix` | String | `undefined` | If set, will add a prefix to all variable names. See xref:how-to/customize-cypher.adoc#_build_prefix[Customize Cypher] | `extraParams` | Object | `{}` | Add the provided parameters to the resulting params object. See xref:variables-and-params/parameters.adoc#_adding_extra_parameters[Parameters] | `unsafeEscapeOptions` | Object | `{}` | Set of options to disable escaping from generated Cypher. See xref:_unsafe_escape_options[Unsafe escape options] diff --git a/docs/modules/ROOT/pages/clauses/with.adoc b/docs/modules/ROOT/pages/clauses/with.adoc index 3e309f6a..5977f7d0 100644 --- a/docs/modules/ROOT/pages/clauses/with.adoc +++ b/docs/modules/ROOT/pages/clauses/with.adoc @@ -2,7 +2,7 @@ :description: This page describes how to create `WITH` clauses. = With -This page describes how to create a link:https://neo4j.com/docs/cypher-manual/current/clauses/with/[`WITH`] clause using the `Cypher.With` class. Note that this is different to the xref:../subqueries/call.adoc#_importwith[ImportWith] statement inside `CALL`. +This page describes how to create a link:https://neo4j.com/docs/cypher-manual/current/clauses/with/[`WITH`] clause using the `Cypher.With` class. A `With` clause will take multiple parameters. Variables can be passed directly without aliasing: diff --git a/docs/modules/ROOT/pages/compatibility.adoc b/docs/modules/ROOT/pages/compatibility.adoc index d6e69c41..14be8ea3 100644 --- a/docs/modules/ROOT/pages/compatibility.adoc +++ b/docs/modules/ROOT/pages/compatibility.adoc @@ -1,13 +1,13 @@ [[compatibility]] -:description: This page outlines the compatibility requirements for `@neo4j/cypher-builder` version 2 with Cypher and Node.js. +:description: This page outlines the compatibility requirements for `@neo4j/cypher-builder` version 3 with Cypher and Node.js. = Compatibility -This page outlines the compatibility requirements for `@neo4j/cypher-builder` version 2 with Cypher and Node.js. +This page outlines the compatibility requirements for `@neo4j/cypher-builder` version 3 with Cypher and Node.js. -* Targets link:https://neo4j.com/docs/cypher-manual/5/introduction/[Cypher 5], with support for link:https://neo4j.com/docs/cypher-manual/4.4/introduction/[Cypher 4.4]. -* Compatible with Node.js version 16.0.0 and later. +* Targets link:https://neo4j.com/docs/cypher-manual/25/introduction/[Cypher 25], with support for link:https://neo4j.com/docs/cypher-manual/5/introduction/[Cypher 5]. +* Compatible with Node.js version 20.0.0 and later. [NOTE] ==== -`@neo4j/cypher-builder` version 1 is no longer supported. Version 2 is a full replacement and maintains the same compatibility with Cypher and Node.js. +If you need to support Neo4j 4, stay with Cypher Builder 2.x, otherwise, xref:migration-guide-3.adoc#migration[migrate to version 3]. ==== diff --git a/docs/modules/ROOT/pages/getting-started/installation.adoc b/docs/modules/ROOT/pages/getting-started/installation.adoc index 5cc36e55..a095df21 100644 --- a/docs/modules/ROOT/pages/getting-started/installation.adoc +++ b/docs/modules/ROOT/pages/getting-started/installation.adoc @@ -6,7 +6,7 @@ This guide shows how to start using Cypher Builder by setting up a Node.js proje == Requirements -* link:https://nodejs.org/[Node.js] 16.0.0 or greater +* link:https://nodejs.org/[Node.js] 20.0.0 or greater * link:https://docs.npmjs.com/downloading-and-installing-node-js-and-npm[npm] * **[Optional]** A link:https://neo4j.com/cloud/platform/aura-graph-database/?ref=nav-get-started-cta[Neo4j] database to try Cypher queries. diff --git a/docs/modules/ROOT/pages/how-to/define-cypher-version.adoc b/docs/modules/ROOT/pages/how-to/define-cypher-version.adoc index cd7a5af3..34a6f8b6 100644 --- a/docs/modules/ROOT/pages/how-to/define-cypher-version.adoc +++ b/docs/modules/ROOT/pages/how-to/define-cypher-version.adoc @@ -2,7 +2,7 @@ :description: This page describes how to define the Cypher version to be used in the query. = Define Cypher version -It is possible to define the version of Cypher to use in a query by prepending that query with `CYPHER [version]`. For example: +It is possible to explicitly define the version of Cypher to use in a query by prepending that query with `CYPHER [version]`. For example: [source, cypher] @@ -13,7 +13,7 @@ RETURN this0 ---- -To add the Cypher version at the beggining of the query, pass the parameter `cypherVersion` to `.build`: +To add the Cypher version at the beggining of the query, pass the parameter `cypherVersion` to `.build`. The possible values are `"5"` and `"25"`: [source, javascript] ---- diff --git a/docs/modules/ROOT/pages/subqueries/call.adoc b/docs/modules/ROOT/pages/subqueries/call.adoc index 9a8641c8..313224fc 100644 --- a/docs/modules/ROOT/pages/subqueries/call.adoc +++ b/docs/modules/ROOT/pages/subqueries/call.adoc @@ -83,54 +83,6 @@ CALL (*) { } ---- -[role=label--deprecated] -== `.importWith` - -[WARNING] -==== -This method is deprecated in favor of <<_variable_scope>>. -==== - -[WARNING] -==== -`importWith` cannot be used if scope variables are defined and will throw an error. -==== - - -To add variables to a `CALL` subquery context, you need to add a `WITH` statement. This can be achieved by using the `.importWith` method. - -[source, javascript] ----- -const dog = new Cypher.Node(); -const person = new Cypher.Node(); - -const dogName = new Cypher.NamedVariable("dogName"); - -const subquery = new Cypher.Match( - new Cypher.Pattern(person, { labels: ["Person"] }) - .related(new Cypher.Relationship({ type: "HAS_DOG" })) - .to(dog, { labels: ["Dog"] }) -).return([dog.property("name"), dogName]); - -const clause = new Cypher.Match(new Cypher.Pattern(person, { labels: ["Person"] })) - .call(subquery) - .importWith(person) - .return(dogName); ----- - -[source, cypher] ----- -MATCH (this0:Person) -CALL { - WITH this0 - MATCH (this0:Person)-[this1:HAS_DOG]->(this2:Dog) - RETURN this2.name AS dogName -} -RETURN dogName ----- - -Note how this example uses `.concat` to combine the initial `MATCH` and `CALL` clauses. - == `.inTransactions` The `.inTransactions` method appends the `IN TRANSACTIONS` modifier to a `CALL` subquery, causing it to link:https://neo4j.com/docs/cypher-manual/current/subqueries/subqueries-in-transactions/[execute in separate transactions]: diff --git a/docs/modules/ROOT/pages/variables-and-params/lists.adoc b/docs/modules/ROOT/pages/variables-and-params/lists.adoc index 3f52b032..c94a228d 100644 --- a/docs/modules/ROOT/pages/variables-and-params/lists.adoc +++ b/docs/modules/ROOT/pages/variables-and-params/lists.adoc @@ -98,7 +98,7 @@ You also need an expression resulting in the original list to create a new list [source, javascript] ---- -const listComprehension = new Cypher.ListComprehension(variable, new Cypher.Literal([1,2])) +const listComprehension = new Cypher.ListComprehension(variable).in(new Cypher.Literal([1,2])) ---- [source, cypher] @@ -106,13 +106,6 @@ const listComprehension = new Cypher.ListComprehension(variable, new Cypher.Lite [var0 IN [1,2]] ---- -Alternatively, the original list expression can be passed with the method `.in`: - -[source, javascript] ----- -const listComprehension = new Cypher.ListComprehension(variable).in(new Cypher.Literal([1,2])) ----- - By using the methods `where` and `map`, you can construct the filter and mapping parts of the comprehension: From 4e0a4dcfe19018d4ba7c50dae5860e53a71f573e Mon Sep 17 00:00:00 2001 From: angrykoala Date: Thu, 6 Nov 2025 09:45:03 +0000 Subject: [PATCH 22/30] Update cypher to follow Cypher styleguide --- .changeset/hungry-weeks-shout.md | 5 + src/clauses/Merge.ts | 3 +- src/clauses/sub-clauses/Set.ts | 6 +- src/utils/pad-block.ts | 2 +- src/utils/serialize-map.ts | 4 +- tests/styleguide.test.ts | 192 +++++++++++++++++++++++++++++++ 6 files changed, 207 insertions(+), 5 deletions(-) create mode 100644 .changeset/hungry-weeks-shout.md create mode 100644 tests/styleguide.test.ts diff --git a/.changeset/hungry-weeks-shout.md b/.changeset/hungry-weeks-shout.md new file mode 100644 index 00000000..ab266fe3 --- /dev/null +++ b/.changeset/hungry-weeks-shout.md @@ -0,0 +1,5 @@ +--- +"@neo4j/cypher-builder": patch +--- + +Output Cypher now follows the official styleguide diff --git a/src/clauses/Merge.ts b/src/clauses/Merge.ts index f36af287..0e434c9f 100644 --- a/src/clauses/Merge.ts +++ b/src/clauses/Merge.ts @@ -21,6 +21,7 @@ import type { Pattern } from ".."; import type { CypherEnvironment } from "../Environment"; import type { PathAssign } from "../pattern/PathAssign"; import { compileCypherIfExists } from "../utils/compile-cypher-if-exists"; +import { padBlock } from "../utils/pad-block"; import { Clause } from "./Clause"; import { WithCreate } from "./mixins/clauses/WithCreate"; import { WithFinish } from "./mixins/clauses/WithFinish"; @@ -89,6 +90,6 @@ export class Merge extends Clause { const orderCypher = compileCypherIfExists(this.orderByStatement, env, { prefix: "\n" }); const nextClause = this.compileNextClause(env); - return `${mergeStr}${onMatchCypher}${onCreateCypher}${setCypher}${deleteCypher}${orderCypher}${nextClause}`; + return `${mergeStr}${padBlock(onCreateCypher)}${padBlock(onMatchCypher)}${setCypher}${deleteCypher}${orderCypher}${nextClause}`; } } diff --git a/src/clauses/sub-clauses/Set.ts b/src/clauses/sub-clauses/Set.ts index 908ae0f2..c97609cc 100644 --- a/src/clauses/sub-clauses/Set.ts +++ b/src/clauses/sub-clauses/Set.ts @@ -55,7 +55,11 @@ export class SetClause extends CypherASTNode { }) .join(",\n"); - return `SET\n${padBlock(paramsStr)}`; + if (this.params.length == 1) { + return `SET ${paramsStr}`; + } else { + return `SET\n${padBlock(paramsStr)}`; + } } private composeParam(env: CypherEnvironment, setParam: SetParam): string { diff --git a/src/utils/pad-block.ts b/src/utils/pad-block.ts index ffd9fc82..89b3247c 100644 --- a/src/utils/pad-block.ts +++ b/src/utils/pad-block.ts @@ -17,7 +17,7 @@ * limitations under the License. */ -export function padBlock(block: string, spaces = 4): string { +export function padBlock(block: string, spaces = 2): string { const paddingStr = " ".repeat(spaces); const paddedNewLines = block.replaceAll("\n", `\n${paddingStr}`); return `${paddingStr}${paddedNewLines}`; diff --git a/src/utils/serialize-map.ts b/src/utils/serialize-map.ts index 735c93da..6cf27ffa 100644 --- a/src/utils/serialize-map.ts +++ b/src/utils/serialize-map.ts @@ -17,8 +17,8 @@ * limitations under the License. */ -import type { Expr } from "../types"; import type { CypherEnvironment } from "../Environment"; +import type { Expr } from "../types"; import { escapeProperty } from "./escape"; export function serializeMap(env: CypherEnvironment, map: Map, omitCurlyBraces = false): string { @@ -33,5 +33,5 @@ export function serializeMap(env: CypherEnvironment, map: Map, omi const serializedContent = serializedFields.join(", "); if (omitCurlyBraces) return serializedContent; - return `{ ${serializedContent} }`; + return `{${serializedContent}}`; } diff --git a/tests/styleguide.test.ts b/tests/styleguide.test.ts new file mode 100644 index 00000000..ce34e558 --- /dev/null +++ b/tests/styleguide.test.ts @@ -0,0 +1,192 @@ +/* + * Copyright (c) "Neo4j" + * Neo4j Sweden AB [http://neo4j.com] + * + * This file is part of Neo4j. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import Cypher from "../src"; + +/** + * These test check if cypher builder matches the examples in + * https://neo4j.com/docs/cypher-manual/25/styleguide/ + * + */ +describe("Cypher styleguide", () => { + describe("indentation", () => { + test("Indentation Clauses", () => { + const node = new Cypher.Node(); + const pattern = new Cypher.Pattern(node); + const query = new Cypher.Match(pattern) + .where(Cypher.contains(node.property("name"), new Cypher.Literal("s"))) + .return(node.property("name")); + + const { cypher } = query.build(); + + expect(cypher).toMatchInlineSnapshot(` +"MATCH (this0) +WHERE this0.name CONTAINS \\"s\\" +RETURN this0.name" +`); + }); + test("Indentation ON CREATE and ON MERGE and clause order", () => { + const n = new Cypher.Node(); + const a = new Cypher.Node(); + const b = new Cypher.Node(); + + const pattern = new Cypher.Pattern(n); + const query = new Cypher.Merge(pattern) + .onCreateSet([n.property("prop"), new Cypher.Literal(0)]) + .merge(new Cypher.Pattern(a, { labels: ["A"] }).related({ type: "T" }).to(b, { labels: ["B"] })) + .onMatchSet([a.property("name"), new Cypher.Literal("me")]) // This is put before purposefully, to check that the order is maintained as recommended + .onCreateSet([b.property("name"), new Cypher.Literal("you")]) + .return(a.property("prop")); + const { cypher } = query.build(); + + expect(cypher).toMatchInlineSnapshot(` +"MERGE (this0) + ON CREATE SET this0.prop = 0 +MERGE (this1:A)-[:T]->(this2:B) + ON CREATE SET this2.name = \\"you\\" + ON MATCH SET this1.name = \\"me\\" +RETURN this1.prop" +`); + }); + + test("Indentation ON CREATE and ON MERGE with multiple properties", () => { + const a = new Cypher.Node(); + const b = new Cypher.Node(); + + const query = new Cypher.Merge( + new Cypher.Pattern(a, { labels: ["A"] }).related({ type: "T" }).to(b, { labels: ["B"] }) + ) + .onMatchSet([a.property("name"), new Cypher.Literal("me")], [a.property("age"), new Cypher.Literal(30)]) // This is put before purposefully, to check that the order is maintained as recommended + .onCreateSet([b.property("name"), new Cypher.Literal("you")]) + .return(a.property("prop")); + const { cypher } = query.build(); + + expect(cypher).toMatchInlineSnapshot(` +"MERGE (this0:A)-[:T]->(this1:B) + ON CREATE SET this1.name = \\"you\\" + ON MATCH SET + this0.name = \\"me\\", + this0.age = 30 +RETURN this0.prop" +`); + }); + + test("Exists subquery", () => { + const a = new Cypher.Node(); + const b = new Cypher.Node(); + + const query = new Cypher.Match(new Cypher.Pattern(a, { labels: ["A"] })) + .where( + new Cypher.Exists( + new Cypher.Match(new Cypher.Pattern(a).related().to(b, { labels: ["B"] })).where( + Cypher.eq(b.property("prop"), new Cypher.Literal("yellow")) + ) + ) + ) + .return(a.property("foo")); + const { cypher } = query.build(); + + expect(cypher).toMatchInlineSnapshot(` +"MATCH (this0:A) +WHERE EXISTS { + MATCH (this0)-[]->(this1:B) + WHERE this1.prop = \\"yellow\\" +} +RETURN this0.foo" +`); + }); + + // NOT YET SUPPORTED + // MATCH (a:A) + // WHERE EXISTS { (a)-->(b:B) } + // RETURN a.prop + test.todo("Exists subquery with simplified subquery"); + + test("CASE ... WHEN ... ELSE", () => { + const n = new Cypher.Node(); + const query = new Cypher.Match( + new Cypher.Pattern(n, { labels: ["Person"], properties: { name: new Cypher.Literal("Alice") } }) + ).return([ + new Cypher.Case() + .when(Cypher.gt(n.property("age"), new Cypher.Literal(18))) + .then(new Cypher.Literal("Adult")) + .else(new Cypher.Literal("Minor")), + "ageGroup", + ]); + + const { cypher } = query.build(); + + expect(cypher).toMatchInlineSnapshot(` +"MATCH (this0:Person { name: \\"Alice\\" }) +RETURN CASE + WHEN this0.age > 18 THEN \\"Adult\\" + ELSE \\"Minor\\" +END AS ageGroup" +`); + }); + }); + + describe("Spacing", () => { + test("Maps", () => { + const variable = new Cypher.Variable(); + const query = new Cypher.With([ + new Cypher.Map({ + key1: new Cypher.Literal("value"), + key2: new Cypher.Literal(42), + }), + variable, + ]).return(variable); + + const { cypher } = query.build(); + expect(cypher).toMatchInlineSnapshot(` +"WITH {key1: \\"value\\", key2: 42} AS var0 +RETURN var0" +`); + }); + + test("Lists", () => { + const variable = new Cypher.Variable(); + const query = new Cypher.With([ + new Cypher.List([new Cypher.Literal("a"), new Cypher.Literal("b"), new Cypher.Literal(3.14)]), + variable, + ]).return(variable, new Cypher.Literal(2)); + + const { cypher } = query.build(); + expect(cypher).toMatchInlineSnapshot(` +"WITH [\\"a\\", \\"b\\", 3.14] AS var0 +RETURN var0, 2" +`); + }); + }); + + describe("Meta characters", () => { + test("String values", () => { + const query = new Cypher.Return( + new Cypher.Literal("Cypher"), + new Cypher.Literal("A 'Quote'"), + new Cypher.Literal('Another "Quote"') + ); + + const { cypher } = query.build(); + expect(cypher).toMatchInlineSnapshot( + `"RETURN \\"Cypher\\", \\"A 'Quote'\\", \\"Another \\\\\\"Quote\\\\\\"\\""` + ); + }); + }); +}); From fce22aa4618146d6aa030a759b73bb62340bc526 Mon Sep 17 00:00:00 2001 From: angrykoala Date: Thu, 6 Nov 2025 10:08:35 +0000 Subject: [PATCH 23/30] Change literals to use single quote (') --- src/references/Literal.ts | 2 +- src/utils/escape.test.ts | 6 ++++-- src/utils/escape.ts | 2 +- tests/styleguide.test.ts | 26 ++++++++++++-------------- 4 files changed, 18 insertions(+), 18 deletions(-) diff --git a/src/references/Literal.ts b/src/references/Literal.ts index 741b9ff5..020ef480 100644 --- a/src/references/Literal.ts +++ b/src/references/Literal.ts @@ -43,7 +43,7 @@ export class Literal implements CypherCom private formatLiteralValue(value: LiteralValue): string { if (typeof value === "string") { - return `"${escapeLiteralString(value)}"`; + return `'${escapeLiteralString(value)}'`; } if (value === null) { return "NULL"; diff --git a/src/utils/escape.test.ts b/src/utils/escape.test.ts index 2f39b8d6..ecd75d49 100644 --- a/src/utils/escape.test.ts +++ b/src/utils/escape.test.ts @@ -46,8 +46,10 @@ describe("escaping", () => { }); test.each([ - [`my "var"`, `my \\"var\\"`], - [`my \\"var`, `my \\\\"var`], + [`my "var"`, `my "var"`], + [`my \\"var`, `my "var`], + [`my 'var'`, `my \\'var\\'`], + [`my \\'var`, `my \\\\'var`], ])("Escape '%s'", (original, expected) => { expect(escapeLiteralString(original)).toBe(expected); }); diff --git a/src/utils/escape.ts b/src/utils/escape.ts index 3e958021..368ebce4 100644 --- a/src/utils/escape.ts +++ b/src/utils/escape.ts @@ -46,7 +46,7 @@ export function escapeVariable(varName: string): string { /** Escapes a literal string */ export function escapeLiteralString(str: string): string { - return str.replaceAll(`"`, `\\"`); + return str.replaceAll(`'`, `\\'`); } function escapeIfNeeded(str: string): string { diff --git a/tests/styleguide.test.ts b/tests/styleguide.test.ts index ce34e558..02a468aa 100644 --- a/tests/styleguide.test.ts +++ b/tests/styleguide.test.ts @@ -37,7 +37,7 @@ describe("Cypher styleguide", () => { expect(cypher).toMatchInlineSnapshot(` "MATCH (this0) -WHERE this0.name CONTAINS \\"s\\" +WHERE this0.name CONTAINS 's' RETURN this0.name" `); }); @@ -59,8 +59,8 @@ RETURN this0.name" "MERGE (this0) ON CREATE SET this0.prop = 0 MERGE (this1:A)-[:T]->(this2:B) - ON CREATE SET this2.name = \\"you\\" - ON MATCH SET this1.name = \\"me\\" + ON CREATE SET this2.name = 'you' + ON MATCH SET this1.name = 'me' RETURN this1.prop" `); }); @@ -79,9 +79,9 @@ RETURN this1.prop" expect(cypher).toMatchInlineSnapshot(` "MERGE (this0:A)-[:T]->(this1:B) - ON CREATE SET this1.name = \\"you\\" + ON CREATE SET this1.name = 'you' ON MATCH SET - this0.name = \\"me\\", + this0.name = 'me', this0.age = 30 RETURN this0.prop" `); @@ -106,7 +106,7 @@ RETURN this0.prop" "MATCH (this0:A) WHERE EXISTS { MATCH (this0)-[]->(this1:B) - WHERE this1.prop = \\"yellow\\" + WHERE this1.prop = 'yellow' } RETURN this0.foo" `); @@ -133,10 +133,10 @@ RETURN this0.foo" const { cypher } = query.build(); expect(cypher).toMatchInlineSnapshot(` -"MATCH (this0:Person { name: \\"Alice\\" }) +"MATCH (this0:Person { name: 'Alice' }) RETURN CASE - WHEN this0.age > 18 THEN \\"Adult\\" - ELSE \\"Minor\\" + WHEN this0.age > 18 THEN 'Adult' + ELSE 'Minor' END AS ageGroup" `); }); @@ -155,7 +155,7 @@ END AS ageGroup" const { cypher } = query.build(); expect(cypher).toMatchInlineSnapshot(` -"WITH {key1: \\"value\\", key2: 42} AS var0 +"WITH {key1: 'value', key2: 42} AS var0 RETURN var0" `); }); @@ -169,7 +169,7 @@ RETURN var0" const { cypher } = query.build(); expect(cypher).toMatchInlineSnapshot(` -"WITH [\\"a\\", \\"b\\", 3.14] AS var0 +"WITH ['a', 'b', 3.14] AS var0 RETURN var0, 2" `); }); @@ -184,9 +184,7 @@ RETURN var0, 2" ); const { cypher } = query.build(); - expect(cypher).toMatchInlineSnapshot( - `"RETURN \\"Cypher\\", \\"A 'Quote'\\", \\"Another \\\\\\"Quote\\\\\\"\\""` - ); + expect(cypher).toMatchInlineSnapshot(`"RETURN 'Cypher', 'A \\\\'Quote\\\\'', 'Another \\"Quote\\"'"`); }); }); }); From d6421b50988e214110158edd7201a0b2182d38e1 Mon Sep 17 00:00:00 2001 From: angrykoala Date: Wed, 12 Nov 2025 11:38:56 +0000 Subject: [PATCH 24/30] Update tests with new Cypher format --- src/clauses/Call.test.ts | 191 +++++++++--------- src/clauses/Create.test.ts | 56 ++--- src/clauses/Finish.test.ts | 3 +- src/clauses/Foreach.test.ts | 20 +- src/clauses/LoadCSV.test.ts | 2 +- src/clauses/Match.test.ts | 25 ++- src/clauses/Merge.test.ts | 84 ++++---- src/clauses/Unwind.test.ts | 9 +- src/clauses/Use.test.ts | 12 +- src/clauses/With.test.ts | 9 +- src/clauses/sub-clauses/Set.test.ts | 30 ++- src/expressions/Case.test.ts | 28 +-- src/expressions/IsType.test.ts | 2 +- .../functions/CypherFunctions.test.ts | 2 +- src/expressions/functions/math.test.ts | 4 +- src/expressions/functions/scalar.test.ts | 4 +- src/expressions/functions/string.test.ts | 14 +- src/expressions/functions/temporal.test.ts | 16 +- src/expressions/list/ListExpr.test.ts | 6 +- src/expressions/list/ListIndex.test.ts | 2 +- src/expressions/list/ListRange.test.ts | 4 +- .../list/PatternComprehension.test.ts | 4 +- src/expressions/map/MapExpr.test.ts | 6 +- src/expressions/map/MapProjection.test.ts | 6 +- src/expressions/operations/comparison.test.ts | 10 +- src/expressions/operations/concat.test.ts | 7 +- src/expressions/operations/math.test.ts | 2 +- src/expressions/subquery/Collect.test.ts | 16 +- src/expressions/subquery/Count.test.ts | 14 +- src/expressions/subquery/Exists.test.ts | 14 +- src/namespaces/db/cdc.test.ts | 8 +- src/namespaces/db/db.test.ts | 8 +- src/namespaces/db/index/fulltext.test.ts | 24 +-- src/namespaces/db/index/vector.test.ts | 32 ++- src/namespaces/genai/genai.test.ts | 36 ++-- src/namespaces/tx.test.ts | 2 +- src/pattern/Pattern.test.ts | 26 +-- src/procedures/CypherProcedure.test.ts | 9 +- src/references/Literal.test.ts | 30 ++- src/references/PropertyRef.test.ts | 2 +- src/references/Variable.test.ts | 2 +- src/utils/concat.test.ts | 12 +- src/utils/escape.test.ts | 2 +- src/utils/serialize-map.test.ts | 2 +- tests/build-config/unsafe-escape.test.ts | 24 +-- tests/console-log.test.ts | 39 ++-- tests/issues/462.test.ts | 7 +- tests/issues/479.test.ts | 2 +- tests/issues/514.test.ts | 6 +- tests/issues/547.test.ts | 4 +- 50 files changed, 401 insertions(+), 478 deletions(-) diff --git a/src/clauses/Call.test.ts b/src/clauses/Call.test.ts index c935f4f9..172f7c5b 100644 --- a/src/clauses/Call.test.ts +++ b/src/clauses/Call.test.ts @@ -29,13 +29,12 @@ describe("CypherBuilder Call", () => { .return(movieNode); const queryResult = new Cypher.Call(createQuery).build(); expect(queryResult.cypher).toMatchInlineSnapshot(` - "CALL { - CREATE (this0:Movie) - SET - this0.id = $param0 - RETURN this0 - }" - `); +"CALL { + CREATE (this0:Movie) + SET this0.id = $param0 + RETURN this0 +}" +`); expect(queryResult.params).toMatchInlineSnapshot(` { "param0": "my-id", @@ -55,15 +54,14 @@ describe("CypherBuilder Call", () => { const queryResult = call.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` - "CALL { - CALL { - CREATE (this0:Movie) - SET - this0.id = $param0 - RETURN this0 - } - }" - `); +"CALL { + CALL { + CREATE (this0:Movie) + SET this0.id = $param0 + RETURN this0 + } +}" +`); expect(queryResult.params).toMatchInlineSnapshot(` { "param0": "my-id", @@ -81,13 +79,13 @@ describe("CypherBuilder Call", () => { const clause = new Cypher.Call(matchClause).with("*"); const queryResult = clause.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` - "CALL { - MATCH (this0:Movie) - WHERE $param0 = $param1 - RETURN this0.title AS movie - } - WITH *" - `); +"CALL { + MATCH (this0:Movie) + WHERE $param0 = $param1 + RETURN this0.title AS movie +} +WITH *" +`); expect(queryResult.params).toMatchInlineSnapshot(` { @@ -111,12 +109,11 @@ describe("CypherBuilder Call", () => { const queryResult = clause.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` "CALL { - MATCH (this0:Movie) - WHERE $param0 = $param1 - RETURN this0 + MATCH (this0:Movie) + WHERE $param0 = $param1 + RETURN this0 } -SET - this0.title = $param2 +SET this0.title = $param2 REMOVE this0.title WITH *" `); @@ -140,13 +137,13 @@ WITH *" const clause = new Cypher.Call(matchClause).with(new Cypher.With("*")); const queryResult = clause.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` - "CALL { - MATCH (this0:Movie) - WHERE $param0 = $param1 - RETURN this0.title AS movie - } - WITH *" - `); +"CALL { + MATCH (this0:Movie) + WHERE $param0 = $param1 + RETURN this0.title AS movie +} +WITH *" +`); expect(queryResult.params).toMatchInlineSnapshot(` { @@ -168,13 +165,13 @@ WITH *" const queryResult = clause.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` - "CALL { - MATCH (this0:Movie) - WHERE $param0 = $param1 - RETURN this0.title AS var1 - } - UNWIND var1 AS m" - `); +"CALL { + MATCH (this0:Movie) + WHERE $param0 = $param1 + RETURN this0.title AS var1 +} +UNWIND var1 AS m" +`); expect(queryResult.params).toMatchInlineSnapshot(` { @@ -198,13 +195,13 @@ WITH *" const queryResult = clause.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` - "CALL { - MATCH (this0:Movie) - WHERE $param0 = $param1 - RETURN this0.title AS var1 - } - UNWIND var1 AS m" - `); +"CALL { + MATCH (this0:Movie) + WHERE $param0 = $param1 + RETURN this0.title AS var1 +} +UNWIND var1 AS m" +`); expect(queryResult.params).toMatchInlineSnapshot(` { @@ -226,9 +223,9 @@ WITH *" expect(queryResult.cypher).toMatchInlineSnapshot(` "CALL { - MATCH (this0:Movie) - WHERE this0.title = $param0 - RETURN this0 + MATCH (this0:Movie) + WHERE this0.title = $param0 + RETURN this0 } DELETE this0" `); @@ -251,10 +248,9 @@ DELETE this0" const queryResult = new Cypher.Call(createQuery).return(variable).build(); expect(queryResult.cypher).toMatchInlineSnapshot(` "CALL { - CREATE (this0:Movie) - SET - this0.id = $param0 - RETURN var1 + CREATE (this0:Movie) + SET this0.id = $param0 + RETURN var1 } RETURN var1" `); @@ -284,8 +280,8 @@ RETURN var1" expect(queryResult.cypher).toMatchInlineSnapshot(` "MATCH (this0) CALL { - WITH this0 - DETACH DELETE this0 + WITH this0 + DETACH DELETE this0 } IN TRANSACTIONS" `); }); @@ -302,8 +298,8 @@ CALL { expect(queryResult.cypher).toMatchInlineSnapshot(` "MATCH (this0) CALL { - WITH this0 - DETACH DELETE this0 + WITH this0 + DETACH DELETE this0 } IN TRANSACTIONS OF 10 ROWS" `); }); @@ -320,8 +316,8 @@ CALL { expect(queryResult.cypher).toMatchInlineSnapshot(` "MATCH (this0) CALL { - WITH this0 - DETACH DELETE this0 + WITH this0 + DETACH DELETE this0 } IN TRANSACTIONS ON ERROR FAIL" `); }); @@ -339,8 +335,8 @@ CALL { expect(queryResult.cypher).toMatchInlineSnapshot(` "MATCH (this0) CALL { - WITH this0 - DETACH DELETE this0 + WITH this0 + DETACH DELETE this0 } IN TRANSACTIONS ON ERROR RETRY" `); }); @@ -357,8 +353,8 @@ CALL { expect(queryResult.cypher).toMatchInlineSnapshot(` "MATCH (this0) CALL { - WITH this0 - DETACH DELETE this0 + WITH this0 + DETACH DELETE this0 } IN TRANSACTIONS ON ERROR RETRY FOR 10 SECONDS" `); }); @@ -375,8 +371,8 @@ CALL { expect(queryResult.cypher).toMatchInlineSnapshot(` "MATCH (this0) CALL { - WITH this0 - DETACH DELETE this0 + WITH this0 + DETACH DELETE this0 } IN TRANSACTIONS ON ERROR RETRY THEN CONTINUE" `); }); @@ -394,8 +390,8 @@ CALL { expect(queryResult.cypher).toMatchInlineSnapshot(` "MATCH (this0) CALL { - WITH this0 - DETACH DELETE this0 + WITH this0 + DETACH DELETE this0 } IN TRANSACTIONS ON ERROR RETRY FOR 10 SECONDS THEN BREAK" `); }); @@ -412,8 +408,8 @@ CALL { expect(queryResult.cypher).toMatchInlineSnapshot(` "MATCH (this0) CALL { - WITH this0 - DETACH DELETE this0 + WITH this0 + DETACH DELETE this0 } IN TRANSACTIONS" `); }); @@ -430,8 +426,8 @@ CALL { expect(queryResult.cypher).toMatchInlineSnapshot(` "MATCH (this0) CALL { - WITH this0 - DETACH DELETE this0 + WITH this0 + DETACH DELETE this0 } IN TRANSACTIONS ON ERROR RETRY FOR 0 SECONDS" `); }); @@ -449,8 +445,8 @@ CALL { expect(queryResult.cypher).toMatchInlineSnapshot(` "MATCH (this0) CALL { - WITH this0 - DETACH DELETE this0 + WITH this0 + DETACH DELETE this0 } IN TRANSACTIONS ON ERROR CONTINUE" `); }); @@ -471,8 +467,8 @@ CALL { expect(queryResult.cypher).toMatchInlineSnapshot(` "MATCH (this0) CALL { - WITH this0 - DETACH DELETE this0 + WITH this0 + DETACH DELETE this0 } IN TRANSACTIONS OF 10 ROWS ON ERROR FAIL" `); }); @@ -492,8 +488,8 @@ CALL { expect(queryResult.cypher).toMatchInlineSnapshot(` "MATCH (this0) CALL { - WITH this0 - DETACH DELETE this0 + WITH this0 + DETACH DELETE this0 } IN 3 CONCURRENT TRANSACTIONS" `); }); @@ -515,8 +511,8 @@ CALL { expect(queryResult.cypher).toMatchInlineSnapshot(` "MATCH (this0) CALL { - WITH this0 - DETACH DELETE this0 + WITH this0 + DETACH DELETE this0 } IN 5 CONCURRENT TRANSACTIONS OF 10 ROWS ON ERROR FAIL" `); }); @@ -536,8 +532,8 @@ CALL { expect(queryResult.cypher).toMatchInlineSnapshot(` "MATCH (this0) CALL { - WITH this0 - DETACH DELETE this0 + WITH this0 + DETACH DELETE this0 } IN 2 CONCURRENT TRANSACTIONS OF 10 ROWS ON ERROR RETRY FOR 5 SECONDS THEN BREAK" `); }); @@ -561,7 +557,7 @@ CALL { "MATCH (this0:Movie) MATCH (this1:Actor) CALL (this0, this1) { - CREATE (this0)-[]->(this1) + CREATE (this0)-[]->(this1) } RETURN this0" `); @@ -580,7 +576,7 @@ RETURN this0" const queryResult = clause.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` "CALL () { - CREATE (this0)-[]->(this1) + CREATE (this0)-[]->(this1) } RETURN this0" `); @@ -604,7 +600,7 @@ RETURN this0" "MATCH (this0:Movie) MATCH (this1:Actor) CALL (*) { - CREATE (this0)-[]->(this1) + CREATE (this0)-[]->(this1) } RETURN this0" `); @@ -622,10 +618,9 @@ RETURN this0" const queryResult = new Cypher.Call(createQuery).optional().build(); expect(queryResult.cypher).toMatchInlineSnapshot(` "OPTIONAL CALL { - CREATE (this0:Movie) - SET - this0.id = $param0 - RETURN this0 + CREATE (this0:Movie) + SET this0.id = $param0 + RETURN this0 }" `); expect(queryResult.params).toMatchInlineSnapshot(` @@ -645,10 +640,9 @@ RETURN this0" const queryResult = new Cypher.OptionalCall(createQuery).build(); expect(queryResult.cypher).toMatchInlineSnapshot(` "OPTIONAL CALL { - CREATE (this0:Movie) - SET - this0.id = $param0 - RETURN this0 + CREATE (this0:Movie) + SET this0.id = $param0 + RETURN this0 }" `); expect(queryResult.params).toMatchInlineSnapshot(` @@ -670,10 +664,9 @@ RETURN this0" const queryResult = new Cypher.Call(createQuery).orderBy(movieNode).skip(10).build(); expect(queryResult.cypher).toMatchInlineSnapshot(` "CALL { - CREATE (this0:Movie) - SET - this0.id = $param0 - RETURN this0 + CREATE (this0:Movie) + SET this0.id = $param0 + RETURN this0 } ORDER BY this0 ASC SKIP 10" diff --git a/src/clauses/Create.test.ts b/src/clauses/Create.test.ts index 1531e300..2e901a44 100644 --- a/src/clauses/Create.test.ts +++ b/src/clauses/Create.test.ts @@ -41,12 +41,12 @@ describe("CypherBuilder Create", () => { const queryResult = createQuery.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` - "CREATE (this0:Movie { test: $param0, id: $param1 }) - SET - this0.title = $param2, - this0.runtime = $param3 - RETURN this0" - `); +"CREATE (this0:Movie { test: $param0, id: $param1 }) +SET + this0.title = $param2, + this0.runtime = $param3 +RETURN this0" +`); expect(queryResult.params).toMatchInlineSnapshot(` { @@ -80,12 +80,12 @@ describe("CypherBuilder Create", () => { const queryResult = createQuery.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` - "CREATE (this0:Movie { id: NULL }) - SET - this0.test = NULL, - this0.nullStr = $param0 - RETURN this0" - `); +"CREATE (this0:Movie { id: NULL }) +SET + this0.test = NULL, + this0.nullStr = $param0 +RETURN this0" +`); expect(queryResult.params).toMatchInlineSnapshot(` { @@ -122,8 +122,8 @@ describe("CypherBuilder Create", () => { expect(queryResult.cypher).toMatchInlineSnapshot(` "CREATE p1 = (this0:Movie { id: NULL }) SET - this0.test = NULL, - this0.nullStr = $param0 + this0.test = NULL, + this0.nullStr = $param0 RETURN this0" `); @@ -187,8 +187,8 @@ RETURN this0" expect(queryResult.cypher).toMatchInlineSnapshot(` "CREATE (this0:Movie { test: $param0, id: $param1 }) SET - this0.title = $param2, - this0.runtime = $param3 + this0.title = $param2, + this0.runtime = $param3 DELETE this0" `); @@ -225,8 +225,8 @@ DELETE this0" expect(queryResult.cypher).toMatchInlineSnapshot(` "CREATE (this0:Movie { test: $param0, id: $param1 }) SET - this0.title = $param2, - this0.runtime = $param3 + this0.title = $param2, + this0.runtime = $param3 DETACH DELETE this0" `); @@ -263,8 +263,8 @@ DETACH DELETE this0" expect(queryResult.cypher).toMatchInlineSnapshot(` "CREATE (this0:Movie { test: $param0, id: $param1 }) SET - this0.title = $param2, - this0.runtime = $param3 + this0.title = $param2, + this0.runtime = $param3 NODETACH DELETE this0" `); @@ -301,8 +301,8 @@ NODETACH DELETE this0" expect(queryResult.cypher).toMatchInlineSnapshot(` "CREATE (this0:Movie { test: $param0, id: $param1 }) SET - this0.title = $param2, - this0.runtime = $param3 + this0.title = $param2, + this0.runtime = $param3 REMOVE this0.title" `); @@ -340,8 +340,8 @@ REMOVE this0.title" expect(queryResult.cypher).toMatchInlineSnapshot(` "CREATE (this0:Movie { test: $param0, id: $param1 }) SET - this0.title = $param2, - this0.runtime = $param3 + this0.title = $param2, + this0.runtime = $param3 CREATE (this1:Actor) RETURN this0" `); @@ -383,8 +383,8 @@ RETURN this0" expect(queryResult.cypher).toMatchInlineSnapshot(` "CREATE (this0:Movie { test: $param0, id: $param1 }) SET - this0.title = $param2, - this0.runtime = $param3 + this0.title = $param2, + this0.runtime = $param3 CREATE (this1:Actor) RETURN this0" `); @@ -425,8 +425,8 @@ RETURN this0" expect(queryResult.cypher).toMatchInlineSnapshot(` "CREATE (this0:Movie { test: $param0, id: $param1 }) SET - this0.title = $param2, - this0.runtime = $param3 + this0.title = $param2, + this0.runtime = $param3 ORDER BY this0.title DESC SKIP 10 LIMIT 1 diff --git a/src/clauses/Finish.test.ts b/src/clauses/Finish.test.ts index 0e93dafb..1964741a 100644 --- a/src/clauses/Finish.test.ts +++ b/src/clauses/Finish.test.ts @@ -38,8 +38,7 @@ describe("CypherBuilder Finish", () => { const queryResult = createQuery.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` "CREATE (this0) -SET - this1.test = $param0 +SET this1.test = $param0 FINISH" `); expect(queryResult.params).toMatchInlineSnapshot(` diff --git a/src/clauses/Foreach.test.ts b/src/clauses/Foreach.test.ts index 416b0ee5..1ef83df9 100644 --- a/src/clauses/Foreach.test.ts +++ b/src/clauses/Foreach.test.ts @@ -34,13 +34,12 @@ describe("Foreach", () => { const queryResult = foreachClause.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` - "FOREACH (var0 IN [1, 2, 3] | - CREATE (this1:Movie) - SET - this1.id = var0 - ) - WITH *" - `); +"FOREACH (var0 IN [1, 2, 3] | + CREATE (this1:Movie) + SET this1.id = var0 +) +WITH *" +`); expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); @@ -63,11 +62,10 @@ describe("Foreach", () => { const queryResult = foreachClause.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` "FOREACH (var0 IN [1, 2, 3] | - CREATE (this1:Movie) + CREATE (this1:Movie) ) REMOVE this1.title -SET - this1.id = var0 +SET this1.id = var0 DELETE this1 WITH *" `); @@ -87,7 +85,7 @@ WITH *" const queryResult = foreachClause.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` "FOREACH (var0 IN [1, 2, 3] | - CREATE (this1:Movie) + CREATE (this1:Movie) ) DETACH DELETE this1 WITH *" diff --git a/src/clauses/LoadCSV.test.ts b/src/clauses/LoadCSV.test.ts index 81949222..d6add772 100644 --- a/src/clauses/LoadCSV.test.ts +++ b/src/clauses/LoadCSV.test.ts @@ -50,7 +50,7 @@ RETURN var0" const queryResult = loadClause.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` "LOAD CSV WITH HEADERS FROM \\"https://data.neo4j.com/bands/artists.csv\\" AS var0 -MERGE (this1 { name: var0.Name }) +MERGE (this1 { name: var0.Name }) RETURN var0" `); diff --git a/src/clauses/Match.test.ts b/src/clauses/Match.test.ts index eade152c..e79970ce 100644 --- a/src/clauses/Match.test.ts +++ b/src/clauses/Match.test.ts @@ -135,7 +135,7 @@ RETURN this0.id" expect(queryResult.cypher).toMatchInlineSnapshot(` "MATCH p2 = (this0)-[*]->(this1) FOREACH (var3 IN nodes(p2) | - MERGE (var3)-[]->(this1) + MERGE (var3)-[]->(this1) )" `); @@ -324,10 +324,10 @@ RETURN p3" const queryResult = matchQuery.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` - "MATCH (this0:Movie { test: $param0 }) - WHERE (((this0.id = $param1 AND this0.name = $param2) AND this0.age = $param3) AND this0.value = \\"Another value\\") - RETURN this0" - `); +"MATCH (this0:Movie { test: $param0 }) +WHERE (((this0.id = $param1 AND this0.name = $param2) AND this0.age = $param3) AND this0.value = 'Another value') +RETURN this0" +`); expect(queryResult.params).toMatchInlineSnapshot(` { @@ -576,12 +576,11 @@ RETURN this0" const queryResult = matchQuery.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` - "MATCH (this0:Person) - WHERE this0.name = $param0 - SET - this0.name = $param1 - RETURN this0" - `); +"MATCH (this0:Person) +WHERE this0.name = $param0 +SET this0.name = $param1 +RETURN this0" +`); expect(queryResult.params).toMatchInlineSnapshot(` { @@ -812,7 +811,7 @@ RETURN var1" "MATCH (this0:Movie) MATCH (this1:Actor) CALL (this0, this1) { - CREATE (this0)-[]->(this1) + CREATE (this0)-[]->(this1) } RETURN this0" `); @@ -836,7 +835,7 @@ RETURN this0" "MATCH (this0:Movie) MATCH (this1:Actor) OPTIONAL CALL (this0, this1) { - CREATE (this0)-[]->(this1) + CREATE (this0)-[]->(this1) } RETURN this0" `); diff --git a/src/clauses/Merge.test.ts b/src/clauses/Merge.test.ts index c9a947d9..7cc130ed 100644 --- a/src/clauses/Merge.test.ts +++ b/src/clauses/Merge.test.ts @@ -31,10 +31,9 @@ describe("CypherBuilder Merge", () => { const queryResult = query.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` - "MERGE (this0:MyLabel) - ON CREATE SET - this0.age = $param0" - `); +"MERGE (this0:MyLabel) + ON CREATE SET this0.age = $param0 " +`); expect(queryResult.params).toMatchInlineSnapshot(` { "param0": 23, @@ -55,11 +54,9 @@ describe("CypherBuilder Merge", () => { const queryResult = query.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` -"MERGE (this0:MyLabel) -ON CREATE SET - this0.age = $param1 -SET - this0.age = $param0" +"MERGE (this0:MyLabel) + ON CREATE SET this0.age = $param1 +SET this0.age = $param0" `); expect(queryResult.params).toMatchInlineSnapshot(` { @@ -80,10 +77,9 @@ SET const queryResult = query.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` - "MERGE (this0:MyLabel) - ON CREATE SET - this0.\`$age\` = $param0" - `); +"MERGE (this0:MyLabel) + ON CREATE SET this0.\`$age\` = $param0 " +`); expect(queryResult.params).toMatchInlineSnapshot(` { "param0": 23, @@ -107,10 +103,9 @@ SET const queryResult = query.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` - "MERGE (this0:MyLabel { test: $param0 }) - ON CREATE SET - this0.age = $param1" - `); +"MERGE (this0:MyLabel { test: $param0 }) + ON CREATE SET this0.age = $param1 " +`); expect(queryResult.params).toMatchInlineSnapshot(` { "param0": "test", @@ -135,13 +130,13 @@ SET const queryResult = query.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` - "MERGE (this0)-[this1]->(this2) - ON CREATE SET - this0.age = $param0, - this0.name = $param1, - this1.screentime = $param2 - RETURN this0.title AS movie" - `); +"MERGE (this0)-[this1]->(this2) + ON CREATE SET + this0.age = $param0, + this0.name = $param1, + this1.screentime = $param2 +RETURN this0.title AS movie" +`); expect(queryResult.params).toMatchInlineSnapshot(` { "param0": 23, @@ -168,11 +163,11 @@ SET const queryResult = query.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` -"MERGE p3 = (this0)-[this1]->(this2) -ON CREATE SET +"MERGE p3 = (this0)-[this1]->(this2) + ON CREATE SET this0.age = $param0, this0.name = $param1, - this1.screentime = $param2 + this1.screentime = $param2 RETURN this0.title AS movie" `); expect(queryResult.params).toMatchInlineSnapshot(` @@ -197,7 +192,7 @@ RETURN this0.title AS movie" const queryResult = query.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` -"MERGE (this0:MyLabel) +"MERGE (this0:MyLabel) REMOVE this0.title DELETE this0" `); @@ -220,8 +215,8 @@ DELETE this0" const queryResult = query.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` -"MERGE (this0:MyLabel) -MERGE (this1:MyOtherLabel)" +"MERGE (this0:MyLabel) +MERGE (this1:MyOtherLabel) " `); expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); @@ -244,8 +239,8 @@ MERGE (this1:MyOtherLabel)" const queryResult = query.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` -"MERGE (this0:MyLabel) -MERGE (this1:MyOtherLabel)" +"MERGE (this0:MyLabel) +MERGE (this1:MyOtherLabel) " `); expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); @@ -261,10 +256,9 @@ MERGE (this1:MyOtherLabel)" const queryResult = query.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` - "MERGE (this0:MyLabel) - ON MATCH SET - this0.age = $param0" - `); +"MERGE (this0:MyLabel) + ON MATCH SET this0.age = $param0" +`); expect(queryResult.params).toMatchInlineSnapshot(` { "param0": 23, @@ -286,11 +280,9 @@ MERGE (this1:MyOtherLabel)" const queryResult = query.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` -"MERGE (this0:MyLabel) -ON MATCH SET - this0.count = (this0.count + 1) -ON CREATE SET - this0.count = 1" +"MERGE (this0:MyLabel) + ON CREATE SET this0.count = 1 + ON MATCH SET this0.count = (this0.count + 1)" `); expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); @@ -308,9 +300,8 @@ ON CREATE SET const queryResult = query.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` -"MERGE (this0:MyLabel) -ON CREATE SET - this0.age = $param0 +"MERGE (this0:MyLabel) + ON CREATE SET this0.age = $param0 FINISH" `); expect(queryResult.params).toMatchInlineSnapshot(` @@ -333,9 +324,8 @@ FINISH" const queryResult = query.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` -"MERGE (this0:MyLabel) -ON CREATE SET - this0.age = $param0 +"MERGE (this0:MyLabel) + ON CREATE SET this0.age = $param0 ORDER BY this0.age ASC" `); expect(queryResult.params).toMatchInlineSnapshot(` diff --git a/src/clauses/Unwind.test.ts b/src/clauses/Unwind.test.ts index 3c94595b..0b376992 100644 --- a/src/clauses/Unwind.test.ts +++ b/src/clauses/Unwind.test.ts @@ -26,9 +26,7 @@ describe("CypherBuilder Unwind", () => { const moviesList = new Cypher.List([matrix, matrix2]); const unwindQuery = new Cypher.Unwind([moviesList, "batch"]); const queryResult = unwindQuery.build(); - expect(queryResult.cypher).toMatchInlineSnapshot( - `"UNWIND [{ title: \\"Matrix\\" }, { title: \\"Matrix 2\\" }] AS batch"` - ); + expect(queryResult.cypher).toMatchInlineSnapshot(`"UNWIND [{title: 'Matrix'}, {title: 'Matrix 2'}] AS batch"`); expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); @@ -52,8 +50,7 @@ describe("CypherBuilder Unwind", () => { const queryResult = unwindQuery.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` "UNWIND var0 AS var1 -SET - var1.title = $param0 +SET var1.title = $param0 REMOVE var1.title DELETE var1" `); @@ -111,7 +108,7 @@ UNWIND var1 AS var2" const unwindQuery = new Cypher.Unwind([moviesList, batch]).orderBy([batch.property("title", "DESC")]).limit(10); const queryResult = unwindQuery.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` -"UNWIND [{ title: \\"Matrix\\" }, { title: \\"Matrix 2\\" }] AS var0 +"UNWIND [{title: 'Matrix'}, {title: 'Matrix 2'}] AS var0 ORDER BY var0.title.DESC ASC LIMIT 10" `); diff --git a/src/clauses/Use.test.ts b/src/clauses/Use.test.ts index aeae66bb..20e98f49 100644 --- a/src/clauses/Use.test.ts +++ b/src/clauses/Use.test.ts @@ -41,12 +41,12 @@ describe("CypherBuilder USE", () => { const callQuery = new Cypher.Call(new Cypher.Use("mydb", query1)); const queryResult = callQuery.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` - "CALL { - USE mydb - MATCH (this0:Movie) - RETURN this0 - }" - `); +"CALL { + USE mydb + MATCH (this0:Movie) + RETURN this0 +}" +`); expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); diff --git a/src/clauses/With.test.ts b/src/clauses/With.test.ts index ce7e2eb9..1ff3be9a 100644 --- a/src/clauses/With.test.ts +++ b/src/clauses/With.test.ts @@ -255,7 +255,7 @@ CREATE (this0:Movie)" const queryResult = withQuery.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` "WITH * -MERGE (this0:Movie)" +MERGE (this0:Movie) " `); expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); @@ -267,7 +267,7 @@ MERGE (this0:Movie)" const queryResult = withQuery.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` "WITH * -MERGE (this0:Movie)" +MERGE (this0:Movie) " `); expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); @@ -313,7 +313,7 @@ CALL customProcedure(this0)" expect(cypher).toMatchInlineSnapshot(` "WITH this0 CALL (this0) { - CREATE (this0)-[]->(this1) + CREATE (this0)-[]->(this1) } RETURN this1" `); @@ -339,8 +339,7 @@ RETURN this1" "MATCH (this0:Person) WITH this0 WHERE this0.name = $param0 -SET - this0.name = $param1 +SET this0.name = $param1 RETURN this0" `); diff --git a/src/clauses/sub-clauses/Set.test.ts b/src/clauses/sub-clauses/Set.test.ts index bd7ec288..f3ac60b6 100644 --- a/src/clauses/sub-clauses/Set.test.ts +++ b/src/clauses/sub-clauses/Set.test.ts @@ -27,8 +27,7 @@ describe("Set", () => { const queryResult = clause.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` "MATCH (this0) -SET - this0:NewLabel" +SET this0:NewLabel" `); expect(queryResult.params).toMatchInlineSnapshot(`{}`); @@ -45,8 +44,8 @@ SET expect(queryResult.cypher).toMatchInlineSnapshot(` "MATCH (this0) SET - this0:NewLabel, - this0:\`Another Label\`" + this0:NewLabel, + this0:\`Another Label\`" `); expect(queryResult.params).toMatchInlineSnapshot(`{}`); @@ -64,8 +63,8 @@ SET expect(queryResult.cypher).toMatchInlineSnapshot(` "MATCH (this0)-[]->(this1) SET - this0:NewLabel, - this1:\`Another Label\`" + this0:NewLabel, + this1:\`Another Label\`" `); expect(queryResult.params).toMatchInlineSnapshot(`{}`); @@ -82,8 +81,8 @@ SET expect(queryResult.cypher).toMatchInlineSnapshot(` "MATCH (this0) SET - this0:$($param0), - this0:$(this0.genre)" + this0:$($param0), + this0:$(this0.genre)" `); expect(queryResult.params).toMatchInlineSnapshot(` @@ -102,8 +101,7 @@ SET const queryResult = clause.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` "MATCH (this0) -SET - this0[$param0] = $param1" +SET this0[$param0] = $param1" `); expect(queryResult.params).toMatchInlineSnapshot(` @@ -127,8 +125,7 @@ SET const queryResult = clause.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` "MATCH (this0) -SET - this0 = { title: $param0, year: $param1 }" +SET this0 = {title: $param0, year: $param1}" `); expect(queryResult.params).toMatchInlineSnapshot(` { @@ -149,8 +146,7 @@ SET expect(queryResult.cypher).toMatchInlineSnapshot(` "MATCH (this0:Movie) MATCH (this1:Actor) -SET - this0 = this1" +SET this0 = this1" `); expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); @@ -169,8 +165,7 @@ SET const queryResult = clause.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` "MATCH (this0) -SET - this0 += { title: $param0, year: $param1 }" +SET this0 += {title: $param0, year: $param1}" `); expect(queryResult.params).toMatchInlineSnapshot(` { @@ -191,8 +186,7 @@ SET expect(queryResult.cypher).toMatchInlineSnapshot(` "MATCH (this0:Movie) MATCH (this1:Actor) -SET - this0 += this1" +SET this0 += this1" `); expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); diff --git a/src/expressions/Case.test.ts b/src/expressions/Case.test.ts index 254ab8fa..2621613c 100644 --- a/src/expressions/Case.test.ts +++ b/src/expressions/Case.test.ts @@ -36,9 +36,9 @@ describe("Case", () => { expect(queryResult.cypher).toMatchInlineSnapshot(` "CASE $param0 - WHEN \\"Hello\\" THEN true - WHEN \\"Bye\\" THEN false - ELSE false + WHEN 'Hello' THEN true + WHEN 'Bye' THEN false + ELSE false END" `); @@ -61,11 +61,11 @@ END" const queryResult = new TestClause(caseClause).build(); expect(queryResult.cypher).toMatchInlineSnapshot(` - "CASE - WHEN \\"Hello\\" = $param0 THEN true - ELSE false - END" - `); +"CASE + WHEN 'Hello' = $param0 THEN true + ELSE false +END" +`); expect(queryResult.params).toMatchInlineSnapshot(` { @@ -106,9 +106,9 @@ END" expect(cypher).toMatchInlineSnapshot(` "MATCH (this0:Person) RETURN CASE this0.eyes - WHEN \\"blue\\" THEN 1 - WHEN \\"brown\\", \\"hazel\\" THEN 2 - ELSE 3 + WHEN 'blue' THEN 1 + WHEN 'brown', 'hazel' THEN 2 + ELSE 3 END AS result, this0.eyes AS eyes" `); }); @@ -135,9 +135,9 @@ END AS result, this0.eyes AS eyes" expect(cypher).toMatchInlineSnapshot(` "MATCH (this0:Person) RETURN CASE - WHEN this0.eyes = \\"blue\\" THEN 1 - WHEN this0.age < 40 THEN 2 - ELSE 3 + WHEN this0.eyes = 'blue' THEN 1 + WHEN this0.age < 40 THEN 2 + ELSE 3 END AS result, this0.eyes AS eyes" `); }); diff --git a/src/expressions/IsType.test.ts b/src/expressions/IsType.test.ts index 3044fda6..052c8712 100644 --- a/src/expressions/IsType.test.ts +++ b/src/expressions/IsType.test.ts @@ -30,7 +30,7 @@ describe("IsType", () => { const { cypher, params } = unwindClause.build(); expect(cypher).toMatchInlineSnapshot(` -"UNWIND [42, true, \\"abc\\", NULL] AS var0 +"UNWIND [42, true, 'abc', NULL] AS var0 RETURN var0, var0 IS :: INTEGER" `); expect(params).toMatchInlineSnapshot(`{}`); diff --git a/src/expressions/functions/CypherFunctions.test.ts b/src/expressions/functions/CypherFunctions.test.ts index c8dd501d..963bb740 100644 --- a/src/expressions/functions/CypherFunctions.test.ts +++ b/src/expressions/functions/CypherFunctions.test.ts @@ -25,7 +25,7 @@ describe("Cypher Functions", () => { const myFunction = new Cypher.Function("myFunction", [new Cypher.Literal("test"), new Cypher.Param("test2")]); const queryResult = new TestClause(myFunction).build(); - expect(queryResult.cypher).toMatchInlineSnapshot(`"myFunction(\\"test\\", $param0)"`); + expect(queryResult.cypher).toMatchInlineSnapshot(`"myFunction('test', $param0)"`); expect(queryResult.params).toMatchInlineSnapshot(` { diff --git a/src/expressions/functions/math.test.ts b/src/expressions/functions/math.test.ts index e3e09b15..6572d000 100644 --- a/src/expressions/functions/math.test.ts +++ b/src/expressions/functions/math.test.ts @@ -17,8 +17,8 @@ * limitations under the License. */ -import { TestClause } from "../../utils/TestClause"; import Cypher from "../.."; +import { TestClause } from "../../utils/TestClause"; describe("Math Functions", () => { // Functions with no argument @@ -85,7 +85,7 @@ describe("Math Functions", () => { const roundFunc = Cypher.round(roundNumber, 3, "HALF_DOWN"); const { cypher } = new TestClause(roundFunc).build(); - expect(cypher).toBe(`round(10.23, 3, "HALF_DOWN")`); + expect(cypher).toBe(`round(10.23, 3, 'HALF_DOWN')`); }); }); }); diff --git a/src/expressions/functions/scalar.test.ts b/src/expressions/functions/scalar.test.ts index b1d6535c..630cc698 100644 --- a/src/expressions/functions/scalar.test.ts +++ b/src/expressions/functions/scalar.test.ts @@ -77,7 +77,7 @@ describe("Scalar Functions", () => { const coalesceFunction = Cypher.coalesce(nullParam, testParam, literal); const queryResult = new TestClause(coalesceFunction).build(); - expect(queryResult.cypher).toMatchInlineSnapshot(`"coalesce(NULL, $param0, \\"arthur\\")"`); + expect(queryResult.cypher).toMatchInlineSnapshot(`"coalesce(NULL, $param0, 'arthur')"`); expect(queryResult.params).toMatchInlineSnapshot(` { @@ -100,6 +100,6 @@ describe("Scalar Functions", () => { const cypherFunction = Cypher.size(new Cypher.Literal("Hello")); const queryResult = new TestClause(cypherFunction).build(); - expect(queryResult.cypher).toMatchInlineSnapshot(`"size(\\"Hello\\")"`); + expect(queryResult.cypher).toMatchInlineSnapshot(`"size('Hello')"`); }); }); diff --git a/src/expressions/functions/string.test.ts b/src/expressions/functions/string.test.ts index 957b8bd6..2389ec8d 100644 --- a/src/expressions/functions/string.test.ts +++ b/src/expressions/functions/string.test.ts @@ -50,7 +50,7 @@ describe("String Functions", () => { const testFunction = Cypher[value](new Cypher.Param("Hello"), new Cypher.Literal("Hello")); const { cypher, params } = new TestClause(testFunction).build(); - expect(cypher).toBe(`${value}($param0, "Hello")`); + expect(cypher).toBe(`${value}($param0, 'Hello')`); expect(params).toEqual({ param0: "Hello", @@ -61,7 +61,7 @@ describe("String Functions", () => { const testFunction = Cypher[value]("Hello"); const { cypher, params } = new TestClause(testFunction).build(); - expect(cypher).toBe(`${value}("Hello")`); + expect(cypher).toBe(`${value}('Hello')`); expect(params).toEqual({}); }); @@ -74,7 +74,7 @@ describe("String Functions", () => { ); const { cypher, params } = new TestClause(replaceFunction).build(); - expect(cypher).toMatchInlineSnapshot(`"replace($param0, \\"lo\\", \\"llo\\")"`); + expect(cypher).toMatchInlineSnapshot(`"replace($param0, 'lo', 'llo')"`); expect(params).toMatchInlineSnapshot(` { @@ -87,7 +87,7 @@ describe("String Functions", () => { const substringFunction = Cypher.substring(new Cypher.Param("Hello"), new Cypher.Literal("lo")); const { cypher, params } = new TestClause(substringFunction).build(); - expect(cypher).toMatchInlineSnapshot(`"substring($param0, \\"lo\\")"`); + expect(cypher).toMatchInlineSnapshot(`"substring($param0, 'lo')"`); expect(params).toMatchInlineSnapshot(` { @@ -100,7 +100,7 @@ describe("String Functions", () => { const substring = Cypher.substring(new Cypher.Param("Hello"), new Cypher.Literal("lo"), new Cypher.Literal(2)); const { cypher, params } = new TestClause(substring).build(); - expect(cypher).toMatchInlineSnapshot(`"substring($param0, \\"lo\\", 2)"`); + expect(cypher).toMatchInlineSnapshot(`"substring($param0, 'lo', 2)"`); expect(params).toMatchInlineSnapshot(` { @@ -113,7 +113,7 @@ describe("String Functions", () => { const normalizeFunction = Cypher.normalize(new Cypher.Param("Hello"), normalForm); const { cypher, params } = new TestClause(normalizeFunction).build(); - expect(cypher).toBe(`normalize($param0, "${normalForm}")`); + expect(cypher).toBe(`normalize($param0, '${normalForm}')`); expect(params).toEqual({ param0: "Hello", @@ -137,6 +137,6 @@ describe("String Functions", () => { Cypher.trim("BOTH", new Cypher.Literal("x"), new Cypher.Literal("xxxhelloxxx")) ).build(); - expect(cypher).toMatchInlineSnapshot(`"trim(BOTH \\"x\\" FROM \\"xxxhelloxxx\\")"`); + expect(cypher).toMatchInlineSnapshot(`"trim(BOTH 'x' FROM 'xxxhelloxxx')"`); }); }); diff --git a/src/expressions/functions/temporal.test.ts b/src/expressions/functions/temporal.test.ts index 45e5e1bc..bcc27f5a 100644 --- a/src/expressions/functions/temporal.test.ts +++ b/src/expressions/functions/temporal.test.ts @@ -17,8 +17,8 @@ * limitations under the License. */ -import { TestClause } from "../../utils/TestClause"; import Cypher from "../.."; +import { TestClause } from "../../utils/TestClause"; describe("Temporal Functions", () => { describe.each(["date", "datetime", "localtime", "time", "localdatetime"] as const)("%s()", (fn) => { @@ -47,7 +47,7 @@ describe("Temporal Functions", () => { const cypherFn = temporalFn(new Cypher.Literal("9999-01-01")); const queryResult = new TestClause(cypherFn).build(); - expect(queryResult.cypher).toBe(`${fn}("9999-01-01")`); + expect(queryResult.cypher).toBe(`${fn}('9999-01-01')`); expect(queryResult.params).toEqual({}); }); @@ -56,7 +56,7 @@ describe("Temporal Functions", () => { const cypherFn = temporalFn(new Cypher.Map({ timezone: new Cypher.Literal("America/Los Angeles") })); const queryResult = new TestClause(cypherFn).build(); - expect(queryResult.cypher).toBe(`${fn}({ timezone: "America/Los Angeles" })`); + expect(queryResult.cypher).toBe(`${fn}({timezone: 'America/Los Angeles'})`); expect(queryResult.params).toEqual({}); }); @@ -87,7 +87,7 @@ describe("Temporal Functions", () => { const cypherFn = temporalFn(new Cypher.Literal("9999-01-01")); const queryResult = new TestClause(cypherFn).build(); - expect(queryResult.cypher).toBe(`${fn}.${value}("9999-01-01")`); + expect(queryResult.cypher).toBe(`${fn}.${value}('9999-01-01')`); expect(queryResult.params).toEqual({}); }); @@ -96,7 +96,7 @@ describe("Temporal Functions", () => { const cypherFn = temporalFn(new Cypher.Map({ timezone: new Cypher.Literal("America/Los Angeles") })); const queryResult = new TestClause(cypherFn).build(); - expect(queryResult.cypher).toBe(`${fn}.${value}({ timezone: "America/Los Angeles" })`); + expect(queryResult.cypher).toBe(`${fn}.${value}({timezone: 'America/Los Angeles'})`); expect(queryResult.params).toEqual({}); }); @@ -107,7 +107,7 @@ describe("Temporal Functions", () => { const queryResult = new TestClause(truncate).build(); - expect(queryResult.cypher).toBe(`${fn}.truncate("millennium", var0)`); + expect(queryResult.cypher).toBe(`${fn}.truncate('millennium', var0)`); expect(queryResult.params).toEqual({}); }); @@ -120,7 +120,7 @@ describe("Temporal Functions", () => { const queryResult = new TestClause(truncate).build(); - expect(queryResult.cypher).toBe(`${fn}.truncate("century", var0, { day: 5 })`); + expect(queryResult.cypher).toBe(`${fn}.truncate('century', var0, {day: 5})`); expect(queryResult.params).toEqual({}); }); @@ -159,7 +159,7 @@ describe("Temporal Functions", () => { const queryResult = new TestClause(durationFunc).build(); - expect(queryResult.cypher).toMatchInlineSnapshot(`"duration({ days: 2, hours: $param0 })"`); + expect(queryResult.cypher).toMatchInlineSnapshot(`"duration({days: 2, hours: $param0})"`); expect(queryResult.params).toMatchInlineSnapshot(` { diff --git a/src/expressions/list/ListExpr.test.ts b/src/expressions/list/ListExpr.test.ts index 3999c80a..df485ac3 100644 --- a/src/expressions/list/ListExpr.test.ts +++ b/src/expressions/list/ListExpr.test.ts @@ -26,7 +26,7 @@ describe("List", () => { const queryResult = new TestClause(cypherList).build(); - expect(queryResult.cypher).toMatchInlineSnapshot(`"[\\"1\\", \\"2\\", \\"3\\"]"`); + expect(queryResult.cypher).toMatchInlineSnapshot(`"['1', '2', '3']"`); expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); @@ -35,7 +35,7 @@ describe("List", () => { const listIndex = cypherList.index(0); const queryResult = new TestClause(listIndex).build(); - expect(queryResult.cypher).toMatchInlineSnapshot(`"[\\"1\\", \\"2\\", \\"3\\"][0]"`); + expect(queryResult.cypher).toMatchInlineSnapshot(`"['1', '2', '3'][0]"`); expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); @@ -44,7 +44,7 @@ describe("List", () => { const listIndex = cypherList.range(1, -1); const queryResult = new TestClause(listIndex).build(); - expect(queryResult.cypher).toMatchInlineSnapshot(`"[\\"1\\", \\"2\\", \\"3\\"][1..-1]"`); + expect(queryResult.cypher).toMatchInlineSnapshot(`"['1', '2', '3'][1..-1]"`); expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); }); diff --git a/src/expressions/list/ListIndex.test.ts b/src/expressions/list/ListIndex.test.ts index 34a31e04..87197a37 100644 --- a/src/expressions/list/ListIndex.test.ts +++ b/src/expressions/list/ListIndex.test.ts @@ -26,7 +26,7 @@ describe("ListIndex", () => { const listIndex = Cypher.listIndex(list, 0); const queryResult = new TestClause(listIndex).build(); - expect(queryResult.cypher).toMatchInlineSnapshot(`"[\\"1\\", \\"2\\", \\"3\\"][0]"`); + expect(queryResult.cypher).toMatchInlineSnapshot(`"['1', '2', '3'][0]"`); expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); diff --git a/src/expressions/list/ListRange.test.ts b/src/expressions/list/ListRange.test.ts index 07d4d1e9..16682d1d 100644 --- a/src/expressions/list/ListRange.test.ts +++ b/src/expressions/list/ListRange.test.ts @@ -26,7 +26,7 @@ describe("ListRange", () => { const listIndex = Cypher.listRange(list, 0, 2); const queryResult = new TestClause(listIndex).build(); - expect(queryResult.cypher).toMatchInlineSnapshot(`"[\\"1\\", \\"2\\", \\"3\\"][0..2]"`); + expect(queryResult.cypher).toMatchInlineSnapshot(`"['1', '2', '3'][0..2]"`); expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); @@ -35,7 +35,7 @@ describe("ListRange", () => { const listIndex = Cypher.listRange(list, 2, -1); const queryResult = new TestClause(listIndex).build(); - expect(queryResult.cypher).toMatchInlineSnapshot(`"[\\"1\\", \\"2\\", \\"3\\"][2..-1]"`); + expect(queryResult.cypher).toMatchInlineSnapshot(`"['1', '2', '3'][2..-1]"`); expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); diff --git a/src/expressions/list/PatternComprehension.test.ts b/src/expressions/list/PatternComprehension.test.ts index 8e3858a7..abb575a3 100644 --- a/src/expressions/list/PatternComprehension.test.ts +++ b/src/expressions/list/PatternComprehension.test.ts @@ -97,9 +97,7 @@ describe("Pattern comprehension", () => { const queryResult = new TestClause(comprehension).build(); - expect(queryResult.cypher).toMatchInlineSnapshot( - `"[(this0:Movie)-[this2:ACTED_IN]->(this1:Actor) WHERE this0.title CONTAINS \\"Matrix\\" | this1.name]"` - ); + expect(queryResult.cypher).toMatchInlineSnapshot(`"[(this0:Movie)-[this2:ACTED_IN]->(this1:Actor) WHERE this0.title CONTAINS 'Matrix' | this1.name]"`); expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); diff --git a/src/expressions/map/MapExpr.test.ts b/src/expressions/map/MapExpr.test.ts index fa3432e1..9d44801f 100644 --- a/src/expressions/map/MapExpr.test.ts +++ b/src/expressions/map/MapExpr.test.ts @@ -30,7 +30,7 @@ describe("Map Expression", () => { const queryResult = new TestClause(map).build(); - expect(queryResult.cypher).toMatchInlineSnapshot(`"{ foo: \\"barr\\", var: var0, param: $param0 }"`); + expect(queryResult.cypher).toMatchInlineSnapshot(`"{foo: 'barr', var: var0, param: $param0}"`); expect(queryResult.params).toMatchInlineSnapshot(` { @@ -52,9 +52,7 @@ describe("Map Expression", () => { const queryResult = new TestClause(map).build(); - expect(queryResult.cypher).toMatchInlineSnapshot( - `"{ key: $param0, value2: \\"Override\\", value3: \\"another value\\" }"` - ); + expect(queryResult.cypher).toMatchInlineSnapshot(`"{key: $param0, value2: 'Override', value3: 'another value'}"`); expect(queryResult.params).toMatchInlineSnapshot(` { diff --git a/src/expressions/map/MapProjection.test.ts b/src/expressions/map/MapProjection.test.ts index aa620e04..9cd2c486 100644 --- a/src/expressions/map/MapProjection.test.ts +++ b/src/expressions/map/MapProjection.test.ts @@ -85,9 +85,7 @@ describe("Map Projection", () => { }); const queryResult = new TestClause(mapProjection.toMap()).build(); - expect(queryResult.cypher).toMatchInlineSnapshot( - `"{ title: var0.title, name: var0.name, namedValue: count(this1) }"` - ); + expect(queryResult.cypher).toMatchInlineSnapshot(`"{title: var0.title, name: var0.name, namedValue: count(this1)}"`); expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); @@ -132,7 +130,7 @@ describe("Map Projection", () => { const queryResult = new TestClause(mapProjection).build(); - expect(queryResult.cypher).toMatchInlineSnapshot(`"var0 { .*, title: \\"Test\\" }"`); + expect(queryResult.cypher).toMatchInlineSnapshot(`"var0 { .*, title: 'Test' }"`); }); test("Passing * as a field escapes it", () => { diff --git a/src/expressions/operations/comparison.test.ts b/src/expressions/operations/comparison.test.ts index 85c62727..4ee64eec 100644 --- a/src/expressions/operations/comparison.test.ts +++ b/src/expressions/operations/comparison.test.ts @@ -59,7 +59,7 @@ describe("comparison operations", () => { const stringLiteral = new Cypher.Literal(String.raw`the \u212B char`); const query = new Cypher.Return([Cypher.isNormalized(stringLiteral), "normalized"]); const { cypher } = query.build(); - expect(cypher).toMatchInlineSnapshot(`"RETURN \\"the \\\\u212B char\\" IS NORMALIZED AS normalized"`); + expect(cypher).toMatchInlineSnapshot(`"RETURN 'the \\\\u212B char' IS NORMALIZED AS normalized"`); }); test.each(["NFC", "NFD", "NFKC", "NFKD"] as const)( @@ -68,7 +68,7 @@ describe("comparison operations", () => { const stringLiteral = new Cypher.Literal(String.raw`the \u212B char`); const query = new Cypher.Return([Cypher.isNormalized(stringLiteral, type), "normalized"]); const { cypher } = query.build(); - expect(cypher).toBe(`RETURN "the \\u212B char" IS ${type} NORMALIZED AS normalized`); + expect(cypher).toBe(`RETURN 'the \\u212B char' IS ${type} NORMALIZED AS normalized`); } ); @@ -76,9 +76,7 @@ describe("comparison operations", () => { const stringLiteral = new Cypher.Literal(String.raw`the \u212B char`); const query = new Cypher.Return([Cypher.isNotNormalized(stringLiteral), "notNormalized"]); const { cypher } = query.build(); - expect(cypher).toMatchInlineSnapshot( - `"RETURN \\"the \\\\u212B char\\" IS NOT NORMALIZED AS notNormalized"` - ); + expect(cypher).toMatchInlineSnapshot(`"RETURN 'the \\\\u212B char' IS NOT NORMALIZED AS notNormalized"`); }); test.each(["NFC", "NFD", "NFKC", "NFKD"] as const)( @@ -87,7 +85,7 @@ describe("comparison operations", () => { const stringLiteral = new Cypher.Literal(String.raw`the \u212B char`); const query = new Cypher.Return([Cypher.isNotNormalized(stringLiteral, type), "notNormalized"]); const { cypher } = query.build(); - expect(cypher).toBe(`RETURN "the \\u212B char" IS NOT ${type} NORMALIZED AS notNormalized`); + expect(cypher).toBe(`RETURN 'the \\u212B char' IS NOT ${type} NORMALIZED AS notNormalized`); } ); }); diff --git a/src/expressions/operations/concat.test.ts b/src/expressions/operations/concat.test.ts index f546cc4a..c4dd50c3 100644 --- a/src/expressions/operations/concat.test.ts +++ b/src/expressions/operations/concat.test.ts @@ -24,7 +24,7 @@ describe("concat operators", () => { test("concatenating strings", () => { const concat = Cypher.concat(new Cypher.Literal("Hello"), new Cypher.Literal("World!")); const { cypher } = new TestClause(concat).build(); - expect(cypher).toMatchInlineSnapshot(`"(\\"Hello\\" || \\"World!\\")"`); + expect(cypher).toMatchInlineSnapshot(`"('Hello' || 'World!')"`); }); test("concatenating multiple strings with params", () => { const concat = Cypher.concat( @@ -33,7 +33,7 @@ describe("concat operators", () => { new Cypher.Param("Thanks for all the fish") ); const { cypher, params } = new TestClause(concat).build(); - expect(cypher).toMatchInlineSnapshot(`"(\\"Hello\\" || \\"World!\\" || $param0)"`); + expect(cypher).toMatchInlineSnapshot(`"('Hello' || 'World!' || $param0)"`); expect(params).toMatchInlineSnapshot(` { "param0": "Thanks for all the fish", @@ -50,8 +50,7 @@ describe("concat operators", () => { const { cypher } = new TestClause(matchSet).build(); expect(cypher).toMatchInlineSnapshot(` "MATCH (this0) -SET - this0.greeting = (\\"Hello \\" || this0.name)" +SET this0.greeting = ('Hello ' || this0.name)" `); }); }); diff --git a/src/expressions/operations/math.test.ts b/src/expressions/operations/math.test.ts index 141869a5..3d065ac9 100644 --- a/src/expressions/operations/math.test.ts +++ b/src/expressions/operations/math.test.ts @@ -55,7 +55,7 @@ describe("math operators", () => { test("plus for concatenating strings", () => { const concatPlus = Cypher.plus(new Cypher.Literal("Hello"), new Cypher.Literal("World!")); const { cypher } = new TestClause(concatPlus).build(); - expect(cypher).toMatchInlineSnapshot(`"(\\"Hello\\" + \\"World!\\")"`); + expect(cypher).toMatchInlineSnapshot(`"('Hello' + 'World!')"`); }); test("minus", () => { diff --git a/src/expressions/subquery/Collect.test.ts b/src/expressions/subquery/Collect.test.ts index afed2de7..771f89d2 100644 --- a/src/expressions/subquery/Collect.test.ts +++ b/src/expressions/subquery/Collect.test.ts @@ -38,9 +38,9 @@ describe("Collect Subquery", () => { expect(queryResult.cypher).toMatchInlineSnapshot(` "MATCH (this0:Person) -WHERE \\"Ozzy\\" IN COLLECT { - MATCH (this0:Person)-[this1:HAS_DOG]->(this2:Dog) - RETURN this2.name +WHERE 'Ozzy' IN COLLECT { + MATCH (this0:Person)-[this1:HAS_DOG]->(this2:Dog) + RETURN this2.name } RETURN this0" `); @@ -76,11 +76,11 @@ RETURN this0" expect(queryResult.cypher).toMatchInlineSnapshot(` "MATCH (this0:Person) RETURN this0, COLLECT { - MATCH (this0:Person)-[this1:HAS_DOG]->(this2:Dog) - RETURN this2.name AS petName - UNION - MATCH (this0:Person)-[this3:HAS_CAT]->(this4:Cat) - RETURN this4.name AS petName + MATCH (this0:Person)-[this1:HAS_DOG]->(this2:Dog) + RETURN this2.name AS petName + UNION + MATCH (this0:Person)-[this3:HAS_CAT]->(this4:Cat) + RETURN this4.name AS petName } AS petNames" `); diff --git a/src/expressions/subquery/Count.test.ts b/src/expressions/subquery/Count.test.ts index e4414c3b..c00c11f3 100644 --- a/src/expressions/subquery/Count.test.ts +++ b/src/expressions/subquery/Count.test.ts @@ -31,13 +31,13 @@ describe("Count Subquery", () => { const queryResult = match.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` - "MATCH (this0) - WHERE COUNT { - MATCH (this1:Movie) - RETURN * - } > 10 - RETURN *" - `); +"MATCH (this0) +WHERE COUNT { + MATCH (this1:Movie) + RETURN * +} > 10 +RETURN *" +`); expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); diff --git a/src/expressions/subquery/Exists.test.ts b/src/expressions/subquery/Exists.test.ts index 667bf484..e34360ea 100644 --- a/src/expressions/subquery/Exists.test.ts +++ b/src/expressions/subquery/Exists.test.ts @@ -29,13 +29,13 @@ describe("Exists subquery", () => { const queryResult = match.build(); expect(queryResult.cypher).toMatchInlineSnapshot(` - "MATCH (this0) - WHERE EXISTS { - MATCH (this1:Movie) - RETURN * - } - RETURN *" - `); +"MATCH (this0) +WHERE EXISTS { + MATCH (this1:Movie) + RETURN * +} +RETURN *" +`); expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); diff --git a/src/namespaces/db/cdc.test.ts b/src/namespaces/db/cdc.test.ts index 25c7cd59..f929a9d0 100644 --- a/src/namespaces/db/cdc.test.ts +++ b/src/namespaces/db/cdc.test.ts @@ -58,14 +58,14 @@ describe("db.cdc procedures", () => { const query = Cypher.db.cdc.query("my-cursor"); const { cypher } = query.build(); - expect(cypher).toMatchInlineSnapshot(`"CALL db.cdc.query(\\"my-cursor\\", [])"`); + expect(cypher).toMatchInlineSnapshot(`"CALL db.cdc.query('my-cursor', [])"`); }); test("with literal", () => { const query = Cypher.db.cdc.query(new Cypher.Literal("my-cursor")); const { cypher } = query.build(); - expect(cypher).toMatchInlineSnapshot(`"CALL db.cdc.query(\\"my-cursor\\", [])"`); + expect(cypher).toMatchInlineSnapshot(`"CALL db.cdc.query('my-cursor', [])"`); }); test("with selectors in array", () => { @@ -73,9 +73,7 @@ describe("db.cdc procedures", () => { const { cypher } = query.build(); - expect(cypher).toMatchInlineSnapshot( - `"CALL db.cdc.query(\\"my-cursor\\", [{ select: \\"e\\", operation: \\"c\\", changesTo: [\\"name\\", \\"title\\"] }])"` - ); + expect(cypher).toMatchInlineSnapshot(`"CALL db.cdc.query('my-cursor', [{select: 'e', operation: 'c', changesTo: ['name', 'title']}])"`); }); }); }); diff --git a/src/namespaces/db/db.test.ts b/src/namespaces/db/db.test.ts index 39e3822f..0cbed064 100644 --- a/src/namespaces/db/db.test.ts +++ b/src/namespaces/db/db.test.ts @@ -26,7 +26,7 @@ describe("db procedures", () => { const { cypher } = procedure.build(); - expect(cypher).toMatchInlineSnapshot(`"CALL db.awaitIndex(\\"name\\", 123)"`); + expect(cypher).toMatchInlineSnapshot(`"CALL db.awaitIndex('name', 123)"`); }); test("db.awaitIndexes", () => { const procedure = Cypher.db.awaitIndexes(123); @@ -43,7 +43,7 @@ describe("db procedures", () => { const { cypher } = procedure.build(); - expect(cypher).toEqual(`CALL db.${procedureName}("param")`); + expect(cypher).toEqual(`CALL db.${procedureName}('param')`); } ); @@ -54,7 +54,7 @@ describe("db procedures", () => { const { cypher } = procedure.build(); - expect(cypher).toEqual(`CALL db.${procedureName}("param")`); + expect(cypher).toEqual(`CALL db.${procedureName}('param')`); } ); @@ -147,7 +147,7 @@ describe("db functions", () => { const dbNameFromElementId = Cypher.db.nameFromElementId("1234"); const { cypher, params } = new TestClause(dbNameFromElementId).build(); - expect(cypher).toMatchInlineSnapshot(`"db.nameFromElementId(\\"1234\\")"`); + expect(cypher).toMatchInlineSnapshot(`"db.nameFromElementId('1234')"`); expect(params).toMatchInlineSnapshot(`{}`); }); diff --git a/src/namespaces/db/index/fulltext.test.ts b/src/namespaces/db/index/fulltext.test.ts index c58733b2..1ebbfffa 100644 --- a/src/namespaces/db/index/fulltext.test.ts +++ b/src/namespaces/db/index/fulltext.test.ts @@ -29,9 +29,7 @@ describe("db.index.fulltext", () => { const { cypher, params } = fulltextProcedure.build(); - expect(cypher).toMatchInlineSnapshot( - `"CALL db.index.fulltext.queryNodes(\\"my-text-index\\", $param0) YIELD node AS this0"` - ); + expect(cypher).toMatchInlineSnapshot(`"CALL db.index.fulltext.queryNodes('my-text-index', $param0) YIELD node AS this0"`); expect(params).toMatchInlineSnapshot(` { "param0": "This is a lovely phrase", @@ -50,10 +48,10 @@ describe("db.index.fulltext", () => { const { cypher, params } = fulltextProcedure.build(); expect(cypher).toMatchInlineSnapshot(` - "CALL db.index.fulltext.queryNodes(\\"my-text-index\\", $param0) YIELD node AS this0 - WHERE this0.title = $param1 - RETURN this0" - `); +"CALL db.index.fulltext.queryNodes('my-text-index', $param0) YIELD node AS this0 +WHERE this0.title = $param1 +RETURN this0" +`); expect(params).toMatchInlineSnapshot(` { "param0": "This is a lovely phrase", @@ -74,9 +72,7 @@ describe("db.index.fulltext", () => { const { cypher, params } = fulltextProcedure.build(); - expect(cypher).toMatchInlineSnapshot( - `"CALL db.index.fulltext.queryNodes(\\"my-text-index\\", $param0, { skip: 5, analyser: $param1 })"` - ); + expect(cypher).toMatchInlineSnapshot(`"CALL db.index.fulltext.queryNodes('my-text-index', $param0, {skip: 5, analyser: $param1})"`); expect(params).toMatchInlineSnapshot(` { "param0": "This is a lovely phrase", @@ -95,9 +91,7 @@ describe("db.index.fulltext", () => { const { cypher, params } = fulltextProcedure.build(); - expect(cypher).toMatchInlineSnapshot( - `"CALL db.index.fulltext.queryRelationships(\\"my-text-index\\", $param0) YIELD relationship AS this0"` - ); + expect(cypher).toMatchInlineSnapshot(`"CALL db.index.fulltext.queryRelationships('my-text-index', $param0) YIELD relationship AS this0"`); expect(params).toMatchInlineSnapshot(` { "param0": "This is a lovely phrase", @@ -117,9 +111,7 @@ describe("db.index.fulltext", () => { const { cypher, params } = fulltextProcedure.build(); - expect(cypher).toMatchInlineSnapshot( - `"CALL db.index.fulltext.queryRelationships(\\"my-text-index\\", $param0, { skip: 5, analyser: $param1 })"` - ); + expect(cypher).toMatchInlineSnapshot(`"CALL db.index.fulltext.queryRelationships('my-text-index', $param0, {skip: 5, analyser: $param1})"`); expect(params).toMatchInlineSnapshot(` { "param0": "This is a lovely phrase", diff --git a/src/namespaces/db/index/vector.test.ts b/src/namespaces/db/index/vector.test.ts index 207dce69..874f8574 100644 --- a/src/namespaces/db/index/vector.test.ts +++ b/src/namespaces/db/index/vector.test.ts @@ -29,9 +29,7 @@ describe("db.index.vector.queryNodes", () => { const { cypher, params } = vectorProcedure.build(); - expect(cypher).toMatchInlineSnapshot( - `"CALL db.index.vector.queryNodes(\\"my-vector-index\\", 10, $param0) YIELD node AS this0"` - ); + expect(cypher).toMatchInlineSnapshot(`"CALL db.index.vector.queryNodes('my-vector-index', 10, $param0) YIELD node AS this0"`); expect(params).toMatchInlineSnapshot(` { "param0": "This is a lovely phrase", @@ -47,9 +45,7 @@ describe("db.index.vector.queryNodes", () => { const { cypher, params } = vectorProcedure.build(); - expect(cypher).toMatchInlineSnapshot( - `"CALL db.index.vector.queryNodes(\\"my-vector-index\\", 5, \\"This is a lovely phrase literal\\") YIELD node AS this0"` - ); + expect(cypher).toMatchInlineSnapshot(`"CALL db.index.vector.queryNodes('my-vector-index', 5, 'This is a lovely phrase literal') YIELD node AS this0"`); expect(params).toMatchInlineSnapshot(`{}`); }); test("vector with where and return", () => { @@ -64,10 +60,10 @@ describe("db.index.vector.queryNodes", () => { const { cypher, params } = vectorProcedure.build(); expect(cypher).toMatchInlineSnapshot(` - "CALL db.index.vector.queryNodes(\\"my-vector-index\\", 15, $param0) YIELD node AS this0 - WHERE this0.title = $param1 - RETURN this0" - `); +"CALL db.index.vector.queryNodes('my-vector-index', 15, $param0) YIELD node AS this0 +WHERE this0.title = $param1 +RETURN this0" +`); expect(params).toMatchInlineSnapshot(` { "param0": "This is a lovely phrase", @@ -86,9 +82,7 @@ describe("db.index.vector.queryRelationships", () => { const { cypher, params } = vectorProcedure.build(); - expect(cypher).toMatchInlineSnapshot( - `"CALL db.index.vector.queryRelationships(\\"my-vector-index\\", 10, $param0) YIELD relationship AS this0"` - ); + expect(cypher).toMatchInlineSnapshot(`"CALL db.index.vector.queryRelationships('my-vector-index', 10, $param0) YIELD relationship AS this0"`); expect(params).toMatchInlineSnapshot(` { "param0": "This is a lovely phrase", @@ -108,9 +102,7 @@ describe("db.index.vector.queryRelationships", () => { const { cypher, params } = vectorProcedure.build(); - expect(cypher).toMatchInlineSnapshot( - `"CALL db.index.vector.queryRelationships(\\"my-vector-index\\", 10, \\"This is a lovely phrase literal\\") YIELD relationship AS this0"` - ); + expect(cypher).toMatchInlineSnapshot(`"CALL db.index.vector.queryRelationships('my-vector-index', 10, 'This is a lovely phrase literal') YIELD relationship AS this0"`); expect(params).toMatchInlineSnapshot(`{}`); }); test("vector with where and return", () => { @@ -125,10 +117,10 @@ describe("db.index.vector.queryRelationships", () => { const { cypher, params } = vectorProcedure.build(); expect(cypher).toMatchInlineSnapshot(` - "CALL db.index.vector.queryRelationships(\\"my-vector-index\\", 5, $param0) YIELD relationship AS this0 - WHERE this0.title = $param1 - RETURN this0" - `); +"CALL db.index.vector.queryRelationships('my-vector-index', 5, $param0) YIELD relationship AS this0 +WHERE this0.title = $param1 +RETURN this0" +`); expect(params).toMatchInlineSnapshot(` { "param0": "This is a lovely phrase", diff --git a/src/namespaces/genai/genai.test.ts b/src/namespaces/genai/genai.test.ts index 186f5675..768eeb26 100644 --- a/src/namespaces/genai/genai.test.ts +++ b/src/namespaces/genai/genai.test.ts @@ -31,9 +31,7 @@ describe("genai functions", () => { const { cypher, params } = result.build(); - expect(cypher).toMatchInlineSnapshot( - `"WITH genai.vector.encode(\\"embeddings are cool\\", \\"VertexAI\\", { token: \\"my-token\\", projectId: \\"my-project\\" }) AS var0"` - ); + expect(cypher).toMatchInlineSnapshot(`"WITH genai.vector.encode('embeddings are cool', 'VertexAI', {token: 'my-token', projectId: 'my-project'}) AS var0"`); expect(params).toMatchInlineSnapshot(`{}`); }); test("Encode with query and return", () => { @@ -62,11 +60,11 @@ describe("genai functions", () => { const { cypher, params } = result.build(); expect(cypher).toMatchInlineSnapshot(` - "WITH \\"embeddings are cool\\" AS var0 - WITH genai.vector.encode(var0, \\"OpenAI\\", { token: $param0, model: \\"my-model\\", dimensions: 512 }) AS var1 - CALL db.index.vector.queryNodes(\\"my_index\\", 10, var1) YIELD node AS var2, score AS var3 - RETURN var2, var3" - `); +"WITH 'embeddings are cool' AS var0 +WITH genai.vector.encode(var0, 'OpenAI', {token: $param0, model: 'my-model', dimensions: 512}) AS var1 +CALL db.index.vector.queryNodes('my_index', 10, var1) YIELD node AS var2, score AS var3 +RETURN var2, var3" +`); expect(params).toMatchInlineSnapshot(` { "param0": "my-token", @@ -91,9 +89,7 @@ describe("genai procedures", () => { const { cypher, params } = genAiEncodeFunction.build(); - expect(cypher).toMatchInlineSnapshot( - `"CALL genai.vector.encodeBatch([\\"embeddings are cool\\", \\"I love embeddings\\"], \\"OpenAI\\", { token: \\"my-token\\", projectId: \\"my-project\\" })"` - ); + expect(cypher).toMatchInlineSnapshot(`"CALL genai.vector.encodeBatch(['embeddings are cool', 'I love embeddings'], 'OpenAI', {token: 'my-token', projectId: 'my-project'})"`); expect(params).toMatchInlineSnapshot(`{}`); }); test("Cypher.Literal provider value", () => { @@ -104,9 +100,7 @@ describe("genai procedures", () => { const { cypher, params } = genAiEncodeFunction.build(); - expect(cypher).toMatchInlineSnapshot( - `"CALL genai.vector.encodeBatch([\\"embeddings are cool\\", \\"I love embeddings\\"], \\"OpenAI\\", { token: \\"my-token\\", projectId: \\"my-project\\" })"` - ); + expect(cypher).toMatchInlineSnapshot(`"CALL genai.vector.encodeBatch(['embeddings are cool', 'I love embeddings'], 'OpenAI', {token: 'my-token', projectId: 'my-project'})"`); expect(params).toMatchInlineSnapshot(`{}`); }); test("Cypher.Param provider value", () => { @@ -117,9 +111,7 @@ describe("genai procedures", () => { const { cypher, params } = genAiEncodeFunction.build(); - expect(cypher).toMatchInlineSnapshot( - `"CALL genai.vector.encodeBatch([\\"embeddings are cool\\", \\"I love embeddings\\"], $param0, { token: \\"my-token\\", projectId: \\"my-project\\" })"` - ); + expect(cypher).toMatchInlineSnapshot(`"CALL genai.vector.encodeBatch(['embeddings are cool', 'I love embeddings'], $param0, {token: 'my-token', projectId: 'my-project'})"`); expect(params).toMatchInlineSnapshot(` { "param0": "OpenAI", @@ -138,9 +130,7 @@ describe("genai procedures", () => { const { cypher, params } = genAiEncodeFunction.build(); - expect(cypher).toMatchInlineSnapshot( - `"CALL genai.vector.encodeBatch([\\"embeddings are cool\\", \\"I love embeddings\\"], \\"AzureOpenAI\\", { token: \\"my-token\\", resource: \\"my-resource-name\\", deployment: $param0, dimensions: 512 })"` - ); + expect(cypher).toMatchInlineSnapshot(`"CALL genai.vector.encodeBatch(['embeddings are cool', 'I love embeddings'], 'AzureOpenAI', {token: 'my-token', resource: 'my-resource-name', deployment: $param0, dimensions: 512})"`); expect(params).toMatchInlineSnapshot(` { "param0": "my-deployment", @@ -164,9 +154,9 @@ describe("genai procedures", () => { const { cypher, params } = encodeBatchProcedure.build(); expect(cypher).toMatchInlineSnapshot(` - "CALL genai.vector.encodeBatch([\\"embeddings are cool\\", \\"I love embeddings\\"], \\"OpenAI\\", { token: $param0, model: \\"my-model\\", dimensions: 512 }) YIELD index AS var0, vector AS var1, resource AS var2 - RETURN var0, var1, var2" - `); +"CALL genai.vector.encodeBatch(['embeddings are cool', 'I love embeddings'], 'OpenAI', {token: $param0, model: 'my-model', dimensions: 512}) YIELD index AS var0, vector AS var1, resource AS var2 +RETURN var0, var1, var2" +`); expect(params).toMatchInlineSnapshot(` { "param0": "my-token", diff --git a/src/namespaces/tx.test.ts b/src/namespaces/tx.test.ts index acfcb351..22c3c998 100644 --- a/src/namespaces/tx.test.ts +++ b/src/namespaces/tx.test.ts @@ -33,6 +33,6 @@ describe("tx procedures", () => { }); const { cypher } = query.build(); - expect(cypher).toMatchInlineSnapshot(`"CALL tx.setMetaData({ test: \\"dsa\\", test2: $param0 })"`); + expect(cypher).toMatchInlineSnapshot(`"CALL tx.setMetaData({test: 'dsa', test2: $param0})"`); }); }); diff --git a/src/pattern/Pattern.test.ts b/src/pattern/Pattern.test.ts index e7db0bff..01c19e92 100644 --- a/src/pattern/Pattern.test.ts +++ b/src/pattern/Pattern.test.ts @@ -75,9 +75,7 @@ describe("Patterns", () => { }, }); const queryResult = new TestClause(pattern).build(); - expect(queryResult.cypher).toMatchInlineSnapshot( - `"(this0:TestLabel { name: (\\"The \\" + \\"Matrix\\") })"` - ); + expect(queryResult.cypher).toMatchInlineSnapshot(`"(this0:TestLabel { name: ('The ' + 'Matrix') })"`); expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); @@ -225,9 +223,7 @@ describe("Patterns", () => { .to(b) ); const queryResult = query.build(); - expect(queryResult.cypher).toMatchInlineSnapshot( - `"(this0:Person&Actor)-[this1:ACTED_IN { roles: (\\"The \\" + \\"Matrix\\") }]->(this2)"` - ); + expect(queryResult.cypher).toMatchInlineSnapshot(`"(this0:Person&Actor)-[this1:ACTED_IN { roles: ('The ' + 'Matrix') }]->(this2)"`); expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); @@ -434,7 +430,7 @@ describe("Patterns", () => { Cypher.eq(node.property("name"), new Cypher.Literal("Keanu")) ); const queryResult = new TestClause(pattern).build(); - expect(queryResult.cypher).toMatchInlineSnapshot(`"(this0:TestLabel WHERE this0.name = \\"Keanu\\")"`); + expect(queryResult.cypher).toMatchInlineSnapshot(`"(this0:TestLabel WHERE this0.name = 'Keanu')"`); }); test("Node pattern with where predicate and properties", () => { @@ -450,9 +446,7 @@ describe("Patterns", () => { .related({}) .to(new Cypher.Node()); const queryResult = new TestClause(pattern).build(); - expect(queryResult.cypher).toMatchInlineSnapshot( - `"(this0:TestLabel { released: 1999 } WHERE this0.name = \\"Keanu\\")-[]->(this1)"` - ); + expect(queryResult.cypher).toMatchInlineSnapshot(`"(this0:TestLabel { released: 1999 } WHERE this0.name = 'Keanu')-[]->(this1)"`); }); test("Node pattern with where predicate in target node", () => { @@ -463,9 +457,7 @@ describe("Patterns", () => { .to(new Cypher.Variable()) .where(Cypher.eq(node.property("name"), new Cypher.Literal("Keanu"))); const queryResult = new TestClause(pattern).build(); - expect(queryResult.cypher).toMatchInlineSnapshot( - `"(this0:TestLabel)-[]->(var1 WHERE this0.name = \\"Keanu\\")"` - ); + expect(queryResult.cypher).toMatchInlineSnapshot(`"(this0:TestLabel)-[]->(var1 WHERE this0.name = 'Keanu')"`); }); test("Relationship pattern with where predicate", () => { @@ -477,9 +469,7 @@ describe("Patterns", () => { .where(Cypher.eq(relationship.property("role"), new Cypher.Literal("Neo"))) .to(new Cypher.Node()); const queryResult = new TestClause(pattern).build(); - expect(queryResult.cypher).toMatchInlineSnapshot( - `"(this0:TestLabel)-[this1:ACTED_IN WHERE this1.role = \\"Neo\\"]->(this2)"` - ); + expect(queryResult.cypher).toMatchInlineSnapshot(`"(this0:TestLabel)-[this1:ACTED_IN WHERE this1.role = 'Neo']->(this2)"`); }); test("Relationship pattern with where predicate and properties", () => { @@ -496,9 +486,7 @@ describe("Patterns", () => { .where(Cypher.eq(relationship.property("role"), new Cypher.Literal("Neo"))) .to(new Cypher.Node()); const queryResult = new TestClause(pattern).build(); - expect(queryResult.cypher).toMatchInlineSnapshot( - `"(this0:TestLabel)-[this1:ACTED_IN WHERE this1.role = \\"Neo\\" { test: \\"hello\\" }]->(this2)"` - ); + expect(queryResult.cypher).toMatchInlineSnapshot(`"(this0:TestLabel)-[this1:ACTED_IN WHERE this1.role = 'Neo' { test: 'hello' }]->(this2)"`); }); }); diff --git a/src/procedures/CypherProcedure.test.ts b/src/procedures/CypherProcedure.test.ts index b6d5039d..78e8e67f 100644 --- a/src/procedures/CypherProcedure.test.ts +++ b/src/procedures/CypherProcedure.test.ts @@ -60,9 +60,7 @@ describe("Procedures", () => { const { cypher, params } = customProcedure.build(); - expect(cypher).toMatchInlineSnapshot( - `"CALL customProcedure(this0) YIELD result1, result2 AS \\"aliased\\", result3 AS string-alias"` - ); + expect(cypher).toMatchInlineSnapshot(`"CALL customProcedure(this0) YIELD result1, result2 AS 'aliased', result3 AS string-alias"`); expect(params).toMatchInlineSnapshot(`{}`); }); @@ -195,8 +193,7 @@ REMOVE this0.test" expect(cypher).toMatchInlineSnapshot(` "CALL custom-procedure() YIELD test -SET - var0.test = \\"hello\\"" +SET var0.test = 'hello'" `); expect(params).toMatchInlineSnapshot(`{}`); }); @@ -223,7 +220,7 @@ UNWIND var0 AS var1" expect(cypher).toMatchInlineSnapshot(` "CALL custom-procedure() YIELD test -MERGE (this0)" +MERGE (this0) " `); expect(params).toMatchInlineSnapshot(`{}`); }); diff --git a/src/references/Literal.test.ts b/src/references/Literal.test.ts index af1f9135..d6850972 100644 --- a/src/references/Literal.test.ts +++ b/src/references/Literal.test.ts @@ -27,16 +27,25 @@ describe("Literal", () => { const testClause = new TestClause(stringLiteral); const queryResult = testClause.build(); - expect(queryResult.cypher).toBe(`"hello"`); + expect(queryResult.cypher).toBe(`'hello'`); }); - test("Serialize string value escaping it", () => { + test("Serialize string value with quotes", () => { const stringLiteral = new Cypher.Literal(`he"llo`); const testClause = new TestClause(stringLiteral); const queryResult = testClause.build(); - expect(queryResult.cypher).toBe(`"he\\"llo"`); + expect(queryResult.cypher).toBe(`'he"llo'`); + }); + + test("Serialize string value escaping it", () => { + const stringLiteral = new Cypher.Literal(`he'llo`); + + const testClause = new TestClause(stringLiteral); + + const queryResult = testClause.build(); + expect(queryResult.cypher).toBe(`'he\\'llo'`); }); test("Serialize boolean value", () => { @@ -63,16 +72,25 @@ describe("Literal", () => { const testClause = new TestClause(literal); const queryResult = testClause.build(); - expect(queryResult.cypher).toBe(`["hello", 5, "hello"]`); + expect(queryResult.cypher).toBe(`['hello', 5, 'hello']`); }); - test("Serialize array escaping values", () => { + test("Serialize array with quotes", () => { const literal = new Cypher.Literal(["hello", 5, 'hel""lo']); const testClause = new TestClause(literal); const queryResult = testClause.build(); - expect(queryResult.cypher).toBe(`["hello", 5, "hel\\"\\"lo"]`); + expect(queryResult.cypher).toBe(`['hello', 5, 'hel""lo']`); + }); + + test("Serialize array escaping values", () => { + const literal = new Cypher.Literal(["hello", 5, "hel''lo"]); + + const testClause = new TestClause(literal); + + const queryResult = testClause.build(); + expect(queryResult.cypher).toBe(`['hello', 5, 'hel\\'\\'lo']`); }); test("Serialize null", () => { diff --git a/src/references/PropertyRef.test.ts b/src/references/PropertyRef.test.ts index 71839930..ffd958c5 100644 --- a/src/references/PropertyRef.test.ts +++ b/src/references/PropertyRef.test.ts @@ -129,7 +129,7 @@ describe("Property", () => { const testClause = new TestClause(property); const queryResult = testClause.build(); - expect(queryResult.cypher).toMatchInlineSnapshot(`"var0[date()][\\"Hello\\"]"`); + expect(queryResult.cypher).toMatchInlineSnapshot(`"var0[date()]['Hello']"`); }); test("Serialize nested string after expression", () => { diff --git a/src/references/Variable.test.ts b/src/references/Variable.test.ts index ada3afe7..7b95fcc1 100644 --- a/src/references/Variable.test.ts +++ b/src/references/Variable.test.ts @@ -51,7 +51,7 @@ describe("Variable", () => { Cypher.plus(new Cypher.Param("foo"), new Cypher.Literal("bar")) ); - expect(new TestClause(variableProp).build().cypher).toMatchInlineSnapshot(`"var0[($param0 + \\"bar\\")]"`); + expect(new TestClause(variableProp).build().cypher).toMatchInlineSnapshot(`"var0[($param0 + 'bar')]"`); }); test("does not escape named variable with valid name", () => { diff --git a/src/utils/concat.test.ts b/src/utils/concat.test.ts index 3876f279..347e141f 100644 --- a/src/utils/concat.test.ts +++ b/src/utils/concat.test.ts @@ -67,13 +67,11 @@ describe("CypherBuilder utils.concat", () => { const queryResult = Cypher.utils.concat(create1, create2).build(); expect(queryResult.cypher).toMatchInlineSnapshot(` - "CREATE (this0:Movie) - SET - this0.title = $param0 - CREATE (this1:Movie) - SET - this1.title = $param0" - `); +"CREATE (this0:Movie) +SET this0.title = $param0 +CREATE (this1:Movie) +SET this1.title = $param0" +`); expect(queryResult.params).toMatchInlineSnapshot(` { diff --git a/src/utils/escape.test.ts b/src/utils/escape.test.ts index ecd75d49..d51698f5 100644 --- a/src/utils/escape.test.ts +++ b/src/utils/escape.test.ts @@ -47,7 +47,7 @@ describe("escaping", () => { test.each([ [`my "var"`, `my "var"`], - [`my \\"var`, `my "var`], + [`my \\"var`, `my \\"var`], [`my 'var'`, `my \\'var\\'`], [`my \\'var`, `my \\\\'var`], ])("Escape '%s'", (original, expected) => { diff --git a/src/utils/serialize-map.test.ts b/src/utils/serialize-map.test.ts index 639c3bfc..a479daea 100644 --- a/src/utils/serialize-map.test.ts +++ b/src/utils/serialize-map.test.ts @@ -31,7 +31,7 @@ describe("serializeMap", () => { test("serialize a map of expressions", () => { const result = serializeMap(env, map); - expect(result).toBe("{ test: 10, `test$`: 10, expr: reverse([1]) }"); + expect(result).toBe("{test: 10, `test$`: 10, expr: reverse([1])}"); }); test("serialize a map of expressions without curly braces", () => { diff --git a/tests/build-config/unsafe-escape.test.ts b/tests/build-config/unsafe-escape.test.ts index e61804e6..ffd871e1 100644 --- a/tests/build-config/unsafe-escape.test.ts +++ b/tests/build-config/unsafe-escape.test.ts @@ -44,9 +44,8 @@ describe("escapeUnsafeLabels", () => { }, }); expect(queryResult.cypher).toMatchInlineSnapshot(` -"MATCH (this0:Person { \`person name\`: \\"Uneak \\\\\\"Seveer\\" })-[:\`ACTED IN\`]->(this1:\`A Movie\`) -SET - this0.\`person name\` = $param0 +"MATCH (this0:Person { \`person name\`: 'Uneak \\"Seveer' })-[:\`ACTED IN\`]->(this1:\`A Movie\`) +SET this0.\`person name\` = $param0 RETURN this0 AS \`My Result\`" `); @@ -81,9 +80,8 @@ RETURN this0 AS \`My Result\`" }, }); expect(queryResult.cypher).toMatchInlineSnapshot(` -"MATCH (this0:Person { \`person name\`: \\"Uneak \\\\\\"Seveer\\" })-[:ACTED IN]->(this1:A Movie) -SET - this0.\`person name\` = $param0 +"MATCH (this0:Person { \`person name\`: 'Uneak \\"Seveer' })-[:ACTED IN]->(this1:A Movie) +SET this0.\`person name\` = $param0 RETURN this0 AS \`My Result\`" `); @@ -117,9 +115,8 @@ RETURN this0 AS \`My Result\`" }, }); expect(queryResult.cypher).toMatchInlineSnapshot(` -"MATCH (this0:Person { \`person name\`: \\"Uneak \\\\\\"Seveer\\" })-[:\`ACTED IN\`]->(this1:A Movie) -SET - this0.\`person name\` = $param0 +"MATCH (this0:Person { \`person name\`: 'Uneak \\"Seveer' })-[:\`ACTED IN\`]->(this1:A Movie) +SET this0.\`person name\` = $param0 RETURN this0 AS \`My Result\`" `); @@ -152,9 +149,8 @@ RETURN this0 AS \`My Result\`" }, }); expect(queryResult.cypher).toMatchInlineSnapshot(` -"MATCH (this0:Person { \`person name\`: \\"Uneak \\\\\\"Seveer\\" })-[:ACTED IN]->(this1:\`A Movie\`) -SET - this0.\`person name\` = $param0 +"MATCH (this0:Person { \`person name\`: 'Uneak \\"Seveer' })-[:ACTED IN]->(this1:\`A Movie\`) +SET this0.\`person name\` = $param0 RETURN this0 AS \`My Result\`" `); @@ -188,7 +184,7 @@ RETURN this0 AS \`My Result\`" }); expect(queryResult.cypher).toMatchInlineSnapshot(` -"MATCH (this0:Person { \`person name\`: \\"Uneak \\\\\\"Seveer\\" })-[:ACTED IN]->(this1:A Movie) +"MATCH (this0:Person { \`person name\`: 'Uneak \\"Seveer' })-[:ACTED IN]->(this1:A Movie) RETURN this0" `); expect(queryResult.params).toMatchInlineSnapshot(`{}`); @@ -217,7 +213,7 @@ RETURN this0" }); expect(queryResult.cypher).toMatchInlineSnapshot(` -"MATCH (this0:Person { \`person name\`: \\"Uneak \\\\\\"Seveer\\" })-[:\`ACTED IN\`]->(this1:\`A Movie\`) +"MATCH (this0:Person { \`person name\`: 'Uneak \\"Seveer' })-[:\`ACTED IN\`]->(this1:\`A Movie\`) RETURN this0" `); expect(queryResult.params).toMatchInlineSnapshot(`{}`); diff --git a/tests/console-log.test.ts b/tests/console-log.test.ts index 1cdfa31b..ad54d528 100644 --- a/tests/console-log.test.ts +++ b/tests/console-log.test.ts @@ -39,27 +39,24 @@ describe("Console.log", () => { ); expect(`${query}`).toMatchInlineSnapshot(` - " \\"\\"\\" - CREATE (this0:Movie) - SET - this0.released = $param0 - \\"\\"\\"" - `); +" \\"\\"\\" + CREATE (this0:Movie) + SET this0.released = $param0 +\\"\\"\\"" +`); expect(query.toString()).toMatchInlineSnapshot(` - " \\"\\"\\" - CREATE (this0:Movie) - SET - this0.released = $param0 - \\"\\"\\"" - `); +" \\"\\"\\" + CREATE (this0:Movie) + SET this0.released = $param0 +\\"\\"\\"" +`); // eslint-disable-next-line @typescript-eslint/no-explicit-any expect((query as any)[customInspectSymbol]()).toMatchInlineSnapshot(` - " \\"\\"\\" - CREATE (this0:Movie) - SET - this0.released = $param0 - \\"\\"\\"" - `); +" \\"\\"\\" + CREATE (this0:Movie) + SET this0.released = $param0 +\\"\\"\\"" +`); }); test("console.log on a pattern", () => { @@ -69,18 +66,18 @@ describe("Console.log", () => { expect(`${pattern}`).toMatchInlineSnapshot(` " \\"\\"\\" - (this0)-[]->() + (this0)-[]->() \\"\\"\\"" `); expect(pattern.toString()).toMatchInlineSnapshot(` " \\"\\"\\" - (this0)-[]->() + (this0)-[]->() \\"\\"\\"" `); // eslint-disable-next-line @typescript-eslint/no-explicit-any expect((pattern as any)[customInspectSymbol]()).toMatchInlineSnapshot(` " \\"\\"\\" - (this0)-[]->() + (this0)-[]->() \\"\\"\\"" `); }); diff --git a/tests/issues/462.test.ts b/tests/issues/462.test.ts index 7bcc843c..ecc62fb9 100644 --- a/tests/issues/462.test.ts +++ b/tests/issues/462.test.ts @@ -38,12 +38,11 @@ describe("https://github.com/neo4j/cypher-builder/issues/462", () => { expect(queryResult.cypher).toMatchInlineSnapshot(` "MATCH (this0:Person) WHERE this0.name = $param0 -SET - this0.name = $param1 +SET this0.name = $param1 REMOVE this0.anotherName SET - this0.anotherName = $param2, - this0.oldName = $param3 + this0.anotherName = $param2, + this0.oldName = $param3 RETURN this0" `); diff --git a/tests/issues/479.test.ts b/tests/issues/479.test.ts index bd9ffd2e..4cab99f1 100644 --- a/tests/issues/479.test.ts +++ b/tests/issues/479.test.ts @@ -95,7 +95,7 @@ RETURN count(this1)" expect(queryResult.cypher).toMatchInlineSnapshot(` "WITH $param0 AS var0 -MATCH (this1:$((var0 || \\"Test\\"))) +MATCH (this1:$((var0 || 'Test'))) RETURN count(this1)" `); }); diff --git a/tests/issues/514.test.ts b/tests/issues/514.test.ts index 65392672..27f59379 100644 --- a/tests/issues/514.test.ts +++ b/tests/issues/514.test.ts @@ -40,8 +40,7 @@ describe("https://github.com/neo4j/cypher-builder/pull/514", () => { expect(queryResult.cypher).toMatchInlineSnapshot(` "MATCH (this0:Movie { title: $param0.title }) -SET - this0 = $param0.year" +SET this0 = $param0.year" `); }); @@ -65,8 +64,7 @@ SET expect(queryResult.cypher).toMatchInlineSnapshot(` "MATCH (this0:Movie { title: $param0.title }) -SET - this0 += $param0.year" +SET this0 += $param0.year" `); }); }); diff --git a/tests/issues/547.test.ts b/tests/issues/547.test.ts index acb9a959..16c93d54 100644 --- a/tests/issues/547.test.ts +++ b/tests/issues/547.test.ts @@ -31,7 +31,7 @@ describe("https://github.com/neo4j/cypher-builder/pull/547", () => { expect(queryResult.cypher).toMatchInlineSnapshot(` "CASE $param0 - WHEN \`in\`[1] THEN true + WHEN \`in\`[1] THEN true END" `); @@ -52,7 +52,7 @@ END" expect(queryResult.cypher).toMatchInlineSnapshot(` "CASE $param0 - WHEN \`in\`.a THEN true + WHEN \`in\`.a THEN true END" `); From 50d16d5526a7b86344aeda94e8c409755c8e3ff1 Mon Sep 17 00:00:00 2001 From: angrykoala Date: Wed, 12 Nov 2025 11:44:47 +0000 Subject: [PATCH 25/30] Mention the style change of Cypher in the migration guide --- .../modules/ROOT/pages/migration-guide-3.adoc | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/docs/modules/ROOT/pages/migration-guide-3.adoc b/docs/modules/ROOT/pages/migration-guide-3.adoc index 99f6c230..50d5819c 100644 --- a/docs/modules/ROOT/pages/migration-guide-3.adoc +++ b/docs/modules/ROOT/pages/migration-guide-3.adoc @@ -280,3 +280,36 @@ _After_ const myOperation: Cypher.Expr = Cypher.and() ---- +== Other changes + +=== Change Cypher formatting + +The generated Cypher now follow the best practices recommended by the link:https://neo4j.com/docs/cypher-manual/current/styleguide/[Cypher Styleguide]. + +For example: + +_Before_ +[source, Cypher] +---- +CALL { + CREATE (this0:Movie) + SET + this0.id = "The Matrix" + RETURN this0 +} +RETURN this0 +---- + +_After_ +[source, Cypher] +---- +CALL { + CREATE (this0:Movie) + SET this0.id = 'The Matrix' + RETURN this0 +} +RETURN this0 +---- + +This doesn't have any impact on the behaviour itself, and should not cause any breaking changes on normal usage, but may affect projects +that modify or test the Cypher generated with Cypher Builder. From 1ad032c58056f452b254549f9e924346ae166efd Mon Sep 17 00:00:00 2001 From: angrykoala Date: Thu, 13 Nov 2025 13:21:14 +0000 Subject: [PATCH 26/30] Remove latest from node tests --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c6b6f334..db9c0c31 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - node-version: [20.x, latest] + node-version: [20.x] steps: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 From 3bdd0d7f91223ac02d4df9e4b4f9e7ec17290716 Mon Sep 17 00:00:00 2001 From: angrykoala Date: Thu, 13 Nov 2025 13:30:37 +0000 Subject: [PATCH 27/30] update dependencies --- .gitignore | 1 - package-lock.json | 7165 +++++++++++++++++++++++++++++++++++++++++++++ package.json | 16 +- 3 files changed, 7173 insertions(+), 9 deletions(-) create mode 100644 package-lock.json diff --git a/.gitignore b/.gitignore index 20b61146..3b998ca8 100644 --- a/.gitignore +++ b/.gitignore @@ -74,7 +74,6 @@ tmp/ # Oclif generated file oclif.manifest.json -package-lock.json yarn.lock .yarn/ diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 00000000..691f663d --- /dev/null +++ b/package-lock.json @@ -0,0 +1,7165 @@ +{ + "name": "@neo4j/cypher-builder", + "version": "2.10.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "@neo4j/cypher-builder", + "version": "2.10.0", + "license": "Apache-2.0", + "devDependencies": { + "@changesets/changelog-github": "0.5.1", + "@changesets/cli": "2.29.7", + "@eslint/js": "9.39.1", + "@tsconfig/node20": "20.1.7", + "@types/jest": "30.0.0", + "@types/node": "24.10.1", + "@typescript-eslint/eslint-plugin": "8.46.4", + "@typescript-eslint/parser": "8.46.4", + "eslint": "9.39.1", + "eslint-config-prettier": "10.1.8", + "eslint-plugin-tsdoc": "0.5.0", + "jest": "30.2.0", + "jest-extended": "7.0.0", + "prettier": "3.6.2", + "ts-jest": "29.4.5", + "typedoc": "0.28.14", + "typescript": "5.9.3" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz", + "integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.5.tgz", + "integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-module-transforms": "^7.28.3", + "@babel/helpers": "^7.28.4", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/traverse": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/remapping": "^2.3.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/generator": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz", + "integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", + "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.27.2", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", + "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz", + "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1", + "@babel/traverse": "^7.28.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", + "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", + "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz", + "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.5" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz", + "integrity": "sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz", + "integrity": "sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz", + "integrity": "sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz", + "integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.5", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz", + "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@changesets/apply-release-plan": { + "version": "7.0.13", + "resolved": "https://registry.npmjs.org/@changesets/apply-release-plan/-/apply-release-plan-7.0.13.tgz", + "integrity": "sha512-BIW7bofD2yAWoE8H4V40FikC+1nNFEKBisMECccS16W1rt6qqhNTBDmIw5HaqmMgtLNz9e7oiALiEUuKrQ4oHg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@changesets/config": "^3.1.1", + "@changesets/get-version-range-type": "^0.4.0", + "@changesets/git": "^3.0.4", + "@changesets/should-skip-package": "^0.1.2", + "@changesets/types": "^6.1.0", + "@manypkg/get-packages": "^1.1.3", + "detect-indent": "^6.0.0", + "fs-extra": "^7.0.1", + "lodash.startcase": "^4.4.0", + "outdent": "^0.5.0", + "prettier": "^2.7.1", + "resolve-from": "^5.0.0", + "semver": "^7.5.3" + } + }, + "node_modules/@changesets/apply-release-plan/node_modules/prettier": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", + "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "dev": true, + "license": "MIT", + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/@changesets/assemble-release-plan": { + "version": "6.0.9", + "resolved": "https://registry.npmjs.org/@changesets/assemble-release-plan/-/assemble-release-plan-6.0.9.tgz", + "integrity": "sha512-tPgeeqCHIwNo8sypKlS3gOPmsS3wP0zHt67JDuL20P4QcXiw/O4Hl7oXiuLnP9yg+rXLQ2sScdV1Kkzde61iSQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@changesets/errors": "^0.2.0", + "@changesets/get-dependents-graph": "^2.1.3", + "@changesets/should-skip-package": "^0.1.2", + "@changesets/types": "^6.1.0", + "@manypkg/get-packages": "^1.1.3", + "semver": "^7.5.3" + } + }, + "node_modules/@changesets/changelog-git": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@changesets/changelog-git/-/changelog-git-0.2.1.tgz", + "integrity": "sha512-x/xEleCFLH28c3bQeQIyeZf8lFXyDFVn1SgcBiR2Tw/r4IAWlk1fzxCEZ6NxQAjF2Nwtczoen3OA2qR+UawQ8Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@changesets/types": "^6.1.0" + } + }, + "node_modules/@changesets/changelog-github": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/@changesets/changelog-github/-/changelog-github-0.5.1.tgz", + "integrity": "sha512-BVuHtF+hrhUScSoHnJwTELB4/INQxVFc+P/Qdt20BLiBFIHFJDDUaGsZw+8fQeJTRP5hJZrzpt3oZWh0G19rAQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@changesets/get-github-info": "^0.6.0", + "@changesets/types": "^6.1.0", + "dotenv": "^8.1.0" + } + }, + "node_modules/@changesets/cli": { + "version": "2.29.7", + "resolved": "https://registry.npmjs.org/@changesets/cli/-/cli-2.29.7.tgz", + "integrity": "sha512-R7RqWoaksyyKXbKXBTbT4REdy22yH81mcFK6sWtqSanxUCbUi9Uf+6aqxZtDQouIqPdem2W56CdxXgsxdq7FLQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@changesets/apply-release-plan": "^7.0.13", + "@changesets/assemble-release-plan": "^6.0.9", + "@changesets/changelog-git": "^0.2.1", + "@changesets/config": "^3.1.1", + "@changesets/errors": "^0.2.0", + "@changesets/get-dependents-graph": "^2.1.3", + "@changesets/get-release-plan": "^4.0.13", + "@changesets/git": "^3.0.4", + "@changesets/logger": "^0.1.1", + "@changesets/pre": "^2.0.2", + "@changesets/read": "^0.6.5", + "@changesets/should-skip-package": "^0.1.2", + "@changesets/types": "^6.1.0", + "@changesets/write": "^0.4.0", + "@inquirer/external-editor": "^1.0.0", + "@manypkg/get-packages": "^1.1.3", + "ansi-colors": "^4.1.3", + "ci-info": "^3.7.0", + "enquirer": "^2.4.1", + "fs-extra": "^7.0.1", + "mri": "^1.2.0", + "p-limit": "^2.2.0", + "package-manager-detector": "^0.2.0", + "picocolors": "^1.1.0", + "resolve-from": "^5.0.0", + "semver": "^7.5.3", + "spawndamnit": "^3.0.1", + "term-size": "^2.1.0" + }, + "bin": { + "changeset": "bin.js" + } + }, + "node_modules/@changesets/config": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@changesets/config/-/config-3.1.1.tgz", + "integrity": "sha512-bd+3Ap2TKXxljCggI0mKPfzCQKeV/TU4yO2h2C6vAihIo8tzseAn2e7klSuiyYYXvgu53zMN1OeYMIQkaQoWnA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@changesets/errors": "^0.2.0", + "@changesets/get-dependents-graph": "^2.1.3", + "@changesets/logger": "^0.1.1", + "@changesets/types": "^6.1.0", + "@manypkg/get-packages": "^1.1.3", + "fs-extra": "^7.0.1", + "micromatch": "^4.0.8" + } + }, + "node_modules/@changesets/errors": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@changesets/errors/-/errors-0.2.0.tgz", + "integrity": "sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==", + "dev": true, + "license": "MIT", + "dependencies": { + "extendable-error": "^0.1.5" + } + }, + "node_modules/@changesets/get-dependents-graph": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/@changesets/get-dependents-graph/-/get-dependents-graph-2.1.3.tgz", + "integrity": "sha512-gphr+v0mv2I3Oxt19VdWRRUxq3sseyUpX9DaHpTUmLj92Y10AGy+XOtV+kbM6L/fDcpx7/ISDFK6T8A/P3lOdQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@changesets/types": "^6.1.0", + "@manypkg/get-packages": "^1.1.3", + "picocolors": "^1.1.0", + "semver": "^7.5.3" + } + }, + "node_modules/@changesets/get-github-info": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/@changesets/get-github-info/-/get-github-info-0.6.0.tgz", + "integrity": "sha512-v/TSnFVXI8vzX9/w3DU2Ol+UlTZcu3m0kXTjTT4KlAdwSvwutcByYwyYn9hwerPWfPkT2JfpoX0KgvCEi8Q/SA==", + "dev": true, + "license": "MIT", + "dependencies": { + "dataloader": "^1.4.0", + "node-fetch": "^2.5.0" + } + }, + "node_modules/@changesets/get-release-plan": { + "version": "4.0.13", + "resolved": "https://registry.npmjs.org/@changesets/get-release-plan/-/get-release-plan-4.0.13.tgz", + "integrity": "sha512-DWG1pus72FcNeXkM12tx+xtExyH/c9I1z+2aXlObH3i9YA7+WZEVaiHzHl03thpvAgWTRaH64MpfHxozfF7Dvg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@changesets/assemble-release-plan": "^6.0.9", + "@changesets/config": "^3.1.1", + "@changesets/pre": "^2.0.2", + "@changesets/read": "^0.6.5", + "@changesets/types": "^6.1.0", + "@manypkg/get-packages": "^1.1.3" + } + }, + "node_modules/@changesets/get-version-range-type": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@changesets/get-version-range-type/-/get-version-range-type-0.4.0.tgz", + "integrity": "sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@changesets/git": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@changesets/git/-/git-3.0.4.tgz", + "integrity": "sha512-BXANzRFkX+XcC1q/d27NKvlJ1yf7PSAgi8JG6dt8EfbHFHi4neau7mufcSca5zRhwOL8j9s6EqsxmT+s+/E6Sw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@changesets/errors": "^0.2.0", + "@manypkg/get-packages": "^1.1.3", + "is-subdir": "^1.1.1", + "micromatch": "^4.0.8", + "spawndamnit": "^3.0.1" + } + }, + "node_modules/@changesets/logger": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@changesets/logger/-/logger-0.1.1.tgz", + "integrity": "sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "picocolors": "^1.1.0" + } + }, + "node_modules/@changesets/parse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@changesets/parse/-/parse-0.4.1.tgz", + "integrity": "sha512-iwksMs5Bf/wUItfcg+OXrEpravm5rEd9Bf4oyIPL4kVTmJQ7PNDSd6MDYkpSJR1pn7tz/k8Zf2DhTCqX08Ou+Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@changesets/types": "^6.1.0", + "js-yaml": "^3.13.1" + } + }, + "node_modules/@changesets/pre": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@changesets/pre/-/pre-2.0.2.tgz", + "integrity": "sha512-HaL/gEyFVvkf9KFg6484wR9s0qjAXlZ8qWPDkTyKF6+zqjBe/I2mygg3MbpZ++hdi0ToqNUF8cjj7fBy0dg8Ug==", + "dev": true, + "license": "MIT", + "dependencies": { + "@changesets/errors": "^0.2.0", + "@changesets/types": "^6.1.0", + "@manypkg/get-packages": "^1.1.3", + "fs-extra": "^7.0.1" + } + }, + "node_modules/@changesets/read": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/@changesets/read/-/read-0.6.5.tgz", + "integrity": "sha512-UPzNGhsSjHD3Veb0xO/MwvasGe8eMyNrR/sT9gR8Q3DhOQZirgKhhXv/8hVsI0QpPjR004Z9iFxoJU6in3uGMg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@changesets/git": "^3.0.4", + "@changesets/logger": "^0.1.1", + "@changesets/parse": "^0.4.1", + "@changesets/types": "^6.1.0", + "fs-extra": "^7.0.1", + "p-filter": "^2.1.0", + "picocolors": "^1.1.0" + } + }, + "node_modules/@changesets/should-skip-package": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@changesets/should-skip-package/-/should-skip-package-0.1.2.tgz", + "integrity": "sha512-qAK/WrqWLNCP22UDdBTMPH5f41elVDlsNyat180A33dWxuUDyNpg6fPi/FyTZwRriVjg0L8gnjJn2F9XAoF0qw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@changesets/types": "^6.1.0", + "@manypkg/get-packages": "^1.1.3" + } + }, + "node_modules/@changesets/types": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@changesets/types/-/types-6.1.0.tgz", + "integrity": "sha512-rKQcJ+o1nKNgeoYRHKOS07tAMNd3YSN0uHaJOZYjBAgxfV7TUE7JE+z4BzZdQwb5hKaYbayKN5KrYV7ODb2rAA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@changesets/write": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@changesets/write/-/write-0.4.0.tgz", + "integrity": "sha512-CdTLvIOPiCNuH71pyDu3rA+Q0n65cmAbXnwWH84rKGiFumFzkmHNT8KHTMEchcxN+Kl8I54xGUhJ7l3E7X396Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@changesets/types": "^6.1.0", + "fs-extra": "^7.0.1", + "human-id": "^4.1.1", + "prettier": "^2.7.1" + } + }, + "node_modules/@changesets/write/node_modules/prettier": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", + "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "dev": true, + "license": "MIT", + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/@emnapi/core": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.7.0.tgz", + "integrity": "sha512-pJdKGq/1iquWYtv1RRSljZklxHCOCAJFJrImO5ZLKPJVJlVUcs8yFwNQlqS0Lo8xT1VAXXTCZocF9n26FWEKsw==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/wasi-threads": "1.1.0", + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/runtime": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.7.0.tgz", + "integrity": "sha512-oAYoQnCYaQZKVS53Fq23ceWMRxq5EhQsE0x0RdQ55jT7wagMu5k+fS39v1fiSLrtrLQlXwVINenqhLMtTrV/1Q==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/wasi-threads": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz", + "integrity": "sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz", + "integrity": "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.2", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.21.1", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.1.tgz", + "integrity": "sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/object-schema": "^2.1.7", + "debug": "^4.3.1", + "minimatch": "^3.1.2" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/config-array/node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/@eslint/config-array/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/@eslint/config-helpers": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz", + "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/core": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz", + "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz", + "integrity": "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/@eslint/eslintrc/node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/@eslint/eslintrc/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/@eslint/eslintrc/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/@eslint/js": { + "version": "9.39.1", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.1.tgz", + "integrity": "sha512-S26Stp4zCy88tH94QbBv3XCuzRQiZ9yXofEILmglYTh/Ug/a9/umqvgFtYBAo3Lp0nsI/5/qH1CCrbdK3AP1Tw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz", + "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz", + "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0", + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@gerrit0/mini-shiki": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/@gerrit0/mini-shiki/-/mini-shiki-3.15.0.tgz", + "integrity": "sha512-L5IHdZIDa4bG4yJaOzfasOH/o22MCesY0mx+n6VATbaiCtMeR59pdRqYk4bEiQkIHfxsHPNgdi7VJlZb2FhdMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/engine-oniguruma": "^3.15.0", + "@shikijs/langs": "^3.15.0", + "@shikijs/themes": "^3.15.0", + "@shikijs/types": "^3.15.0", + "@shikijs/vscode-textmate": "^10.0.2" + } + }, + "node_modules/@humanfs/core": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", + "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.7", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.7.tgz", + "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/core": "^0.19.1", + "@humanwhocodes/retry": "^0.4.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", + "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@inquirer/external-editor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@inquirer/external-editor/-/external-editor-1.0.3.tgz", + "integrity": "sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA==", + "dev": true, + "license": "MIT", + "dependencies": { + "chardet": "^2.1.1", + "iconv-lite": "^0.7.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz", + "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-30.2.0.tgz", + "integrity": "sha512-+O1ifRjkvYIkBqASKWgLxrpEhQAAE7hY77ALLUufSk5717KfOShg6IbqLmdsLMPdUiFvA2kTs0R7YZy+l0IzZQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "30.2.0", + "@types/node": "*", + "chalk": "^4.1.2", + "jest-message-util": "30.2.0", + "jest-util": "30.2.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/@jest/core": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-30.2.0.tgz", + "integrity": "sha512-03W6IhuhjqTlpzh/ojut/pDB2LPRygyWX8ExpgHtQA8H/3K7+1vKmcINx5UzeOX1se6YEsBsOHQ1CRzf3fOwTQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/console": "30.2.0", + "@jest/pattern": "30.0.1", + "@jest/reporters": "30.2.0", + "@jest/test-result": "30.2.0", + "@jest/transform": "30.2.0", + "@jest/types": "30.2.0", + "@types/node": "*", + "ansi-escapes": "^4.3.2", + "chalk": "^4.1.2", + "ci-info": "^4.2.0", + "exit-x": "^0.2.2", + "graceful-fs": "^4.2.11", + "jest-changed-files": "30.2.0", + "jest-config": "30.2.0", + "jest-haste-map": "30.2.0", + "jest-message-util": "30.2.0", + "jest-regex-util": "30.0.1", + "jest-resolve": "30.2.0", + "jest-resolve-dependencies": "30.2.0", + "jest-runner": "30.2.0", + "jest-runtime": "30.2.0", + "jest-snapshot": "30.2.0", + "jest-util": "30.2.0", + "jest-validate": "30.2.0", + "jest-watcher": "30.2.0", + "micromatch": "^4.0.8", + "pretty-format": "30.2.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/core/node_modules/ci-info": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.3.1.tgz", + "integrity": "sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/diff-sequences": { + "version": "30.0.1", + "resolved": "https://registry.npmjs.org/@jest/diff-sequences/-/diff-sequences-30.0.1.tgz", + "integrity": "sha512-n5H8QLDJ47QqbCNn5SuFjCRDrOLEZ0h8vAHCK5RL9Ls7Xa8AQLa/YxAc9UjFqoEDM48muwtBGjtMY5cr0PLDCw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/@jest/environment": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-30.2.0.tgz", + "integrity": "sha512-/QPTL7OBJQ5ac09UDRa3EQes4gt1FTEG/8jZ/4v5IVzx+Cv7dLxlVIvfvSVRiiX2drWyXeBjkMSR8hvOWSog5g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/fake-timers": "30.2.0", + "@jest/types": "30.2.0", + "@types/node": "*", + "jest-mock": "30.2.0" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/@jest/expect": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-30.2.0.tgz", + "integrity": "sha512-V9yxQK5erfzx99Sf+7LbhBwNWEZ9eZay8qQ9+JSC0TrMR1pMDHLMY+BnVPacWU6Jamrh252/IKo4F1Xn/zfiqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "expect": "30.2.0", + "jest-snapshot": "30.2.0" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/@jest/expect-utils": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-30.2.0.tgz", + "integrity": "sha512-1JnRfhqpD8HGpOmQp180Fo9Zt69zNtC+9lR+kT7NVL05tNXIi+QC8Csz7lfidMoVLPD3FnOtcmp0CEFnxExGEA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/get-type": "30.1.0" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-30.2.0.tgz", + "integrity": "sha512-HI3tRLjRxAbBy0VO8dqqm7Hb2mIa8d5bg/NJkyQcOk7V118ObQML8RC5luTF/Zsg4474a+gDvhce7eTnP4GhYw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "30.2.0", + "@sinonjs/fake-timers": "^13.0.0", + "@types/node": "*", + "jest-message-util": "30.2.0", + "jest-mock": "30.2.0", + "jest-util": "30.2.0" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/@jest/get-type": { + "version": "30.1.0", + "resolved": "https://registry.npmjs.org/@jest/get-type/-/get-type-30.1.0.tgz", + "integrity": "sha512-eMbZE2hUnx1WV0pmURZY9XoXPkUYjpc55mb0CrhtdWLtzMQPFvu/rZkTLZFTsdaVQa+Tr4eWAteqcUzoawq/uA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-30.2.0.tgz", + "integrity": "sha512-b63wmnKPaK+6ZZfpYhz9K61oybvbI1aMcIs80++JI1O1rR1vaxHUCNqo3ITu6NU0d4V34yZFoHMn/uoKr/Rwfw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "30.2.0", + "@jest/expect": "30.2.0", + "@jest/types": "30.2.0", + "jest-mock": "30.2.0" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/@jest/pattern": { + "version": "30.0.1", + "resolved": "https://registry.npmjs.org/@jest/pattern/-/pattern-30.0.1.tgz", + "integrity": "sha512-gWp7NfQW27LaBQz3TITS8L7ZCQ0TLvtmI//4OwlQRx4rnWxcPNIYjxZpDcN4+UlGxgm3jS5QPz8IPTCkb59wZA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "jest-regex-util": "30.0.1" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-30.2.0.tgz", + "integrity": "sha512-DRyW6baWPqKMa9CzeiBjHwjd8XeAyco2Vt8XbcLFjiwCOEKOvy82GJ8QQnJE9ofsxCMPjH4MfH8fCWIHHDKpAQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "30.2.0", + "@jest/test-result": "30.2.0", + "@jest/transform": "30.2.0", + "@jest/types": "30.2.0", + "@jridgewell/trace-mapping": "^0.3.25", + "@types/node": "*", + "chalk": "^4.1.2", + "collect-v8-coverage": "^1.0.2", + "exit-x": "^0.2.2", + "glob": "^10.3.10", + "graceful-fs": "^4.2.11", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^6.0.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^5.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "30.2.0", + "jest-util": "30.2.0", + "jest-worker": "30.2.0", + "slash": "^3.0.0", + "string-length": "^4.0.2", + "v8-to-istanbul": "^9.0.1" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/schemas": { + "version": "30.0.5", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-30.0.5.tgz", + "integrity": "sha512-DmdYgtezMkh3cpU8/1uyXakv3tJRcmcXxBOcO0tbaozPwpmh4YMsnWrQm9ZmZMfa5ocbxzbFk6O4bDPEc/iAnA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@sinclair/typebox": "^0.34.0" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/@jest/snapshot-utils": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/@jest/snapshot-utils/-/snapshot-utils-30.2.0.tgz", + "integrity": "sha512-0aVxM3RH6DaiLcjj/b0KrIBZhSX1373Xci4l3cW5xiUWPctZ59zQ7jj4rqcJQ/Z8JuN/4wX3FpJSa3RssVvCug==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "30.2.0", + "chalk": "^4.1.2", + "graceful-fs": "^4.2.11", + "natural-compare": "^1.4.0" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "30.0.1", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-30.0.1.tgz", + "integrity": "sha512-MIRWMUUR3sdbP36oyNyhbThLHyJ2eEDClPCiHVbrYAe5g3CHRArIVpBw7cdSB5fr+ofSfIb2Tnsw8iEHL0PYQg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.25", + "callsites": "^3.1.0", + "graceful-fs": "^4.2.11" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/@jest/test-result": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-30.2.0.tgz", + "integrity": "sha512-RF+Z+0CCHkARz5HT9mcQCBulb1wgCP3FBvl9VFokMX27acKphwyQsNuWH3c+ojd1LeWBLoTYoxF0zm6S/66mjg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/console": "30.2.0", + "@jest/types": "30.2.0", + "@types/istanbul-lib-coverage": "^2.0.6", + "collect-v8-coverage": "^1.0.2" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-30.2.0.tgz", + "integrity": "sha512-wXKgU/lk8fKXMu/l5Hog1R61bL4q5GCdT6OJvdAFz1P+QrpoFuLU68eoKuVc4RbrTtNnTL5FByhWdLgOPSph+Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/test-result": "30.2.0", + "graceful-fs": "^4.2.11", + "jest-haste-map": "30.2.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/@jest/transform": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-30.2.0.tgz", + "integrity": "sha512-XsauDV82o5qXbhalKxD7p4TZYYdwcaEXC77PPD2HixEFF+6YGppjrAAQurTl2ECWcEomHBMMNS9AH3kcCFx8jA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.27.4", + "@jest/types": "30.2.0", + "@jridgewell/trace-mapping": "^0.3.25", + "babel-plugin-istanbul": "^7.0.1", + "chalk": "^4.1.2", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.11", + "jest-haste-map": "30.2.0", + "jest-regex-util": "30.0.1", + "jest-util": "30.2.0", + "micromatch": "^4.0.8", + "pirates": "^4.0.7", + "slash": "^3.0.0", + "write-file-atomic": "^5.0.1" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/@jest/types": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-30.2.0.tgz", + "integrity": "sha512-H9xg1/sfVvyfU7o3zMfBEjQ1gcsdeTMgqHoYdN79tuLqfTtuu7WckRA1R5whDwOzxaZAeMKTYWqP+WCAi0CHsg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/pattern": "30.0.1", + "@jest/schemas": "30.0.5", + "@types/istanbul-lib-coverage": "^2.0.6", + "@types/istanbul-reports": "^3.0.4", + "@types/node": "*", + "@types/yargs": "^17.0.33", + "chalk": "^4.1.2" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@manypkg/find-root": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@manypkg/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.5.5", + "@types/node": "^12.7.1", + "find-up": "^4.1.0", + "fs-extra": "^8.1.0" + } + }, + "node_modules/@manypkg/find-root/node_modules/@types/node": { + "version": "12.20.55", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz", + "integrity": "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@manypkg/find-root/node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@manypkg/get-packages": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@manypkg/get-packages/-/get-packages-1.1.3.tgz", + "integrity": "sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.5.5", + "@changesets/types": "^4.0.1", + "@manypkg/find-root": "^1.1.0", + "fs-extra": "^8.1.0", + "globby": "^11.0.0", + "read-yaml-file": "^1.1.0" + } + }, + "node_modules/@manypkg/get-packages/node_modules/@changesets/types": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@changesets/types/-/types-4.1.0.tgz", + "integrity": "sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@manypkg/get-packages/node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@microsoft/tsdoc": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc/-/tsdoc-0.16.0.tgz", + "integrity": "sha512-xgAyonlVVS+q7Vc7qLW0UrJU7rSFcETRWsqdXZtjzRU8dF+6CkozTK4V4y1LwOX7j8r/vHphjDeMeGI4tNGeGA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@microsoft/tsdoc-config": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc-config/-/tsdoc-config-0.18.0.tgz", + "integrity": "sha512-8N/vClYyfOH+l4fLkkr9+myAoR6M7akc8ntBJ4DJdWH2b09uVfr71+LTMpNyG19fNqWDg8KEDZhx5wxuqHyGjw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@microsoft/tsdoc": "0.16.0", + "ajv": "~8.12.0", + "jju": "~1.4.0", + "resolve": "~1.22.2" + } + }, + "node_modules/@microsoft/tsdoc-config/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@microsoft/tsdoc-config/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true, + "license": "MIT" + }, + "node_modules/@napi-rs/wasm-runtime": { + "version": "0.2.12", + "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.12.tgz", + "integrity": "sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/core": "^1.4.3", + "@emnapi/runtime": "^1.4.3", + "@tybys/wasm-util": "^0.10.0" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@pkgr/core": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.2.9.tgz", + "integrity": "sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/pkgr" + } + }, + "node_modules/@shikijs/engine-oniguruma": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-3.15.0.tgz", + "integrity": "sha512-HnqFsV11skAHvOArMZdLBZZApRSYS4LSztk2K3016Y9VCyZISnlYUYsL2hzlS7tPqKHvNqmI5JSUJZprXloMvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/types": "3.15.0", + "@shikijs/vscode-textmate": "^10.0.2" + } + }, + "node_modules/@shikijs/langs": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/@shikijs/langs/-/langs-3.15.0.tgz", + "integrity": "sha512-WpRvEFvkVvO65uKYW4Rzxs+IG0gToyM8SARQMtGGsH4GDMNZrr60qdggXrFOsdfOVssG/QQGEl3FnJ3EZ+8w8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/types": "3.15.0" + } + }, + "node_modules/@shikijs/themes": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/@shikijs/themes/-/themes-3.15.0.tgz", + "integrity": "sha512-8ow2zWb1IDvCKjYb0KiLNrK4offFdkfNVPXb1OZykpLCzRU6j+efkY+Y7VQjNlNFXonSw+4AOdGYtmqykDbRiQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/types": "3.15.0" + } + }, + "node_modules/@shikijs/types": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-3.15.0.tgz", + "integrity": "sha512-BnP+y/EQnhihgHy4oIAN+6FFtmfTekwOLsQbRw9hOKwqgNy8Bdsjq8B05oAt/ZgvIWWFrshV71ytOrlPfYjIJw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/vscode-textmate": "^10.0.2", + "@types/hast": "^3.0.4" + } + }, + "node_modules/@shikijs/vscode-textmate": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-10.0.2.tgz", + "integrity": "sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@sinclair/typebox": { + "version": "0.34.41", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.34.41.tgz", + "integrity": "sha512-6gS8pZzSXdyRHTIqoqSVknxolr1kzfy4/CeDnrzsVz8TTIWUbOBr6gnzOmTYJ3eXQNh4IYHIGi5aIL7sOZ2G/g==", + "dev": true, + "license": "MIT" + }, + "node_modules/@sinonjs/commons": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", + "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "13.0.5", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-13.0.5.tgz", + "integrity": "sha512-36/hTbH2uaWuGVERyC6da9YwGWnzUZXuPro/F2LfsdOsLnCojz/iSH8MxUt/FD2S5XBSVPhmArFUXcpCQ2Hkiw==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^3.0.1" + } + }, + "node_modules/@tsconfig/node20": { + "version": "20.1.7", + "resolved": "https://registry.npmjs.org/@tsconfig/node20/-/node20-20.1.7.tgz", + "integrity": "sha512-Lt137u6AoCCJNNklpNtfGIYFEywma7Hd3B083jqMga37opSEVw7beWsD4OTXyzKS0I3G2kbQJVoZpOxy9GnxBQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@tybys/wasm-util": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.1.tgz", + "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", + "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz", + "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.2" + } + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/hast": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", + "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", + "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", + "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/jest": { + "version": "30.0.0", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-30.0.0.tgz", + "integrity": "sha512-XTYugzhuwqWjws0CVz8QpM36+T+Dz5mTEBKhNs/esGLnCIlGdRy+Dq78NRjd7ls7r8BC8ZRMOrKlkO1hU0JOwA==", + "dev": true, + "license": "MIT", + "dependencies": { + "expect": "^30.0.0", + "pretty-format": "^30.0.0" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "24.10.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.10.1.tgz", + "integrity": "sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/stack-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/unist": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/yargs": { + "version": "17.0.34", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.34.tgz", + "integrity": "sha512-KExbHVa92aJpw9WDQvzBaGVE2/Pz+pLZQloT2hjL8IqsZnV62rlPOYvNnLmf/L2dyllfVUOVBj64M0z/46eR2A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.46.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.46.4.tgz", + "integrity": "sha512-R48VhmTJqplNyDxCyqqVkFSZIx1qX6PzwqgcXn1olLrzxcSBDlOsbtcnQuQhNtnNiJ4Xe5gREI1foajYaYU2Vg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.10.0", + "@typescript-eslint/scope-manager": "8.46.4", + "@typescript-eslint/type-utils": "8.46.4", + "@typescript-eslint/utils": "8.46.4", + "@typescript-eslint/visitor-keys": "8.46.4", + "graphemer": "^1.4.0", + "ignore": "^7.0.0", + "natural-compare": "^1.4.0", + "ts-api-utils": "^2.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.46.4", + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "8.46.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.46.4.tgz", + "integrity": "sha512-tK3GPFWbirvNgsNKto+UmB/cRtn6TZfyw0D6IKrW55n6Vbs7KJoZtI//kpTKzE/DUmmnAFD8/Ca46s7Obs92/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/scope-manager": "8.46.4", + "@typescript-eslint/types": "8.46.4", + "@typescript-eslint/typescript-estree": "8.46.4", + "@typescript-eslint/visitor-keys": "8.46.4", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/project-service": { + "version": "8.46.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.46.4.tgz", + "integrity": "sha512-nPiRSKuvtTN+no/2N1kt2tUh/HoFzeEgOm9fQ6XQk4/ApGqjx0zFIIaLJ6wooR1HIoozvj2j6vTi/1fgAz7UYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/tsconfig-utils": "^8.46.4", + "@typescript-eslint/types": "^8.46.4", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.46.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.46.4.tgz", + "integrity": "sha512-tMDbLGXb1wC+McN1M6QeDx7P7c0UWO5z9CXqp7J8E+xGcJuUuevWKxuG8j41FoweS3+L41SkyKKkia16jpX7CA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.46.4", + "@typescript-eslint/visitor-keys": "8.46.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/tsconfig-utils": { + "version": "8.46.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.46.4.tgz", + "integrity": "sha512-+/XqaZPIAk6Cjg7NWgSGe27X4zMGqrFqZ8atJsX3CWxH/jACqWnrWI68h7nHQld0y+k9eTTjb9r+KU4twLoo9A==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "8.46.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.46.4.tgz", + "integrity": "sha512-V4QC8h3fdT5Wro6vANk6eojqfbv5bpwHuMsBcJUJkqs2z5XnYhJzyz9Y02eUmF9u3PgXEUiOt4w4KHR3P+z0PQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.46.4", + "@typescript-eslint/typescript-estree": "8.46.4", + "@typescript-eslint/utils": "8.46.4", + "debug": "^4.3.4", + "ts-api-utils": "^2.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "8.46.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.46.4.tgz", + "integrity": "sha512-USjyxm3gQEePdUwJBFjjGNG18xY9A2grDVGuk7/9AkjIF1L+ZrVnwR5VAU5JXtUnBL/Nwt3H31KlRDaksnM7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "8.46.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.46.4.tgz", + "integrity": "sha512-7oV2qEOr1d4NWNmpXLR35LvCfOkTNymY9oyW+lUHkmCno7aOmIf/hMaydnJBUTBMRCOGZh8YjkFOc8dadEoNGA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/project-service": "8.46.4", + "@typescript-eslint/tsconfig-utils": "8.46.4", + "@typescript-eslint/types": "8.46.4", + "@typescript-eslint/visitor-keys": "8.46.4", + "debug": "^4.3.4", + "fast-glob": "^3.3.2", + "is-glob": "^4.0.3", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^2.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "8.46.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.46.4.tgz", + "integrity": "sha512-AbSv11fklGXV6T28dp2Me04Uw90R2iJ30g2bgLz529Koehrmkbs1r7paFqr1vPCZi7hHwYxYtxfyQMRC8QaVSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.7.0", + "@typescript-eslint/scope-manager": "8.46.4", + "@typescript-eslint/types": "8.46.4", + "@typescript-eslint/typescript-estree": "8.46.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "8.46.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.46.4.tgz", + "integrity": "sha512-/++5CYLQqsO9HFGLI7APrxBJYo+5OCMpViuhV8q5/Qa3o5mMrF//eQHks+PXcsAVaLdn817fMuS7zqoXNNZGaw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.46.4", + "eslint-visitor-keys": "^4.2.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@ungap/structured-clone": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", + "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", + "dev": true, + "license": "ISC" + }, + "node_modules/@unrs/resolver-binding-android-arm-eabi": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.11.1.tgz", + "integrity": "sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@unrs/resolver-binding-android-arm64": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm64/-/resolver-binding-android-arm64-1.11.1.tgz", + "integrity": "sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@unrs/resolver-binding-darwin-arm64": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.11.1.tgz", + "integrity": "sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@unrs/resolver-binding-darwin-x64": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.11.1.tgz", + "integrity": "sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@unrs/resolver-binding-freebsd-x64": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.11.1.tgz", + "integrity": "sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm-gnueabihf": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.11.1.tgz", + "integrity": "sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm-musleabihf": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.11.1.tgz", + "integrity": "sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm64-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.11.1.tgz", + "integrity": "sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm64-musl": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.11.1.tgz", + "integrity": "sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-ppc64-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.11.1.tgz", + "integrity": "sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-riscv64-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-gnu/-/resolver-binding-linux-riscv64-gnu-1.11.1.tgz", + "integrity": "sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-riscv64-musl": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-musl/-/resolver-binding-linux-riscv64-musl-1.11.1.tgz", + "integrity": "sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-s390x-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.11.1.tgz", + "integrity": "sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-x64-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.11.1.tgz", + "integrity": "sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-x64-musl": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.11.1.tgz", + "integrity": "sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-wasm32-wasi": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.11.1.tgz", + "integrity": "sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==", + "cpu": [ + "wasm32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@napi-rs/wasm-runtime": "^0.2.11" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@unrs/resolver-binding-win32-arm64-msvc": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.11.1.tgz", + "integrity": "sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@unrs/resolver-binding-win32-ia32-msvc": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.11.1.tgz", + "integrity": "sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@unrs/resolver-binding-win32-x64-msvc": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.11.1.tgz", + "integrity": "sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/acorn": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-jest": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-30.2.0.tgz", + "integrity": "sha512-0YiBEOxWqKkSQWL9nNGGEgndoeL0ZpWrbLMNL5u/Kaxrli3Eaxlt3ZtIDktEvXt4L/R9r3ODr2zKwGM/2BjxVw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/transform": "30.2.0", + "@types/babel__core": "^7.20.5", + "babel-plugin-istanbul": "^7.0.1", + "babel-preset-jest": "30.2.0", + "chalk": "^4.1.2", + "graceful-fs": "^4.2.11", + "slash": "^3.0.0" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.11.0 || ^8.0.0-0" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-7.0.1.tgz", + "integrity": "sha512-D8Z6Qm8jCvVXtIRkBnqNHX0zJ37rQcFJ9u8WOS6tkYOsRdHBzypCstaxWiu5ZIlqQtviRYbgnRLSoCEvjqcqbA==", + "dev": true, + "license": "BSD-3-Clause", + "workspaces": [ + "test/babel-8" + ], + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.3", + "istanbul-lib-instrument": "^6.0.2", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-30.2.0.tgz", + "integrity": "sha512-ftzhzSGMUnOzcCXd6WHdBGMyuwy15Wnn0iyyWGKgBDLxf9/s5ABuraCSpBX2uG0jUg4rqJnxsLc5+oYBqoxVaA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/babel__core": "^7.20.5" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.2.0.tgz", + "integrity": "sha512-E/VlAEzRrsLEb2+dv8yp3bo4scof3l9nR4lrld+Iy5NyVqgVYUJnDAmunkhPMisRI32Qc4iRiz425d8vM++2fg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-import-attributes": "^7.24.7", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5" + }, + "peerDependencies": { + "@babel/core": "^7.0.0 || ^8.0.0-0" + } + }, + "node_modules/babel-preset-jest": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-30.2.0.tgz", + "integrity": "sha512-US4Z3NOieAQumwFnYdUWKvUKh8+YSnS/gB3t6YBiz0bskpu7Pine8pPCheNxlPEW4wnUkma2a94YuW2q3guvCQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "babel-plugin-jest-hoist": "30.2.0", + "babel-preset-current-node-syntax": "^1.2.0" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.11.0 || ^8.0.0-beta.1" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/baseline-browser-mapping": { + "version": "2.8.25", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.25.tgz", + "integrity": "sha512-2NovHVesVF5TXefsGX1yzx1xgr7+m9JQenvz6FQY3qd+YXkKkYiv+vTCc7OriP9mcDZpTC5mAOYN4ocd29+erA==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.js" + } + }, + "node_modules/better-path-resolve": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/better-path-resolve/-/better-path-resolve-1.0.0.tgz", + "integrity": "sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-windows": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.0.tgz", + "integrity": "sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "baseline-browser-mapping": "^2.8.25", + "caniuse-lite": "^1.0.30001754", + "electron-to-chromium": "^1.5.249", + "node-releases": "^2.0.27", + "update-browserslist-db": "^1.1.4" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bs-logger": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-json-stable-stringify": "2.x" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001754", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001754.tgz", + "integrity": "sha512-x6OeBXueoAceOmotzx3PO4Zpt4rzpeIFsSr6AAePTZxSkXiYDUmpypEl7e2+8NCd9bD7bXjqyef8CJYPC1jfxg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/chardet": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-2.1.1.tgz", + "integrity": "sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/cjs-module-lexer": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-2.1.1.tgz", + "integrity": "sha512-+CmxIZ/L2vNcEfvNtLdU0ZQ6mbq3FZnwAP2PPTiKP+1QOoKwlKlPgb8UKV0Dds7QVaMnHm+FwSft2VB0s/SLjQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/cliui/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/cliui/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.3.tgz", + "integrity": "sha512-1L5aqIkwPfiodaMgQunkF1zRhNqifHBmtbbbxcr6yVxxBnliw4TDOW6NxpO8DJLgJ16OT+Y4ztZqP6p/FtXnAw==", + "dev": true, + "license": "MIT" + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/dataloader": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/dataloader/-/dataloader-1.4.0.tgz", + "integrity": "sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/dedent": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.7.0.tgz", + "integrity": "sha512-HGFtf8yhuhGhqO07SV79tRp+br4MnbdjeVxotpn1QBl30pcLLCQjX5b2295ll0fv8RKDKsmWYrl05usHM9CewQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "babel-plugin-macros": "^3.1.0" + }, + "peerDependenciesMeta": { + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/detect-indent": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", + "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dotenv": { + "version": "8.6.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.6.0.tgz", + "integrity": "sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=10" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true, + "license": "MIT" + }, + "node_modules/electron-to-chromium": { + "version": "1.5.250", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.250.tgz", + "integrity": "sha512-/5UMj9IiGDMOFBnN4i7/Ry5onJrAGSbOGo3s9FEKmwobGq6xw832ccET0CE3CkkMBZ8GJSlUIesZofpyurqDXw==", + "dev": true, + "license": "ISC" + }, + "node_modules/emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true, + "license": "MIT" + }, + "node_modules/enquirer": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.4.1.tgz", + "integrity": "sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-colors": "^4.1.1", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/error-ex": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.4.tgz", + "integrity": "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "9.39.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.1.tgz", + "integrity": "sha512-BhHmn2yNOFA9H9JmmIVKJmd288g9hrVRDkdoIgRCRuSySRUHH7r/DI6aAXW9T1WwUuY3DFgrcaqB+deURBLR5g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.8.0", + "@eslint-community/regexpp": "^4.12.1", + "@eslint/config-array": "^0.21.1", + "@eslint/config-helpers": "^0.4.2", + "@eslint/core": "^0.17.0", + "@eslint/eslintrc": "^3.3.1", + "@eslint/js": "9.39.1", + "@eslint/plugin-kit": "^0.4.1", + "@humanfs/node": "^0.16.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.4.2", + "@types/estree": "^1.0.6", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.6", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.4.0", + "eslint-visitor-keys": "^4.2.1", + "espree": "^10.4.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } + } + }, + "node_modules/eslint-config-prettier": { + "version": "10.1.8", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.1.8.tgz", + "integrity": "sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w==", + "dev": true, + "license": "MIT", + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "funding": { + "url": "https://opencollective.com/eslint-config-prettier" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-plugin-tsdoc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-tsdoc/-/eslint-plugin-tsdoc-0.5.0.tgz", + "integrity": "sha512-ush8ehCwub2rgE16OIgQPFyj/o0k3T8kL++9IrAI4knsmupNo8gvfO2ERgDHWWgTC5MglbwLVRswU93HyXqNpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@microsoft/tsdoc": "0.16.0", + "@microsoft/tsdoc-config": "0.18.0", + "@typescript-eslint/utils": "~8.46.0" + } + }, + "node_modules/eslint-scope": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz", + "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/eslint/node_modules/eslint-visitor-keys": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/eslint/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/eslint/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/espree": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz", + "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.15.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.2.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/exit-x": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/exit-x/-/exit-x-0.2.2.tgz", + "integrity": "sha512-+I6B/IkJc1o/2tiURyz/ivu/O0nKNEArIUB5O7zBrlDVJr22SCLH3xTeEry428LvFhRzIA1g8izguxJ/gbNcVQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expect": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-30.2.0.tgz", + "integrity": "sha512-u/feCi0GPsI+988gU2FLcsHyAHTU0MX1Wg68NhAnN7z/+C5wqG+CY8J53N9ioe8RXgaoz0nBR/TYMf3AycUuPw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/expect-utils": "30.2.0", + "@jest/get-type": "30.1.0", + "jest-matcher-utils": "30.2.0", + "jest-message-util": "30.2.0", + "jest-mock": "30.2.0", + "jest-util": "30.2.0" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/extendable-error": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/extendable-error/-/extendable-error-0.1.7.tgz", + "integrity": "sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-glob": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.8" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fastq": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", + "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/flatted": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", + "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", + "dev": true, + "license": "ISC" + }, + "node_modules/foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "dev": true, + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/fs-extra": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true, + "license": "ISC" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "dev": true, + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globby/node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true, + "license": "MIT" + }, + "node_modules/handlebars": { + "version": "4.7.8", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", + "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "minimist": "^1.2.5", + "neo-async": "^2.6.2", + "source-map": "^0.6.1", + "wordwrap": "^1.0.0" + }, + "bin": { + "handlebars": "bin/handlebars" + }, + "engines": { + "node": ">=0.4.7" + }, + "optionalDependencies": { + "uglify-js": "^3.1.4" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true, + "license": "MIT" + }, + "node_modules/human-id": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/human-id/-/human-id-4.1.2.tgz", + "integrity": "sha512-v/J+4Z/1eIJovEBdlV5TYj1IR+ZiohcYGRY+qN/oC9dAfKzVT023N/Bgw37hrKCoVRBvk3bqyzpr2PP5YeTMSg==", + "dev": true, + "license": "MIT", + "bin": { + "human-id": "dist/cli.js" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.0.tgz", + "integrity": "sha512-cf6L2Ds3h57VVmkZe+Pn+5APsT7FpqJtEhhieDCvrE2MK5Qk9MyffgQyuxQTm6BChfeZNtcOLHp9IcWRVcIcBQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/ignore": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", + "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/import-local": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", + "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", + "dev": true, + "license": "MIT", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "dev": true, + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true, + "license": "MIT" + }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-subdir": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-subdir/-/is-subdir-1.2.0.tgz", + "integrity": "sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==", + "dev": true, + "license": "MIT", + "dependencies": { + "better-path-resolve": "1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz", + "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@babel/core": "^7.23.9", + "@babel/parser": "^7.23.9", + "@istanbuljs/schema": "^0.1.3", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^7.5.4" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-5.0.6.tgz", + "integrity": "sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.23", + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-reports": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.2.0.tgz", + "integrity": "sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jest": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-30.2.0.tgz", + "integrity": "sha512-F26gjC0yWN8uAA5m5Ss8ZQf5nDHWGlN/xWZIh8S5SRbsEKBovwZhxGd6LJlbZYxBgCYOtreSUyb8hpXyGC5O4A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/core": "30.2.0", + "@jest/types": "30.2.0", + "import-local": "^3.2.0", + "jest-cli": "30.2.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-30.2.0.tgz", + "integrity": "sha512-L8lR1ChrRnSdfeOvTrwZMlnWV8G/LLjQ0nG9MBclwWZidA2N5FviRki0Bvh20WRMOX31/JYvzdqTJrk5oBdydQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "execa": "^5.1.1", + "jest-util": "30.2.0", + "p-limit": "^3.1.0" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-changed-files/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-circus": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-30.2.0.tgz", + "integrity": "sha512-Fh0096NC3ZkFx05EP2OXCxJAREVxj1BcW/i6EWqqymcgYKWjyyDpral3fMxVcHXg6oZM7iULer9wGRFvfpl+Tg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "30.2.0", + "@jest/expect": "30.2.0", + "@jest/test-result": "30.2.0", + "@jest/types": "30.2.0", + "@types/node": "*", + "chalk": "^4.1.2", + "co": "^4.6.0", + "dedent": "^1.6.0", + "is-generator-fn": "^2.1.0", + "jest-each": "30.2.0", + "jest-matcher-utils": "30.2.0", + "jest-message-util": "30.2.0", + "jest-runtime": "30.2.0", + "jest-snapshot": "30.2.0", + "jest-util": "30.2.0", + "p-limit": "^3.1.0", + "pretty-format": "30.2.0", + "pure-rand": "^7.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.6" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-circus/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-cli": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-30.2.0.tgz", + "integrity": "sha512-Os9ukIvADX/A9sLt6Zse3+nmHtHaE6hqOsjQtNiugFTbKRHYIYtZXNGNK9NChseXy7djFPjndX1tL0sCTlfpAA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/core": "30.2.0", + "@jest/test-result": "30.2.0", + "@jest/types": "30.2.0", + "chalk": "^4.1.2", + "exit-x": "^0.2.2", + "import-local": "^3.2.0", + "jest-config": "30.2.0", + "jest-util": "30.2.0", + "jest-validate": "30.2.0", + "yargs": "^17.7.2" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-config": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-30.2.0.tgz", + "integrity": "sha512-g4WkyzFQVWHtu6uqGmQR4CQxz/CH3yDSlhzXMWzNjDx843gYjReZnMRanjRCq5XZFuQrGDxgUaiYWE8BRfVckA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.27.4", + "@jest/get-type": "30.1.0", + "@jest/pattern": "30.0.1", + "@jest/test-sequencer": "30.2.0", + "@jest/types": "30.2.0", + "babel-jest": "30.2.0", + "chalk": "^4.1.2", + "ci-info": "^4.2.0", + "deepmerge": "^4.3.1", + "glob": "^10.3.10", + "graceful-fs": "^4.2.11", + "jest-circus": "30.2.0", + "jest-docblock": "30.2.0", + "jest-environment-node": "30.2.0", + "jest-regex-util": "30.0.1", + "jest-resolve": "30.2.0", + "jest-runner": "30.2.0", + "jest-util": "30.2.0", + "jest-validate": "30.2.0", + "micromatch": "^4.0.8", + "parse-json": "^5.2.0", + "pretty-format": "30.2.0", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "esbuild-register": ">=3.4.0", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "esbuild-register": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-config/node_modules/ci-info": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.3.1.tgz", + "integrity": "sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-diff": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-30.2.0.tgz", + "integrity": "sha512-dQHFo3Pt4/NLlG5z4PxZ/3yZTZ1C7s9hveiOj+GCN+uT109NC2QgsoVZsVOAvbJ3RgKkvyLGXZV9+piDpWbm6A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/diff-sequences": "30.0.1", + "@jest/get-type": "30.1.0", + "chalk": "^4.1.2", + "pretty-format": "30.2.0" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-docblock": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-30.2.0.tgz", + "integrity": "sha512-tR/FFgZKS1CXluOQzZvNH3+0z9jXr3ldGSD8bhyuxvlVUwbeLOGynkunvlTMxchC5urrKndYiwCFC0DLVjpOCA==", + "dev": true, + "license": "MIT", + "dependencies": { + "detect-newline": "^3.1.0" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-each": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-30.2.0.tgz", + "integrity": "sha512-lpWlJlM7bCUf1mfmuqTA8+j2lNURW9eNafOy99knBM01i5CQeY5UH1vZjgT9071nDJac1M4XsbyI44oNOdhlDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/get-type": "30.1.0", + "@jest/types": "30.2.0", + "chalk": "^4.1.2", + "jest-util": "30.2.0", + "pretty-format": "30.2.0" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-environment-node": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-30.2.0.tgz", + "integrity": "sha512-ElU8v92QJ9UrYsKrxDIKCxu6PfNj4Hdcktcn0JX12zqNdqWHB0N+hwOnnBBXvjLd2vApZtuLUGs1QSY+MsXoNA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "30.2.0", + "@jest/fake-timers": "30.2.0", + "@jest/types": "30.2.0", + "@types/node": "*", + "jest-mock": "30.2.0", + "jest-util": "30.2.0", + "jest-validate": "30.2.0" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-extended": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/jest-extended/-/jest-extended-7.0.0.tgz", + "integrity": "sha512-96jBsVJDxZKFh+kWY7E18Is2usUsUYtBn97MxCtb4COnbgD4aE1h+P0fdFQNeJaI6KOeduas4Numc9yTuk0+Gw==", + "dev": true, + "license": "MIT", + "dependencies": { + "jest-diff": "^30.0.0" + }, + "engines": { + "node": "^20.9.0 || ^22.11.0 || ^24.11.0 || >=25.0.0" + }, + "peerDependencies": { + "jest": ">=27.2.5", + "typescript": ">=5.0.0" + }, + "peerDependenciesMeta": { + "jest": { + "optional": true + }, + "typescript": { + "optional": false + } + } + }, + "node_modules/jest-haste-map": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-30.2.0.tgz", + "integrity": "sha512-sQA/jCb9kNt+neM0anSj6eZhLZUIhQgwDt7cPGjumgLM4rXsfb9kpnlacmvZz3Q5tb80nS+oG/if+NBKrHC+Xw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "30.2.0", + "@types/node": "*", + "anymatch": "^3.1.3", + "fb-watchman": "^2.0.2", + "graceful-fs": "^4.2.11", + "jest-regex-util": "30.0.1", + "jest-util": "30.2.0", + "jest-worker": "30.2.0", + "micromatch": "^4.0.8", + "walker": "^1.0.8" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.3" + } + }, + "node_modules/jest-leak-detector": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-30.2.0.tgz", + "integrity": "sha512-M6jKAjyzjHG0SrQgwhgZGy9hFazcudwCNovY/9HPIicmNSBuockPSedAP9vlPK6ONFJ1zfyH/M2/YYJxOz5cdQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/get-type": "30.1.0", + "pretty-format": "30.2.0" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-matcher-utils": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-30.2.0.tgz", + "integrity": "sha512-dQ94Nq4dbzmUWkQ0ANAWS9tBRfqCrn0bV9AMYdOi/MHW726xn7eQmMeRTpX2ViC00bpNaWXq+7o4lIQ3AX13Hg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/get-type": "30.1.0", + "chalk": "^4.1.2", + "jest-diff": "30.2.0", + "pretty-format": "30.2.0" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-message-util": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-30.2.0.tgz", + "integrity": "sha512-y4DKFLZ2y6DxTWD4cDe07RglV88ZiNEdlRfGtqahfbIjfsw1nMCPx49Uev4IA/hWn3sDKyAnSPwoYSsAEdcimw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@jest/types": "30.2.0", + "@types/stack-utils": "^2.0.3", + "chalk": "^4.1.2", + "graceful-fs": "^4.2.11", + "micromatch": "^4.0.8", + "pretty-format": "30.2.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.6" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-mock": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-30.2.0.tgz", + "integrity": "sha512-JNNNl2rj4b5ICpmAcq+WbLH83XswjPbjH4T7yvGzfAGCPh1rw+xVNbtk+FnRslvt9lkCcdn9i1oAoKUuFsOxRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "30.2.0", + "@types/node": "*", + "jest-util": "30.2.0" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "30.0.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-30.0.1.tgz", + "integrity": "sha512-jHEQgBXAgc+Gh4g0p3bCevgRCVRkB4VB70zhoAE48gxeSr1hfUOsM/C2WoJgVL7Eyg//hudYENbm3Ne+/dRVVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-30.2.0.tgz", + "integrity": "sha512-TCrHSxPlx3tBY3hWNtRQKbtgLhsXa1WmbJEqBlTBrGafd5fiQFByy2GNCEoGR+Tns8d15GaL9cxEzKOO3GEb2A==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.1.2", + "graceful-fs": "^4.2.11", + "jest-haste-map": "30.2.0", + "jest-pnp-resolver": "^1.2.3", + "jest-util": "30.2.0", + "jest-validate": "30.2.0", + "slash": "^3.0.0", + "unrs-resolver": "^1.7.11" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-30.2.0.tgz", + "integrity": "sha512-xTOIGug/0RmIe3mmCqCT95yO0vj6JURrn1TKWlNbhiAefJRWINNPgwVkrVgt/YaerPzY3iItufd80v3lOrFJ2w==", + "dev": true, + "license": "MIT", + "dependencies": { + "jest-regex-util": "30.0.1", + "jest-snapshot": "30.2.0" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-runner": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-30.2.0.tgz", + "integrity": "sha512-PqvZ2B2XEyPEbclp+gV6KO/F1FIFSbIwewRgmROCMBo/aZ6J1w8Qypoj2pEOcg3G2HzLlaP6VUtvwCI8dM3oqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/console": "30.2.0", + "@jest/environment": "30.2.0", + "@jest/test-result": "30.2.0", + "@jest/transform": "30.2.0", + "@jest/types": "30.2.0", + "@types/node": "*", + "chalk": "^4.1.2", + "emittery": "^0.13.1", + "exit-x": "^0.2.2", + "graceful-fs": "^4.2.11", + "jest-docblock": "30.2.0", + "jest-environment-node": "30.2.0", + "jest-haste-map": "30.2.0", + "jest-leak-detector": "30.2.0", + "jest-message-util": "30.2.0", + "jest-resolve": "30.2.0", + "jest-runtime": "30.2.0", + "jest-util": "30.2.0", + "jest-watcher": "30.2.0", + "jest-worker": "30.2.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-runner/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-runtime": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-30.2.0.tgz", + "integrity": "sha512-p1+GVX/PJqTucvsmERPMgCPvQJpFt4hFbM+VN3n8TMo47decMUcJbt+rgzwrEme0MQUA/R+1de2axftTHkKckg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "30.2.0", + "@jest/fake-timers": "30.2.0", + "@jest/globals": "30.2.0", + "@jest/source-map": "30.0.1", + "@jest/test-result": "30.2.0", + "@jest/transform": "30.2.0", + "@jest/types": "30.2.0", + "@types/node": "*", + "chalk": "^4.1.2", + "cjs-module-lexer": "^2.1.0", + "collect-v8-coverage": "^1.0.2", + "glob": "^10.3.10", + "graceful-fs": "^4.2.11", + "jest-haste-map": "30.2.0", + "jest-message-util": "30.2.0", + "jest-mock": "30.2.0", + "jest-regex-util": "30.0.1", + "jest-resolve": "30.2.0", + "jest-snapshot": "30.2.0", + "jest-util": "30.2.0", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-snapshot": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-30.2.0.tgz", + "integrity": "sha512-5WEtTy2jXPFypadKNpbNkZ72puZCa6UjSr/7djeecHWOu7iYhSXSnHScT8wBz3Rn8Ena5d5RYRcsyKIeqG1IyA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.27.4", + "@babel/generator": "^7.27.5", + "@babel/plugin-syntax-jsx": "^7.27.1", + "@babel/plugin-syntax-typescript": "^7.27.1", + "@babel/types": "^7.27.3", + "@jest/expect-utils": "30.2.0", + "@jest/get-type": "30.1.0", + "@jest/snapshot-utils": "30.2.0", + "@jest/transform": "30.2.0", + "@jest/types": "30.2.0", + "babel-preset-current-node-syntax": "^1.2.0", + "chalk": "^4.1.2", + "expect": "30.2.0", + "graceful-fs": "^4.2.11", + "jest-diff": "30.2.0", + "jest-matcher-utils": "30.2.0", + "jest-message-util": "30.2.0", + "jest-util": "30.2.0", + "pretty-format": "30.2.0", + "semver": "^7.7.2", + "synckit": "^0.11.8" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-util": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-30.2.0.tgz", + "integrity": "sha512-QKNsM0o3Xe6ISQU869e+DhG+4CK/48aHYdJZGlFQVTjnbvgpcKyxpzk29fGiO7i/J8VENZ+d2iGnSsvmuHywlA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "30.2.0", + "@types/node": "*", + "chalk": "^4.1.2", + "ci-info": "^4.2.0", + "graceful-fs": "^4.2.11", + "picomatch": "^4.0.2" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-util/node_modules/ci-info": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.3.1.tgz", + "integrity": "sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-util/node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/jest-validate": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-30.2.0.tgz", + "integrity": "sha512-FBGWi7dP2hpdi8nBoWxSsLvBFewKAg0+uSQwBaof4Y4DPgBabXgpSYC5/lR7VmnIlSpASmCi/ntRWPbv7089Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/get-type": "30.1.0", + "@jest/types": "30.2.0", + "camelcase": "^6.3.0", + "chalk": "^4.1.2", + "leven": "^3.1.0", + "pretty-format": "30.2.0" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watcher": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-30.2.0.tgz", + "integrity": "sha512-PYxa28dxJ9g777pGm/7PrbnMeA0Jr7osHP9bS7eJy9DuAjMgdGtxgf0uKMyoIsTWAkIbUW5hSDdJ3urmgXBqxg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/test-result": "30.2.0", + "@jest/types": "30.2.0", + "@types/node": "*", + "ansi-escapes": "^4.3.2", + "chalk": "^4.1.2", + "emittery": "^0.13.1", + "jest-util": "30.2.0", + "string-length": "^4.0.2" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-worker": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-30.2.0.tgz", + "integrity": "sha512-0Q4Uk8WF7BUwqXHuAjc23vmopWJw5WH7w2tqBoUOZpOjW/ZnR44GXXd1r82RvnmI2GZge3ivrYXk/BE2+VtW2g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "@ungap/structured-clone": "^1.3.0", + "jest-util": "30.2.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.1.1" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/jju": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", + "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==", + "dev": true, + "license": "MIT" + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "dev": true, + "license": "MIT", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true, + "license": "MIT" + }, + "node_modules/linkify-it": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.0.tgz", + "integrity": "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "uc.micro": "^2.0.0" + } + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.startcase": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.startcase/-/lodash.startcase-4.4.0.tgz", + "integrity": "sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==", + "dev": true, + "license": "MIT" + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/lunr": { + "version": "2.3.9", + "resolved": "https://registry.npmjs.org/lunr/-/lunr-2.3.9.tgz", + "integrity": "sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==", + "dev": true, + "license": "MIT" + }, + "node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true, + "license": "ISC" + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/markdown-it": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-14.1.0.tgz", + "integrity": "sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1", + "entities": "^4.4.0", + "linkify-it": "^5.0.0", + "mdurl": "^2.0.0", + "punycode.js": "^2.3.1", + "uc.micro": "^2.1.0" + }, + "bin": { + "markdown-it": "bin/markdown-it.mjs" + } + }, + "node_modules/markdown-it/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/mdurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz", + "integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==", + "dev": true, + "license": "MIT" + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true, + "license": "MIT" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/mri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/napi-postinstall": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/napi-postinstall/-/napi-postinstall-0.3.4.tgz", + "integrity": "sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==", + "dev": true, + "license": "MIT", + "bin": { + "napi-postinstall": "lib/cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/napi-postinstall" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true, + "license": "MIT" + }, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/node-releases": { + "version": "2.0.27", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz", + "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/outdent": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/outdent/-/outdent-0.5.0.tgz", + "integrity": "sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/p-filter": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-filter/-/p-filter-2.1.0.tgz", + "integrity": "sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-map": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "dev": true, + "license": "BlueOak-1.0.0" + }, + "node_modules/package-manager-detector": { + "version": "0.2.11", + "resolved": "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-0.2.11.tgz", + "integrity": "sha512-BEnLolu+yuz22S56CU1SUKq3XC3PkwD5wv4ikR4MfGvnRVcmzXR9DwSlW2fEamyTPyXHomBJRzgapeuBvRNzJQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "quansync": "^0.2.7" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true, + "license": "MIT" + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/pirates": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz", + "integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prettier": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.6.2.tgz", + "integrity": "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==", + "dev": true, + "license": "MIT", + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/pretty-format": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.2.0.tgz", + "integrity": "sha512-9uBdv/B4EefsuAL+pWqueZyZS2Ba+LxfFeQ9DN14HU4bN8bhaxKdkpjpB6fs9+pSjIBu+FXQHImEg8j/Lw0+vA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "30.0.5", + "ansi-styles": "^5.2.0", + "react-is": "^18.3.1" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/punycode.js": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode.js/-/punycode.js-2.3.1.tgz", + "integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/pure-rand": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-7.0.1.tgz", + "integrity": "sha512-oTUZM/NAZS8p7ANR3SHh30kXB+zK2r2BPcEn/awJIbOvq82WoMN4p62AWWp3Hhw50G0xMsw1mhIBLqHw64EcNQ==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/dubzzz" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fast-check" + } + ], + "license": "MIT" + }, + "node_modules/quansync": { + "version": "0.2.11", + "resolved": "https://registry.npmjs.org/quansync/-/quansync-0.2.11.tgz", + "integrity": "sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/antfu" + }, + { + "type": "individual", + "url": "https://github.com/sponsors/sxzz" + } + ], + "license": "MIT" + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true, + "license": "MIT" + }, + "node_modules/read-yaml-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-yaml-file/-/read-yaml-file-1.1.0.tgz", + "integrity": "sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.1.5", + "js-yaml": "^3.6.1", + "pify": "^4.0.1", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/read-yaml-file/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.11", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz", + "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.16.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true, + "license": "MIT" + }, + "node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/spawndamnit": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spawndamnit/-/spawndamnit-3.0.1.tgz", + "integrity": "sha512-MmnduQUuHCoFckZoWnXsTg7JaiLBJrKFj9UI2MbRPGaJeVpsLcVBu6P/IGZovziM/YBsellCmsprgNA+w0CzVg==", + "dev": true, + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "cross-spawn": "^7.0.5", + "signal-exit": "^4.0.1" + } + }, + "node_modules/spawndamnit/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/string-width/node_modules/ansi-regex": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/string-width/node_modules/strip-ansi": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz", + "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/synckit": { + "version": "0.11.11", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.11.11.tgz", + "integrity": "sha512-MeQTA1r0litLUf0Rp/iisCaL8761lKAZHaimlbGK4j0HysC4PLfqygQj9srcs0m2RdtDYnF8UuYyKpbjHYp7Jw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@pkgr/core": "^0.2.9" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/synckit" + } + }, + "node_modules/term-size": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz", + "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "license": "ISC", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/test-exclude/node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/test-exclude/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/test-exclude/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true, + "license": "MIT" + }, + "node_modules/ts-api-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.1.0.tgz", + "integrity": "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.12" + }, + "peerDependencies": { + "typescript": ">=4.8.4" + } + }, + "node_modules/ts-jest": { + "version": "29.4.5", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.4.5.tgz", + "integrity": "sha512-HO3GyiWn2qvTQA4kTgjDcXiMwYQt68a1Y8+JuLRVpdIzm+UOLSHgl/XqR4c6nzJkq5rOkjc02O2I7P7l/Yof0Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "bs-logger": "^0.2.6", + "fast-json-stable-stringify": "^2.1.0", + "handlebars": "^4.7.8", + "json5": "^2.2.3", + "lodash.memoize": "^4.1.2", + "make-error": "^1.3.6", + "semver": "^7.7.3", + "type-fest": "^4.41.0", + "yargs-parser": "^21.1.1" + }, + "bin": { + "ts-jest": "cli.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0" + }, + "peerDependencies": { + "@babel/core": ">=7.0.0-beta.0 <8", + "@jest/transform": "^29.0.0 || ^30.0.0", + "@jest/types": "^29.0.0 || ^30.0.0", + "babel-jest": "^29.0.0 || ^30.0.0", + "jest": "^29.0.0 || ^30.0.0", + "jest-util": "^29.0.0 || ^30.0.0", + "typescript": ">=4.3 <6" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "@jest/transform": { + "optional": true + }, + "@jest/types": { + "optional": true + }, + "babel-jest": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "jest-util": { + "optional": true + } + } + }, + "node_modules/ts-jest/node_modules/type-fest": { + "version": "4.41.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.41.0.tgz", + "integrity": "sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true, + "license": "0BSD", + "optional": true + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typedoc": { + "version": "0.28.14", + "resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.28.14.tgz", + "integrity": "sha512-ftJYPvpVfQvFzpkoSfHLkJybdA/geDJ8BGQt/ZnkkhnBYoYW6lBgPQXu6vqLxO4X75dA55hX8Af847H5KXlEFA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@gerrit0/mini-shiki": "^3.12.0", + "lunr": "^2.3.9", + "markdown-it": "^14.1.0", + "minimatch": "^9.0.5", + "yaml": "^2.8.1" + }, + "bin": { + "typedoc": "bin/typedoc" + }, + "engines": { + "node": ">= 18", + "pnpm": ">= 10" + }, + "peerDependencies": { + "typescript": "5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x || 5.7.x || 5.8.x || 5.9.x" + } + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/uc.micro": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz", + "integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==", + "dev": true, + "license": "MIT" + }, + "node_modules/uglify-js": { + "version": "3.19.3", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.19.3.tgz", + "integrity": "sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==", + "dev": true, + "license": "BSD-2-Clause", + "optional": true, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "dev": true, + "license": "MIT" + }, + "node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/unrs-resolver": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/unrs-resolver/-/unrs-resolver-1.11.1.tgz", + "integrity": "sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "napi-postinstall": "^0.3.0" + }, + "funding": { + "url": "https://opencollective.com/unrs-resolver" + }, + "optionalDependencies": { + "@unrs/resolver-binding-android-arm-eabi": "1.11.1", + "@unrs/resolver-binding-android-arm64": "1.11.1", + "@unrs/resolver-binding-darwin-arm64": "1.11.1", + "@unrs/resolver-binding-darwin-x64": "1.11.1", + "@unrs/resolver-binding-freebsd-x64": "1.11.1", + "@unrs/resolver-binding-linux-arm-gnueabihf": "1.11.1", + "@unrs/resolver-binding-linux-arm-musleabihf": "1.11.1", + "@unrs/resolver-binding-linux-arm64-gnu": "1.11.1", + "@unrs/resolver-binding-linux-arm64-musl": "1.11.1", + "@unrs/resolver-binding-linux-ppc64-gnu": "1.11.1", + "@unrs/resolver-binding-linux-riscv64-gnu": "1.11.1", + "@unrs/resolver-binding-linux-riscv64-musl": "1.11.1", + "@unrs/resolver-binding-linux-s390x-gnu": "1.11.1", + "@unrs/resolver-binding-linux-x64-gnu": "1.11.1", + "@unrs/resolver-binding-linux-x64-musl": "1.11.1", + "@unrs/resolver-binding-wasm32-wasi": "1.11.1", + "@unrs/resolver-binding-win32-arm64-msvc": "1.11.1", + "@unrs/resolver-binding-win32-ia32-msvc": "1.11.1", + "@unrs/resolver-binding-win32-x64-msvc": "1.11.1" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz", + "integrity": "sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/v8-to-istanbul": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz", + "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==", + "dev": true, + "license": "ISC", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^2.0.0" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true, + "license": "BSD-2-Clause" + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, + "license": "MIT", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", + "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz", + "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/write-file-atomic": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-5.0.1.tgz", + "integrity": "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==", + "dev": true, + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/write-file-atomic/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "license": "ISC" + }, + "node_modules/yaml": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.1.tgz", + "integrity": "sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==", + "dev": true, + "license": "ISC", + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14.6" + } + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/yargs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/package.json b/package.json index ba6bda0f..f4cd9cf6 100644 --- a/package.json +++ b/package.json @@ -44,17 +44,17 @@ "devDependencies": { "@changesets/changelog-github": "0.5.1", "@changesets/cli": "2.29.7", - "@eslint/js": "9.38.0", - "@tsconfig/node20": "20.1.6", + "@eslint/js": "9.39.1", + "@tsconfig/node20": "20.1.7", "@types/jest": "30.0.0", - "@types/node": "24.7.2", - "@typescript-eslint/eslint-plugin": "8.46.2", - "@typescript-eslint/parser": "8.46.2", - "eslint": "9.38.0", + "@types/node": "24.10.1", + "@typescript-eslint/eslint-plugin": "8.46.4", + "@typescript-eslint/parser": "8.46.4", + "eslint": "9.39.1", "eslint-config-prettier": "10.1.8", - "eslint-plugin-tsdoc": "0.4.0", + "eslint-plugin-tsdoc": "0.5.0", "jest": "30.2.0", - "jest-extended": "6.0.0", + "jest-extended": "7.0.0", "prettier": "3.6.2", "ts-jest": "29.4.5", "typedoc": "0.28.14", From e0f9a8e459e87477399934a23142798d406d2b36 Mon Sep 17 00:00:00 2001 From: angrykoala Date: Thu, 13 Nov 2025 15:48:24 +0000 Subject: [PATCH 28/30] Fix migration guide code example --- docs/modules/ROOT/pages/migration-guide-3.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/ROOT/pages/migration-guide-3.adoc b/docs/modules/ROOT/pages/migration-guide-3.adoc index 50d5819c..48d926fd 100644 --- a/docs/modules/ROOT/pages/migration-guide-3.adoc +++ b/docs/modules/ROOT/pages/migration-guide-3.adoc @@ -305,7 +305,7 @@ _After_ ---- CALL { CREATE (this0:Movie) - SET this0.id = 'The Matrix' + SET this0.id = 'The Matrix' RETURN this0 } RETURN this0 From 790f54f95b6dccdcc9157632872be5357148f0eb Mon Sep 17 00:00:00 2001 From: angrykoala Date: Tue, 18 Nov 2025 16:42:31 +0000 Subject: [PATCH 29/30] Fix prettier --- .../list/PatternComprehension.test.ts | 4 +++- src/expressions/map/MapExpr.test.ts | 4 +++- src/expressions/map/MapProjection.test.ts | 4 +++- src/namespaces/db/cdc.test.ts | 4 +++- src/namespaces/db/index/fulltext.test.ts | 16 +++++++++++---- src/namespaces/db/index/vector.test.ts | 16 +++++++++++---- src/namespaces/genai/genai.test.ts | 20 ++++++++++++++----- src/pattern/Pattern.test.ts | 20 ++++++++++++++----- src/procedures/CypherProcedure.test.ts | 4 +++- 9 files changed, 69 insertions(+), 23 deletions(-) diff --git a/src/expressions/list/PatternComprehension.test.ts b/src/expressions/list/PatternComprehension.test.ts index abb575a3..6230649b 100644 --- a/src/expressions/list/PatternComprehension.test.ts +++ b/src/expressions/list/PatternComprehension.test.ts @@ -97,7 +97,9 @@ describe("Pattern comprehension", () => { const queryResult = new TestClause(comprehension).build(); - expect(queryResult.cypher).toMatchInlineSnapshot(`"[(this0:Movie)-[this2:ACTED_IN]->(this1:Actor) WHERE this0.title CONTAINS 'Matrix' | this1.name]"`); + expect(queryResult.cypher).toMatchInlineSnapshot( + `"[(this0:Movie)-[this2:ACTED_IN]->(this1:Actor) WHERE this0.title CONTAINS 'Matrix' | this1.name]"` + ); expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); diff --git a/src/expressions/map/MapExpr.test.ts b/src/expressions/map/MapExpr.test.ts index 9d44801f..d3287330 100644 --- a/src/expressions/map/MapExpr.test.ts +++ b/src/expressions/map/MapExpr.test.ts @@ -52,7 +52,9 @@ describe("Map Expression", () => { const queryResult = new TestClause(map).build(); - expect(queryResult.cypher).toMatchInlineSnapshot(`"{key: $param0, value2: 'Override', value3: 'another value'}"`); + expect(queryResult.cypher).toMatchInlineSnapshot( + `"{key: $param0, value2: 'Override', value3: 'another value'}"` + ); expect(queryResult.params).toMatchInlineSnapshot(` { diff --git a/src/expressions/map/MapProjection.test.ts b/src/expressions/map/MapProjection.test.ts index 9cd2c486..bb200078 100644 --- a/src/expressions/map/MapProjection.test.ts +++ b/src/expressions/map/MapProjection.test.ts @@ -85,7 +85,9 @@ describe("Map Projection", () => { }); const queryResult = new TestClause(mapProjection.toMap()).build(); - expect(queryResult.cypher).toMatchInlineSnapshot(`"{title: var0.title, name: var0.name, namedValue: count(this1)}"`); + expect(queryResult.cypher).toMatchInlineSnapshot( + `"{title: var0.title, name: var0.name, namedValue: count(this1)}"` + ); expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); diff --git a/src/namespaces/db/cdc.test.ts b/src/namespaces/db/cdc.test.ts index f929a9d0..25ea7633 100644 --- a/src/namespaces/db/cdc.test.ts +++ b/src/namespaces/db/cdc.test.ts @@ -73,7 +73,9 @@ describe("db.cdc procedures", () => { const { cypher } = query.build(); - expect(cypher).toMatchInlineSnapshot(`"CALL db.cdc.query('my-cursor', [{select: 'e', operation: 'c', changesTo: ['name', 'title']}])"`); + expect(cypher).toMatchInlineSnapshot( + `"CALL db.cdc.query('my-cursor', [{select: 'e', operation: 'c', changesTo: ['name', 'title']}])"` + ); }); }); }); diff --git a/src/namespaces/db/index/fulltext.test.ts b/src/namespaces/db/index/fulltext.test.ts index 1ebbfffa..8d1f1398 100644 --- a/src/namespaces/db/index/fulltext.test.ts +++ b/src/namespaces/db/index/fulltext.test.ts @@ -29,7 +29,9 @@ describe("db.index.fulltext", () => { const { cypher, params } = fulltextProcedure.build(); - expect(cypher).toMatchInlineSnapshot(`"CALL db.index.fulltext.queryNodes('my-text-index', $param0) YIELD node AS this0"`); + expect(cypher).toMatchInlineSnapshot( + `"CALL db.index.fulltext.queryNodes('my-text-index', $param0) YIELD node AS this0"` + ); expect(params).toMatchInlineSnapshot(` { "param0": "This is a lovely phrase", @@ -72,7 +74,9 @@ RETURN this0" const { cypher, params } = fulltextProcedure.build(); - expect(cypher).toMatchInlineSnapshot(`"CALL db.index.fulltext.queryNodes('my-text-index', $param0, {skip: 5, analyser: $param1})"`); + expect(cypher).toMatchInlineSnapshot( + `"CALL db.index.fulltext.queryNodes('my-text-index', $param0, {skip: 5, analyser: $param1})"` + ); expect(params).toMatchInlineSnapshot(` { "param0": "This is a lovely phrase", @@ -91,7 +95,9 @@ RETURN this0" const { cypher, params } = fulltextProcedure.build(); - expect(cypher).toMatchInlineSnapshot(`"CALL db.index.fulltext.queryRelationships('my-text-index', $param0) YIELD relationship AS this0"`); + expect(cypher).toMatchInlineSnapshot( + `"CALL db.index.fulltext.queryRelationships('my-text-index', $param0) YIELD relationship AS this0"` + ); expect(params).toMatchInlineSnapshot(` { "param0": "This is a lovely phrase", @@ -111,7 +117,9 @@ RETURN this0" const { cypher, params } = fulltextProcedure.build(); - expect(cypher).toMatchInlineSnapshot(`"CALL db.index.fulltext.queryRelationships('my-text-index', $param0, {skip: 5, analyser: $param1})"`); + expect(cypher).toMatchInlineSnapshot( + `"CALL db.index.fulltext.queryRelationships('my-text-index', $param0, {skip: 5, analyser: $param1})"` + ); expect(params).toMatchInlineSnapshot(` { "param0": "This is a lovely phrase", diff --git a/src/namespaces/db/index/vector.test.ts b/src/namespaces/db/index/vector.test.ts index 874f8574..cca9c24e 100644 --- a/src/namespaces/db/index/vector.test.ts +++ b/src/namespaces/db/index/vector.test.ts @@ -29,7 +29,9 @@ describe("db.index.vector.queryNodes", () => { const { cypher, params } = vectorProcedure.build(); - expect(cypher).toMatchInlineSnapshot(`"CALL db.index.vector.queryNodes('my-vector-index', 10, $param0) YIELD node AS this0"`); + expect(cypher).toMatchInlineSnapshot( + `"CALL db.index.vector.queryNodes('my-vector-index', 10, $param0) YIELD node AS this0"` + ); expect(params).toMatchInlineSnapshot(` { "param0": "This is a lovely phrase", @@ -45,7 +47,9 @@ describe("db.index.vector.queryNodes", () => { const { cypher, params } = vectorProcedure.build(); - expect(cypher).toMatchInlineSnapshot(`"CALL db.index.vector.queryNodes('my-vector-index', 5, 'This is a lovely phrase literal') YIELD node AS this0"`); + expect(cypher).toMatchInlineSnapshot( + `"CALL db.index.vector.queryNodes('my-vector-index', 5, 'This is a lovely phrase literal') YIELD node AS this0"` + ); expect(params).toMatchInlineSnapshot(`{}`); }); test("vector with where and return", () => { @@ -82,7 +86,9 @@ describe("db.index.vector.queryRelationships", () => { const { cypher, params } = vectorProcedure.build(); - expect(cypher).toMatchInlineSnapshot(`"CALL db.index.vector.queryRelationships('my-vector-index', 10, $param0) YIELD relationship AS this0"`); + expect(cypher).toMatchInlineSnapshot( + `"CALL db.index.vector.queryRelationships('my-vector-index', 10, $param0) YIELD relationship AS this0"` + ); expect(params).toMatchInlineSnapshot(` { "param0": "This is a lovely phrase", @@ -102,7 +108,9 @@ describe("db.index.vector.queryRelationships", () => { const { cypher, params } = vectorProcedure.build(); - expect(cypher).toMatchInlineSnapshot(`"CALL db.index.vector.queryRelationships('my-vector-index', 10, 'This is a lovely phrase literal') YIELD relationship AS this0"`); + expect(cypher).toMatchInlineSnapshot( + `"CALL db.index.vector.queryRelationships('my-vector-index', 10, 'This is a lovely phrase literal') YIELD relationship AS this0"` + ); expect(params).toMatchInlineSnapshot(`{}`); }); test("vector with where and return", () => { diff --git a/src/namespaces/genai/genai.test.ts b/src/namespaces/genai/genai.test.ts index 768eeb26..4979ad67 100644 --- a/src/namespaces/genai/genai.test.ts +++ b/src/namespaces/genai/genai.test.ts @@ -31,7 +31,9 @@ describe("genai functions", () => { const { cypher, params } = result.build(); - expect(cypher).toMatchInlineSnapshot(`"WITH genai.vector.encode('embeddings are cool', 'VertexAI', {token: 'my-token', projectId: 'my-project'}) AS var0"`); + expect(cypher).toMatchInlineSnapshot( + `"WITH genai.vector.encode('embeddings are cool', 'VertexAI', {token: 'my-token', projectId: 'my-project'}) AS var0"` + ); expect(params).toMatchInlineSnapshot(`{}`); }); test("Encode with query and return", () => { @@ -89,7 +91,9 @@ describe("genai procedures", () => { const { cypher, params } = genAiEncodeFunction.build(); - expect(cypher).toMatchInlineSnapshot(`"CALL genai.vector.encodeBatch(['embeddings are cool', 'I love embeddings'], 'OpenAI', {token: 'my-token', projectId: 'my-project'})"`); + expect(cypher).toMatchInlineSnapshot( + `"CALL genai.vector.encodeBatch(['embeddings are cool', 'I love embeddings'], 'OpenAI', {token: 'my-token', projectId: 'my-project'})"` + ); expect(params).toMatchInlineSnapshot(`{}`); }); test("Cypher.Literal provider value", () => { @@ -100,7 +104,9 @@ describe("genai procedures", () => { const { cypher, params } = genAiEncodeFunction.build(); - expect(cypher).toMatchInlineSnapshot(`"CALL genai.vector.encodeBatch(['embeddings are cool', 'I love embeddings'], 'OpenAI', {token: 'my-token', projectId: 'my-project'})"`); + expect(cypher).toMatchInlineSnapshot( + `"CALL genai.vector.encodeBatch(['embeddings are cool', 'I love embeddings'], 'OpenAI', {token: 'my-token', projectId: 'my-project'})"` + ); expect(params).toMatchInlineSnapshot(`{}`); }); test("Cypher.Param provider value", () => { @@ -111,7 +117,9 @@ describe("genai procedures", () => { const { cypher, params } = genAiEncodeFunction.build(); - expect(cypher).toMatchInlineSnapshot(`"CALL genai.vector.encodeBatch(['embeddings are cool', 'I love embeddings'], $param0, {token: 'my-token', projectId: 'my-project'})"`); + expect(cypher).toMatchInlineSnapshot( + `"CALL genai.vector.encodeBatch(['embeddings are cool', 'I love embeddings'], $param0, {token: 'my-token', projectId: 'my-project'})"` + ); expect(params).toMatchInlineSnapshot(` { "param0": "OpenAI", @@ -130,7 +138,9 @@ describe("genai procedures", () => { const { cypher, params } = genAiEncodeFunction.build(); - expect(cypher).toMatchInlineSnapshot(`"CALL genai.vector.encodeBatch(['embeddings are cool', 'I love embeddings'], 'AzureOpenAI', {token: 'my-token', resource: 'my-resource-name', deployment: $param0, dimensions: 512})"`); + expect(cypher).toMatchInlineSnapshot( + `"CALL genai.vector.encodeBatch(['embeddings are cool', 'I love embeddings'], 'AzureOpenAI', {token: 'my-token', resource: 'my-resource-name', deployment: $param0, dimensions: 512})"` + ); expect(params).toMatchInlineSnapshot(` { "param0": "my-deployment", diff --git a/src/pattern/Pattern.test.ts b/src/pattern/Pattern.test.ts index 01c19e92..3c9335ff 100644 --- a/src/pattern/Pattern.test.ts +++ b/src/pattern/Pattern.test.ts @@ -223,7 +223,9 @@ describe("Patterns", () => { .to(b) ); const queryResult = query.build(); - expect(queryResult.cypher).toMatchInlineSnapshot(`"(this0:Person&Actor)-[this1:ACTED_IN { roles: ('The ' + 'Matrix') }]->(this2)"`); + expect(queryResult.cypher).toMatchInlineSnapshot( + `"(this0:Person&Actor)-[this1:ACTED_IN { roles: ('The ' + 'Matrix') }]->(this2)"` + ); expect(queryResult.params).toMatchInlineSnapshot(`{}`); }); @@ -446,7 +448,9 @@ describe("Patterns", () => { .related({}) .to(new Cypher.Node()); const queryResult = new TestClause(pattern).build(); - expect(queryResult.cypher).toMatchInlineSnapshot(`"(this0:TestLabel { released: 1999 } WHERE this0.name = 'Keanu')-[]->(this1)"`); + expect(queryResult.cypher).toMatchInlineSnapshot( + `"(this0:TestLabel { released: 1999 } WHERE this0.name = 'Keanu')-[]->(this1)"` + ); }); test("Node pattern with where predicate in target node", () => { @@ -457,7 +461,9 @@ describe("Patterns", () => { .to(new Cypher.Variable()) .where(Cypher.eq(node.property("name"), new Cypher.Literal("Keanu"))); const queryResult = new TestClause(pattern).build(); - expect(queryResult.cypher).toMatchInlineSnapshot(`"(this0:TestLabel)-[]->(var1 WHERE this0.name = 'Keanu')"`); + expect(queryResult.cypher).toMatchInlineSnapshot( + `"(this0:TestLabel)-[]->(var1 WHERE this0.name = 'Keanu')"` + ); }); test("Relationship pattern with where predicate", () => { @@ -469,7 +475,9 @@ describe("Patterns", () => { .where(Cypher.eq(relationship.property("role"), new Cypher.Literal("Neo"))) .to(new Cypher.Node()); const queryResult = new TestClause(pattern).build(); - expect(queryResult.cypher).toMatchInlineSnapshot(`"(this0:TestLabel)-[this1:ACTED_IN WHERE this1.role = 'Neo']->(this2)"`); + expect(queryResult.cypher).toMatchInlineSnapshot( + `"(this0:TestLabel)-[this1:ACTED_IN WHERE this1.role = 'Neo']->(this2)"` + ); }); test("Relationship pattern with where predicate and properties", () => { @@ -486,7 +494,9 @@ describe("Patterns", () => { .where(Cypher.eq(relationship.property("role"), new Cypher.Literal("Neo"))) .to(new Cypher.Node()); const queryResult = new TestClause(pattern).build(); - expect(queryResult.cypher).toMatchInlineSnapshot(`"(this0:TestLabel)-[this1:ACTED_IN WHERE this1.role = 'Neo' { test: 'hello' }]->(this2)"`); + expect(queryResult.cypher).toMatchInlineSnapshot( + `"(this0:TestLabel)-[this1:ACTED_IN WHERE this1.role = 'Neo' { test: 'hello' }]->(this2)"` + ); }); }); diff --git a/src/procedures/CypherProcedure.test.ts b/src/procedures/CypherProcedure.test.ts index 78e8e67f..8b5ff4c0 100644 --- a/src/procedures/CypherProcedure.test.ts +++ b/src/procedures/CypherProcedure.test.ts @@ -60,7 +60,9 @@ describe("Procedures", () => { const { cypher, params } = customProcedure.build(); - expect(cypher).toMatchInlineSnapshot(`"CALL customProcedure(this0) YIELD result1, result2 AS 'aliased', result3 AS string-alias"`); + expect(cypher).toMatchInlineSnapshot( + `"CALL customProcedure(this0) YIELD result1, result2 AS 'aliased', result3 AS string-alias"` + ); expect(params).toMatchInlineSnapshot(`{}`); }); From 3725b4ed43feafa59179dd07208a2891c99d8dcd Mon Sep 17 00:00:00 2001 From: angrykoala Date: Tue, 25 Nov 2025 15:12:31 +0000 Subject: [PATCH 30/30] Update package lock --- package-lock.json | 1044 ++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 974 insertions(+), 70 deletions(-) diff --git a/package-lock.json b/package-lock.json index 0f70488a..5a733d98 100644 --- a/package-lock.json +++ b/package-lock.json @@ -34,6 +34,8 @@ }, "node_modules/@babel/code-frame": { "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", "dev": true, "license": "MIT", "dependencies": { @@ -47,6 +49,8 @@ }, "node_modules/@babel/compat-data": { "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz", + "integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==", "dev": true, "license": "MIT", "engines": { @@ -55,6 +59,8 @@ }, "node_modules/@babel/core": { "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.5.tgz", + "integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==", "dev": true, "license": "MIT", "dependencies": { @@ -84,6 +90,8 @@ }, "node_modules/@babel/core/node_modules/semver": { "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "license": "ISC", "bin": { @@ -92,6 +100,8 @@ }, "node_modules/@babel/generator": { "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz", + "integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==", "dev": true, "license": "MIT", "dependencies": { @@ -107,6 +117,8 @@ }, "node_modules/@babel/helper-compilation-targets": { "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", + "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", "dev": true, "license": "MIT", "dependencies": { @@ -122,6 +134,8 @@ }, "node_modules/@babel/helper-compilation-targets/node_modules/semver": { "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "license": "ISC", "bin": { @@ -130,6 +144,8 @@ }, "node_modules/@babel/helper-globals": { "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", "dev": true, "license": "MIT", "engines": { @@ -138,6 +154,8 @@ }, "node_modules/@babel/helper-module-imports": { "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", + "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", "dev": true, "license": "MIT", "dependencies": { @@ -150,6 +168,8 @@ }, "node_modules/@babel/helper-module-transforms": { "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz", + "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==", "dev": true, "license": "MIT", "dependencies": { @@ -166,6 +186,8 @@ }, "node_modules/@babel/helper-plugin-utils": { "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", + "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", "dev": true, "license": "MIT", "engines": { @@ -174,6 +196,8 @@ }, "node_modules/@babel/helper-string-parser": { "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", "dev": true, "license": "MIT", "engines": { @@ -182,6 +206,8 @@ }, "node_modules/@babel/helper-validator-identifier": { "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", "dev": true, "license": "MIT", "engines": { @@ -190,6 +216,8 @@ }, "node_modules/@babel/helper-validator-option": { "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", "dev": true, "license": "MIT", "engines": { @@ -198,6 +226,8 @@ }, "node_modules/@babel/helpers": { "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", + "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", "dev": true, "license": "MIT", "dependencies": { @@ -210,6 +240,8 @@ }, "node_modules/@babel/parser": { "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz", + "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==", "dev": true, "license": "MIT", "dependencies": { @@ -224,6 +256,8 @@ }, "node_modules/@babel/plugin-syntax-async-generators": { "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", "dev": true, "license": "MIT", "dependencies": { @@ -235,6 +269,8 @@ }, "node_modules/@babel/plugin-syntax-bigint": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", "dev": true, "license": "MIT", "dependencies": { @@ -246,6 +282,8 @@ }, "node_modules/@babel/plugin-syntax-class-properties": { "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", "dev": true, "license": "MIT", "dependencies": { @@ -257,6 +295,8 @@ }, "node_modules/@babel/plugin-syntax-class-static-block": { "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", "dev": true, "license": "MIT", "dependencies": { @@ -271,6 +311,8 @@ }, "node_modules/@babel/plugin-syntax-import-attributes": { "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz", + "integrity": "sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==", "dev": true, "license": "MIT", "dependencies": { @@ -285,6 +327,8 @@ }, "node_modules/@babel/plugin-syntax-import-meta": { "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", "dev": true, "license": "MIT", "dependencies": { @@ -296,6 +340,8 @@ }, "node_modules/@babel/plugin-syntax-json-strings": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", "dev": true, "license": "MIT", "dependencies": { @@ -323,6 +369,8 @@ }, "node_modules/@babel/plugin-syntax-logical-assignment-operators": { "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", "dev": true, "license": "MIT", "dependencies": { @@ -334,6 +382,8 @@ }, "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", "dev": true, "license": "MIT", "dependencies": { @@ -345,6 +395,8 @@ }, "node_modules/@babel/plugin-syntax-numeric-separator": { "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", "dev": true, "license": "MIT", "dependencies": { @@ -356,6 +408,8 @@ }, "node_modules/@babel/plugin-syntax-object-rest-spread": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", "dev": true, "license": "MIT", "dependencies": { @@ -367,6 +421,8 @@ }, "node_modules/@babel/plugin-syntax-optional-catch-binding": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", "dev": true, "license": "MIT", "dependencies": { @@ -378,6 +434,8 @@ }, "node_modules/@babel/plugin-syntax-optional-chaining": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", "dev": true, "license": "MIT", "dependencies": { @@ -389,6 +447,8 @@ }, "node_modules/@babel/plugin-syntax-private-property-in-object": { "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", "dev": true, "license": "MIT", "dependencies": { @@ -403,6 +463,8 @@ }, "node_modules/@babel/plugin-syntax-top-level-await": { "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", "dev": true, "license": "MIT", "dependencies": { @@ -433,6 +495,8 @@ }, "node_modules/@babel/runtime": { "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==", "dev": true, "license": "MIT", "engines": { @@ -441,6 +505,8 @@ }, "node_modules/@babel/template": { "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", "dev": true, "license": "MIT", "dependencies": { @@ -454,6 +520,8 @@ }, "node_modules/@babel/traverse": { "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz", + "integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==", "dev": true, "license": "MIT", "dependencies": { @@ -471,6 +539,8 @@ }, "node_modules/@babel/types": { "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz", + "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==", "dev": true, "license": "MIT", "dependencies": { @@ -490,6 +560,8 @@ }, "node_modules/@changesets/apply-release-plan": { "version": "7.0.13", + "resolved": "https://registry.npmjs.org/@changesets/apply-release-plan/-/apply-release-plan-7.0.13.tgz", + "integrity": "sha512-BIW7bofD2yAWoE8H4V40FikC+1nNFEKBisMECccS16W1rt6qqhNTBDmIw5HaqmMgtLNz9e7oiALiEUuKrQ4oHg==", "dev": true, "license": "MIT", "dependencies": { @@ -510,6 +582,8 @@ }, "node_modules/@changesets/apply-release-plan/node_modules/prettier": { "version": "2.8.8", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", + "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", "dev": true, "license": "MIT", "bin": { @@ -524,6 +598,8 @@ }, "node_modules/@changesets/assemble-release-plan": { "version": "6.0.9", + "resolved": "https://registry.npmjs.org/@changesets/assemble-release-plan/-/assemble-release-plan-6.0.9.tgz", + "integrity": "sha512-tPgeeqCHIwNo8sypKlS3gOPmsS3wP0zHt67JDuL20P4QcXiw/O4Hl7oXiuLnP9yg+rXLQ2sScdV1Kkzde61iSQ==", "dev": true, "license": "MIT", "dependencies": { @@ -537,6 +613,8 @@ }, "node_modules/@changesets/changelog-git": { "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@changesets/changelog-git/-/changelog-git-0.2.1.tgz", + "integrity": "sha512-x/xEleCFLH28c3bQeQIyeZf8lFXyDFVn1SgcBiR2Tw/r4IAWlk1fzxCEZ6NxQAjF2Nwtczoen3OA2qR+UawQ8Q==", "dev": true, "license": "MIT", "dependencies": { @@ -545,6 +623,8 @@ }, "node_modules/@changesets/changelog-github": { "version": "0.5.1", + "resolved": "https://registry.npmjs.org/@changesets/changelog-github/-/changelog-github-0.5.1.tgz", + "integrity": "sha512-BVuHtF+hrhUScSoHnJwTELB4/INQxVFc+P/Qdt20BLiBFIHFJDDUaGsZw+8fQeJTRP5hJZrzpt3oZWh0G19rAQ==", "dev": true, "license": "MIT", "dependencies": { @@ -555,6 +635,8 @@ }, "node_modules/@changesets/cli": { "version": "2.29.7", + "resolved": "https://registry.npmjs.org/@changesets/cli/-/cli-2.29.7.tgz", + "integrity": "sha512-R7RqWoaksyyKXbKXBTbT4REdy22yH81mcFK6sWtqSanxUCbUi9Uf+6aqxZtDQouIqPdem2W56CdxXgsxdq7FLQ==", "dev": true, "license": "MIT", "dependencies": { @@ -593,6 +675,8 @@ }, "node_modules/@changesets/config": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@changesets/config/-/config-3.1.1.tgz", + "integrity": "sha512-bd+3Ap2TKXxljCggI0mKPfzCQKeV/TU4yO2h2C6vAihIo8tzseAn2e7klSuiyYYXvgu53zMN1OeYMIQkaQoWnA==", "dev": true, "license": "MIT", "dependencies": { @@ -607,6 +691,8 @@ }, "node_modules/@changesets/errors": { "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@changesets/errors/-/errors-0.2.0.tgz", + "integrity": "sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==", "dev": true, "license": "MIT", "dependencies": { @@ -615,6 +701,8 @@ }, "node_modules/@changesets/get-dependents-graph": { "version": "2.1.3", + "resolved": "https://registry.npmjs.org/@changesets/get-dependents-graph/-/get-dependents-graph-2.1.3.tgz", + "integrity": "sha512-gphr+v0mv2I3Oxt19VdWRRUxq3sseyUpX9DaHpTUmLj92Y10AGy+XOtV+kbM6L/fDcpx7/ISDFK6T8A/P3lOdQ==", "dev": true, "license": "MIT", "dependencies": { @@ -626,6 +714,8 @@ }, "node_modules/@changesets/get-github-info": { "version": "0.6.0", + "resolved": "https://registry.npmjs.org/@changesets/get-github-info/-/get-github-info-0.6.0.tgz", + "integrity": "sha512-v/TSnFVXI8vzX9/w3DU2Ol+UlTZcu3m0kXTjTT4KlAdwSvwutcByYwyYn9hwerPWfPkT2JfpoX0KgvCEi8Q/SA==", "dev": true, "license": "MIT", "dependencies": { @@ -635,6 +725,8 @@ }, "node_modules/@changesets/get-release-plan": { "version": "4.0.13", + "resolved": "https://registry.npmjs.org/@changesets/get-release-plan/-/get-release-plan-4.0.13.tgz", + "integrity": "sha512-DWG1pus72FcNeXkM12tx+xtExyH/c9I1z+2aXlObH3i9YA7+WZEVaiHzHl03thpvAgWTRaH64MpfHxozfF7Dvg==", "dev": true, "license": "MIT", "dependencies": { @@ -648,11 +740,15 @@ }, "node_modules/@changesets/get-version-range-type": { "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@changesets/get-version-range-type/-/get-version-range-type-0.4.0.tgz", + "integrity": "sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==", "dev": true, "license": "MIT" }, "node_modules/@changesets/git": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@changesets/git/-/git-3.0.4.tgz", + "integrity": "sha512-BXANzRFkX+XcC1q/d27NKvlJ1yf7PSAgi8JG6dt8EfbHFHi4neau7mufcSca5zRhwOL8j9s6EqsxmT+s+/E6Sw==", "dev": true, "license": "MIT", "dependencies": { @@ -665,6 +761,8 @@ }, "node_modules/@changesets/logger": { "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@changesets/logger/-/logger-0.1.1.tgz", + "integrity": "sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==", "dev": true, "license": "MIT", "dependencies": { @@ -673,6 +771,8 @@ }, "node_modules/@changesets/parse": { "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@changesets/parse/-/parse-0.4.1.tgz", + "integrity": "sha512-iwksMs5Bf/wUItfcg+OXrEpravm5rEd9Bf4oyIPL4kVTmJQ7PNDSd6MDYkpSJR1pn7tz/k8Zf2DhTCqX08Ou+Q==", "dev": true, "license": "MIT", "dependencies": { @@ -682,6 +782,8 @@ }, "node_modules/@changesets/pre": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@changesets/pre/-/pre-2.0.2.tgz", + "integrity": "sha512-HaL/gEyFVvkf9KFg6484wR9s0qjAXlZ8qWPDkTyKF6+zqjBe/I2mygg3MbpZ++hdi0ToqNUF8cjj7fBy0dg8Ug==", "dev": true, "license": "MIT", "dependencies": { @@ -693,6 +795,8 @@ }, "node_modules/@changesets/read": { "version": "0.6.5", + "resolved": "https://registry.npmjs.org/@changesets/read/-/read-0.6.5.tgz", + "integrity": "sha512-UPzNGhsSjHD3Veb0xO/MwvasGe8eMyNrR/sT9gR8Q3DhOQZirgKhhXv/8hVsI0QpPjR004Z9iFxoJU6in3uGMg==", "dev": true, "license": "MIT", "dependencies": { @@ -707,6 +811,8 @@ }, "node_modules/@changesets/should-skip-package": { "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@changesets/should-skip-package/-/should-skip-package-0.1.2.tgz", + "integrity": "sha512-qAK/WrqWLNCP22UDdBTMPH5f41elVDlsNyat180A33dWxuUDyNpg6fPi/FyTZwRriVjg0L8gnjJn2F9XAoF0qw==", "dev": true, "license": "MIT", "dependencies": { @@ -716,11 +822,15 @@ }, "node_modules/@changesets/types": { "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@changesets/types/-/types-6.1.0.tgz", + "integrity": "sha512-rKQcJ+o1nKNgeoYRHKOS07tAMNd3YSN0uHaJOZYjBAgxfV7TUE7JE+z4BzZdQwb5hKaYbayKN5KrYV7ODb2rAA==", "dev": true, "license": "MIT" }, "node_modules/@changesets/write": { "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@changesets/write/-/write-0.4.0.tgz", + "integrity": "sha512-CdTLvIOPiCNuH71pyDu3rA+Q0n65cmAbXnwWH84rKGiFumFzkmHNT8KHTMEchcxN+Kl8I54xGUhJ7l3E7X396Q==", "dev": true, "license": "MIT", "dependencies": { @@ -732,6 +842,8 @@ }, "node_modules/@changesets/write/node_modules/prettier": { "version": "2.8.8", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", + "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", "dev": true, "license": "MIT", "bin": { @@ -780,6 +892,8 @@ }, "node_modules/@eslint-community/eslint-utils": { "version": "4.9.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz", + "integrity": "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==", "dev": true, "license": "MIT", "dependencies": { @@ -797,6 +911,8 @@ }, "node_modules/@eslint-community/regexpp": { "version": "4.12.2", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", "dev": true, "license": "MIT", "engines": { @@ -805,6 +921,8 @@ }, "node_modules/@eslint/config-array": { "version": "0.21.1", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.1.tgz", + "integrity": "sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -818,6 +936,8 @@ }, "node_modules/@eslint/config-array/node_modules/brace-expansion": { "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", "dev": true, "license": "MIT", "dependencies": { @@ -827,6 +947,8 @@ }, "node_modules/@eslint/config-array/node_modules/minimatch": { "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "license": "ISC", "dependencies": { @@ -838,6 +960,8 @@ }, "node_modules/@eslint/config-helpers": { "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz", + "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -849,6 +973,8 @@ }, "node_modules/@eslint/core": { "version": "0.17.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz", + "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -860,6 +986,8 @@ }, "node_modules/@eslint/eslintrc": { "version": "3.3.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz", + "integrity": "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==", "dev": true, "license": "MIT", "dependencies": { @@ -882,11 +1010,15 @@ }, "node_modules/@eslint/eslintrc/node_modules/argparse": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true, "license": "Python-2.0" }, "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", "dev": true, "license": "MIT", "dependencies": { @@ -896,6 +1028,8 @@ }, "node_modules/@eslint/eslintrc/node_modules/ignore": { "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true, "license": "MIT", "engines": { @@ -904,6 +1038,8 @@ }, "node_modules/@eslint/eslintrc/node_modules/js-yaml": { "version": "4.1.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", "dev": true, "license": "MIT", "dependencies": { @@ -915,6 +1051,8 @@ }, "node_modules/@eslint/eslintrc/node_modules/minimatch": { "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "license": "ISC", "dependencies": { @@ -926,6 +1064,8 @@ }, "node_modules/@eslint/js": { "version": "9.39.1", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.1.tgz", + "integrity": "sha512-S26Stp4zCy88tH94QbBv3XCuzRQiZ9yXofEILmglYTh/Ug/a9/umqvgFtYBAo3Lp0nsI/5/qH1CCrbdK3AP1Tw==", "dev": true, "license": "MIT", "engines": { @@ -937,6 +1077,8 @@ }, "node_modules/@eslint/object-schema": { "version": "2.1.7", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz", + "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==", "dev": true, "license": "Apache-2.0", "engines": { @@ -945,6 +1087,8 @@ }, "node_modules/@eslint/plugin-kit": { "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz", + "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -957,6 +1101,8 @@ }, "node_modules/@gerrit0/mini-shiki": { "version": "3.15.0", + "resolved": "https://registry.npmjs.org/@gerrit0/mini-shiki/-/mini-shiki-3.15.0.tgz", + "integrity": "sha512-L5IHdZIDa4bG4yJaOzfasOH/o22MCesY0mx+n6VATbaiCtMeR59pdRqYk4bEiQkIHfxsHPNgdi7VJlZb2FhdMQ==", "dev": true, "license": "MIT", "dependencies": { @@ -969,6 +1115,8 @@ }, "node_modules/@humanfs/core": { "version": "0.19.1", + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", + "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", "dev": true, "license": "Apache-2.0", "engines": { @@ -977,6 +1125,8 @@ }, "node_modules/@humanfs/node": { "version": "0.16.7", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.7.tgz", + "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -989,6 +1139,8 @@ }, "node_modules/@humanwhocodes/module-importer": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", "dev": true, "license": "Apache-2.0", "engines": { @@ -1001,6 +1153,8 @@ }, "node_modules/@humanwhocodes/retry": { "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", + "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", "dev": true, "license": "Apache-2.0", "engines": { @@ -1013,6 +1167,8 @@ }, "node_modules/@inquirer/external-editor": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@inquirer/external-editor/-/external-editor-1.0.3.tgz", + "integrity": "sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA==", "dev": true, "license": "MIT", "dependencies": { @@ -1097,6 +1253,8 @@ }, "node_modules/@istanbuljs/schema": { "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", "dev": true, "license": "MIT", "engines": { @@ -1187,6 +1345,8 @@ }, "node_modules/@jest/diff-sequences": { "version": "30.0.1", + "resolved": "https://registry.npmjs.org/@jest/diff-sequences/-/diff-sequences-30.0.1.tgz", + "integrity": "sha512-n5H8QLDJ47QqbCNn5SuFjCRDrOLEZ0h8vAHCK5RL9Ls7Xa8AQLa/YxAc9UjFqoEDM48muwtBGjtMY5cr0PLDCw==", "dev": true, "license": "MIT", "engines": { @@ -1256,6 +1416,8 @@ }, "node_modules/@jest/get-type": { "version": "30.1.0", + "resolved": "https://registry.npmjs.org/@jest/get-type/-/get-type-30.1.0.tgz", + "integrity": "sha512-eMbZE2hUnx1WV0pmURZY9XoXPkUYjpc55mb0CrhtdWLtzMQPFvu/rZkTLZFTsdaVQa+Tr4eWAteqcUzoawq/uA==", "dev": true, "license": "MIT", "engines": { @@ -1459,6 +1621,8 @@ }, "node_modules/@jridgewell/gen-mapping": { "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", "dev": true, "license": "MIT", "dependencies": { @@ -1468,6 +1632,8 @@ }, "node_modules/@jridgewell/remapping": { "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", "dev": true, "license": "MIT", "dependencies": { @@ -1477,6 +1643,8 @@ }, "node_modules/@jridgewell/resolve-uri": { "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", "dev": true, "license": "MIT", "engines": { @@ -1485,11 +1653,15 @@ }, "node_modules/@jridgewell/sourcemap-codec": { "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", "dev": true, "license": "MIT" }, "node_modules/@jridgewell/trace-mapping": { "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", "dev": true, "license": "MIT", "dependencies": { @@ -1499,6 +1671,8 @@ }, "node_modules/@manypkg/find-root": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@manypkg/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==", "dev": true, "license": "MIT", "dependencies": { @@ -1510,11 +1684,15 @@ }, "node_modules/@manypkg/find-root/node_modules/@types/node": { "version": "12.20.55", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz", + "integrity": "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==", "dev": true, "license": "MIT" }, "node_modules/@manypkg/find-root/node_modules/fs-extra": { "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", "dev": true, "license": "MIT", "dependencies": { @@ -1528,6 +1706,8 @@ }, "node_modules/@manypkg/get-packages": { "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@manypkg/get-packages/-/get-packages-1.1.3.tgz", + "integrity": "sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==", "dev": true, "license": "MIT", "dependencies": { @@ -1541,11 +1721,15 @@ }, "node_modules/@manypkg/get-packages/node_modules/@changesets/types": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@changesets/types/-/types-4.1.0.tgz", + "integrity": "sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==", "dev": true, "license": "MIT" }, "node_modules/@manypkg/get-packages/node_modules/fs-extra": { "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", "dev": true, "license": "MIT", "dependencies": { @@ -1559,11 +1743,15 @@ }, "node_modules/@microsoft/tsdoc": { "version": "0.15.1", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc/-/tsdoc-0.15.1.tgz", + "integrity": "sha512-4aErSrCR/On/e5G2hDP0wjooqDdauzEbIq8hIkIe5pXV0rtWJZvdCEKL0ykZxex+IxIwBp0eGeV48hQN07dXtw==", "dev": true, "license": "MIT" }, "node_modules/@microsoft/tsdoc-config": { "version": "0.17.1", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc-config/-/tsdoc-config-0.17.1.tgz", + "integrity": "sha512-UtjIFe0C6oYgTnad4q1QP4qXwLhe6tIpNTRStJ2RZEPIkqQPREAwE5spzVxsdn9UaEMUqhh0AqSx3X4nWAKXWw==", "dev": true, "license": "MIT", "dependencies": { @@ -1575,6 +1763,8 @@ }, "node_modules/@microsoft/tsdoc-config/node_modules/ajv": { "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "dev": true, "license": "MIT", "dependencies": { @@ -1590,24 +1780,28 @@ }, "node_modules/@microsoft/tsdoc-config/node_modules/json-schema-traverse": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true, "license": "MIT" }, "node_modules/@napi-rs/wasm-runtime": { - "version": "0.2.12", - "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.12.tgz", - "integrity": "sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.0.7.tgz", + "integrity": "sha512-SeDnOO0Tk7Okiq6DbXmmBODgOAb9dp9gjlphokTUxmt8U3liIP1ZsozBahH69j/RJv+Rfs6IwUKHTgQYJ/HBAw==", "dev": true, "license": "MIT", "optional": true, "dependencies": { - "@emnapi/core": "^1.4.3", - "@emnapi/runtime": "^1.4.3", - "@tybys/wasm-util": "^0.10.0" + "@emnapi/core": "^1.5.0", + "@emnapi/runtime": "^1.5.0", + "@tybys/wasm-util": "^0.10.1" } }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, "license": "MIT", "dependencies": { @@ -1620,6 +1814,8 @@ }, "node_modules/@nodelib/fs.stat": { "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true, "license": "MIT", "engines": { @@ -1628,6 +1824,8 @@ }, "node_modules/@nodelib/fs.walk": { "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, "license": "MIT", "dependencies": { @@ -1638,8 +1836,206 @@ "node": ">= 8" } }, + "node_modules/@oxc-resolver/binding-android-arm-eabi": { + "version": "11.14.0", + "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-android-arm-eabi/-/binding-android-arm-eabi-11.14.0.tgz", + "integrity": "sha512-jB47iZ/thvhE+USCLv+XY3IknBbkKr/p7OBsQDTHode/GPw+OHRlit3NQ1bjt1Mj8V2CS7iHdSDYobZ1/0gagQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@oxc-resolver/binding-android-arm64": { + "version": "11.14.0", + "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-android-arm64/-/binding-android-arm64-11.14.0.tgz", + "integrity": "sha512-XFJ9t7d/Cz+dWLyqtTy3Xrekz+qqN4hmOU2iOUgr7u71OQsPUHIIeS9/wKanEK0l413gPwapIkyc5x9ltlOtyw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@oxc-resolver/binding-darwin-arm64": { + "version": "11.14.0", + "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-darwin-arm64/-/binding-darwin-arm64-11.14.0.tgz", + "integrity": "sha512-gwehBS9smA1mzK8frDsmUCHz+6baJVwkKF6qViHhoqA3kRKvIZ3k6WNP4JmF19JhOiGxRcoPa8gZRfzNgXwP2A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@oxc-resolver/binding-darwin-x64": { + "version": "11.14.0", + "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-darwin-x64/-/binding-darwin-x64-11.14.0.tgz", + "integrity": "sha512-5wwJvfuoahKiAqqAsMLOI28rqdh3P2K7HkjIWUXNMWAZq6ErX0L5rwJzu6T32+Zxw3k18C7R9IS4wDq/3Ar+6w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@oxc-resolver/binding-freebsd-x64": { + "version": "11.14.0", + "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-freebsd-x64/-/binding-freebsd-x64-11.14.0.tgz", + "integrity": "sha512-MWTt+LOQNcQ6fa+Uu5VikkihLi1PSIrQqqp0QD44k2AORasNWl0jRGBTcMSBIgNe82qEQWYvlGzvOEEOBp01Og==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@oxc-resolver/binding-linux-arm-gnueabihf": { + "version": "11.14.0", + "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-11.14.0.tgz", + "integrity": "sha512-b6/IBqYrS3o0XiLVBsnex/wK8pTTK+hbGfAMOHVU6p7DBpwPPLgC/tav4IXoOIUCssTFz7aWh/xtUok0swn8VQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@oxc-resolver/binding-linux-arm-musleabihf": { + "version": "11.14.0", + "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-11.14.0.tgz", + "integrity": "sha512-o2Qh5+y5YoqVK6YfzkalHdpmQ5bkbGGxuLg1pZLQ1Ift0x+Vix7DaFEpdCl5Z9xvYXogd/TwOlL0TPl4+MTFLA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@oxc-resolver/binding-linux-arm64-gnu": { + "version": "11.14.0", + "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-11.14.0.tgz", + "integrity": "sha512-lk8mCSg0Tg4sEG73RiPjb7keGcEPwqQnBHX3Z+BR2SWe+qNHpoHcyFMNafzSvEC18vlxC04AUSoa6kJl/C5zig==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@oxc-resolver/binding-linux-arm64-musl": { + "version": "11.14.0", + "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-arm64-musl/-/binding-linux-arm64-musl-11.14.0.tgz", + "integrity": "sha512-KykeIVhCM7pn93ABa0fNe8vk4XvnbfZMELne2s6P9tdJH9KMBsCFBi7a2BmSdUtTqWCAJokAcm46lpczU52Xaw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@oxc-resolver/binding-linux-ppc64-gnu": { + "version": "11.14.0", + "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-11.14.0.tgz", + "integrity": "sha512-QqPPWAcZU/jHAuam4f3zV8OdEkYRPD2XR0peVet3hoMMgsihR3Lhe7J/bLclmod297FG0+OgBYQVMh2nTN6oWA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@oxc-resolver/binding-linux-riscv64-gnu": { + "version": "11.14.0", + "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-11.14.0.tgz", + "integrity": "sha512-DunWA+wafeG3hj1NADUD3c+DRvmyVNqF5LSHVUWA2bzswqmuEZXl3VYBSzxfD0j+UnRTFYLxf27AMptoMsepYg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@oxc-resolver/binding-linux-riscv64-musl": { + "version": "11.14.0", + "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-11.14.0.tgz", + "integrity": "sha512-4SRvwKTTk2k67EQr9Ny4NGf/BhlwggCI1CXwBbA9IV4oP38DH8b+NAPxDY0ySGRsWbPkG92FYOqM4AWzG4GSgA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@oxc-resolver/binding-linux-s390x-gnu": { + "version": "11.14.0", + "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-11.14.0.tgz", + "integrity": "sha512-hZKvkbsurj4JOom//R1Ab2MlC4cGeVm5zzMt4IsS3XySQeYjyMJ5TDZ3J5rQ8bVj3xi4FpJU2yFZ72GApsHQ6A==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, "node_modules/@oxc-resolver/binding-linux-x64-gnu": { - "version": "11.13.2", + "version": "11.14.0", + "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-x64-gnu/-/binding-linux-x64-gnu-11.14.0.tgz", + "integrity": "sha512-hABxQXFXJurivw+0amFdeEcK67cF1BGBIN1+sSHzq3TRv4RoG8n5q2JE04Le2n2Kpt6xg4Y5+lcv+rb2mCJLgQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@oxc-resolver/binding-linux-x64-musl": { + "version": "11.14.0", + "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-x64-musl/-/binding-linux-x64-musl-11.14.0.tgz", + "integrity": "sha512-Ln73wUB5migZRvC7obAAdqVwvFvk7AUs2JLt4g9QHr8FnqivlsjpUC9Nf2ssrybdjyQzEMjttUxPZz6aKPSAHw==", "cpu": [ "x64" ], @@ -1650,6 +2046,65 @@ "linux" ] }, + "node_modules/@oxc-resolver/binding-wasm32-wasi": { + "version": "11.14.0", + "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-wasm32-wasi/-/binding-wasm32-wasi-11.14.0.tgz", + "integrity": "sha512-z+NbELmCOKNtWOqEB5qDfHXOSWB3kGQIIehq6nHtZwHLzdVO2oBq6De/ayhY3ygriC1XhgaIzzniY7jgrNl4Kw==", + "cpu": [ + "wasm32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@napi-rs/wasm-runtime": "^1.0.7" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@oxc-resolver/binding-win32-arm64-msvc": { + "version": "11.14.0", + "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-11.14.0.tgz", + "integrity": "sha512-Ft0+qd7HSO61qCTLJ4LCdBGZkpKyDj1rG0OVSZL1DxWQoh97m7vEHd7zAvUtw8EcWjOMBQuX4mfRap/x2MOCpQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@oxc-resolver/binding-win32-ia32-msvc": { + "version": "11.14.0", + "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-11.14.0.tgz", + "integrity": "sha512-o54jYNSfGdPxHSvXEhZg8FOV3K99mJ1f7hb1alRFb+Yec1GQXNrJXxZPIxNMYeFT13kwAWB7zuQ0HZLnDHFxfw==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@oxc-resolver/binding-win32-x64-msvc": { + "version": "11.14.0", + "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-win32-x64-msvc/-/binding-win32-x64-msvc-11.14.0.tgz", + "integrity": "sha512-j97icaORyM6A7GjgmUzfn7V+KGzVvctRA+eAlJb0c2OQNaETFxl6BXZdnGBDb+6oA0Y4Sr/wnekd1kQ0aVyKGg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, "node_modules/@pkgjs/parseargs": { "version": "0.11.0", "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", @@ -1676,6 +2131,8 @@ }, "node_modules/@shikijs/engine-oniguruma": { "version": "3.15.0", + "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-3.15.0.tgz", + "integrity": "sha512-HnqFsV11skAHvOArMZdLBZZApRSYS4LSztk2K3016Y9VCyZISnlYUYsL2hzlS7tPqKHvNqmI5JSUJZprXloMvA==", "dev": true, "license": "MIT", "dependencies": { @@ -1685,6 +2142,8 @@ }, "node_modules/@shikijs/langs": { "version": "3.15.0", + "resolved": "https://registry.npmjs.org/@shikijs/langs/-/langs-3.15.0.tgz", + "integrity": "sha512-WpRvEFvkVvO65uKYW4Rzxs+IG0gToyM8SARQMtGGsH4GDMNZrr60qdggXrFOsdfOVssG/QQGEl3FnJ3EZ+8w8A==", "dev": true, "license": "MIT", "dependencies": { @@ -1693,6 +2152,8 @@ }, "node_modules/@shikijs/themes": { "version": "3.15.0", + "resolved": "https://registry.npmjs.org/@shikijs/themes/-/themes-3.15.0.tgz", + "integrity": "sha512-8ow2zWb1IDvCKjYb0KiLNrK4offFdkfNVPXb1OZykpLCzRU6j+efkY+Y7VQjNlNFXonSw+4AOdGYtmqykDbRiQ==", "dev": true, "license": "MIT", "dependencies": { @@ -1701,6 +2162,8 @@ }, "node_modules/@shikijs/types": { "version": "3.15.0", + "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-3.15.0.tgz", + "integrity": "sha512-BnP+y/EQnhihgHy4oIAN+6FFtmfTekwOLsQbRw9hOKwqgNy8Bdsjq8B05oAt/ZgvIWWFrshV71ytOrlPfYjIJw==", "dev": true, "license": "MIT", "dependencies": { @@ -1710,6 +2173,8 @@ }, "node_modules/@shikijs/vscode-textmate": { "version": "10.0.2", + "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-10.0.2.tgz", + "integrity": "sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==", "dev": true, "license": "MIT" }, @@ -1805,11 +2270,15 @@ }, "node_modules/@types/estree": { "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", "dev": true, "license": "MIT" }, "node_modules/@types/hast": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", + "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", "dev": true, "license": "MIT", "dependencies": { @@ -1818,11 +2287,15 @@ }, "node_modules/@types/istanbul-lib-coverage": { "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", "dev": true, "license": "MIT" }, "node_modules/@types/istanbul-lib-report": { "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", + "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", "dev": true, "license": "MIT", "dependencies": { @@ -1831,6 +2304,8 @@ }, "node_modules/@types/istanbul-reports": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", + "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", "dev": true, "license": "MIT", "dependencies": { @@ -1850,6 +2325,8 @@ }, "node_modules/@types/json-schema": { "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", "dev": true, "license": "MIT" }, @@ -1872,11 +2349,15 @@ }, "node_modules/@types/unist": { "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", "dev": true, "license": "MIT" }, "node_modules/@types/yargs": { "version": "17.0.35", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.35.tgz", + "integrity": "sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==", "dev": true, "license": "MIT", "dependencies": { @@ -1885,6 +2366,8 @@ }, "node_modules/@types/yargs-parser": { "version": "21.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", "dev": true, "license": "MIT" }, @@ -2357,6 +2840,19 @@ "node": ">=14.0.0" } }, + "node_modules/@unrs/resolver-binding-wasm32-wasi/node_modules/@napi-rs/wasm-runtime": { + "version": "0.2.12", + "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.12.tgz", + "integrity": "sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/core": "^1.4.3", + "@emnapi/runtime": "^1.4.3", + "@tybys/wasm-util": "^0.10.0" + } + }, "node_modules/@unrs/resolver-binding-win32-arm64-msvc": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.11.1.tgz", @@ -2401,6 +2897,8 @@ }, "node_modules/acorn": { "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", "dev": true, "license": "MIT", "bin": { @@ -2412,6 +2910,8 @@ }, "node_modules/acorn-jsx": { "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dev": true, "license": "MIT", "peerDependencies": { @@ -2420,6 +2920,8 @@ }, "node_modules/ajv": { "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "license": "MIT", "dependencies": { @@ -2435,6 +2937,8 @@ }, "node_modules/ansi-colors": { "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", "dev": true, "license": "MIT", "engines": { @@ -2459,6 +2963,8 @@ }, "node_modules/ansi-regex": { "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true, "license": "MIT", "engines": { @@ -2467,6 +2973,8 @@ }, "node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "license": "MIT", "dependencies": { @@ -2481,6 +2989,8 @@ }, "node_modules/anymatch": { "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "dev": true, "license": "ISC", "dependencies": { @@ -2493,6 +3003,8 @@ }, "node_modules/argparse": { "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dev": true, "license": "MIT", "dependencies": { @@ -2501,6 +3013,8 @@ }, "node_modules/array-union": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "dev": true, "license": "MIT", "engines": { @@ -2564,6 +3078,8 @@ }, "node_modules/babel-preset-current-node-syntax": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.2.0.tgz", + "integrity": "sha512-E/VlAEzRrsLEb2+dv8yp3bo4scof3l9nR4lrld+Iy5NyVqgVYUJnDAmunkhPMisRI32Qc4iRiz425d8vM++2fg==", "dev": true, "license": "MIT", "dependencies": { @@ -2606,11 +3122,15 @@ }, "node_modules/balanced-match": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true, "license": "MIT" }, "node_modules/baseline-browser-mapping": { - "version": "2.8.29", + "version": "2.8.31", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.31.tgz", + "integrity": "sha512-a28v2eWrrRWPpJSzxc+mKwm0ZtVx/G8SepdQZDArnXYU/XS+IF6mp8aB/4E+hH1tyGCoDo3KlUCdlSxGDsRkAw==", "dev": true, "license": "Apache-2.0", "bin": { @@ -2619,6 +3139,8 @@ }, "node_modules/better-path-resolve": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/better-path-resolve/-/better-path-resolve-1.0.0.tgz", + "integrity": "sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==", "dev": true, "license": "MIT", "dependencies": { @@ -2630,6 +3152,8 @@ }, "node_modules/brace-expansion": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", "dev": true, "license": "MIT", "dependencies": { @@ -2638,6 +3162,8 @@ }, "node_modules/braces": { "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "dev": true, "license": "MIT", "dependencies": { @@ -2649,6 +3175,8 @@ }, "node_modules/browserslist": { "version": "4.28.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.0.tgz", + "integrity": "sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==", "dev": true, "funding": [ { @@ -2681,6 +3209,8 @@ }, "node_modules/bs-logger": { "version": "0.2.6", + "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", "dev": true, "license": "MIT", "dependencies": { @@ -2692,6 +3222,8 @@ }, "node_modules/bser": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -2707,6 +3239,8 @@ }, "node_modules/callsites": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true, "license": "MIT", "engines": { @@ -2724,7 +3258,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001756", + "version": "1.0.30001757", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001757.tgz", + "integrity": "sha512-r0nnL/I28Zi/yjk1el6ilj27tKcdjLsNqAOZr0yVjWPrSQyHgKI2INaEWw21bAQSv2LXRt1XuCS/GomNpWOxsQ==", "dev": true, "funding": [ { @@ -2744,6 +3280,8 @@ }, "node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "license": "MIT", "dependencies": { @@ -2769,11 +3307,15 @@ }, "node_modules/chardet": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-2.1.1.tgz", + "integrity": "sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==", "dev": true, "license": "MIT" }, "node_modules/ci-info": { "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", "dev": true, "funding": [ { @@ -2868,6 +3410,8 @@ }, "node_modules/color-convert": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "license": "MIT", "dependencies": { @@ -2879,21 +3423,29 @@ }, "node_modules/color-name": { "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true, "license": "MIT" }, "node_modules/concat-map": { "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "dev": true, "license": "MIT" }, "node_modules/convert-source-map": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", "dev": true, "license": "MIT" }, "node_modules/cross-spawn": { "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, "license": "MIT", "dependencies": { @@ -2907,11 +3459,15 @@ }, "node_modules/dataloader": { "version": "1.4.0", + "resolved": "https://registry.npmjs.org/dataloader/-/dataloader-1.4.0.tgz", + "integrity": "sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==", "dev": true, "license": "BSD-3-Clause" }, "node_modules/debug": { "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", "dev": true, "license": "MIT", "dependencies": { @@ -2943,6 +3499,8 @@ }, "node_modules/deep-is": { "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "dev": true, "license": "MIT" }, @@ -2958,6 +3516,8 @@ }, "node_modules/detect-indent": { "version": "6.1.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", + "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", "dev": true, "license": "MIT", "engines": { @@ -2976,6 +3536,8 @@ }, "node_modules/dir-glob": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, "license": "MIT", "dependencies": { @@ -2987,6 +3549,8 @@ }, "node_modules/dotenv": { "version": "8.6.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.6.0.tgz", + "integrity": "sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==", "dev": true, "license": "BSD-2-Clause", "engines": { @@ -3001,7 +3565,9 @@ "license": "MIT" }, "node_modules/electron-to-chromium": { - "version": "1.5.256", + "version": "1.5.260", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.260.tgz", + "integrity": "sha512-ov8rBoOBhVawpzdre+Cmz4FB+y66Eqrk6Gwqd8NGxuhv99GQ8XqMAr351KEkOt7gukXWDg6gJWEMKgL2RLMPtA==", "dev": true, "license": "ISC" }, @@ -3027,6 +3593,8 @@ }, "node_modules/enquirer": { "version": "2.4.1", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.4.1.tgz", + "integrity": "sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==", "dev": true, "license": "MIT", "dependencies": { @@ -3039,6 +3607,8 @@ }, "node_modules/entities": { "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", "dev": true, "license": "BSD-2-Clause", "engines": { @@ -3060,6 +3630,8 @@ }, "node_modules/escalade": { "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", "dev": true, "license": "MIT", "engines": { @@ -3068,6 +3640,8 @@ }, "node_modules/escape-string-regexp": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, "license": "MIT", "engines": { @@ -3079,6 +3653,8 @@ }, "node_modules/eslint": { "version": "9.39.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.1.tgz", + "integrity": "sha512-BhHmn2yNOFA9H9JmmIVKJmd288g9hrVRDkdoIgRCRuSySRUHH7r/DI6aAXW9T1WwUuY3DFgrcaqB+deURBLR5g==", "dev": true, "license": "MIT", "dependencies": { @@ -3137,6 +3713,8 @@ }, "node_modules/eslint-config-prettier": { "version": "10.1.8", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.1.8.tgz", + "integrity": "sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w==", "dev": true, "license": "MIT", "bin": { @@ -3151,6 +3729,8 @@ }, "node_modules/eslint-plugin-tsdoc": { "version": "0.4.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-tsdoc/-/eslint-plugin-tsdoc-0.4.0.tgz", + "integrity": "sha512-MT/8b4aKLdDClnS8mP3R/JNjg29i0Oyqd/0ym6NnQf+gfKbJJ4ZcSh2Bs1H0YiUMTBwww5JwXGTWot/RwyJ7aQ==", "dev": true, "license": "MIT", "dependencies": { @@ -3160,6 +3740,8 @@ }, "node_modules/eslint-scope": { "version": "8.4.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz", + "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", "dev": true, "license": "BSD-2-Clause", "dependencies": { @@ -3175,6 +3757,8 @@ }, "node_modules/eslint-visitor-keys": { "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", "dev": true, "license": "Apache-2.0", "engines": { @@ -3186,6 +3770,8 @@ }, "node_modules/eslint/node_modules/brace-expansion": { "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", "dev": true, "license": "MIT", "dependencies": { @@ -3195,6 +3781,8 @@ }, "node_modules/eslint/node_modules/eslint-visitor-keys": { "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", "dev": true, "license": "Apache-2.0", "engines": { @@ -3206,6 +3794,8 @@ }, "node_modules/eslint/node_modules/find-up": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, "license": "MIT", "dependencies": { @@ -3221,6 +3811,8 @@ }, "node_modules/eslint/node_modules/ignore": { "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true, "license": "MIT", "engines": { @@ -3229,6 +3821,8 @@ }, "node_modules/eslint/node_modules/locate-path": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, "license": "MIT", "dependencies": { @@ -3243,6 +3837,8 @@ }, "node_modules/eslint/node_modules/minimatch": { "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "license": "ISC", "dependencies": { @@ -3254,6 +3850,8 @@ }, "node_modules/eslint/node_modules/p-limit": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, "license": "MIT", "dependencies": { @@ -3268,6 +3866,8 @@ }, "node_modules/eslint/node_modules/p-locate": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, "license": "MIT", "dependencies": { @@ -3282,6 +3882,8 @@ }, "node_modules/espree": { "version": "10.4.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz", + "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", "dev": true, "license": "BSD-2-Clause", "dependencies": { @@ -3298,6 +3900,8 @@ }, "node_modules/espree/node_modules/eslint-visitor-keys": { "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", "dev": true, "license": "Apache-2.0", "engines": { @@ -3309,6 +3913,8 @@ }, "node_modules/esprima": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "dev": true, "license": "BSD-2-Clause", "bin": { @@ -3321,6 +3927,8 @@ }, "node_modules/esquery": { "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", "dev": true, "license": "BSD-3-Clause", "dependencies": { @@ -3332,6 +3940,8 @@ }, "node_modules/esrecurse": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, "license": "BSD-2-Clause", "dependencies": { @@ -3343,6 +3953,8 @@ }, "node_modules/estraverse": { "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, "license": "BSD-2-Clause", "engines": { @@ -3351,6 +3963,8 @@ }, "node_modules/esutils": { "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true, "license": "BSD-2-Clause", "engines": { @@ -3381,6 +3995,13 @@ "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, + "node_modules/execa/node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true, + "license": "ISC" + }, "node_modules/exit-x": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/exit-x/-/exit-x-0.2.2.tgz", @@ -3411,16 +4032,22 @@ }, "node_modules/extendable-error": { "version": "0.1.7", + "resolved": "https://registry.npmjs.org/extendable-error/-/extendable-error-0.1.7.tgz", + "integrity": "sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==", "dev": true, "license": "MIT" }, "node_modules/fast-deep-equal": { "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true, "license": "MIT" }, "node_modules/fast-glob": { "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", "dev": true, "license": "MIT", "dependencies": { @@ -3436,6 +4063,8 @@ }, "node_modules/fast-glob/node_modules/glob-parent": { "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "license": "ISC", "dependencies": { @@ -3447,16 +4076,22 @@ }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true, "license": "MIT" }, "node_modules/fast-levenshtein": { "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true, "license": "MIT" }, "node_modules/fastq": { "version": "1.19.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", + "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", "dev": true, "license": "ISC", "dependencies": { @@ -3465,6 +4100,8 @@ }, "node_modules/fb-watchman": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -3473,6 +4110,8 @@ }, "node_modules/fd-package-json": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fd-package-json/-/fd-package-json-2.0.0.tgz", + "integrity": "sha512-jKmm9YtsNXN789RS/0mSzOC1NUq9mkVd65vbSSVsKdjGvYXBuE4oWe2QOEoFeRmJg+lPuZxpmrfFclNhoRMneQ==", "dev": true, "license": "MIT", "dependencies": { @@ -3481,6 +4120,8 @@ }, "node_modules/file-entry-cache": { "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", "dev": true, "license": "MIT", "dependencies": { @@ -3492,6 +4133,8 @@ }, "node_modules/fill-range": { "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "dev": true, "license": "MIT", "dependencies": { @@ -3503,6 +4146,8 @@ }, "node_modules/find-up": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, "license": "MIT", "dependencies": { @@ -3515,6 +4160,8 @@ }, "node_modules/flat-cache": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", "dev": true, "license": "MIT", "dependencies": { @@ -3527,6 +4174,8 @@ }, "node_modules/flatted": { "version": "3.3.3", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", + "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", "dev": true, "license": "ISC" }, @@ -3547,21 +4196,10 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/foreground-child/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/formatly": { "version": "0.3.0", + "resolved": "https://registry.npmjs.org/formatly/-/formatly-0.3.0.tgz", + "integrity": "sha512-9XNj/o4wrRFyhSMJOvsuyMwy8aUfBaZ1VrqHVfohyXf0Sw0e+yfKG+xZaY3arGCOMdwFsqObtzVOc1gU9KiT9w==", "dev": true, "license": "MIT", "dependencies": { @@ -3576,6 +4214,8 @@ }, "node_modules/fs-extra": { "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", "dev": true, "license": "MIT", "dependencies": { @@ -3611,6 +4251,8 @@ }, "node_modules/function-bind": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", "dev": true, "license": "MIT", "funding": { @@ -3619,6 +4261,8 @@ }, "node_modules/gensync": { "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true, "license": "MIT", "engines": { @@ -3681,6 +4325,8 @@ }, "node_modules/glob-parent": { "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, "license": "ISC", "dependencies": { @@ -3692,6 +4338,8 @@ }, "node_modules/globals": { "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", "dev": true, "license": "MIT", "engines": { @@ -3703,6 +4351,8 @@ }, "node_modules/globby": { "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "dev": true, "license": "MIT", "dependencies": { @@ -3722,6 +4372,8 @@ }, "node_modules/globby/node_modules/ignore": { "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true, "license": "MIT", "engines": { @@ -3730,16 +4382,22 @@ }, "node_modules/graceful-fs": { "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "dev": true, "license": "ISC" }, "node_modules/graphemer": { "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", "dev": true, "license": "MIT" }, "node_modules/handlebars": { "version": "4.7.8", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", + "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", "dev": true, "license": "MIT", "dependencies": { @@ -3760,6 +4418,8 @@ }, "node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "license": "MIT", "engines": { @@ -3768,6 +4428,8 @@ }, "node_modules/hasown": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", "dev": true, "license": "MIT", "dependencies": { @@ -3786,6 +4448,8 @@ }, "node_modules/human-id": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/human-id/-/human-id-4.1.2.tgz", + "integrity": "sha512-v/J+4Z/1eIJovEBdlV5TYj1IR+ZiohcYGRY+qN/oC9dAfKzVT023N/Bgw37hrKCoVRBvk3bqyzpr2PP5YeTMSg==", "dev": true, "license": "MIT", "bin": { @@ -3804,6 +4468,8 @@ }, "node_modules/iconv-lite": { "version": "0.7.0", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.0.tgz", + "integrity": "sha512-cf6L2Ds3h57VVmkZe+Pn+5APsT7FpqJtEhhieDCvrE2MK5Qk9MyffgQyuxQTm6BChfeZNtcOLHp9IcWRVcIcBQ==", "dev": true, "license": "MIT", "dependencies": { @@ -3819,6 +4485,8 @@ }, "node_modules/ignore": { "version": "7.0.5", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", + "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", "dev": true, "license": "MIT", "engines": { @@ -3827,6 +4495,8 @@ }, "node_modules/import-fresh": { "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", "dev": true, "license": "MIT", "dependencies": { @@ -3842,6 +4512,8 @@ }, "node_modules/import-fresh/node_modules/resolve-from": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true, "license": "MIT", "engines": { @@ -3870,6 +4542,8 @@ }, "node_modules/imurmurhash": { "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true, "license": "MIT", "engines": { @@ -3904,6 +4578,8 @@ }, "node_modules/is-core-module": { "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", "dev": true, "license": "MIT", "dependencies": { @@ -3918,6 +4594,8 @@ }, "node_modules/is-extglob": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "dev": true, "license": "MIT", "engines": { @@ -3946,6 +4624,8 @@ }, "node_modules/is-glob": { "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, "license": "MIT", "dependencies": { @@ -3957,6 +4637,8 @@ }, "node_modules/is-number": { "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true, "license": "MIT", "engines": { @@ -3978,6 +4660,8 @@ }, "node_modules/is-subdir": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-subdir/-/is-subdir-1.2.0.tgz", + "integrity": "sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==", "dev": true, "license": "MIT", "dependencies": { @@ -3989,6 +4673,8 @@ }, "node_modules/is-windows": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", "dev": true, "license": "MIT", "engines": { @@ -3997,11 +4683,15 @@ }, "node_modules/isexe": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", "dev": true, "license": "ISC" }, "node_modules/istanbul-lib-coverage": { "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", "dev": true, "license": "BSD-3-Clause", "engines": { @@ -4294,6 +4984,8 @@ }, "node_modules/jest-diff": { "version": "30.2.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-30.2.0.tgz", + "integrity": "sha512-dQHFo3Pt4/NLlG5z4PxZ/3yZTZ1C7s9hveiOj+GCN+uT109NC2QgsoVZsVOAvbJ3RgKkvyLGXZV9+piDpWbm6A==", "dev": true, "license": "MIT", "dependencies": { @@ -4357,6 +5049,8 @@ }, "node_modules/jest-extended": { "version": "7.0.0", + "resolved": "https://registry.npmjs.org/jest-extended/-/jest-extended-7.0.0.tgz", + "integrity": "sha512-96jBsVJDxZKFh+kWY7E18Is2usUsUYtBn97MxCtb4COnbgD4aE1h+P0fdFQNeJaI6KOeduas4Numc9yTuk0+Gw==", "dev": true, "license": "MIT", "dependencies": { @@ -4781,6 +5475,8 @@ }, "node_modules/jiti": { "version": "2.6.1", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz", + "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==", "dev": true, "license": "MIT", "bin": { @@ -4789,16 +5485,22 @@ }, "node_modules/jju": { "version": "1.4.0", + "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", + "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==", "dev": true, "license": "MIT" }, "node_modules/js-tokens": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", "dev": true, "license": "MIT" }, "node_modules/js-yaml": { "version": "3.14.2", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.2.tgz", + "integrity": "sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==", "dev": true, "license": "MIT", "dependencies": { @@ -4811,6 +5513,8 @@ }, "node_modules/jsesc": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", "dev": true, "license": "MIT", "bin": { @@ -4822,6 +5526,8 @@ }, "node_modules/json-buffer": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", "dev": true, "license": "MIT" }, @@ -4834,16 +5540,22 @@ }, "node_modules/json-schema-traverse": { "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true, "license": "MIT" }, "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", "dev": true, "license": "MIT" }, "node_modules/json5": { "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true, "license": "MIT", "bin": { @@ -4855,6 +5567,8 @@ }, "node_modules/jsonfile": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", "dev": true, "license": "MIT", "optionalDependencies": { @@ -4863,6 +5577,8 @@ }, "node_modules/keyv": { "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", "dev": true, "license": "MIT", "dependencies": { @@ -4871,6 +5587,8 @@ }, "node_modules/knip": { "version": "5.70.0", + "resolved": "https://registry.npmjs.org/knip/-/knip-5.70.0.tgz", + "integrity": "sha512-ZRO7GzegusadOqR0ICxEQfbM1RS+1Uu/LtATpzO71pHXZQnoj4K47/QtuCtfvJVjWb2R4a7YwHv+Ey9xoxjQCw==", "dev": true, "funding": [ { @@ -4911,11 +5629,15 @@ }, "node_modules/knip/node_modules/argparse": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true, "license": "Python-2.0" }, "node_modules/knip/node_modules/js-yaml": { "version": "4.1.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", "dev": true, "license": "MIT", "dependencies": { @@ -4927,6 +5649,8 @@ }, "node_modules/knip/node_modules/picomatch": { "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", "dev": true, "license": "MIT", "engines": { @@ -4938,6 +5662,8 @@ }, "node_modules/knip/node_modules/strip-json-comments": { "version": "5.0.3", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-5.0.3.tgz", + "integrity": "sha512-1tB5mhVo7U+ETBKNf92xT4hrQa3pm0MZ0PQvuDnWgAAGHDsfp4lPSpiS6psrSiet87wyGPh9ft6wmhOMQ0hDiw==", "dev": true, "license": "MIT", "engines": { @@ -4959,6 +5685,8 @@ }, "node_modules/levn": { "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, "license": "MIT", "dependencies": { @@ -4978,6 +5706,8 @@ }, "node_modules/linkify-it": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.0.tgz", + "integrity": "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==", "dev": true, "license": "MIT", "dependencies": { @@ -4986,6 +5716,8 @@ }, "node_modules/locate-path": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "license": "MIT", "dependencies": { @@ -4997,21 +5729,29 @@ }, "node_modules/lodash.memoize": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", "dev": true, "license": "MIT" }, "node_modules/lodash.merge": { "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "dev": true, "license": "MIT" }, "node_modules/lodash.startcase": { "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.startcase/-/lodash.startcase-4.4.0.tgz", + "integrity": "sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==", "dev": true, "license": "MIT" }, "node_modules/lru-cache": { "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "dev": true, "license": "ISC", "dependencies": { @@ -5020,6 +5760,8 @@ }, "node_modules/lunr": { "version": "2.3.9", + "resolved": "https://registry.npmjs.org/lunr/-/lunr-2.3.9.tgz", + "integrity": "sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==", "dev": true, "license": "MIT" }, @@ -5041,11 +5783,15 @@ }, "node_modules/make-error": { "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", "dev": true, "license": "ISC" }, "node_modules/makeerror": { "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", "dev": true, "license": "BSD-3-Clause", "dependencies": { @@ -5054,6 +5800,8 @@ }, "node_modules/markdown-it": { "version": "14.1.0", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-14.1.0.tgz", + "integrity": "sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==", "dev": true, "license": "MIT", "dependencies": { @@ -5070,21 +5818,29 @@ }, "node_modules/markdown-it/node_modules/argparse": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true, "license": "Python-2.0" }, "node_modules/mdurl": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz", + "integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==", "dev": true, "license": "MIT" }, "node_modules/merge-stream": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", "dev": true, "license": "MIT" }, "node_modules/merge2": { "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true, "license": "MIT", "engines": { @@ -5093,6 +5849,8 @@ }, "node_modules/micromatch": { "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dev": true, "license": "MIT", "dependencies": { @@ -5115,6 +5873,8 @@ }, "node_modules/minimatch": { "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "dev": true, "license": "ISC", "dependencies": { @@ -5129,6 +5889,8 @@ }, "node_modules/minimist": { "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "dev": true, "license": "MIT", "funding": { @@ -5147,6 +5909,8 @@ }, "node_modules/mri": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", "dev": true, "license": "MIT", "engines": { @@ -5155,6 +5919,8 @@ }, "node_modules/ms": { "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "dev": true, "license": "MIT" }, @@ -5176,16 +5942,22 @@ }, "node_modules/natural-compare": { "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true, "license": "MIT" }, "node_modules/neo-async": { "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", "dev": true, "license": "MIT" }, "node_modules/node-fetch": { "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", "dev": true, "license": "MIT", "dependencies": { @@ -5205,16 +5977,22 @@ }, "node_modules/node-int64": { "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", "dev": true, "license": "MIT" }, "node_modules/node-releases": { "version": "2.0.27", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz", + "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==", "dev": true, "license": "MIT" }, "node_modules/normalize-path": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true, "license": "MIT", "engines": { @@ -5262,6 +6040,8 @@ }, "node_modules/optionator": { "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", "dev": true, "license": "MIT", "dependencies": { @@ -5278,40 +6058,46 @@ }, "node_modules/outdent": { "version": "0.5.0", + "resolved": "https://registry.npmjs.org/outdent/-/outdent-0.5.0.tgz", + "integrity": "sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==", "dev": true, "license": "MIT" }, "node_modules/oxc-resolver": { - "version": "11.13.2", + "version": "11.14.0", + "resolved": "https://registry.npmjs.org/oxc-resolver/-/oxc-resolver-11.14.0.tgz", + "integrity": "sha512-i4wNrqhOd+4YdHJfHglHtFiqqSxXuzFA+RUqmmWN1aMD3r1HqUSrIhw17tSO4jwKfhLs9uw1wzFPmvMsWacStg==", "dev": true, "license": "MIT", "funding": { "url": "https://github.com/sponsors/Boshen" }, "optionalDependencies": { - "@oxc-resolver/binding-android-arm-eabi": "11.13.2", - "@oxc-resolver/binding-android-arm64": "11.13.2", - "@oxc-resolver/binding-darwin-arm64": "11.13.2", - "@oxc-resolver/binding-darwin-x64": "11.13.2", - "@oxc-resolver/binding-freebsd-x64": "11.13.2", - "@oxc-resolver/binding-linux-arm-gnueabihf": "11.13.2", - "@oxc-resolver/binding-linux-arm-musleabihf": "11.13.2", - "@oxc-resolver/binding-linux-arm64-gnu": "11.13.2", - "@oxc-resolver/binding-linux-arm64-musl": "11.13.2", - "@oxc-resolver/binding-linux-ppc64-gnu": "11.13.2", - "@oxc-resolver/binding-linux-riscv64-gnu": "11.13.2", - "@oxc-resolver/binding-linux-riscv64-musl": "11.13.2", - "@oxc-resolver/binding-linux-s390x-gnu": "11.13.2", - "@oxc-resolver/binding-linux-x64-gnu": "11.13.2", - "@oxc-resolver/binding-linux-x64-musl": "11.13.2", - "@oxc-resolver/binding-wasm32-wasi": "11.13.2", - "@oxc-resolver/binding-win32-arm64-msvc": "11.13.2", - "@oxc-resolver/binding-win32-ia32-msvc": "11.13.2", - "@oxc-resolver/binding-win32-x64-msvc": "11.13.2" + "@oxc-resolver/binding-android-arm-eabi": "11.14.0", + "@oxc-resolver/binding-android-arm64": "11.14.0", + "@oxc-resolver/binding-darwin-arm64": "11.14.0", + "@oxc-resolver/binding-darwin-x64": "11.14.0", + "@oxc-resolver/binding-freebsd-x64": "11.14.0", + "@oxc-resolver/binding-linux-arm-gnueabihf": "11.14.0", + "@oxc-resolver/binding-linux-arm-musleabihf": "11.14.0", + "@oxc-resolver/binding-linux-arm64-gnu": "11.14.0", + "@oxc-resolver/binding-linux-arm64-musl": "11.14.0", + "@oxc-resolver/binding-linux-ppc64-gnu": "11.14.0", + "@oxc-resolver/binding-linux-riscv64-gnu": "11.14.0", + "@oxc-resolver/binding-linux-riscv64-musl": "11.14.0", + "@oxc-resolver/binding-linux-s390x-gnu": "11.14.0", + "@oxc-resolver/binding-linux-x64-gnu": "11.14.0", + "@oxc-resolver/binding-linux-x64-musl": "11.14.0", + "@oxc-resolver/binding-wasm32-wasi": "11.14.0", + "@oxc-resolver/binding-win32-arm64-msvc": "11.14.0", + "@oxc-resolver/binding-win32-ia32-msvc": "11.14.0", + "@oxc-resolver/binding-win32-x64-msvc": "11.14.0" } }, "node_modules/p-filter": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-filter/-/p-filter-2.1.0.tgz", + "integrity": "sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==", "dev": true, "license": "MIT", "dependencies": { @@ -5323,6 +6109,8 @@ }, "node_modules/p-limit": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "license": "MIT", "dependencies": { @@ -5337,6 +6125,8 @@ }, "node_modules/p-locate": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, "license": "MIT", "dependencies": { @@ -5348,6 +6138,8 @@ }, "node_modules/p-map": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", "dev": true, "license": "MIT", "engines": { @@ -5356,6 +6148,8 @@ }, "node_modules/p-try": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true, "license": "MIT", "engines": { @@ -5371,6 +6165,8 @@ }, "node_modules/package-manager-detector": { "version": "0.2.11", + "resolved": "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-0.2.11.tgz", + "integrity": "sha512-BEnLolu+yuz22S56CU1SUKq3XC3PkwD5wv4ikR4MfGvnRVcmzXR9DwSlW2fEamyTPyXHomBJRzgapeuBvRNzJQ==", "dev": true, "license": "MIT", "dependencies": { @@ -5379,6 +6175,8 @@ }, "node_modules/parent-module": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, "license": "MIT", "dependencies": { @@ -5409,6 +6207,8 @@ }, "node_modules/path-exists": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true, "license": "MIT", "engines": { @@ -5427,6 +6227,8 @@ }, "node_modules/path-key": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true, "license": "MIT", "engines": { @@ -5435,6 +6237,8 @@ }, "node_modules/path-parse": { "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true, "license": "MIT" }, @@ -5464,6 +6268,8 @@ }, "node_modules/path-type": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true, "license": "MIT", "engines": { @@ -5472,11 +6278,15 @@ }, "node_modules/picocolors": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", "dev": true, "license": "ISC" }, "node_modules/picomatch": { "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true, "license": "MIT", "engines": { @@ -5488,6 +6298,8 @@ }, "node_modules/pify": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", "dev": true, "license": "MIT", "engines": { @@ -5496,6 +6308,8 @@ }, "node_modules/pirates": { "version": "4.0.7", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz", + "integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==", "dev": true, "license": "MIT", "engines": { @@ -5517,6 +6331,8 @@ }, "node_modules/prelude-ls": { "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true, "license": "MIT", "engines": { @@ -5525,6 +6341,8 @@ }, "node_modules/prettier": { "version": "3.6.2", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.6.2.tgz", + "integrity": "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==", "dev": true, "license": "MIT", "bin": { @@ -5567,6 +6385,8 @@ }, "node_modules/punycode": { "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", "dev": true, "license": "MIT", "engines": { @@ -5575,6 +6395,8 @@ }, "node_modules/punycode.js": { "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode.js/-/punycode.js-2.3.1.tgz", + "integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==", "dev": true, "license": "MIT", "engines": { @@ -5600,6 +6422,8 @@ }, "node_modules/quansync": { "version": "0.2.11", + "resolved": "https://registry.npmjs.org/quansync/-/quansync-0.2.11.tgz", + "integrity": "sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==", "dev": true, "funding": [ { @@ -5615,6 +6439,8 @@ }, "node_modules/queue-microtask": { "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true, "funding": [ { @@ -5634,11 +6460,15 @@ }, "node_modules/react-is": { "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", "dev": true, "license": "MIT" }, "node_modules/read-yaml-file": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-yaml-file/-/read-yaml-file-1.1.0.tgz", + "integrity": "sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==", "dev": true, "license": "MIT", "dependencies": { @@ -5653,6 +6483,8 @@ }, "node_modules/read-yaml-file/node_modules/strip-bom": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", "dev": true, "license": "MIT", "engines": { @@ -5671,6 +6503,8 @@ }, "node_modules/require-from-string": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", "dev": true, "license": "MIT", "engines": { @@ -5679,6 +6513,8 @@ }, "node_modules/resolve": { "version": "1.22.11", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz", + "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==", "dev": true, "license": "MIT", "dependencies": { @@ -5711,6 +6547,8 @@ }, "node_modules/resolve-from": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true, "license": "MIT", "engines": { @@ -5719,6 +6557,8 @@ }, "node_modules/reusify": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", "dev": true, "license": "MIT", "engines": { @@ -5728,6 +6568,8 @@ }, "node_modules/run-parallel": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, "funding": [ { @@ -5750,11 +6592,15 @@ }, "node_modules/safer-buffer": { "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", "dev": true, "license": "MIT" }, "node_modules/semver": { "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", "dev": true, "license": "ISC", "bin": { @@ -5766,6 +6612,8 @@ }, "node_modules/shebang-command": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, "license": "MIT", "dependencies": { @@ -5777,6 +6625,8 @@ }, "node_modules/shebang-regex": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true, "license": "MIT", "engines": { @@ -5784,12 +6634,22 @@ } }, "node_modules/signal-exit": { - "version": "3.0.7", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", "dev": true, - "license": "ISC" + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } }, "node_modules/slash": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true, "license": "MIT", "engines": { @@ -5798,6 +6658,8 @@ }, "node_modules/smol-toml": { "version": "1.5.2", + "resolved": "https://registry.npmjs.org/smol-toml/-/smol-toml-1.5.2.tgz", + "integrity": "sha512-QlaZEqcAH3/RtNyet1IPIYPsEWAaYyXXv1Krsi+1L/QHppjX4Ifm8MQsBISz9vE8cHicIq3clogsheili5vhaQ==", "dev": true, "license": "BSD-3-Clause", "engines": { @@ -5809,6 +6671,8 @@ }, "node_modules/source-map": { "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, "license": "BSD-3-Clause", "engines": { @@ -5828,6 +6692,8 @@ }, "node_modules/spawndamnit": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spawndamnit/-/spawndamnit-3.0.1.tgz", + "integrity": "sha512-MmnduQUuHCoFckZoWnXsTg7JaiLBJrKFj9UI2MbRPGaJeVpsLcVBu6P/IGZovziM/YBsellCmsprgNA+w0CzVg==", "dev": true, "license": "SEE LICENSE IN LICENSE", "dependencies": { @@ -5835,19 +6701,10 @@ "signal-exit": "^4.0.1" } }, - "node_modules/spawndamnit/node_modules/signal-exit": { - "version": "4.1.0", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/sprintf-js": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", "dev": true, "license": "BSD-3-Clause" }, @@ -5960,6 +6817,8 @@ }, "node_modules/strip-ansi": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "license": "MIT", "dependencies": { @@ -6005,6 +6864,8 @@ }, "node_modules/strip-json-comments": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true, "license": "MIT", "engines": { @@ -6016,6 +6877,8 @@ }, "node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "license": "MIT", "dependencies": { @@ -6027,6 +6890,8 @@ }, "node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "dev": true, "license": "MIT", "engines": { @@ -6054,6 +6919,8 @@ }, "node_modules/term-size": { "version": "2.2.1", + "resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz", + "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==", "dev": true, "license": "MIT", "engines": { @@ -6126,11 +6993,15 @@ }, "node_modules/tmpl": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", "dev": true, "license": "BSD-3-Clause" }, "node_modules/to-regex-range": { "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, "license": "MIT", "dependencies": { @@ -6142,6 +7013,8 @@ }, "node_modules/tr46": { "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", "dev": true, "license": "MIT" }, @@ -6160,6 +7033,8 @@ }, "node_modules/ts-jest": { "version": "29.4.5", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.4.5.tgz", + "integrity": "sha512-HO3GyiWn2qvTQA4kTgjDcXiMwYQt68a1Y8+JuLRVpdIzm+UOLSHgl/XqR4c6nzJkq5rOkjc02O2I7P7l/Yof0Q==", "dev": true, "license": "MIT", "dependencies": { @@ -6211,6 +7086,8 @@ }, "node_modules/ts-jest/node_modules/type-fest": { "version": "4.41.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.41.0.tgz", + "integrity": "sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==", "dev": true, "license": "(MIT OR CC0-1.0)", "engines": { @@ -6230,6 +7107,8 @@ }, "node_modules/type-check": { "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, "license": "MIT", "dependencies": { @@ -6264,6 +7143,8 @@ }, "node_modules/typedoc": { "version": "0.28.14", + "resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.28.14.tgz", + "integrity": "sha512-ftJYPvpVfQvFzpkoSfHLkJybdA/geDJ8BGQt/ZnkkhnBYoYW6lBgPQXu6vqLxO4X75dA55hX8Af847H5KXlEFA==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -6286,6 +7167,8 @@ }, "node_modules/typescript": { "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", "dev": true, "license": "Apache-2.0", "bin": { @@ -6298,11 +7181,15 @@ }, "node_modules/uc.micro": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz", + "integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==", "dev": true, "license": "MIT" }, "node_modules/uglify-js": { "version": "3.19.3", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.19.3.tgz", + "integrity": "sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==", "dev": true, "license": "BSD-2-Clause", "optional": true, @@ -6322,6 +7209,8 @@ }, "node_modules/universalify": { "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", "dev": true, "license": "MIT", "engines": { @@ -6365,6 +7254,8 @@ }, "node_modules/update-browserslist-db": { "version": "1.1.4", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz", + "integrity": "sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==", "dev": true, "funding": [ { @@ -6394,6 +7285,8 @@ }, "node_modules/uri-js": { "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, "license": "BSD-2-Clause", "dependencies": { @@ -6417,6 +7310,8 @@ }, "node_modules/walk-up-path": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/walk-up-path/-/walk-up-path-4.0.0.tgz", + "integrity": "sha512-3hu+tD8YzSLGuFYtPRb48vdhKMi0KQV5sn+uWr8+7dMEq/2G/dtLrdDinkLjqq5TIbIBjYJ4Ax/n3YiaW7QM8A==", "dev": true, "license": "ISC", "engines": { @@ -6425,6 +7320,8 @@ }, "node_modules/walker": { "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -6433,11 +7330,15 @@ }, "node_modules/webidl-conversions": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", "dev": true, "license": "BSD-2-Clause" }, "node_modules/whatwg-url": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", "dev": true, "license": "MIT", "dependencies": { @@ -6447,6 +7348,8 @@ }, "node_modules/which": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, "license": "ISC", "dependencies": { @@ -6461,6 +7364,8 @@ }, "node_modules/word-wrap": { "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", "dev": true, "license": "MIT", "engines": { @@ -6469,6 +7374,8 @@ }, "node_modules/wordwrap": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", "dev": true, "license": "MIT" }, @@ -6594,19 +7501,6 @@ "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/write-file-atomic/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", @@ -6619,11 +7513,15 @@ }, "node_modules/yallist": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", "dev": true, "license": "ISC" }, "node_modules/yaml": { "version": "2.8.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.1.tgz", + "integrity": "sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==", "dev": true, "license": "ISC", "bin": { @@ -6654,6 +7552,8 @@ }, "node_modules/yargs-parser": { "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", "dev": true, "license": "ISC", "engines": { @@ -6684,6 +7584,8 @@ }, "node_modules/yocto-queue": { "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", "dev": true, "license": "MIT", "engines": { @@ -6694,7 +7596,9 @@ } }, "node_modules/zod": { - "version": "4.1.12", + "version": "4.1.13", + "resolved": "https://registry.npmjs.org/zod/-/zod-4.1.13.tgz", + "integrity": "sha512-AvvthqfqrAhNH9dnfmrfKzX5upOdjUVJYFqNSlkmGf64gRaTzlPwz99IHYnVs28qYAybvAlBV+H7pn0saFY4Ig==", "dev": true, "license": "MIT", "funding": {