diff --git a/core-java/src/main/java/io/github/boykaframework/actions/elements/ElementFinder.java b/core-java/src/main/java/io/github/boykaframework/actions/elements/ElementFinder.java index ddf420abe..1d530c5ea 100644 --- a/core-java/src/main/java/io/github/boykaframework/actions/elements/ElementFinder.java +++ b/core-java/src/main/java/io/github/boykaframework/actions/elements/ElementFinder.java @@ -20,7 +20,6 @@ import static io.github.boykaframework.manager.ParallelSession.getSession; import static io.github.boykaframework.utils.ErrorHandler.handleAndThrow; import static io.github.boykaframework.utils.ErrorHandler.throwError; -import static java.text.MessageFormat.format; import static java.util.Objects.isNull; import static java.util.Objects.requireNonNull; import static org.apache.logging.log4j.LogManager.getLogger; @@ -31,7 +30,6 @@ import io.github.boykaframework.builders.Locator; import io.github.boykaframework.enums.WaitStrategy; -import io.github.boykaframework.exception.FrameworkError; import org.apache.logging.log4j.Logger; import org.openqa.selenium.TimeoutException; import org.openqa.selenium.WebDriver; @@ -60,14 +58,17 @@ public static WebElement find (final Locator locator, final WaitStrategy waitStr if (elements.isEmpty ()) { throwError (ELEMENT_NOT_FOUND, locator.getName (), getSession ().getPlatformType ()); } + final var index = getPlatformIndex (locator); if (!isNull (locator.getFilter ())) { - return elements.stream () + final var filteredElements = elements.stream () .filter (locator.getFilter ()) - .findFirst () - .orElseThrow (() -> new FrameworkError (format (ELEMENT_NOT_FOUND.getMessageText (), locator.getName (), - getSession ().getPlatformType ()))); + .toList (); + if (filteredElements.isEmpty ()) { + throwError (ELEMENT_NOT_FOUND, locator.getName (), getSession ().getPlatformType ()); + } + return filteredElements.get (index); } - return elements.get (locator.getIndex ()); + return elements.get (index); } /** @@ -115,6 +116,16 @@ private static List finds (final D driver, fin return LOGGER.traceExit (finds (driver, null, null, locator)); } + private static int getPlatformIndex (final Locator locator) { + final var index = switch (getSession ().getPlatformType ()) { + case ANDROID -> locator.getAndroidIndex (); + case IOS -> locator.getIosIndex (); + case MAC -> locator.getMacIndex (); + default -> locator.getWebIndex (); + }; + return index > -1 ? index : locator.getIndex (); + } + private static void waitForElement (final Locator locator, final WaitStrategy waitStrategy) { try { final var wait = getSession ().getWait (); diff --git a/core-java/src/main/java/io/github/boykaframework/builders/Locator.java b/core-java/src/main/java/io/github/boykaframework/builders/Locator.java index 39f694940..a03982ded 100644 --- a/core-java/src/main/java/io/github/boykaframework/builders/Locator.java +++ b/core-java/src/main/java/io/github/boykaframework/builders/Locator.java @@ -39,16 +39,25 @@ @Builder (toBuilder = true, builderMethodName = "buildLocator") public class Locator { private By android; + @Builder.Default + private int androidIndex = -1; private Predicate filter; - private int index; + @Builder.Default + private int index = 0; private By ios; + @Builder.Default + private int iosIndex = -1; private By mac; + @Builder.Default + private int macIndex = -1; @NotNull private String name; private Locator parent; @Builder.Default - private boolean shadowRoot = false; + private boolean shadowRoot = false; private By web; + @Builder.Default + private int webIndex = -1; /** * Gets the platform specific locator diff --git a/package.json b/package.json index 35528961a..05ff34703 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ "@release-it-plugins/lerna-changelog": "^8.0.1", "@stylistic/eslint-plugin-js": "^4.4.1", "@stylistic/eslint-plugin-ts": "^4.4.1", - "@types/node": "^24.6.2", + "@types/node": "^24.7.0", "@typescript-eslint/eslint-plugin": "^8.45.0", "@typescript-eslint/parser": "^8.45.0", "commitlint": "^20.1.0", @@ -61,7 +61,7 @@ "prettier": "^3.6.2", "react": "^19.2.0", "react-dom": "^19.2.0", - "release-it": "^19.0.4", + "release-it": "^19.0.5", "ts-node": "^10.9.2", "typescript": "^5.9.3", "typescript-eslint": "^8.45.0" @@ -100,5 +100,5 @@ "pnpm format" ] }, - "packageManager": "pnpm@10.15.0" + "packageManager": "pnpm@10.18.0" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2db3cc9ad..992b08ab3 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -10,7 +10,7 @@ importers: devDependencies: '@commitlint/cli': specifier: ^20.1.0 - version: 20.1.0(@types/node@24.6.2)(typescript@5.9.3) + version: 20.1.0(@types/node@24.7.0)(typescript@5.9.3) '@commitlint/config-conventional': specifier: ^20.0.0 version: 20.0.0 @@ -25,7 +25,7 @@ importers: version: 7.4.2 '@release-it-plugins/lerna-changelog': specifier: ^8.0.1 - version: 8.0.1(release-it@19.0.4(@types/node@24.6.2)) + version: 8.0.1(release-it@19.0.5(@types/node@24.7.0)) '@stylistic/eslint-plugin-js': specifier: ^4.4.1 version: 4.4.1(eslint@9.37.0(jiti@2.6.1)) @@ -33,8 +33,8 @@ importers: specifier: ^4.4.1 version: 4.4.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3) '@types/node': - specifier: ^24.6.2 - version: 24.6.2 + specifier: ^24.7.0 + version: 24.7.0 '@typescript-eslint/eslint-plugin': specifier: ^8.45.0 version: 8.45.0(@typescript-eslint/parser@8.45.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3) @@ -43,7 +43,7 @@ importers: version: 8.45.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3) commitlint: specifier: ^20.1.0 - version: 20.1.0(@types/node@24.6.2)(typescript@5.9.3) + version: 20.1.0(@types/node@24.7.0)(typescript@5.9.3) eslint: specifier: ^9.37.0 version: 9.37.0(jiti@2.6.1) @@ -76,13 +76,13 @@ importers: version: 4.1.0 lerna: specifier: 9.0.0 - version: 9.0.0(@types/node@24.6.2) + version: 9.0.0(@types/node@24.7.0) lerna-changelog: specifier: ^2.2.0 version: 2.2.0 lerna-version: specifier: ^6.6.2 - version: 6.6.2(@types/node@24.6.2)(encoding@0.1.13) + version: 6.6.2(@types/node@24.7.0)(encoding@0.1.13) lint-staged: specifier: ^16.2.3 version: 16.2.3 @@ -102,11 +102,11 @@ importers: specifier: ^19.2.0 version: 19.2.0(react@19.2.0) release-it: - specifier: ^19.0.4 - version: 19.0.4(@types/node@24.6.2) + specifier: ^19.0.5 + version: 19.0.5(@types/node@24.7.0) ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@24.6.2)(typescript@5.9.3) + version: 10.9.2(@types/node@24.7.0)(typescript@5.9.3) typescript: specifier: ^5.9.3 version: 5.9.3 @@ -1473,15 +1473,6 @@ packages: resolution: {integrity: sha512-JWaTfCxI1eTmJ1BIv86vUfjVatOdxwD0DAVKYevY8SazeUUZtW+tNbsdejVO1GYE0GXJW1N1ahmiC3TFd+7wZA==} engines: {node: '>=18'} - '@inquirer/checkbox@4.2.2': - resolution: {integrity: sha512-E+KExNurKcUJJdxmjglTl141EwxWyAHplvsYJQgSwXf8qiNWkTxTuCCqmhFEmbIXd4zLaGMfQFJ6WrZ7fSeV3g==} - engines: {node: '>=18'} - peerDependencies: - '@types/node': '>=18' - peerDependenciesMeta: - '@types/node': - optional: true - '@inquirer/checkbox@4.2.4': resolution: {integrity: sha512-2n9Vgf4HSciFq8ttKXk+qy+GsyTXPV1An6QAwe/8bkbbqvG4VW1I/ZY1pNu2rf+h9bdzMLPbRSfcNxkHBy/Ydw==} engines: {node: '>=18'} @@ -1491,15 +1482,6 @@ packages: '@types/node': optional: true - '@inquirer/confirm@5.1.16': - resolution: {integrity: sha512-j1a5VstaK5KQy8Mu8cHmuQvN1Zc62TbLhjJxwHvKPPKEoowSF6h/0UdOpA9DNdWZ+9Inq73+puRq1df6OJ8Sag==} - engines: {node: '>=18'} - peerDependencies: - '@types/node': '>=18' - peerDependenciesMeta: - '@types/node': - optional: true - '@inquirer/confirm@5.1.18': resolution: {integrity: sha512-MilmWOzHa3Ks11tzvuAmFoAd/wRuaP3SwlT1IZhyMke31FKLxPiuDWcGXhU+PKveNOpAc4axzAgrgxuIJJRmLw==} engines: {node: '>=18'} @@ -1509,15 +1491,6 @@ packages: '@types/node': optional: true - '@inquirer/core@10.2.0': - resolution: {integrity: sha512-NyDSjPqhSvpZEMZrLCYUquWNl+XC/moEcVFqS55IEYIYsY0a1cUCevSqk7ctOlnm/RaSBU5psFryNlxcmGrjaA==} - engines: {node: '>=18'} - peerDependencies: - '@types/node': '>=18' - peerDependenciesMeta: - '@types/node': - optional: true - '@inquirer/core@10.2.2': resolution: {integrity: sha512-yXq/4QUnk4sHMtmbd7irwiepjB8jXU0kkFRL4nr/aDBA2mDz13cMakEWdDwX3eSCTkk03kwcndD1zfRAIlELxA==} engines: {node: '>=18'} @@ -1527,15 +1500,6 @@ packages: '@types/node': optional: true - '@inquirer/editor@4.2.18': - resolution: {integrity: sha512-yeQN3AXjCm7+Hmq5L6Dm2wEDeBRdAZuyZ4I7tWSSanbxDzqM0KqzoDbKM7p4ebllAYdoQuPJS6N71/3L281i6w==} - engines: {node: '>=18'} - peerDependencies: - '@types/node': '>=18' - peerDependenciesMeta: - '@types/node': - optional: true - '@inquirer/editor@4.2.20': resolution: {integrity: sha512-7omh5y5bK672Q+Brk4HBbnHNowOZwrb/78IFXdrEB9PfdxL3GudQyDk8O9vQ188wj3xrEebS2M9n18BjJoI83g==} engines: {node: '>=18'} @@ -1545,15 +1509,6 @@ packages: '@types/node': optional: true - '@inquirer/expand@4.0.18': - resolution: {integrity: sha512-xUjteYtavH7HwDMzq4Cn2X4Qsh5NozoDHCJTdoXg9HfZ4w3R6mxV1B9tL7DGJX2eq/zqtsFjhm0/RJIMGlh3ag==} - engines: {node: '>=18'} - peerDependencies: - '@types/node': '>=18' - peerDependenciesMeta: - '@types/node': - optional: true - '@inquirer/expand@4.0.20': resolution: {integrity: sha512-Dt9S+6qUg94fEvgn54F2Syf0Z3U8xmnBI9ATq2f5h9xt09fs2IJXSCIXyyVHwvggKWFXEY/7jATRo2K6Dkn6Ow==} engines: {node: '>=18'} @@ -1576,15 +1531,6 @@ packages: resolution: {integrity: sha512-lGPVU3yO9ZNqA7vTYz26jny41lE7yoQansmqdMLBEfqaGsmdg7V3W9mK9Pvb5IL4EVZ9GnSDGMO/cJXud5dMaw==} engines: {node: '>=18'} - '@inquirer/input@4.2.2': - resolution: {integrity: sha512-hqOvBZj/MhQCpHUuD3MVq18SSoDNHy7wEnQ8mtvs71K8OPZVXJinOzcvQna33dNYLYE4LkA9BlhAhK6MJcsVbw==} - engines: {node: '>=18'} - peerDependencies: - '@types/node': '>=18' - peerDependenciesMeta: - '@types/node': - optional: true - '@inquirer/input@4.2.4': resolution: {integrity: sha512-cwSGpLBMwpwcZZsc6s1gThm0J+it/KIJ+1qFL2euLmSKUMGumJ5TcbMgxEjMjNHRGadouIYbiIgruKoDZk7klw==} engines: {node: '>=18'} @@ -1594,15 +1540,6 @@ packages: '@types/node': optional: true - '@inquirer/number@3.0.18': - resolution: {integrity: sha512-7exgBm52WXZRczsydCVftozFTrrwbG5ySE0GqUd2zLNSBXyIucs2Wnm7ZKLe/aUu6NUg9dg7Q80QIHCdZJiY4A==} - engines: {node: '>=18'} - peerDependencies: - '@types/node': '>=18' - peerDependenciesMeta: - '@types/node': - optional: true - '@inquirer/number@3.0.20': resolution: {integrity: sha512-bbooay64VD1Z6uMfNehED2A2YOPHSJnQLs9/4WNiV/EK+vXczf/R988itL2XLDGTgmhMF2KkiWZo+iEZmc4jqg==} engines: {node: '>=18'} @@ -1612,15 +1549,6 @@ packages: '@types/node': optional: true - '@inquirer/password@4.0.18': - resolution: {integrity: sha512-zXvzAGxPQTNk/SbT3carAD4Iqi6A2JS2qtcqQjsL22uvD+JfQzUrDEtPjLL7PLn8zlSNyPdY02IiQjzoL9TStA==} - engines: {node: '>=18'} - peerDependencies: - '@types/node': '>=18' - peerDependenciesMeta: - '@types/node': - optional: true - '@inquirer/password@4.0.20': resolution: {integrity: sha512-nxSaPV2cPvvoOmRygQR+h0B+Av73B01cqYLcr7NXcGXhbmsYfUb8fDdw2Us1bI2YsX+VvY7I7upgFYsyf8+Nug==} engines: {node: '>=18'} @@ -1630,15 +1558,6 @@ packages: '@types/node': optional: true - '@inquirer/prompts@7.8.4': - resolution: {integrity: sha512-MuxVZ1en1g5oGamXV3DWP89GEkdD54alcfhHd7InUW5BifAdKQEK9SLFa/5hlWbvuhMPlobF0WAx7Okq988Jxg==} - engines: {node: '>=18'} - peerDependencies: - '@types/node': '>=18' - peerDependenciesMeta: - '@types/node': - optional: true - '@inquirer/prompts@7.8.6': resolution: {integrity: sha512-68JhkiojicX9SBUD8FE/pSKbOKtwoyaVj1kwqLfvjlVXZvOy3iaSWX4dCLsZyYx/5Ur07Fq+yuDNOen+5ce6ig==} engines: {node: '>=18'} @@ -1648,15 +1567,6 @@ packages: '@types/node': optional: true - '@inquirer/rawlist@4.1.6': - resolution: {integrity: sha512-KOZqa3QNr3f0pMnufzL7K+nweFFCCBs6LCXZzXDrVGTyssjLeudn5ySktZYv1XiSqobyHRYYK0c6QsOxJEhXKA==} - engines: {node: '>=18'} - peerDependencies: - '@types/node': '>=18' - peerDependenciesMeta: - '@types/node': - optional: true - '@inquirer/rawlist@4.1.8': resolution: {integrity: sha512-CQ2VkIASbgI2PxdzlkeeieLRmniaUU1Aoi5ggEdm6BIyqopE9GuDXdDOj9XiwOqK5qm72oI2i6J+Gnjaa26ejg==} engines: {node: '>=18'} @@ -1666,15 +1576,6 @@ packages: '@types/node': optional: true - '@inquirer/search@3.1.1': - resolution: {integrity: sha512-TkMUY+A2p2EYVY3GCTItYGvqT6LiLzHBnqsU1rJbrpXUijFfM6zvUx0R4civofVwFCmJZcKqOVwwWAjplKkhxA==} - engines: {node: '>=18'} - peerDependencies: - '@types/node': '>=18' - peerDependenciesMeta: - '@types/node': - optional: true - '@inquirer/search@3.1.3': resolution: {integrity: sha512-D5T6ioybJJH0IiSUK/JXcoRrrm8sXwzrVMjibuPs+AgxmogKslaafy1oxFiorNI4s3ElSkeQZbhYQgLqiL8h6Q==} engines: {node: '>=18'} @@ -1684,15 +1585,6 @@ packages: '@types/node': optional: true - '@inquirer/select@4.3.2': - resolution: {integrity: sha512-nwous24r31M+WyDEHV+qckXkepvihxhnyIaod2MG7eCE6G0Zm/HUF6jgN8GXgf4U7AU6SLseKdanY195cwvU6w==} - engines: {node: '>=18'} - peerDependencies: - '@types/node': '>=18' - peerDependenciesMeta: - '@types/node': - optional: true - '@inquirer/select@4.3.4': resolution: {integrity: sha512-Qp20nySRmfbuJBBsgPU7E/cL62Hf250vMZRzYDcBHty2zdD1kKCnoDFWRr0WO2ZzaXp3R7a4esaVGJUx0E6zvA==} engines: {node: '>=18'} @@ -2143,9 +2035,9 @@ packages: resolution: {integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==} engines: {node: '>= 18'} - '@octokit/auth-token@5.1.2': - resolution: {integrity: sha512-JcQDsBdg49Yky2w2ld20IHAlwr8d/d8N6NiOXbtuoPCqzbsiJgF633mVUw3x4mo0H5ypataQIX7SFu3yy44Mpw==} - engines: {node: '>= 18'} + '@octokit/auth-token@6.0.0': + resolution: {integrity: sha512-P4YJBPdPSpWTQ1NU4XYdvHvXJJDxM6YwpS0FZHRgP7YFkdVxsWcpWGy/NVqlAA7PcPCnMacXlRm1y2PFZRWL/w==} + engines: {node: '>= 20'} '@octokit/core@4.2.4': resolution: {integrity: sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==} @@ -2155,13 +2047,13 @@ packages: resolution: {integrity: sha512-/g2d4sW9nUDJOMz3mabVQvOGhVa4e/BN/Um7yca9Bb2XTzPPnfTWHWQg+IsEYO7M3Vx+EXvaM/I2pJWIMun1bg==} engines: {node: '>= 18'} - '@octokit/core@6.1.6': - resolution: {integrity: sha512-kIU8SLQkYWGp3pVKiYzA5OSaNF5EE03P/R8zEmmrG6XwOg5oBjXyQVVIauQ0dgau4zYhpZEhJrvIYt6oM+zZZA==} - engines: {node: '>= 18'} + '@octokit/core@7.0.5': + resolution: {integrity: sha512-t54CUOsFMappY1Jbzb7fetWeO0n6K0k/4+/ZpkS+3Joz8I4VcvY9OiEBFRYISqaI2fq5sCiPtAjRDOzVYG8m+Q==} + engines: {node: '>= 20'} - '@octokit/endpoint@10.1.4': - resolution: {integrity: sha512-OlYOlZIsfEVZm5HCSR8aSg02T2lbUWOsCQoPKfTXJwDzcHQBrVBGdGXb89dv2Kw2ToZaRtudp8O3ZIYoaOjKlA==} - engines: {node: '>= 18'} + '@octokit/endpoint@11.0.1': + resolution: {integrity: sha512-7P1dRAZxuWAOPI7kXfio88trNi/MegQ0IJD3vfgC3b+LZo1Qe6gRJc2v0mz2USWWJOKrB2h5spXCzGbw+fAdqA==} + engines: {node: '>= 20'} '@octokit/endpoint@7.0.6': resolution: {integrity: sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg==} @@ -2179,9 +2071,9 @@ packages: resolution: {integrity: sha512-3mkDltSfcDUoa176nlGoA32RGjeWjl3K7F/BwHwRMJUW/IteSa4bnSV8p2ThNkcIcZU2umkZWxwETSSCJf2Q7g==} engines: {node: '>= 18'} - '@octokit/graphql@8.2.2': - resolution: {integrity: sha512-Yi8hcoqsrXGdt0yObxbebHXFOiUA+2v3n53epuOg1QUgOB6c4XzvisBNVXJSl8RYA5KrDuSL2yq9Qmqe5N0ryA==} - engines: {node: '>= 18'} + '@octokit/graphql@9.0.2': + resolution: {integrity: sha512-iz6KzZ7u95Fzy9Nt2L8cG88lGRMr/qy1Q36ih/XVzMIlPDMYwaNLE/ENhqmIzgPrlNWiYJkwmveEetvxAgFBJw==} + engines: {node: '>= 20'} '@octokit/openapi-types@12.11.0': resolution: {integrity: sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==} @@ -2195,8 +2087,8 @@ packages: '@octokit/openapi-types@24.2.0': resolution: {integrity: sha512-9sIH3nSUttelJSXUrmGzl7QUBFul0/mB8HRYl3fOlgHbIWG+WnYDXU3v/2zMtAvuzZ/ed00Ei6on975FhBfzrg==} - '@octokit/openapi-types@25.1.0': - resolution: {integrity: sha512-idsIggNXUKkk0+BExUn1dQ92sfysJrje03Q0bv0e+KPLrvyqZF8MnBpFz8UNfYDwB3Ie7Z0TByjWfzxt7vseaA==} + '@octokit/openapi-types@26.0.0': + resolution: {integrity: sha512-7AtcfKtpo77j7Ts73b4OWhOZHTKo/gGY8bB3bNBQz4H+GRSWqx2yvj8TXRsbdTE0eRmYmXOEY66jM7mJ7LzfsA==} '@octokit/plugin-enterprise-rest@6.0.1': resolution: {integrity: sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==} @@ -2207,9 +2099,9 @@ packages: peerDependencies: '@octokit/core': '5' - '@octokit/plugin-paginate-rest@11.6.0': - resolution: {integrity: sha512-n5KPteiF7pWKgBIBJSk8qzoZWcUkza2O6A0za97pMGVrGfPdltxrfmfF5GucHYvHGZD8BdaZmmHGz5cX/3gdpw==} - engines: {node: '>= 18'} + '@octokit/plugin-paginate-rest@13.2.0': + resolution: {integrity: sha512-YuAlyjR8o5QoRSOvMHxSJzPtogkNMgeMv2mpccrvdUGeC3MKyfi/hS+KiFwyH/iRKIKyx+eIMsDjbt3p9r2GYA==} + engines: {node: '>= 20'} peerDependencies: '@octokit/core': '>=6' @@ -2230,9 +2122,9 @@ packages: peerDependencies: '@octokit/core': '5' - '@octokit/plugin-request-log@5.3.1': - resolution: {integrity: sha512-n/lNeCtq+9ofhC15xzmJCNKP2BWTv8Ih2TTy+jatNCCq/gQP/V7rK3fjIfuz0pDWDALO/o/4QY4hyOF6TQQFUw==} - engines: {node: '>= 18'} + '@octokit/plugin-request-log@6.0.0': + resolution: {integrity: sha512-UkOzeEN3W91/eBq9sPZNQ7sUBvYCqYbrrD8gTbBuGtHEuycE4/awMXcYvx6sVYo7LypPhmQwwpUe4Yyu4QZN5Q==} + engines: {node: '>= 20'} peerDependencies: '@octokit/core': '>=6' @@ -2242,9 +2134,9 @@ packages: peerDependencies: '@octokit/core': ^5 - '@octokit/plugin-rest-endpoint-methods@13.5.0': - resolution: {integrity: sha512-9Pas60Iv9ejO3WlAX3maE1+38c5nqbJXV5GrncEfkndIpZrJ/WPMRd2xYDcPPEt5yzpxcjw9fWNoPhsSGzqKqw==} - engines: {node: '>= 18'} + '@octokit/plugin-rest-endpoint-methods@16.1.0': + resolution: {integrity: sha512-nCsyiKoGRnhH5LkH8hJEZb9swpqOcsW+VXv1QoyUNQXJeVODG4+xM6UICEqyqe9XFr6LkL8BIiFCPev8zMDXPw==} + engines: {node: '>= 20'} peerDependencies: '@octokit/core': '>=6' @@ -2262,9 +2154,13 @@ packages: resolution: {integrity: sha512-v9iyEQJH6ZntoENr9/yXxjuezh4My67CBSu9r6Ve/05Iu5gNgnisNWOsoJHTP6k0Rr0+HQIpnH+kyammu90q/g==} engines: {node: '>= 18'} - '@octokit/request-error@6.1.8': - resolution: {integrity: sha512-WEi/R0Jmq+IJKydWlKDmryPcmdYSVjL3ekaiEL1L9eo1sUnqMJ+grqmC9cjk7CA7+b2/T397tO5d8YLOH3qYpQ==} - engines: {node: '>= 18'} + '@octokit/request-error@7.0.1': + resolution: {integrity: sha512-CZpFwV4+1uBrxu7Cw8E5NCXDWFNf18MSY23TdxCBgjw1tXXHvTrZVsXlW8hgFTOLw8RQR1BBrMvYRtuyaijHMA==} + engines: {node: '>= 20'} + + '@octokit/request@10.0.5': + resolution: {integrity: sha512-TXnouHIYLtgDhKo+N6mXATnDBkV05VwbR0TtMWpgTHIoQdRQfCSzmy/LGqR1AbRMbijq/EckC/E3/ZNcU92NaQ==} + engines: {node: '>= 20'} '@octokit/request@6.2.8': resolution: {integrity: sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw==} @@ -2274,10 +2170,6 @@ packages: resolution: {integrity: sha512-qnB2+SY3hkCmBxZsR/MPCybNmbJe4KAlfWErXq+rBKkQJlbjdJeS85VI9r8UqeLYLvnAenU8Q1okM/0MBsAGXw==} engines: {node: '>= 18'} - '@octokit/request@9.2.4': - resolution: {integrity: sha512-q8ybdytBmxa6KogWlNa818r0k1wlqzNC+yNkcQDECHvQo8Vmstrg18JwqJHdJdUiHD2sjlwBgSm9kHkOKe2iyA==} - engines: {node: '>= 18'} - '@octokit/rest@19.0.3': resolution: {integrity: sha512-5arkTsnnRT7/sbI4fqgSJ35KiFaN7zQm0uQiQtivNQLI8RQx8EHwJCajcTUwmaCMNDg7tdCvqAnc7uvHHPxrtQ==} engines: {node: '>= 14'} @@ -2286,15 +2178,15 @@ packages: resolution: {integrity: sha512-GmYiltypkHHtihFwPRxlaorG5R9VAHuk/vbszVoRTGXnAsY60wYLkh/E2XiFmdZmqrisw+9FaazS1i5SbdWYgA==} engines: {node: '>= 18'} - '@octokit/rest@21.1.1': - resolution: {integrity: sha512-sTQV7va0IUVZcntzy1q3QqPm/r8rWtDCqpRAmb8eXXnKkjoQEtFe3Nt5GTVsHft+R6jJoHeSiVLcgcvhtue/rg==} - engines: {node: '>= 18'} + '@octokit/rest@22.0.0': + resolution: {integrity: sha512-z6tmTu9BTnw51jYGulxrlernpsQYXpui1RK21vmXn8yF5bp6iX16yfTtJYGK5Mh1qDkvDOmp2n8sRMcQmR8jiA==} + engines: {node: '>= 20'} '@octokit/types@13.10.0': resolution: {integrity: sha512-ifLaO34EbbPj0Xgro4G5lP5asESjwHracYJvVaPIyXMuiuXLlhic3S47cBdTb+jfODkTE5YtGCLt3Ay3+J97sA==} - '@octokit/types@14.1.0': - resolution: {integrity: sha512-1y6DgTy8Jomcpu33N+p5w58l6xyt55Ar2I91RPiIA0xCJBXyUAhXCcmZaDWSANiha7R9a6qJJ2CRomGPZ6f46g==} + '@octokit/types@15.0.0': + resolution: {integrity: sha512-8o6yDfmoGJUIeR9OfYU0/TUJTnMPG2r68+1yEdUeG2Fdqpj8Qetg0ziKIgcBm0RW/j29H41WP37CYCEhp6GoHQ==} '@octokit/types@6.41.0': resolution: {integrity: sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==} @@ -2313,8 +2205,8 @@ packages: resolution: {integrity: sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==} engines: {node: '>= 10.0.0'} - '@phun-ky/typeof@1.2.8': - resolution: {integrity: sha512-7J6ca1tK0duM2BgVB+CuFMh3idlIVASOP2QvOCbNWDc6JnvjtKa9nufPoJQQ4xrwBonwgT1TIhRRcEtzdVgWsA==} + '@phun-ky/typeof@2.0.3': + resolution: {integrity: sha512-oeQJs1aa8Ghke8JIK9yuq/+KjMiaYeDZ38jx7MhkXncXlUKjqQ3wEm2X3qCKyjo+ZZofZj+WsEEiqkTtRuE2xQ==} engines: {node: ^20.9.0 || >=22.0.0, npm: '>=10.8.2'} '@pkgjs/parseargs@0.11.0': @@ -2691,8 +2583,8 @@ packages: '@types/node@17.0.45': resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==} - '@types/node@24.6.2': - resolution: {integrity: sha512-d2L25Y4j+W3ZlNAeMKcy7yDsK425ibcAOO2t7aPTz6gNMH0z2GThtwENCDc0d/Pw9wgyRqE5Px1wkV7naz8ang==} + '@types/node@24.7.0': + resolution: {integrity: sha512-IbKooQVqUBrlzWTi79E8Fw78l8k1RNtlDDNWsFZs7XonuQSJ8oNYfEeclhprUldXISRMLzBpILuKgPlIxm+/Yw==} '@types/normalize-package-data@2.4.4': resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} @@ -3364,8 +3256,8 @@ packages: before-after-hook@2.2.3: resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} - before-after-hook@3.0.2: - resolution: {integrity: sha512-Nik3Sc0ncrMK4UUdXQmAnRtzmNQTAAXmXIopizwZ1W1t8QmfJj+zL4OA2I7XPTPW5z5TDqv4hRo/JzouDJnX3A==} + before-after-hook@4.0.0: + resolution: {integrity: sha512-q6tR3RPqIB1pMiTRMFcZwuG5T8vwp+vUvEG0vuI6B+Rikh5BfPp2fQ82c925FOs+b0lcFQ8CFrL+KbilfZFhOQ==} big.js@5.2.2: resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} @@ -3450,8 +3342,8 @@ packages: resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} engines: {node: '>= 0.8'} - c12@3.1.0: - resolution: {integrity: sha512-uWoS8OU1MEIsOv8p/5a82c3H31LsWVR5qiyXVfBNOzfffjUWtPnhAb4BYI2uG2HfGmZmFjCtui5XNWaps+iFuw==} + c12@3.3.0: + resolution: {integrity: sha512-K9ZkuyeJQeqLEyqldbYLG3wjqwpw4BVaAqvmxq3GYKK0b1A/yYQdIcJxkzAOWcNVWhJpRXAPfZFueekiY/L8Dw==} peerDependencies: magicast: ^0.3.5 peerDependenciesMeta: @@ -3642,6 +3534,10 @@ packages: resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} engines: {node: '>=6'} + cli-spinners@3.3.0: + resolution: {integrity: sha512-/+40ljC3ONVnYIttjMWrlL51nItDAbBrq2upN8BPyvGU/2n5Oxw3tbNwORCaNuNqLJnxGqOfjUuhsv7l5Q4IsQ==} + engines: {node: '>=18.20'} + cli-table3@0.6.5: resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==} engines: {node: 10.* || >= 12.*} @@ -4338,8 +4234,8 @@ packages: resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==} engines: {node: '>=12'} - dotenv@16.6.1: - resolution: {integrity: sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==} + dotenv@17.2.3: + resolution: {integrity: sha512-JVUnt+DUIzu87TABbhPmNfVdBDt18BLOWjMUFJMSi/Qqg7NTYtabbvSNJGOJ7afbRuv9D/lngizHtP7QyLQ+9w==} engines: {node: '>=12'} dunder-proto@1.0.1: @@ -4691,9 +4587,9 @@ packages: resolution: {integrity: sha512-UVQ72Rqjy/ZKQalzV5dCCJP80GrmPrMxh6NlNf+erV6ObL0ZFkhCstWRawS85z3smdr3d2wXPsZEY7rDPfGd2g==} engines: {node: '>=6.0.0'} - eta@3.5.0: - resolution: {integrity: sha512-e3x3FBvGzeCIHhF+zhK8FZA2vC5uFn6b4HJjegUbIWrDb4mJ7JjTGMJY9VGIbRVpmSwHopNiaJibhjIr+HfLug==} - engines: {node: '>=6.0.0'} + eta@4.0.1: + resolution: {integrity: sha512-0h0oBEsF6qAJU7eu9ztvJoTo8D2PAq/4FvXVIQA1fek3WOTe6KPsVJycekG1+g1N6mfpblkheoGwaUhMtnlH4A==} + engines: {node: '>=20'} etag@1.8.1: resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} @@ -4750,8 +4646,8 @@ packages: resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} engines: {node: '>=4'} - fast-content-type-parse@2.0.1: - resolution: {integrity: sha512-nGqtvLrj5w0naR6tDPfB4cUmYCqouzyQiz6C5y/LtcDllJdrcc6WaWW6iXyIIOErTa/XRybj28aasdn4LkVk6Q==} + fast-content-type-parse@3.0.0: + resolution: {integrity: sha512-ZvLdcY8P+N8mGQJahJV5G4U88CSvT1rP8ApL6uETe88MBXrBHAkZlSEySdUlyztF7ccb+Znos3TFqaepHxdhBg==} fast-deep-equal@3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} @@ -5541,15 +5437,6 @@ packages: inline-style-parser@0.2.4: resolution: {integrity: sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==} - inquirer@12.7.0: - resolution: {integrity: sha512-KKFRc++IONSyE2UYw9CJ1V0IWx5yQKomwB+pp3cWomWs+v2+ZsG11G2OVfAjFS6WWCppKw+RfKmpqGfSzD5QBQ==} - engines: {node: '>=18'} - peerDependencies: - '@types/node': '>=18' - peerDependenciesMeta: - '@types/node': - optional: true - inquirer@12.9.6: resolution: {integrity: sha512-603xXOgyfxhuis4nfnWaZrMaotNT0Km9XwwBNWUKbIDqeCY89jGr2F9YPEMiNhU6XjIP4VoWISMBFfcc5NgrTw==} engines: {node: '>=18'} @@ -5871,10 +5758,6 @@ packages: resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} engines: {node: '>=10'} - is-unicode-supported@1.3.0: - resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==} - engines: {node: '>=12'} - is-unicode-supported@2.1.0: resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==} engines: {node: '>=18'} @@ -5966,10 +5849,6 @@ packages: resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==} hasBin: true - jiti@2.5.1: - resolution: {integrity: sha512-twQoecYPiVA5K/h6SxtORw/Bs3ar+mLUtoPSc7iMXzQzK8d7eJ/R09wmTwAjiamETn1cXYPGfNnu7DMoHgu12w==} - hasBin: true - jiti@2.6.1: resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==} hasBin: true @@ -6229,8 +6108,8 @@ packages: resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} engines: {node: '>=10'} - log-symbols@6.0.0: - resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==} + log-symbols@7.0.1: + resolution: {integrity: sha512-ja1E3yCr9i/0hmBVaM0bfwDjnGy8I/s6PP4DFp+yP+a+mrHO4Rm7DtmnqROTUkHIkqffC84YY7AeqX6oFk0WFg==} engines: {node: '>=18'} log-update@6.1.0: @@ -7027,8 +6906,8 @@ packages: '@swc/core': optional: true - nypm@0.6.1: - resolution: {integrity: sha512-hlacBiRiv1k9hZFiphPUkfSQ/ZfQzZDzC+8z0wL3lvDAOUu/2NnChkKuMoMjNur/9OpKuz2QsIeiPVN0xM5Q0w==} + nypm@0.6.2: + resolution: {integrity: sha512-7eM+hpOtrKrBDCh7Ypu2lJ9Z7PNZBdi/8AT3AX8xoCj43BBVHD0hPSTEvMtkMpfs8FCqBGhxB+uToIQimA111g==} engines: {node: ^14.16.0 || >=16.10.0} hasBin: true @@ -7129,9 +7008,9 @@ packages: resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} engines: {node: '>=10'} - ora@8.2.0: - resolution: {integrity: sha512-weP+BZ8MVNnlCm8c0Qdc1WSWq4Qn7I+9CJGm7Qali6g44e/PUzbjNqJX5NJ9ljlNMosfJvg1fKEGILklK9cwnw==} - engines: {node: '>=18'} + ora@9.0.0: + resolution: {integrity: sha512-m0pg2zscbYgWbqRR6ABga5c3sZdEon7bSgjnlXC64kxtxLOyjRcbbUkLj7HFyy/FTD+P2xdBWu8snGhYI0jc4A==} + engines: {node: '>=20'} os-name@6.1.0: resolution: {integrity: sha512-zBd1G8HkewNd2A8oQ8c6BN/f/c9EId7rSUueOLGu28govmUctXmM+3765GwsByv9nYUdrLqHphXlYIc86saYsg==} @@ -7385,8 +7264,8 @@ packages: pathe@2.0.3: resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} - perfect-debounce@1.0.0: - resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==} + perfect-debounce@2.0.0: + resolution: {integrity: sha512-fkEH/OBiKrqqI/yIgjR92lMfs2K8105zt/VT6+7eTjNwisrsh47CeIED9z58zI7DfKdH3uHAn25ziRZn3kgAow==} picocolors@1.1.1: resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} @@ -8207,8 +8086,8 @@ packages: resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} engines: {node: '>= 0.10'} - release-it@19.0.4: - resolution: {integrity: sha512-W9A26FW+l1wy5fDg9BeAknZ19wV+UvHUDOC4D355yIOZF/nHBOIhjDwutKd4pikkjvL7CpKeF+4zLxVP9kmVEw==} + release-it@19.0.5: + resolution: {integrity: sha512-bYlUKC0TQroBKi8jQUeoxLHql4d9Fx/2EQLHPKUobXTNSiTS2WY8vlgdHZRhRjVEMyAWwyadJVKfFZnRJuRn4Q==} engines: {node: ^20.12.0 || >=22.0.0} hasBin: true @@ -8338,8 +8217,8 @@ packages: engines: {node: '>=12.0.0'} hasBin: true - run-applescript@7.0.0: - resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==} + run-applescript@7.1.0: + resolution: {integrity: sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==} engines: {node: '>=18'} run-async@2.4.1: @@ -8949,6 +8828,10 @@ packages: resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==} engines: {node: '>=12.0.0'} + tinyglobby@0.2.15: + resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} + engines: {node: '>=12.0.0'} + tinypool@1.1.1: resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==} engines: {node: ^18.0.0 || >=20.0.0} @@ -9153,8 +9036,8 @@ packages: resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} engines: {node: '>= 0.4'} - undici-types@7.13.0: - resolution: {integrity: sha512-Ov2Rr9Sx+fRgagJ5AX0qvItZG/JKKoBRAVITs1zk7IqZGTJUwgUr7qoYBpWwakpWilTZFM98rG/AFRocu10iIQ==} + undici-types@7.14.0: + resolution: {integrity: sha512-QQiYxHuyZ9gQUIrmPo3IA+hUl4KYk8uSA7cHrcKd/l3p1OTpZcM0Tbp9x7FAtXdAYhlasd60ncPpgu6ihG6TOA==} undici@6.21.3: resolution: {integrity: sha512-gBLkYIlEnSp8pFbT64yFgGE6UIB9tAkhukC23PmMDCe5Nd+cRqKxSjw5y54MK2AZMgZfJWMaNE4nYUHgi1XEOw==} @@ -9657,6 +9540,10 @@ packages: resolution: {integrity: sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw==} engines: {node: '>=18'} + yoctocolors@2.1.2: + resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==} + engines: {node: '>=18'} + zod@4.1.11: resolution: {integrity: sha512-WPsqwxITS2tzx1bzhIKsEs19ABD5vmCVa4xBo2tq/SrV4RNZtfws1EnCWQXM6yh8bD08a1idvkB5MZSBiZsjwg==} @@ -10556,11 +10443,11 @@ snapshots: '@colors/colors@1.5.0': optional: true - '@commitlint/cli@20.1.0(@types/node@24.6.2)(typescript@5.9.3)': + '@commitlint/cli@20.1.0(@types/node@24.7.0)(typescript@5.9.3)': dependencies: '@commitlint/format': 20.0.0 '@commitlint/lint': 20.0.0 - '@commitlint/load': 20.1.0(@types/node@24.6.2)(typescript@5.9.3) + '@commitlint/load': 20.1.0(@types/node@24.7.0)(typescript@5.9.3) '@commitlint/read': 20.0.0 '@commitlint/types': 20.0.0 tinyexec: 1.0.1 @@ -10607,7 +10494,7 @@ snapshots: '@commitlint/rules': 20.0.0 '@commitlint/types': 20.0.0 - '@commitlint/load@20.1.0(@types/node@24.6.2)(typescript@5.9.3)': + '@commitlint/load@20.1.0(@types/node@24.7.0)(typescript@5.9.3)': dependencies: '@commitlint/config-validator': 20.0.0 '@commitlint/execute-rule': 20.0.0 @@ -10615,7 +10502,7 @@ snapshots: '@commitlint/types': 20.0.0 chalk: 5.6.2 cosmiconfig: 9.0.0(typescript@5.9.3) - cosmiconfig-typescript-loader: 6.1.0(@types/node@24.6.2)(cosmiconfig@9.0.0(typescript@5.9.3))(typescript@5.9.3) + cosmiconfig-typescript-loader: 6.1.0(@types/node@24.7.0)(cosmiconfig@9.0.0(typescript@5.9.3))(typescript@5.9.3) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 @@ -11818,238 +11705,128 @@ snapshots: '@inquirer/ansi@1.0.0': {} - '@inquirer/checkbox@4.2.2(@types/node@24.6.2)': - dependencies: - '@inquirer/core': 10.2.0(@types/node@24.6.2) - '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.6.2) - ansi-escapes: 4.3.2 - yoctocolors-cjs: 2.1.3 - optionalDependencies: - '@types/node': 24.6.2 - - '@inquirer/checkbox@4.2.4(@types/node@24.6.2)': + '@inquirer/checkbox@4.2.4(@types/node@24.7.0)': dependencies: '@inquirer/ansi': 1.0.0 - '@inquirer/core': 10.2.2(@types/node@24.6.2) + '@inquirer/core': 10.2.2(@types/node@24.7.0) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.6.2) + '@inquirer/type': 3.0.8(@types/node@24.7.0) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.6.2 + '@types/node': 24.7.0 - '@inquirer/confirm@5.1.16(@types/node@24.6.2)': + '@inquirer/confirm@5.1.18(@types/node@24.7.0)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.6.2) - '@inquirer/type': 3.0.8(@types/node@24.6.2) + '@inquirer/core': 10.2.2(@types/node@24.7.0) + '@inquirer/type': 3.0.8(@types/node@24.7.0) optionalDependencies: - '@types/node': 24.6.2 + '@types/node': 24.7.0 - '@inquirer/confirm@5.1.18(@types/node@24.6.2)': - dependencies: - '@inquirer/core': 10.2.2(@types/node@24.6.2) - '@inquirer/type': 3.0.8(@types/node@24.6.2) - optionalDependencies: - '@types/node': 24.6.2 - - '@inquirer/core@10.2.0(@types/node@24.6.2)': - dependencies: - '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.6.2) - ansi-escapes: 4.3.2 - cli-width: 4.1.0 - mute-stream: 2.0.0 - signal-exit: 4.1.0 - wrap-ansi: 6.2.0 - yoctocolors-cjs: 2.1.3 - optionalDependencies: - '@types/node': 24.6.2 - - '@inquirer/core@10.2.2(@types/node@24.6.2)': + '@inquirer/core@10.2.2(@types/node@24.7.0)': dependencies: '@inquirer/ansi': 1.0.0 '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.6.2) + '@inquirer/type': 3.0.8(@types/node@24.7.0) cli-width: 4.1.0 mute-stream: 2.0.0 signal-exit: 4.1.0 wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.6.2 + '@types/node': 24.7.0 - '@inquirer/editor@4.2.18(@types/node@24.6.2)': + '@inquirer/editor@4.2.20(@types/node@24.7.0)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.6.2) - '@inquirer/external-editor': 1.0.2(@types/node@24.6.2) - '@inquirer/type': 3.0.8(@types/node@24.6.2) + '@inquirer/core': 10.2.2(@types/node@24.7.0) + '@inquirer/external-editor': 1.0.2(@types/node@24.7.0) + '@inquirer/type': 3.0.8(@types/node@24.7.0) optionalDependencies: - '@types/node': 24.6.2 + '@types/node': 24.7.0 - '@inquirer/editor@4.2.20(@types/node@24.6.2)': + '@inquirer/expand@4.0.20(@types/node@24.7.0)': dependencies: - '@inquirer/core': 10.2.2(@types/node@24.6.2) - '@inquirer/external-editor': 1.0.2(@types/node@24.6.2) - '@inquirer/type': 3.0.8(@types/node@24.6.2) - optionalDependencies: - '@types/node': 24.6.2 - - '@inquirer/expand@4.0.18(@types/node@24.6.2)': - dependencies: - '@inquirer/core': 10.2.0(@types/node@24.6.2) - '@inquirer/type': 3.0.8(@types/node@24.6.2) - yoctocolors-cjs: 2.1.3 - optionalDependencies: - '@types/node': 24.6.2 - - '@inquirer/expand@4.0.20(@types/node@24.6.2)': - dependencies: - '@inquirer/core': 10.2.2(@types/node@24.6.2) - '@inquirer/type': 3.0.8(@types/node@24.6.2) + '@inquirer/core': 10.2.2(@types/node@24.7.0) + '@inquirer/type': 3.0.8(@types/node@24.7.0) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.6.2 + '@types/node': 24.7.0 - '@inquirer/external-editor@1.0.2(@types/node@24.6.2)': + '@inquirer/external-editor@1.0.2(@types/node@24.7.0)': dependencies: chardet: 2.1.0 iconv-lite: 0.7.0 optionalDependencies: - '@types/node': 24.6.2 + '@types/node': 24.7.0 '@inquirer/figures@1.0.13': {} - '@inquirer/input@4.2.2(@types/node@24.6.2)': - dependencies: - '@inquirer/core': 10.2.0(@types/node@24.6.2) - '@inquirer/type': 3.0.8(@types/node@24.6.2) - optionalDependencies: - '@types/node': 24.6.2 - - '@inquirer/input@4.2.4(@types/node@24.6.2)': - dependencies: - '@inquirer/core': 10.2.2(@types/node@24.6.2) - '@inquirer/type': 3.0.8(@types/node@24.6.2) - optionalDependencies: - '@types/node': 24.6.2 - - '@inquirer/number@3.0.18(@types/node@24.6.2)': + '@inquirer/input@4.2.4(@types/node@24.7.0)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.6.2) - '@inquirer/type': 3.0.8(@types/node@24.6.2) + '@inquirer/core': 10.2.2(@types/node@24.7.0) + '@inquirer/type': 3.0.8(@types/node@24.7.0) optionalDependencies: - '@types/node': 24.6.2 + '@types/node': 24.7.0 - '@inquirer/number@3.0.20(@types/node@24.6.2)': + '@inquirer/number@3.0.20(@types/node@24.7.0)': dependencies: - '@inquirer/core': 10.2.2(@types/node@24.6.2) - '@inquirer/type': 3.0.8(@types/node@24.6.2) + '@inquirer/core': 10.2.2(@types/node@24.7.0) + '@inquirer/type': 3.0.8(@types/node@24.7.0) optionalDependencies: - '@types/node': 24.6.2 + '@types/node': 24.7.0 - '@inquirer/password@4.0.18(@types/node@24.6.2)': - dependencies: - '@inquirer/core': 10.2.0(@types/node@24.6.2) - '@inquirer/type': 3.0.8(@types/node@24.6.2) - ansi-escapes: 4.3.2 - optionalDependencies: - '@types/node': 24.6.2 - - '@inquirer/password@4.0.20(@types/node@24.6.2)': + '@inquirer/password@4.0.20(@types/node@24.7.0)': dependencies: '@inquirer/ansi': 1.0.0 - '@inquirer/core': 10.2.2(@types/node@24.6.2) - '@inquirer/type': 3.0.8(@types/node@24.6.2) - optionalDependencies: - '@types/node': 24.6.2 - - '@inquirer/prompts@7.8.4(@types/node@24.6.2)': - dependencies: - '@inquirer/checkbox': 4.2.2(@types/node@24.6.2) - '@inquirer/confirm': 5.1.16(@types/node@24.6.2) - '@inquirer/editor': 4.2.18(@types/node@24.6.2) - '@inquirer/expand': 4.0.18(@types/node@24.6.2) - '@inquirer/input': 4.2.2(@types/node@24.6.2) - '@inquirer/number': 3.0.18(@types/node@24.6.2) - '@inquirer/password': 4.0.18(@types/node@24.6.2) - '@inquirer/rawlist': 4.1.6(@types/node@24.6.2) - '@inquirer/search': 3.1.1(@types/node@24.6.2) - '@inquirer/select': 4.3.2(@types/node@24.6.2) - optionalDependencies: - '@types/node': 24.6.2 - - '@inquirer/prompts@7.8.6(@types/node@24.6.2)': - dependencies: - '@inquirer/checkbox': 4.2.4(@types/node@24.6.2) - '@inquirer/confirm': 5.1.18(@types/node@24.6.2) - '@inquirer/editor': 4.2.20(@types/node@24.6.2) - '@inquirer/expand': 4.0.20(@types/node@24.6.2) - '@inquirer/input': 4.2.4(@types/node@24.6.2) - '@inquirer/number': 3.0.20(@types/node@24.6.2) - '@inquirer/password': 4.0.20(@types/node@24.6.2) - '@inquirer/rawlist': 4.1.8(@types/node@24.6.2) - '@inquirer/search': 3.1.3(@types/node@24.6.2) - '@inquirer/select': 4.3.4(@types/node@24.6.2) - optionalDependencies: - '@types/node': 24.6.2 - - '@inquirer/rawlist@4.1.6(@types/node@24.6.2)': - dependencies: - '@inquirer/core': 10.2.0(@types/node@24.6.2) - '@inquirer/type': 3.0.8(@types/node@24.6.2) - yoctocolors-cjs: 2.1.3 - optionalDependencies: - '@types/node': 24.6.2 - - '@inquirer/rawlist@4.1.8(@types/node@24.6.2)': - dependencies: - '@inquirer/core': 10.2.2(@types/node@24.6.2) - '@inquirer/type': 3.0.8(@types/node@24.6.2) - yoctocolors-cjs: 2.1.3 + '@inquirer/core': 10.2.2(@types/node@24.7.0) + '@inquirer/type': 3.0.8(@types/node@24.7.0) optionalDependencies: - '@types/node': 24.6.2 - - '@inquirer/search@3.1.1(@types/node@24.6.2)': - dependencies: - '@inquirer/core': 10.2.0(@types/node@24.6.2) - '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.6.2) - yoctocolors-cjs: 2.1.3 + '@types/node': 24.7.0 + + '@inquirer/prompts@7.8.6(@types/node@24.7.0)': + dependencies: + '@inquirer/checkbox': 4.2.4(@types/node@24.7.0) + '@inquirer/confirm': 5.1.18(@types/node@24.7.0) + '@inquirer/editor': 4.2.20(@types/node@24.7.0) + '@inquirer/expand': 4.0.20(@types/node@24.7.0) + '@inquirer/input': 4.2.4(@types/node@24.7.0) + '@inquirer/number': 3.0.20(@types/node@24.7.0) + '@inquirer/password': 4.0.20(@types/node@24.7.0) + '@inquirer/rawlist': 4.1.8(@types/node@24.7.0) + '@inquirer/search': 3.1.3(@types/node@24.7.0) + '@inquirer/select': 4.3.4(@types/node@24.7.0) optionalDependencies: - '@types/node': 24.6.2 + '@types/node': 24.7.0 - '@inquirer/search@3.1.3(@types/node@24.6.2)': + '@inquirer/rawlist@4.1.8(@types/node@24.7.0)': dependencies: - '@inquirer/core': 10.2.2(@types/node@24.6.2) - '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.6.2) + '@inquirer/core': 10.2.2(@types/node@24.7.0) + '@inquirer/type': 3.0.8(@types/node@24.7.0) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.6.2 + '@types/node': 24.7.0 - '@inquirer/select@4.3.2(@types/node@24.6.2)': + '@inquirer/search@3.1.3(@types/node@24.7.0)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.6.2) + '@inquirer/core': 10.2.2(@types/node@24.7.0) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.6.2) - ansi-escapes: 4.3.2 + '@inquirer/type': 3.0.8(@types/node@24.7.0) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.6.2 + '@types/node': 24.7.0 - '@inquirer/select@4.3.4(@types/node@24.6.2)': + '@inquirer/select@4.3.4(@types/node@24.7.0)': dependencies: '@inquirer/ansi': 1.0.0 - '@inquirer/core': 10.2.2(@types/node@24.6.2) + '@inquirer/core': 10.2.2(@types/node@24.7.0) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.6.2) + '@inquirer/type': 3.0.8(@types/node@24.7.0) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.6.2 + '@types/node': 24.7.0 - '@inquirer/type@3.0.8(@types/node@24.6.2)': + '@inquirer/type@3.0.8(@types/node@24.7.0)': optionalDependencies: - '@types/node': 24.6.2 + '@types/node': 24.7.0 '@isaacs/balanced-match@4.0.1': {} @@ -12089,7 +11866,7 @@ snapshots: '@jest/schemas': 29.6.3 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 24.6.2 + '@types/node': 24.7.0 '@types/yargs': 17.0.33 chalk: 4.1.2 @@ -12192,7 +11969,7 @@ snapshots: - bluebird - supports-color - '@lerna/create@9.0.0(@types/node@24.6.2)(typescript@5.9.3)': + '@lerna/create@9.0.0(@types/node@24.7.0)(typescript@5.9.3)': dependencies: '@npmcli/arborist': 9.1.4 '@npmcli/package-json': 7.0.0 @@ -12219,7 +11996,7 @@ snapshots: has-unicode: 2.0.1 ini: 1.3.8 init-package-json: 8.2.2 - inquirer: 12.9.6(@types/node@24.6.2) + inquirer: 12.9.6(@types/node@24.7.0) is-ci: 3.0.1 is-stream: 2.0.0 js-yaml: 4.1.0 @@ -12804,7 +12581,7 @@ snapshots: '@octokit/auth-token@4.0.0': {} - '@octokit/auth-token@5.1.2': {} + '@octokit/auth-token@6.0.0': {} '@octokit/core@4.2.4(encoding@0.1.13)': dependencies: @@ -12828,19 +12605,19 @@ snapshots: before-after-hook: 2.2.3 universal-user-agent: 6.0.1 - '@octokit/core@6.1.6': + '@octokit/core@7.0.5': dependencies: - '@octokit/auth-token': 5.1.2 - '@octokit/graphql': 8.2.2 - '@octokit/request': 9.2.4 - '@octokit/request-error': 6.1.8 - '@octokit/types': 14.1.0 - before-after-hook: 3.0.2 + '@octokit/auth-token': 6.0.0 + '@octokit/graphql': 9.0.2 + '@octokit/request': 10.0.5 + '@octokit/request-error': 7.0.1 + '@octokit/types': 15.0.0 + before-after-hook: 4.0.0 universal-user-agent: 7.0.3 - '@octokit/endpoint@10.1.4': + '@octokit/endpoint@11.0.1': dependencies: - '@octokit/types': 14.1.0 + '@octokit/types': 15.0.0 universal-user-agent: 7.0.3 '@octokit/endpoint@7.0.6': @@ -12868,10 +12645,10 @@ snapshots: '@octokit/types': 13.10.0 universal-user-agent: 6.0.1 - '@octokit/graphql@8.2.2': + '@octokit/graphql@9.0.2': dependencies: - '@octokit/request': 9.2.4 - '@octokit/types': 14.1.0 + '@octokit/request': 10.0.5 + '@octokit/types': 15.0.0 universal-user-agent: 7.0.3 '@octokit/openapi-types@12.11.0': {} @@ -12882,7 +12659,7 @@ snapshots: '@octokit/openapi-types@24.2.0': {} - '@octokit/openapi-types@25.1.0': {} + '@octokit/openapi-types@26.0.0': {} '@octokit/plugin-enterprise-rest@6.0.1': {} @@ -12891,10 +12668,10 @@ snapshots: '@octokit/core': 5.2.2 '@octokit/types': 13.10.0 - '@octokit/plugin-paginate-rest@11.6.0(@octokit/core@6.1.6)': + '@octokit/plugin-paginate-rest@13.2.0(@octokit/core@7.0.5)': dependencies: - '@octokit/core': 6.1.6 - '@octokit/types': 13.10.0 + '@octokit/core': 7.0.5 + '@octokit/types': 15.0.0 '@octokit/plugin-paginate-rest@3.1.0(@octokit/core@4.2.4(encoding@0.1.13))': dependencies: @@ -12909,19 +12686,19 @@ snapshots: dependencies: '@octokit/core': 5.2.2 - '@octokit/plugin-request-log@5.3.1(@octokit/core@6.1.6)': + '@octokit/plugin-request-log@6.0.0(@octokit/core@7.0.5)': dependencies: - '@octokit/core': 6.1.6 + '@octokit/core': 7.0.5 '@octokit/plugin-rest-endpoint-methods@13.3.2-cjs.1(@octokit/core@5.2.2)': dependencies: '@octokit/core': 5.2.2 '@octokit/types': 13.10.0 - '@octokit/plugin-rest-endpoint-methods@13.5.0(@octokit/core@6.1.6)': + '@octokit/plugin-rest-endpoint-methods@16.1.0(@octokit/core@7.0.5)': dependencies: - '@octokit/core': 6.1.6 - '@octokit/types': 13.10.0 + '@octokit/core': 7.0.5 + '@octokit/types': 15.0.0 '@octokit/plugin-rest-endpoint-methods@6.8.1(@octokit/core@4.2.4(encoding@0.1.13))': dependencies: @@ -12941,9 +12718,17 @@ snapshots: deprecation: 2.3.1 once: 1.4.0 - '@octokit/request-error@6.1.8': + '@octokit/request-error@7.0.1': + dependencies: + '@octokit/types': 15.0.0 + + '@octokit/request@10.0.5': dependencies: - '@octokit/types': 14.1.0 + '@octokit/endpoint': 11.0.1 + '@octokit/request-error': 7.0.1 + '@octokit/types': 15.0.0 + fast-content-type-parse: 3.0.0 + universal-user-agent: 7.0.3 '@octokit/request@6.2.8(encoding@0.1.13)': dependencies: @@ -12963,14 +12748,6 @@ snapshots: '@octokit/types': 13.10.0 universal-user-agent: 6.0.1 - '@octokit/request@9.2.4': - dependencies: - '@octokit/endpoint': 10.1.4 - '@octokit/request-error': 6.1.8 - '@octokit/types': 14.1.0 - fast-content-type-parse: 2.0.1 - universal-user-agent: 7.0.3 - '@octokit/rest@19.0.3(encoding@0.1.13)': dependencies: '@octokit/core': 4.2.4(encoding@0.1.13) @@ -12987,20 +12764,20 @@ snapshots: '@octokit/plugin-request-log': 4.0.1(@octokit/core@5.2.2) '@octokit/plugin-rest-endpoint-methods': 13.3.2-cjs.1(@octokit/core@5.2.2) - '@octokit/rest@21.1.1': + '@octokit/rest@22.0.0': dependencies: - '@octokit/core': 6.1.6 - '@octokit/plugin-paginate-rest': 11.6.0(@octokit/core@6.1.6) - '@octokit/plugin-request-log': 5.3.1(@octokit/core@6.1.6) - '@octokit/plugin-rest-endpoint-methods': 13.5.0(@octokit/core@6.1.6) + '@octokit/core': 7.0.5 + '@octokit/plugin-paginate-rest': 13.2.0(@octokit/core@7.0.5) + '@octokit/plugin-request-log': 6.0.0(@octokit/core@7.0.5) + '@octokit/plugin-rest-endpoint-methods': 16.1.0(@octokit/core@7.0.5) '@octokit/types@13.10.0': dependencies: '@octokit/openapi-types': 24.2.0 - '@octokit/types@14.1.0': + '@octokit/types@15.0.0': dependencies: - '@octokit/openapi-types': 25.1.0 + '@octokit/openapi-types': 26.0.0 '@octokit/types@6.41.0': dependencies: @@ -13021,7 +12798,7 @@ snapshots: node-addon-api: 3.2.1 node-gyp-build: 4.8.1 - '@phun-ky/typeof@1.2.8': {} + '@phun-ky/typeof@2.0.3': {} '@pkgjs/parseargs@0.11.0': optional: true @@ -13042,13 +12819,13 @@ snapshots: '@polka/url@1.0.0-next.29': {} - '@release-it-plugins/lerna-changelog@8.0.1(release-it@19.0.4(@types/node@24.6.2))': + '@release-it-plugins/lerna-changelog@8.0.1(release-it@19.0.5(@types/node@24.7.0))': dependencies: execa: 5.1.1 lerna-changelog: 2.2.0 lodash: 4.17.21 mdast-util-from-markdown: 2.0.2 - release-it: 19.0.4(@types/node@24.6.2) + release-it: 19.0.5(@types/node@24.7.0) tmp: 0.2.3 validate-peer-dependencies: 2.2.0 which: 5.0.0 @@ -13337,24 +13114,24 @@ snapshots: '@types/body-parser@1.19.6': dependencies: '@types/connect': 3.4.38 - '@types/node': 24.6.2 + '@types/node': 24.7.0 '@types/bonjour@3.5.13': dependencies: - '@types/node': 24.6.2 + '@types/node': 24.7.0 '@types/connect-history-api-fallback@1.5.4': dependencies: '@types/express-serve-static-core': 4.19.6 - '@types/node': 24.6.2 + '@types/node': 24.7.0 '@types/connect@3.4.38': dependencies: - '@types/node': 24.6.2 + '@types/node': 24.7.0 '@types/conventional-commits-parser@5.0.1': dependencies: - '@types/node': 24.6.2 + '@types/node': 24.7.0 '@types/debug@4.1.12': dependencies: @@ -13378,7 +13155,7 @@ snapshots: '@types/express-serve-static-core@4.19.6': dependencies: - '@types/node': 24.6.2 + '@types/node': 24.7.0 '@types/qs': 6.14.0 '@types/range-parser': 1.2.7 '@types/send': 0.17.5 @@ -13406,7 +13183,7 @@ snapshots: '@types/http-proxy@1.17.16': dependencies: - '@types/node': 24.6.2 + '@types/node': 24.7.0 '@types/istanbul-lib-coverage@2.0.6': {} @@ -13438,13 +13215,13 @@ snapshots: '@types/node-forge@1.3.14': dependencies: - '@types/node': 24.6.2 + '@types/node': 24.7.0 '@types/node@17.0.45': {} - '@types/node@24.6.2': + '@types/node@24.7.0': dependencies: - undici-types: 7.13.0 + undici-types: 7.14.0 '@types/normalize-package-data@2.4.4': {} @@ -13490,7 +13267,7 @@ snapshots: '@types/send@0.17.5': dependencies: '@types/mime': 1.3.5 - '@types/node': 24.6.2 + '@types/node': 24.7.0 '@types/serve-index@1.9.4': dependencies: @@ -13499,12 +13276,12 @@ snapshots: '@types/serve-static@1.15.8': dependencies: '@types/http-errors': 2.0.5 - '@types/node': 24.6.2 + '@types/node': 24.7.0 '@types/send': 0.17.5 '@types/sockjs@0.3.36': dependencies: - '@types/node': 24.6.2 + '@types/node': 24.7.0 '@types/unist@2.0.11': {} @@ -13512,7 +13289,7 @@ snapshots: '@types/ws@8.18.1': dependencies: - '@types/node': 24.6.2 + '@types/node': 24.7.0 '@types/yargs-parser@21.0.3': {} @@ -14191,7 +13968,7 @@ snapshots: before-after-hook@2.2.3: {} - before-after-hook@3.0.2: {} + before-after-hook@4.0.0: {} big.js@5.2.2: {} @@ -14300,7 +14077,7 @@ snapshots: bundle-name@4.1.0: dependencies: - run-applescript: 7.0.0 + run-applescript: 7.1.0 byte-size@7.0.0: {} @@ -14310,18 +14087,18 @@ snapshots: bytes@3.1.2: {} - c12@3.1.0: + c12@3.3.0: dependencies: chokidar: 4.0.3 confbox: 0.2.2 defu: 6.1.4 - dotenv: 16.6.1 + dotenv: 17.2.3 exsolve: 1.0.7 giget: 2.0.0 - jiti: 2.5.1 + jiti: 2.6.1 ohash: 2.0.11 pathe: 2.0.3 - perfect-debounce: 1.0.0 + perfect-debounce: 2.0.0 pkg-types: 2.3.0 rc9: 2.1.2 @@ -14588,6 +14365,8 @@ snapshots: cli-spinners@2.9.2: {} + cli-spinners@3.3.0: {} + cli-table3@0.6.5: dependencies: string-width: 4.2.3 @@ -14672,9 +14451,9 @@ snapshots: commander@8.3.0: {} - commitlint@20.1.0(@types/node@24.6.2)(typescript@5.9.3): + commitlint@20.1.0(@types/node@24.7.0)(typescript@5.9.3): dependencies: - '@commitlint/cli': 20.1.0(@types/node@24.6.2)(typescript@5.9.3) + '@commitlint/cli': 20.1.0(@types/node@24.7.0)(typescript@5.9.3) '@commitlint/types': 20.0.0 transitivePeerDependencies: - '@types/node' @@ -14898,9 +14677,9 @@ snapshots: core-util-is@1.0.3: {} - cosmiconfig-typescript-loader@6.1.0(@types/node@24.6.2)(cosmiconfig@9.0.0(typescript@5.9.3))(typescript@5.9.3): + cosmiconfig-typescript-loader@6.1.0(@types/node@24.7.0)(cosmiconfig@9.0.0(typescript@5.9.3))(typescript@5.9.3): dependencies: - '@types/node': 24.6.2 + '@types/node': 24.7.0 cosmiconfig: 9.0.0(typescript@5.9.3) jiti: 2.6.1 typescript: 5.9.3 @@ -15322,7 +15101,7 @@ snapshots: dotenv@16.4.7: {} - dotenv@16.6.1: {} + dotenv@17.2.3: {} dunder-proto@1.0.1: dependencies: @@ -15869,13 +15648,13 @@ snapshots: eta@2.2.0: {} - eta@3.5.0: {} + eta@4.0.1: {} etag@1.8.1: {} eval@0.1.8: dependencies: - '@types/node': 24.6.2 + '@types/node': 24.7.0 require-like: 0.1.2 eventemitter3@4.0.7: {} @@ -15974,7 +15753,7 @@ snapshots: iconv-lite: 0.4.24 tmp: 0.0.33 - fast-content-type-parse@2.0.1: {} + fast-content-type-parse@3.0.0: {} fast-deep-equal@3.1.3: {} @@ -16294,7 +16073,7 @@ snapshots: consola: 3.4.2 defu: 6.1.4 node-fetch-native: 1.6.7 - nypm: 0.6.1 + nypm: 0.6.2 pathe: 2.0.3 git-raw-commits@2.0.11: @@ -16931,29 +16710,17 @@ snapshots: inline-style-parser@0.2.4: {} - inquirer@12.7.0(@types/node@24.6.2): - dependencies: - '@inquirer/core': 10.2.0(@types/node@24.6.2) - '@inquirer/prompts': 7.8.4(@types/node@24.6.2) - '@inquirer/type': 3.0.8(@types/node@24.6.2) - ansi-escapes: 4.3.2 - mute-stream: 2.0.0 - run-async: 4.0.6 - rxjs: 7.8.2 - optionalDependencies: - '@types/node': 24.6.2 - - inquirer@12.9.6(@types/node@24.6.2): + inquirer@12.9.6(@types/node@24.7.0): dependencies: '@inquirer/ansi': 1.0.0 - '@inquirer/core': 10.2.2(@types/node@24.6.2) - '@inquirer/prompts': 7.8.6(@types/node@24.6.2) - '@inquirer/type': 3.0.8(@types/node@24.6.2) + '@inquirer/core': 10.2.2(@types/node@24.7.0) + '@inquirer/prompts': 7.8.6(@types/node@24.7.0) + '@inquirer/type': 3.0.8(@types/node@24.7.0) mute-stream: 2.0.0 run-async: 4.0.6 rxjs: 7.8.2 optionalDependencies: - '@types/node': 24.6.2 + '@types/node': 24.7.0 inquirer@8.2.4: dependencies: @@ -16973,9 +16740,9 @@ snapshots: through: 2.3.8 wrap-ansi: 7.0.0 - inquirer@8.2.7(@types/node@24.6.2): + inquirer@8.2.7(@types/node@24.7.0): dependencies: - '@inquirer/external-editor': 1.0.2(@types/node@24.6.2) + '@inquirer/external-editor': 1.0.2(@types/node@24.7.0) ansi-escapes: 4.3.2 chalk: 4.1.2 cli-cursor: 3.1.0 @@ -17262,8 +17029,6 @@ snapshots: is-unicode-supported@0.1.0: {} - is-unicode-supported@1.3.0: {} - is-unicode-supported@2.1.0: {} is-weakmap@2.0.2: {} @@ -17346,7 +17111,7 @@ snapshots: jest-util@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 24.6.2 + '@types/node': 24.7.0 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -17354,21 +17119,19 @@ snapshots: jest-worker@27.5.1: dependencies: - '@types/node': 24.6.2 + '@types/node': 24.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 jest-worker@29.7.0: dependencies: - '@types/node': 24.6.2 + '@types/node': 24.7.0 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 jiti@1.21.7: {} - jiti@2.5.1: {} - jiti@2.6.1: {} joi@17.13.3: @@ -17472,9 +17235,9 @@ snapshots: - bluebird - supports-color - lerna-version@6.6.2(@types/node@24.6.2)(encoding@0.1.13): + lerna-version@6.6.2(@types/node@24.7.0)(encoding@0.1.13): dependencies: - lerna: 6.6.2(@types/node@24.6.2)(encoding@0.1.13) + lerna: 6.6.2(@types/node@24.7.0)(encoding@0.1.13) transitivePeerDependencies: - '@swc-node/register' - '@swc/core' @@ -17484,7 +17247,7 @@ snapshots: - encoding - supports-color - lerna@6.6.2(@types/node@24.6.2)(encoding@0.1.13): + lerna@6.6.2(@types/node@24.7.0)(encoding@0.1.13): dependencies: '@lerna/child-process': 6.6.2 '@lerna/create': 6.6.2 @@ -17518,7 +17281,7 @@ snapshots: has-unicode: 2.0.1 import-local: 3.2.0 init-package-json: 3.0.2 - inquirer: 8.2.7(@types/node@24.6.2) + inquirer: 8.2.7(@types/node@24.7.0) is-ci: 2.0.0 is-stream: 2.0.0 js-yaml: 4.1.0 @@ -17571,9 +17334,9 @@ snapshots: - encoding - supports-color - lerna@9.0.0(@types/node@24.6.2): + lerna@9.0.0(@types/node@24.7.0): dependencies: - '@lerna/create': 9.0.0(@types/node@24.6.2)(typescript@5.9.3) + '@lerna/create': 9.0.0(@types/node@24.7.0)(typescript@5.9.3) '@npmcli/arborist': 9.1.4 '@npmcli/package-json': 7.0.0 '@npmcli/run-script': 10.0.0 @@ -17603,7 +17366,7 @@ snapshots: import-local: 3.1.0 ini: 1.3.8 init-package-json: 8.2.2 - inquirer: 12.9.6(@types/node@24.6.2) + inquirer: 12.9.6(@types/node@24.7.0) is-ci: 3.0.1 is-stream: 2.0.0 jest-diff: 30.2.0 @@ -17813,10 +17576,10 @@ snapshots: chalk: 4.1.2 is-unicode-supported: 0.1.0 - log-symbols@6.0.0: + log-symbols@7.0.1: dependencies: - chalk: 5.6.2 - is-unicode-supported: 1.3.0 + is-unicode-supported: 2.1.0 + yoctocolors: 2.1.2 log-update@6.1.0: dependencies: @@ -19120,7 +18883,7 @@ snapshots: transitivePeerDependencies: - debug - nypm@0.6.1: + nypm@0.6.2: dependencies: citty: 0.1.6 consola: 3.4.2 @@ -19254,17 +19017,17 @@ snapshots: strip-ansi: 6.0.1 wcwidth: 1.0.1 - ora@8.2.0: + ora@9.0.0: dependencies: chalk: 5.6.2 cli-cursor: 5.0.0 - cli-spinners: 2.9.2 + cli-spinners: 3.3.0 is-interactive: 2.0.0 is-unicode-supported: 2.1.0 - log-symbols: 6.0.0 + log-symbols: 7.0.1 stdin-discarder: 0.2.2 - string-width: 7.2.0 - strip-ansi: 7.1.0 + string-width: 8.1.0 + strip-ansi: 7.1.2 os-name@6.1.0: dependencies: @@ -19557,7 +19320,7 @@ snapshots: pathe@2.0.3: {} - perfect-debounce@1.0.0: {} + perfect-debounce@2.0.0: {} picocolors@1.1.1: {} @@ -20447,27 +20210,27 @@ snapshots: relateurl@0.2.7: {} - release-it@19.0.4(@types/node@24.6.2): + release-it@19.0.5(@types/node@24.7.0): dependencies: '@nodeutils/defaults-deep': 1.1.0 - '@octokit/rest': 21.1.1 - '@phun-ky/typeof': 1.2.8 + '@octokit/rest': 22.0.0 + '@phun-ky/typeof': 2.0.3 async-retry: 1.3.3 - c12: 3.1.0 + c12: 3.3.0 ci-info: 4.3.0 - eta: 3.5.0 + eta: 4.0.1 git-url-parse: 16.1.0 - inquirer: 12.7.0(@types/node@24.6.2) + inquirer: 12.9.6(@types/node@24.7.0) issue-parser: 7.0.1 lodash.merge: 4.6.2 mime-types: 3.0.1 new-github-release-url: 2.0.0 open: 10.2.0 - ora: 8.2.0 + ora: 9.0.0 os-name: 6.1.0 proxy-agent: 6.5.0 semver: 7.7.2 - tinyglobby: 0.2.14 + tinyglobby: 0.2.15 undici: 6.21.3 url-join: 5.0.0 wildcard-match: 5.1.4 @@ -20631,7 +20394,7 @@ snapshots: postcss: 8.5.6 strip-json-comments: 3.1.1 - run-applescript@7.0.0: {} + run-applescript@7.1.0: {} run-async@2.4.1: {} @@ -21357,6 +21120,11 @@ snapshots: fdir: 6.4.6(picomatch@4.0.2) picomatch: 4.0.2 + tinyglobby@0.2.15: + dependencies: + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 + tinypool@1.1.1: {} tmp@0.0.33: @@ -21395,14 +21163,14 @@ snapshots: dependencies: typescript: 5.9.3 - ts-node@10.9.2(@types/node@24.6.2)(typescript@5.9.3): + ts-node@10.9.2(@types/node@24.7.0)(typescript@5.9.3): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 24.6.2 + '@types/node': 24.7.0 acorn: 8.12.0 acorn-walk: 8.3.3 arg: 4.1.3 @@ -21580,7 +21348,7 @@ snapshots: has-symbols: 1.1.0 which-boxed-primitive: 1.1.1 - undici-types@7.13.0: {} + undici-types@7.14.0: {} undici@6.21.3: {} @@ -22188,6 +21956,8 @@ snapshots: yoctocolors-cjs@2.1.3: {} + yoctocolors@2.1.2: {} + zod@4.1.11: {} zwitch@2.0.4: {} diff --git a/website/docs/api/builders/locator.md b/website/docs/api/builders/locator.md index 55b50b889..5531cdc6d 100644 --- a/website/docs/api/builders/locator.md +++ b/website/docs/api/builders/locator.md @@ -35,6 +35,21 @@ private final Locator loginButton = Locator.buildLocator () . . . ``` +### `androidIndex` + +This property will set the index for the Android WebElement. If not provided, it will default use the value from `index` property. + +```java +. . . +private final Locator title = Locator.buildLocator () + .android (AppiumBy.className ("android.widget.TextView")) + // highlight-next-line + .androidIndex (1) + .name ("Title") + .build (); +. . . +``` + ### `ios` This property will set iOS specific locator. @@ -51,6 +66,21 @@ private final Locator loginButton = Locator.buildLocator () . . . ``` +### `iosIndex` + +This property will set the index for the iOS WebElement. If not provided, it will default use the value from `index` property. + +```java +. . . +private final Locator title = Locator.buildLocator () + .ios (AppiumBy.className ("XCUIElementTypeStaticText")) + // highlight-next-line + .iosIndex (1) + .name ("Title") + .build (); +. . . +``` + ### `filter` This property will set the filter on the WebElement. @@ -68,7 +98,7 @@ private final Locator title = Locator.buildLocator () ### `index` -This property will set the index for the WebElement. +This property will set be tha fallback index property. If the platform based index is not provided, then the framework will fallback to this index property for the WebElement. ```java . . . @@ -116,6 +146,50 @@ private final Locator loginButton = Locator.buildLocator () . . . ``` +### `mac` + +This property will set Mac specific locator. + +```java +. . . +private final Locator loginButton = Locator.buildLocator () + // highlight-next-line + .mac (By.id ("login-button-mac")) + .name ("Login Button") + .build (); +. . . +``` + +### `macIndex` + +This property will set the index for the Mac WebElement. If not provided, it will default use the value from `index` property. + +```java +. . . +private final Locator title = Locator.buildLocator () + .mac (By.tagName ("h3")) + // highlight-next-line + .macIndex (1) + .name ("Title") + .build (); +. . . +``` + +### `webIndex` + +This property will set the web index for the WebElement. If not provided, it will default use the value from `index` property. + +```java +. . . +private final Locator title = Locator.buildLocator () + .web (By.tagName ("h3")) + // highlight-next-line + .webIndex (1) + .name ("Title") + .build (); +. . . +``` + ### `shadowRoot` This property will mark the element as shadow root element when set to `true`.