diff --git a/packages/fastify/.eslintrc.cjs b/packages/fastify/.eslintrc.cjs deleted file mode 100644 index 7de245ad..00000000 --- a/packages/fastify/.eslintrc.cjs +++ /dev/null @@ -1,4 +0,0 @@ -module.exports = { - root: true, - extends: ["@prefabs.tech/eslint-config/fastify"], -}; diff --git a/packages/fastify/__test__/plugin.test.ts b/packages/fastify/__test__/plugin.test.ts index cb3b16dd..05a9c9c8 100644 --- a/packages/fastify/__test__/plugin.test.ts +++ b/packages/fastify/__test__/plugin.test.ts @@ -1,5 +1,5 @@ /* eslint-disable @typescript-eslint/no-unused-vars */ -/* eslint-disable @typescript-eslint/no-empty-function */ + import configPlugin from "@prefabs.tech/fastify-config"; import Fastify, { FastifyInstance, FastifyReply } from "fastify"; import FastifyPlugin from "fastify-plugin"; diff --git a/packages/fastify/eslint.config.mjs b/packages/fastify/eslint.config.mjs new file mode 100644 index 00000000..ce3389c8 --- /dev/null +++ b/packages/fastify/eslint.config.mjs @@ -0,0 +1,14 @@ +import fastifyConfig from "@prefabs.tech/eslint-config/fastify.js"; + +export default [ + ...fastifyConfig, + { + ignores: [ + "build", + "coverage", + "node_modules", + "fastify.d.ts", + "jest.config.cjs", + ], + }, +]; diff --git a/packages/fastify/package.json b/packages/fastify/package.json index cb326657..c0ed55a5 100644 --- a/packages/fastify/package.json +++ b/packages/fastify/package.json @@ -31,63 +31,59 @@ "typecheck": "tsc --noEmit -p tsconfig.json --composite false" }, "dependencies": { - "@graphql-tools/merge": "9.0.19", + "@graphql-tools/merge": "9.1.1", "@prefabs.tech/postgres-migrations": "5.4.3", - "graphql": "16.10.0", + "graphql": "16.11.0", "graphql-tag": "2.12.6", "humps": "2.0.1", "nanoid": "3.3.8", "pg": "8.13.3" }, "devDependencies": { - "@prefabs.tech/eslint-config": "0.2.0", - "@prefabs.tech/fastify-config": "0.89.2", - "@prefabs.tech/fastify-graphql": "0.89.2", - "@prefabs.tech/fastify-mailer": "0.89.2", - "@prefabs.tech/fastify-s3": "0.89.2", - "@prefabs.tech/fastify-slonik": "0.89.2", - "@prefabs.tech/fastify-user": "0.89.2", - "@prefabs.tech/tsconfig": "0.2.0", + "@fastify/cors": "^11.0.1", + "@fastify/formbody": "^8.0.2", + "@prefabs.tech/eslint-config": "0.5.0", + "@prefabs.tech/fastify-config": "0.93.5", + "@prefabs.tech/fastify-error-handler": "0.93.5", + "@prefabs.tech/fastify-graphql": "0.93.5", + "@prefabs.tech/fastify-mailer": "0.93.5", + "@prefabs.tech/fastify-s3": "0.93.5", + "@prefabs.tech/fastify-slonik": "0.93.5", + "@prefabs.tech/fastify-user": "0.93.5", + "@prefabs.tech/tsconfig": "0.5.0", "@types/humps": "2.0.6", - "@types/node": "20.12.2", + "@types/node": "24.10.0", "@types/pg": "8.11.10", - "@typescript-eslint/eslint-plugin": "8.14.0", - "@typescript-eslint/parser": "8.14.0", - "@vitest/coverage-istanbul": "3.0.5", - "eslint": "8.57.1", - "eslint-config-prettier": "9.1.0", - "eslint-import-resolver-alias": "1.1.2", - "eslint-import-resolver-typescript": "3.6.3", - "eslint-plugin-import": "2.31.0", - "eslint-plugin-n": "14.0.0", - "eslint-plugin-prettier": "5.2.1", - "eslint-plugin-promise": "7.1.0", - "eslint-plugin-unicorn": "56.0.1", - "fastify": "5.2.1", + "@vitest/coverage-istanbul": "3.2.4", + "eslint": "9.39.2", + "fastify": "5.6.0", "fastify-plugin": "5.0.1", - "mercurius": "16.1.0", + "mercurius": "16.2.0", "mercurius-auth": "6.0.0", "pg-mem": "3.0.4", - "prettier": "3.3.3", - "slonik": "46.1.0", - "supertokens-node": "14.1.3", - "typescript": "5.5.4", - "vite": "6.1.0", - "vitest": "3.0.5", + "prettier": "3.8.1", + "slonik": "46.8.0", + "supertokens-node": "14.1.4", + "typescript": "5.7.3", + "vite": "6.3.5", + "vitest": "3.2.4", "zod": "3.23.8" }, "peerDependencies": { - "@prefabs.tech/fastify-config": ">=0.89.2", - "@prefabs.tech/fastify-graphql": ">=0.89.2", - "@prefabs.tech/fastify-mailer": ">=0.89.2", - "@prefabs.tech/fastify-s3": ">=0.89.2", - "@prefabs.tech/fastify-slonik": ">=0.89.2", - "@prefabs.tech/fastify-user": ">=0.89.2", - "fastify": ">=5.2.1", + "@fastify/cors": ">=11.0.1", + "@fastify/formbody": ">=8.0.2", + "@prefabs.tech/fastify-config": ">=0.93.0", + "@prefabs.tech/fastify-error-handler": ">=0.93.0", + "@prefabs.tech/fastify-graphql": ">=0.93.0", + "@prefabs.tech/fastify-mailer": ">=0.93.0", + "@prefabs.tech/fastify-s3": ">=0.93.0", + "@prefabs.tech/fastify-slonik": ">=0.93.0", + "@prefabs.tech/fastify-user": ">=0.93.0", + "fastify": ">=5.6.0", "fastify-plugin": ">=5.0.1", - "mercurius": ">=16.1.0", - "slonik": ">=46.1.0", - "supertokens-node": ">=14.1.3", + "mercurius": ">=16.2.0", + "slonik": ">=46.8.0", + "supertokens-node": ">=14.1.4", "zod": ">=3.23.8" }, "engines": { diff --git a/packages/fastify/src/index.ts b/packages/fastify/src/index.ts index 11d96002..1c00353a 100644 --- a/packages/fastify/src/index.ts +++ b/packages/fastify/src/index.ts @@ -1,7 +1,6 @@ import { verifySession } from "supertokens-node/recipe/session/framework/fastify"; import type { SaasConfig, Account } from "./types"; -// eslint-disable-next-line @typescript-eslint/no-unused-vars import type { ApiConfig } from "@prefabs.tech/fastify-config"; import type { Database } from "@prefabs.tech/fastify-slonik"; diff --git a/packages/fastify/src/lib/ensureUserEnabledForAccount.ts b/packages/fastify/src/lib/ensureUserEnabledForAccount.ts new file mode 100644 index 00000000..b5dbb380 --- /dev/null +++ b/packages/fastify/src/lib/ensureUserEnabledForAccount.ts @@ -0,0 +1,47 @@ +import AccountUserService from "../model/accountUsers/service"; + +import type { FastifyReply, FastifyRequest } from "fastify"; +import type { SessionRequest } from "supertokens-node/framework/fastify"; + +/** + * PreHandler that blocks access when the session user is disabled for the + * current account. Use after verifySession() on account-scoped routes. + * Uses request.account?.database ?? undefined so the check runs in public + * or the account schema as appropriate. + */ +const ensureUserEnabledForAccount = async ( + request: FastifyRequest, + reply: FastifyReply, +): Promise => { + const sessionRequest = request as SessionRequest; + + if (!sessionRequest.account || !sessionRequest.user) { + return; + } + + const { config, slonik } = sessionRequest; + const accountId = sessionRequest.account.id; + const userId = sessionRequest.user.id; + const dbSchema = sessionRequest.account.database ?? undefined; + + const service = new AccountUserService(config, slonik, accountId, dbSchema); + + const row = await service.findOne({ + AND: [ + { key: "account_id", operator: "eq", value: accountId }, + { key: "user_id", operator: "eq", value: userId }, + ], + }); + + const disabled = row && (row as { disabled?: boolean }).disabled; + + if (!row || disabled) { + return reply.status(403).send({ + error: "Forbidden", + message: "User is disabled for this account", + statusCode: 403, + }); + } +}; + +export default ensureUserEnabledForAccount; diff --git a/packages/fastify/src/model/accountInvitations/controller.ts b/packages/fastify/src/model/accountInvitations/controller.ts index 5e38396e..619bb2c8 100644 --- a/packages/fastify/src/model/accountInvitations/controller.ts +++ b/packages/fastify/src/model/accountInvitations/controller.ts @@ -1,14 +1,20 @@ import handlers from "./handlers"; +import ensureUserEnabledForAccount from "../../lib/ensureUserEnabledForAccount"; import type { FastifyInstance } from "fastify"; const plugin = async (fastify: FastifyInstance) => { const handlersConfig = fastify.config.saas?.handlers?.accountInvitation; + const accountScopedPreHandler = [ + fastify.verifySession(), + ensureUserEnabledForAccount, + ]; + fastify.get( "/accounts/:accountId/invitations", { - preHandler: fastify.verifySession(), + preHandler: accountScopedPreHandler, }, handlersConfig?.getByAccountId || handlers.getByAccountId, ); @@ -16,7 +22,7 @@ const plugin = async (fastify: FastifyInstance) => { fastify.post( "/accounts/:accountId/invitations", { - preHandler: fastify.verifySession(), + preHandler: accountScopedPreHandler, }, handlersConfig?.create || handlers.create, ); @@ -24,7 +30,7 @@ const plugin = async (fastify: FastifyInstance) => { fastify.post( String.raw`/accounts/:accountId/invitations/:id(^\d+)/resend`, { - preHandler: fastify.verifySession(), + preHandler: accountScopedPreHandler, }, handlersConfig?.resend || handlers.resend, ); @@ -32,7 +38,7 @@ const plugin = async (fastify: FastifyInstance) => { fastify.post( String.raw`/accounts/:accountId/invitations/:id(^\d+)/revoke`, { - preHandler: fastify.verifySession(), + preHandler: accountScopedPreHandler, }, handlersConfig?.revoke || handlers.revoke, ); @@ -52,7 +58,7 @@ const plugin = async (fastify: FastifyInstance) => { fastify.delete( String.raw`/accounts/:accountId/invitations/:id(^\d+)`, { - preHandler: fastify.verifySession(), + preHandler: accountScopedPreHandler, }, handlersConfig?.remove || handlers.remove, ); diff --git a/packages/fastify/src/model/accountTypes/sqlFactory.ts b/packages/fastify/src/model/accountTypes/sqlFactory.ts index 53ba5c72..f853e6f2 100644 --- a/packages/fastify/src/model/accountTypes/sqlFactory.ts +++ b/packages/fastify/src/model/accountTypes/sqlFactory.ts @@ -15,7 +15,6 @@ import getSaasConfig from "../../config"; import type { AccountTypeI18nCreateInput } from "../../types"; import type { FilterInput, SortInput } from "@prefabs.tech/fastify-slonik"; -/* eslint-disable brace-style */ class AccountTypeSqlFactory extends DefaultSqlFactory { getAllSql(fields: string[], sort?: SortInput[]): QuerySqlToken { const identifiers = []; diff --git a/packages/fastify/src/model/accountUsers/controller.ts b/packages/fastify/src/model/accountUsers/controller.ts index 329d3120..1b8ae6cd 100644 --- a/packages/fastify/src/model/accountUsers/controller.ts +++ b/packages/fastify/src/model/accountUsers/controller.ts @@ -1,17 +1,39 @@ import handlers from "./handlers"; +import ensureUserEnabledForAccount from "../../lib/ensureUserEnabledForAccount"; import type { FastifyInstance } from "fastify"; const plugin = async (fastify: FastifyInstance) => { const handlersConfig = fastify.config.saas?.handlers?.accountUser; + const accountScopedPreHandler = [ + fastify.verifySession(), + ensureUserEnabledForAccount, + ]; + fastify.get( String.raw`/accounts/:accountId(^[0-9a-fa-f-]{36}$)/users`, { - preHandler: fastify.verifySession(), + preHandler: accountScopedPreHandler, }, handlersConfig?.getByAccountId || handlers.getByAccountId, ); + + fastify.post( + String.raw`/accounts/:accountId(^[0-9a-fa-f-]{36}$)/users/:userId/disable`, + { + preHandler: accountScopedPreHandler, + }, + handlersConfig?.disableAccountUser || handlers.disableAccountUser, + ); + + fastify.post( + String.raw`/accounts/:accountId(^[0-9a-fa-f-]{36}$)/users/:userId/enable`, + { + preHandler: accountScopedPreHandler, + }, + handlersConfig?.enableAccountUser || handlers.enableAccountUser, + ); }; export default plugin; diff --git a/packages/fastify/src/model/accountUsers/handlers/disableAccountUser.ts b/packages/fastify/src/model/accountUsers/handlers/disableAccountUser.ts new file mode 100644 index 00000000..28af94e0 --- /dev/null +++ b/packages/fastify/src/model/accountUsers/handlers/disableAccountUser.ts @@ -0,0 +1,60 @@ +import Service from "../service"; + +import type { FastifyReply } from "fastify"; +import type { SessionRequest } from "supertokens-node/framework/fastify"; + +const disableAccountUser = async ( + request: SessionRequest, + reply: FastifyReply, +) => { + if (!request.account) { + return reply.status(404).send({ + error: "Not Found", + message: "Account not found", + statusCode: 404, + }); + } + + const requestParameters = request.params as { + accountId: string; + userId: string; + }; + + if (request.account.id !== requestParameters.accountId) { + return reply.status(400).send({ + error: "Bad Request", + message: "Bad Request", + statusCode: 400, + }); + } + + const { config, slonik } = request; + const accountId = request.account.id; + const userId = requestParameters.userId; + const dbSchema = request.account.database ?? undefined; + + const service = new Service(config, slonik, accountId, dbSchema); + + const accountUser = await service.findOne({ + AND: [ + { key: "account_id", operator: "eq", value: accountId }, + { key: "user_id", operator: "eq", value: userId }, + ], + }); + + if (!accountUser) { + return reply.status(404).send({ + error: "Not Found", + message: "Account user not found", + statusCode: 404, + }); + } + + const data = await service.update((accountUser as { id: number }).id, { + disabled: true, + }); + + reply.send(data); +}; + +export default disableAccountUser; diff --git a/packages/fastify/src/model/accountUsers/handlers/enableAccountUser.ts b/packages/fastify/src/model/accountUsers/handlers/enableAccountUser.ts new file mode 100644 index 00000000..def56d4f --- /dev/null +++ b/packages/fastify/src/model/accountUsers/handlers/enableAccountUser.ts @@ -0,0 +1,60 @@ +import Service from "../service"; + +import type { FastifyReply } from "fastify"; +import type { SessionRequest } from "supertokens-node/framework/fastify"; + +const enableAccountUser = async ( + request: SessionRequest, + reply: FastifyReply, +) => { + if (!request.account) { + return reply.status(404).send({ + error: "Not Found", + message: "Account not found", + statusCode: 404, + }); + } + + const requestParameters = request.params as { + accountId: string; + userId: string; + }; + + if (request.account.id !== requestParameters.accountId) { + return reply.status(400).send({ + error: "Bad Request", + message: "Bad Request", + statusCode: 400, + }); + } + + const { config, slonik } = request; + const accountId = request.account.id; + const userId = requestParameters.userId; + const dbSchema = request.account.database ?? undefined; + + const service = new Service(config, slonik, accountId, dbSchema); + + const accountUser = await service.findOne({ + AND: [ + { key: "account_id", operator: "eq", value: accountId }, + { key: "user_id", operator: "eq", value: userId }, + ], + }); + + if (!accountUser) { + return reply.status(404).send({ + error: "Not Found", + message: "Account user not found", + statusCode: 404, + }); + } + + const data = await service.update((accountUser as { id: number }).id, { + disabled: false, + }); + + reply.send(data); +}; + +export default enableAccountUser; diff --git a/packages/fastify/src/model/accountUsers/handlers/index.ts b/packages/fastify/src/model/accountUsers/handlers/index.ts index 51891c5d..682b193c 100644 --- a/packages/fastify/src/model/accountUsers/handlers/index.ts +++ b/packages/fastify/src/model/accountUsers/handlers/index.ts @@ -1,7 +1,11 @@ +import disableAccountUser from "./disableAccountUser"; +import enableAccountUser from "./enableAccountUser"; import getByAccountId from "./getByAccountId"; import list from "./list"; export default { getByAccountId, list, + disableAccountUser, + enableAccountUser, }; diff --git a/packages/fastify/src/model/accountUsers/sqlFactory.ts b/packages/fastify/src/model/accountUsers/sqlFactory.ts index e6c4718d..76a18a95 100644 --- a/packages/fastify/src/model/accountUsers/sqlFactory.ts +++ b/packages/fastify/src/model/accountUsers/sqlFactory.ts @@ -47,6 +47,7 @@ class AccountUserSqlFactory extends AccountAwareSqlFactory { SELECT ${this.getUserTableIdentifier()}.*, ${this.tableIdentifier}.role_id as role, + ${this.tableIdentifier}.disabled, ${this.tableIdentifier}.date_start, ${this.tableIdentifier}.date_end, ${this.tableIdentifier}.created_at, @@ -69,6 +70,7 @@ class AccountUserSqlFactory extends AccountAwareSqlFactory { SELECT ${this.getUserTableIdentifier()}.*, ${this.tableIdentifier}.role_id as role, + ${this.tableIdentifier}.disabled, ${this.tableIdentifier}.date_start, ${this.tableIdentifier}.date_end, ${this.tableIdentifier}.created_at, diff --git a/packages/fastify/src/model/accounts/controller.ts b/packages/fastify/src/model/accounts/controller.ts index 361e4371..e2eddee9 100644 --- a/packages/fastify/src/model/accounts/controller.ts +++ b/packages/fastify/src/model/accounts/controller.ts @@ -1,10 +1,16 @@ import handlers from "./handlers"; +import ensureUserEnabledForAccount from "../../lib/ensureUserEnabledForAccount"; import type { FastifyInstance } from "fastify"; const plugin = async (fastify: FastifyInstance) => { const handlersConfig = fastify.config.saas?.handlers?.account; + const accountScopedPreHandler = [ + fastify.verifySession(), + ensureUserEnabledForAccount, + ]; + fastify.get( "/accounts", { @@ -16,7 +22,7 @@ const plugin = async (fastify: FastifyInstance) => { fastify.get( String.raw`/accounts/:id(^[0-9a-fa-f-]{36}$)`, { - preHandler: fastify.verifySession(), + preHandler: accountScopedPreHandler, }, handlersConfig?.getById || handlers.getById, ); @@ -24,7 +30,7 @@ const plugin = async (fastify: FastifyInstance) => { fastify.delete( String.raw`/accounts/:id(^[0-9a-fa-f-]{36}$)`, { - preHandler: fastify.verifySession(), + preHandler: accountScopedPreHandler, }, handlersConfig?.delete || handlers.delete, ); @@ -40,7 +46,7 @@ const plugin = async (fastify: FastifyInstance) => { fastify.put( String.raw`/accounts/:id(^[0-9a-fa-f-]{36}$)`, { - preHandler: fastify.verifySession(), + preHandler: accountScopedPreHandler, }, handlersConfig?.update || handlers.update, ); @@ -48,7 +54,7 @@ const plugin = async (fastify: FastifyInstance) => { fastify.put( String.raw`/accounts/:id(^[0-9a-fa-f-]{36}$)/users`, { - preHandler: fastify.verifySession(), + preHandler: accountScopedPreHandler, }, handlersConfig?.update || handlers.update, ); diff --git a/packages/fastify/src/model/accounts/handlers/myAccounts.ts b/packages/fastify/src/model/accounts/handlers/myAccounts.ts index 9e69a504..1da4c664 100644 --- a/packages/fastify/src/model/accounts/handlers/myAccounts.ts +++ b/packages/fastify/src/model/accounts/handlers/myAccounts.ts @@ -30,10 +30,14 @@ const myAccounts = async (request: SessionRequest, reply: FastifyReply) => { value: user.id, }); + const enabledAccountUsers = accountUsers.filter( + (accountUser) => !(accountUser as AccountUser).disabled, + ); + const accounts = await accountService.find({ key: "id", operator: "in", - value: accountUsers + value: enabledAccountUsers .map((accountUser) => (accountUser as unknown as AccountUser).accountId) .join(","), }); diff --git a/packages/fastify/src/model/accounts/sqlFactory.ts b/packages/fastify/src/model/accounts/sqlFactory.ts index 8754507a..ce0d5634 100644 --- a/packages/fastify/src/model/accounts/sqlFactory.ts +++ b/packages/fastify/src/model/accounts/sqlFactory.ts @@ -54,7 +54,7 @@ class AccountSqlFactory extends DefaultSqlFactory { JOIN ${accountUsersTable} AS ${this.getAccountUserTableIdentifier} on ${this.tableIdentifier}.id = ${this.getAccountUserTableIdentifier}.account_id ${this.getWhereFragment({ - filterFragment: sql.fragment`${this.getAccountUserTableIdentifier}.user_id = ${userId}`, + filterFragment: sql.fragment`${this.getAccountUserTableIdentifier}.user_id = ${userId} AND ${this.getAccountUserTableIdentifier}.disabled = false`, })}; `; } diff --git a/packages/fastify/src/plugins/migratePlugin.ts b/packages/fastify/src/plugins/migratePlugin.ts index e6319d63..b2747dda 100644 --- a/packages/fastify/src/plugins/migratePlugin.ts +++ b/packages/fastify/src/plugins/migratePlugin.ts @@ -34,7 +34,6 @@ const plugin = async (fastify: FastifyInstance) => { continue; } - /* eslint-disable-next-line unicorn/consistent-destructuring */ fastify.log.info(`Running migrations for account ${account.name}`); await runAccountMigrations( @@ -48,13 +47,11 @@ const plugin = async (fastify: FastifyInstance) => { await client.end(); } else { - /* eslint-disable-next-line unicorn/consistent-destructuring */ fastify.log.warn( `Account migrations path '${migrationsPath}' does not exists.`, ); } } catch (error: unknown) { - /* eslint-disable-next-line unicorn/consistent-destructuring */ fastify.log.error("🔴 SaaS: Failed to run account migrations"); throw error; } diff --git a/packages/fastify/src/service.ts b/packages/fastify/src/service.ts index 10574714..660598b4 100644 --- a/packages/fastify/src/service.ts +++ b/packages/fastify/src/service.ts @@ -6,12 +6,11 @@ import type { AccountAwareService as Service } from "./types/service"; import type { ApiConfig } from "@prefabs.tech/fastify-config"; import type { Database } from "@prefabs.tech/fastify-slonik"; -/* eslint-disable brace-style */ abstract class AccountAwareBaseService< - T, - C extends Record, - U extends Record, - > + T, + C extends Record, + U extends Record, +> extends BaseService implements Service { diff --git a/packages/fastify/src/sqlFactory.ts b/packages/fastify/src/sqlFactory.ts index 863c1e0c..6cd88bf3 100644 --- a/packages/fastify/src/sqlFactory.ts +++ b/packages/fastify/src/sqlFactory.ts @@ -25,10 +25,12 @@ class AccountAwareSqlFactory extends DefaultSqlFactory { const allSchema = this.validationSchema._def.typeName === "ZodObject" - ? (this.validationSchema as z.AnyZodObject).pick(fieldsObject) + ? (this.validationSchema as unknown as z.AnyZodObject).pick( + fieldsObject, + ) : z.any(); - return sql.type(allSchema)` + return sql.type(allSchema as z.ZodTypeAny)` SELECT ${sql.join(identifiers, sql.fragment`, `)} FROM ${this.tableFragment} AS ${this.tableIdentifier} ${this.getWhereFragment()} diff --git a/packages/fastify/src/supertokens/recipes/session/createNewSession.ts b/packages/fastify/src/supertokens/recipes/session/createNewSession.ts index 7d380418..9caa0540 100644 --- a/packages/fastify/src/supertokens/recipes/session/createNewSession.ts +++ b/packages/fastify/src/supertokens/recipes/session/createNewSession.ts @@ -10,7 +10,7 @@ import type { RecipeInterface } from "supertokens-node/recipe/session/types"; const createNewSession = ( originalImplementation: RecipeInterface, - // eslint-disable-next-line @typescript-eslint/no-unused-vars + fastify: FastifyInstance, ): RecipeInterface["createNewSession"] => { return async (input) => { diff --git a/packages/fastify/src/types/accountUser.ts b/packages/fastify/src/types/accountUser.ts index e9e6b31c..55997295 100644 --- a/packages/fastify/src/types/accountUser.ts +++ b/packages/fastify/src/types/accountUser.ts @@ -3,6 +3,7 @@ interface AccountUser { accountId: string; userId: string; roleId: string; + disabled: boolean; } type AccountUserCreateInput = Partial> & { diff --git a/packages/fastify/src/types/config.ts b/packages/fastify/src/types/config.ts index 33bc7a3a..b3ae1339 100644 --- a/packages/fastify/src/types/config.ts +++ b/packages/fastify/src/types/config.ts @@ -56,6 +56,8 @@ interface SaasOptions { accountUser?: { getByAccountId?: typeof accountUserHandlers.getByAccountId; list?: typeof accountUserHandlers.list; + disableAccountUser?: typeof accountUserHandlers.disableAccountUser; + enableAccountUser?: typeof accountUserHandlers.enableAccountUser; }; }; invalid?: { diff --git a/packages/react/.eslintignore b/packages/react/.eslintignore deleted file mode 100644 index 7c8131f7..00000000 --- a/packages/react/.eslintignore +++ /dev/null @@ -1,4 +0,0 @@ -.eslintrc.cjs -coverage -dist -node_modules diff --git a/packages/react/.eslintrc.cjs b/packages/react/.eslintrc.cjs deleted file mode 100644 index 14e5b442..00000000 --- a/packages/react/.eslintrc.cjs +++ /dev/null @@ -1,16 +0,0 @@ -module.exports = { - root: true, - extends: ["@prefabs.tech/eslint-config/react"], - rules: { - "unicorn/filename-case": [ - "error", - { - cases: { - kebabCase: true, - pascalCase: true, - camelCase: true, - }, - }, - ], - }, -}; diff --git a/packages/react/eslint.config.js b/packages/react/eslint.config.js new file mode 100644 index 00000000..54c72230 --- /dev/null +++ b/packages/react/eslint.config.js @@ -0,0 +1,11 @@ +import reactConfig from "@prefabs.tech/eslint-config/react-app.js"; + +export default [ + { ignores: ["coverage", "dist", "node_modules"] }, + ...reactConfig, + { + rules: { + "@typescript-eslint/no-empty-object-type": "off", + }, + }, +]; diff --git a/packages/react/package.json b/packages/react/package.json index 55233917..2c543714 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -2,6 +2,7 @@ "name": "@prefabs.tech/saas-react", "version": "0.28.0", "description": "Saas plugin for react", + "type": "module", "exports": { ".": { "import": "./dist/PrefabsTechSaasReact.es.js", @@ -28,49 +29,41 @@ "typecheck": "tsc --noEmit -p tsconfig.vitest.json --composite false" }, "dependencies": { - "axios": "1.7.9", + "axios": "1.12.0", "zod": "3.23.8" }, "devDependencies": { - "@prefabs.tech/eslint-config": "0.2.0", - "@prefabs.tech/react-config": "0.61.0", - "@prefabs.tech/react-form": "0.61.0", - "@prefabs.tech/react-i18n": "0.61.0", - "@prefabs.tech/react-ui": "0.61.0", - "@types/jsdom": "21.1.6", - "@types/node": "20.14.14", - "@types/react": "18.3.3", - "@typescript-eslint/eslint-plugin": "8.14.0", - "@typescript-eslint/parser": "8.14.0", - "@vitejs/plugin-react": "4.3.4", - "@vitest/coverage-v8": "3.0.6", - "eslint": "8.57.1", - "eslint-config-prettier": "9.1.0", - "eslint-import-resolver-alias": "1.1.2", - "eslint-import-resolver-typescript": "3.6.3", - "eslint-plugin-import": "2.31.0", - "eslint-plugin-prettier": "5.2.1", - "eslint-plugin-unicorn": "56.0.1", - "jsdom": "24.0.0", - "prettier": "3.3.3", + "@prefabs.tech/eslint-config": "0.5.0", + "@prefabs.tech/react-config": "0.70.0", + "@prefabs.tech/react-form": "0.70.0", + "@prefabs.tech/react-i18n": "0.70.0", + "@prefabs.tech/react-ui": "0.70.0", + "@types/jsdom": "21.1.7", + "@types/node": "24.10.0", + "@types/react": "18.3.4", + "@vitejs/plugin-react": "4.5.2", + "@vitest/coverage-v8": "3.2.4", + "eslint": "9.39.2", + "jsdom": "25.0.1", + "prettier": "3.8.1", "primereact": "9.6.1", "react": "18.3.1", "react-dom": "18.3.1", - "react-router-dom": "6.26.1", - "react-toastify": "10.0.6", - "typescript": "5.4.5", - "vite": "6.1.1", - "vitest": "3.0.6" + "react-router-dom": "6.28.0", + "react-toastify": "10.0.5", + "typescript": "5.7.3", + "vite": "6.3.5", + "vitest": "3.2.4" }, "peerDependencies": { - "@prefabs.tech/react-config": ">=0.61.0", - "@prefabs.tech/react-form": ">=0.61.0", - "@prefabs.tech/react-i18n": ">=0.61.0", - "@prefabs.tech/react-ui": ">=0.61.0", + "@prefabs.tech/react-config": ">=0.70.0", + "@prefabs.tech/react-form": ">=0.70.0", + "@prefabs.tech/react-i18n": ">=0.70.0", + "@prefabs.tech/react-ui": ">=0.70.0", "primereact": ">=9.6.1", "react": ">=18.2", "react-dom": ">=18.3.1", - "react-router-dom": ">=6.26.1", + "react-router-dom": ">=6.28.0", "react-toastify": ">=10.0" }, "engines": { diff --git a/packages/react/src/SaasWrapper.tsx b/packages/react/src/SaasWrapper.tsx index 882fd140..22263149 100644 --- a/packages/react/src/SaasWrapper.tsx +++ b/packages/react/src/SaasWrapper.tsx @@ -35,7 +35,7 @@ export const SaasWrapper = ({ .finally(() => { setLoading(false); }); - }, []); + }, [config.apiBaseUrl]); const isAdminApp = checkIsAdminApp(); diff --git a/packages/react/src/api/common/useMutation.ts b/packages/react/src/api/common/UseMutation.ts similarity index 61% rename from packages/react/src/api/common/useMutation.ts rename to packages/react/src/api/common/UseMutation.ts index 99b7dc28..e2bfcd34 100644 --- a/packages/react/src/api/common/useMutation.ts +++ b/packages/react/src/api/common/UseMutation.ts @@ -34,29 +34,32 @@ export const useMutation = ( // esli const { apiBaseUrl } = useConfig(); - const trigger = useCallback((url: string, data?: MutationData) => { - setLoading(true); - - const requestObject = { - url, - method, - data, - withCredentials, - }; - - client(apiBaseUrl) - .request(requestObject) - .then((response) => { - if ("status" in response.data && response.data.status === "ERROR") { - onError && onError(response, requestObject); - } else { - onSuccess && - onSuccess(response.data as MutationResponse, requestObject); - } - }) - .catch((error) => onError && onError(error)) - .finally(() => setLoading(false)); - }, []); + const trigger = useCallback( + (url: string, data?: MutationData) => { + setLoading(true); + + const requestObject = { + url, + method, + data, + withCredentials, + }; + + client(apiBaseUrl) + .request(requestObject) + .then((response) => { + if ("status" in response.data && response.data.status === "ERROR") { + onError && onError(response, requestObject); + } else { + onSuccess && + onSuccess(response.data as MutationResponse, requestObject); + } + }) + .catch((error) => onError && onError(error)) + .finally(() => setLoading(false)); + }, + [apiBaseUrl, method, withCredentials, onError, onSuccess], + ); return { loading, trigger }; }; diff --git a/packages/react/src/api/common/useQuery.ts b/packages/react/src/api/common/UseQuery.ts similarity index 90% rename from packages/react/src/api/common/useQuery.ts rename to packages/react/src/api/common/UseQuery.ts index 53a6b118..81241832 100644 --- a/packages/react/src/api/common/useQuery.ts +++ b/packages/react/src/api/common/UseQuery.ts @@ -1,6 +1,6 @@ import { useCallback, useEffect, useState } from "react"; -import { encodeURIParameter } from "@/api/utils"; +import { encodeURIParameter } from "@/api/utilities"; import { useConfig } from "@/hooks"; import { client } from "../axios"; @@ -52,13 +52,13 @@ export const useQuery = ( onError && onError(error); }) .finally(() => setLoading(false)); - }, []); + }, [apiBaseUrl, parametersString, url, onError, onSuccess]); useEffect(() => { if (!lazy && !skip) { - trigger(); + queueMicrotask(() => trigger()); } - }, [parametersString]); + }, [lazy, skip, trigger]); return { data, loading, error, trigger }; }; diff --git a/packages/react/src/api/common/index.ts b/packages/react/src/api/common/index.ts index 102d4763..97f3f107 100644 --- a/packages/react/src/api/common/index.ts +++ b/packages/react/src/api/common/index.ts @@ -1,2 +1,2 @@ -export * from "./useMutation"; -export * from "./useQuery"; +export * from "./UseMutation"; +export * from "./UseQuery"; diff --git a/packages/react/src/api/index.ts b/packages/react/src/api/index.ts index bca35613..11b62dbd 100644 --- a/packages/react/src/api/index.ts +++ b/packages/react/src/api/index.ts @@ -1,4 +1,4 @@ export * from "./accounts"; export * from "./axios"; export * from "./common"; -export * from "./utils"; +export * from "./utilities"; diff --git a/packages/react/src/api/utils.ts b/packages/react/src/api/utilities.ts similarity index 100% rename from packages/react/src/api/utils.ts rename to packages/react/src/api/utilities.ts diff --git a/packages/react/src/components/my-accounts/Account.tsx b/packages/react/src/components/MyAccounts/Account.tsx similarity index 100% rename from packages/react/src/components/my-accounts/Account.tsx rename to packages/react/src/components/MyAccounts/Account.tsx diff --git a/packages/react/src/components/my-accounts/MyAccounts.tsx b/packages/react/src/components/MyAccounts/MyAccounts.tsx similarity index 100% rename from packages/react/src/components/my-accounts/MyAccounts.tsx rename to packages/react/src/components/MyAccounts/MyAccounts.tsx diff --git a/packages/react/src/components/my-accounts/index.ts b/packages/react/src/components/MyAccounts/index.ts similarity index 100% rename from packages/react/src/components/my-accounts/index.ts rename to packages/react/src/components/MyAccounts/index.ts diff --git a/packages/react/src/components/signup/AccountFields.tsx b/packages/react/src/components/Signup/AccountFields.tsx similarity index 98% rename from packages/react/src/components/signup/AccountFields.tsx rename to packages/react/src/components/Signup/AccountFields.tsx index 9360877e..78e9eca1 100644 --- a/packages/react/src/components/signup/AccountFields.tsx +++ b/packages/react/src/components/Signup/AccountFields.tsx @@ -27,7 +27,7 @@ export const AccountFields = () => { if (!slug) { setValue("useSeparateDatabase", false); } - }, [slug]); + }, [slug, setValue]); const renderEntityFields = () => { if (entity === "both") { diff --git a/packages/react/src/components/signup/AccountSignupForm.tsx b/packages/react/src/components/Signup/AccountSignupForm.tsx similarity index 100% rename from packages/react/src/components/signup/AccountSignupForm.tsx rename to packages/react/src/components/Signup/AccountSignupForm.tsx diff --git a/packages/react/src/components/signup/SignupFormActions.tsx b/packages/react/src/components/Signup/SignupFormActions.tsx similarity index 90% rename from packages/react/src/components/signup/SignupFormActions.tsx rename to packages/react/src/components/Signup/SignupFormActions.tsx index 9e66860a..380716e7 100644 --- a/packages/react/src/components/signup/SignupFormActions.tsx +++ b/packages/react/src/components/Signup/SignupFormActions.tsx @@ -31,10 +31,13 @@ export const SignupFormActions = ({ formState: { errors, submitCount }, } = useFormContext(); - let isChecked = false; - if (termsAndConditionsUrl) { - isChecked = useWatch({ control, name: "termsAndConditions" }); - } + const watched = useWatch({ + control, + name: "termsAndConditions", + defaultValue: false, + }); + + const isChecked = termsAndConditionsUrl ? watched : true; // eslint-disable-next-line @typescript-eslint/no-explicit-any const actions: any = [ diff --git a/packages/react/src/components/signup/UserFields.tsx b/packages/react/src/components/Signup/UserFields.tsx similarity index 98% rename from packages/react/src/components/signup/UserFields.tsx rename to packages/react/src/components/Signup/UserFields.tsx index 731a7524..9775367f 100644 --- a/packages/react/src/components/signup/UserFields.tsx +++ b/packages/react/src/components/Signup/UserFields.tsx @@ -56,6 +56,7 @@ export const UserFields = ({ disableEmailField = false }: Properties) => { href={termsAndConditionsUrl} className="inline-link underlined" target="_blank" + rel="noreferrer" > Terms and Conditions diff --git a/packages/react/src/components/signup/UserSignupForm.tsx b/packages/react/src/components/Signup/UserSignupForm.tsx similarity index 100% rename from packages/react/src/components/signup/UserSignupForm.tsx rename to packages/react/src/components/Signup/UserSignupForm.tsx diff --git a/packages/react/src/components/signup/index.ts b/packages/react/src/components/Signup/index.ts similarity index 100% rename from packages/react/src/components/signup/index.ts rename to packages/react/src/components/Signup/index.ts diff --git a/packages/react/src/components/account/Form/AccountFormFields.tsx b/packages/react/src/components/account/Form/AccountFormFields.tsx index 0752cb58..06f0624f 100644 --- a/packages/react/src/components/account/Form/AccountFormFields.tsx +++ b/packages/react/src/components/account/Form/AccountFormFields.tsx @@ -39,7 +39,7 @@ export const AccountFormFields = ({ setValue("useSeparateDatabase", false); setValue("domain", ""); } - }, [slug]); + }, [slug, setValue]); // eslint-disable-next-line @typescript-eslint/no-explicit-any const formActions: any = [ diff --git a/packages/react/src/components/account/Invitations/InvitationForm.tsx b/packages/react/src/components/account/Invitations/InvitationForm.tsx index e82d8f51..e69d473c 100644 --- a/packages/react/src/components/account/Invitations/InvitationForm.tsx +++ b/packages/react/src/components/account/Invitations/InvitationForm.tsx @@ -81,11 +81,7 @@ export const AccountInvitationForm = ({ } return defaultValues; - }, [ - roles, - additionalInvitationFields?.defaultValues, - expiryDateField?.display, - ]); + }, [roles, additionalInvitationFields, expiryDateField?.display]); // eslint-disable-next-line @typescript-eslint/no-explicit-any const getFormData = (data: any) => { diff --git a/packages/react/src/components/account/Invitations/InvitationsTable.tsx b/packages/react/src/components/account/Invitations/InvitationsTable.tsx index b0cb2e80..7ea853b5 100644 --- a/packages/react/src/components/account/Invitations/InvitationsTable.tsx +++ b/packages/react/src/components/account/Invitations/InvitationsTable.tsx @@ -18,7 +18,7 @@ import { useResendInvitationMutation, useRevokeInvitationMutation, } from "@/hooks/accounts"; -import { DeleteAccountInvitationResponse } from "@/types/account-invitation"; +import { DeleteAccountInvitationResponse } from "@/types/AccountInvitation"; import { AccountInvitationModal } from "./InvitationModal"; @@ -137,10 +137,13 @@ export const AccountInvitationsTable = ({ triggereDelete(accountId, invitation.id); }; - const onInvitationSubmitted = (invitation: AccountInvitation) => { - onInvitationAdded && onInvitationAdded(invitation); - refetch(); - }; + const onInvitationSubmitted = useCallback( + (invitation: AccountInvitation) => { + onInvitationAdded && onInvitationAdded(invitation); + refetch(); + }, + [onInvitationAdded, refetch], + ); const isExpired = (date?: string | Date | number) => { return !!(date && new Date(date) < new Date()); @@ -178,17 +181,33 @@ export const AccountInvitationsTable = ({ const { acceptedAt, revokedAt, expiresAt } = original; const getLabel = () => { - if (acceptedAt) return t("invitations.status.accepted"); - if (revokedAt) return t("invitations.status.revoked"); - if (isExpired(expiresAt)) return t("invitations.status.expired"); + if (acceptedAt) { + return t("invitations.status.accepted"); + } + + if (revokedAt) { + return t("invitations.status.revoked"); + } + + if (isExpired(expiresAt)) { + return t("invitations.status.expired"); + } return t("invitations.status.pending"); }; const getColor = () => { - if (acceptedAt) return "green"; - if (revokedAt) return "red"; - if (isExpired(expiresAt)) return "gray"; + if (acceptedAt) { + return "green"; + } + + if (revokedAt) { + return "red"; + } + + if (isExpired(expiresAt)) { + return "gray"; + } return "yellow"; }; @@ -221,7 +240,16 @@ export const AccountInvitationsTable = ({ ); } - }, [showInviteAction]); + }, [ + showInviteAction, + accountId, + additionalInvitationFields, + invitationButtonOptions, + invitationExpiryDateField, + onInvitationSubmitted, + prepareInvitationData, + roles, + ]); return ( , "data" | "visibleColumns" | "fetchData"> - > { +export interface AccountsTableProperties extends Partial< + Omit, "data" | "visibleColumns" | "fetchData"> +> { fetchAccounts?: (arguments_: TRequestJSON) => void; accounts: Array; visibleColumns?: VisibleColumn[]; diff --git a/packages/react/src/components/index.ts b/packages/react/src/components/index.ts index 050e5fe4..453f9aeb 100644 --- a/packages/react/src/components/index.ts +++ b/packages/react/src/components/index.ts @@ -1,4 +1,4 @@ export * from "./account"; export * from "./accounts"; -export * from "./my-accounts"; -export * from "./signup"; +export * from "./MyAccounts"; +export * from "./Signup"; diff --git a/packages/react/src/contexts/AccountsProvider.tsx b/packages/react/src/contexts/AccountsProvider.tsx index 13b18658..37515af3 100644 --- a/packages/react/src/contexts/AccountsProvider.tsx +++ b/packages/react/src/contexts/AccountsProvider.tsx @@ -62,7 +62,7 @@ const AccountsProvider = ({ config, userId, children }: Properties) => { const isMainApp = useMemo(() => { return host === mainApp?.domain; - }, [host]); + }, [host, mainApp?.domain]); const switchAccount = useCallback( (newAccount: Account | null, options?: SwitchAccountOptions) => { @@ -88,7 +88,7 @@ const AccountsProvider = ({ config, userId, children }: Properties) => { setAccountLoading(false); }, - [setLoading, setActiveAccount], + [accountStorageKey, allowMultipleSessions], ); const computeNewActiveAccount = useCallback( @@ -146,7 +146,14 @@ const AccountsProvider = ({ config, userId, children }: Properties) => { ? newAccounts[previousAccountIndex] : newActiveAccount; }, - [activeAccount, subdomain], + [ + activeAccount, + subdomain, + isMainApp, + autoSelectAccount, + accountStorageKey, + allowMultipleSessions, + ], ); const updateAccounts = useCallback( @@ -179,13 +186,13 @@ const AccountsProvider = ({ config, userId, children }: Properties) => { .finally(() => { setLoading(false); }); - }, [userId]); + }, [apiBaseUrl, updateAccounts]); useEffect(() => { if (userId) { - fetchMyAccounts(); + queueMicrotask(() => fetchMyAccounts()); } - }, [userId]); + }, [userId, fetchMyAccounts]); return ( ( ) => { const { loading, trigger } = useMutation(options); - const callMutation = useCallback((data: AccountCreateInput) => { - const url = `accounts`; + const callMutation = useCallback( + (data: AccountCreateInput) => { + const url = `accounts`; - trigger(url, data); - }, []); + trigger(url, data); + }, + [trigger], + ); return { loading, trigger: callMutation }; }; diff --git a/packages/react/src/hooks/accounts/useEditAccountMutation.ts b/packages/react/src/hooks/accounts/UseEditAccountMutation.ts similarity index 97% rename from packages/react/src/hooks/accounts/useEditAccountMutation.ts rename to packages/react/src/hooks/accounts/UseEditAccountMutation.ts index 202fc524..055e9b97 100644 --- a/packages/react/src/hooks/accounts/useEditAccountMutation.ts +++ b/packages/react/src/hooks/accounts/UseEditAccountMutation.ts @@ -17,7 +17,7 @@ export const useEditAccountMutation = ( trigger(url, data); }, - [], + [trigger], ); return { loading, trigger: callMutation }; diff --git a/packages/react/src/hooks/accounts/useGetAccountQuery.ts b/packages/react/src/hooks/accounts/UseGetAccountQuery.ts similarity index 100% rename from packages/react/src/hooks/accounts/useGetAccountQuery.ts rename to packages/react/src/hooks/accounts/UseGetAccountQuery.ts diff --git a/packages/react/src/hooks/accounts/useGetMyAccountQuery.ts b/packages/react/src/hooks/accounts/UseGetMyAccountQuery.ts similarity index 100% rename from packages/react/src/hooks/accounts/useGetMyAccountQuery.ts rename to packages/react/src/hooks/accounts/UseGetMyAccountQuery.ts diff --git a/packages/react/src/hooks/accounts/index.ts b/packages/react/src/hooks/accounts/index.ts index 8a5f8f04..7cabe0da 100644 --- a/packages/react/src/hooks/accounts/index.ts +++ b/packages/react/src/hooks/accounts/index.ts @@ -1,6 +1,6 @@ -export * from "./useAddAccountMutation"; -export * from "./useEditAccountMutation"; -export * from "./useGetAccountQuery"; -export * from "./useGetMyAccountQuery"; +export * from "./UseAddAccountMutation"; +export * from "./UseEditAccountMutation"; +export * from "./UseGetAccountQuery"; +export * from "./UseGetMyAccountQuery"; export * from "./invitations"; export * from "./users"; diff --git a/packages/react/src/hooks/accounts/invitations/useAddInvitationMutation.ts b/packages/react/src/hooks/accounts/invitations/UseAddInvitationMutation.ts similarity index 97% rename from packages/react/src/hooks/accounts/invitations/useAddInvitationMutation.ts rename to packages/react/src/hooks/accounts/invitations/UseAddInvitationMutation.ts index 91e56f4c..5e9e86b6 100644 --- a/packages/react/src/hooks/accounts/invitations/useAddInvitationMutation.ts +++ b/packages/react/src/hooks/accounts/invitations/UseAddInvitationMutation.ts @@ -19,7 +19,7 @@ export const useAddInvitationMutation = < trigger(url, data); }, - [], + [trigger], ); return { loading, trigger: callMutation }; diff --git a/packages/react/src/hooks/accounts/invitations/useDeleteInvitationMutation.ts b/packages/react/src/hooks/accounts/invitations/UseDeleteInvitationMutation.ts similarity index 97% rename from packages/react/src/hooks/accounts/invitations/useDeleteInvitationMutation.ts rename to packages/react/src/hooks/accounts/invitations/UseDeleteInvitationMutation.ts index eddf28fe..ee118ed5 100644 --- a/packages/react/src/hooks/accounts/invitations/useDeleteInvitationMutation.ts +++ b/packages/react/src/hooks/accounts/invitations/UseDeleteInvitationMutation.ts @@ -19,7 +19,7 @@ export const useDeleteInvitationMutation = < trigger(url); }, - [], + [trigger], ); return { loading, trigger: callMutation }; diff --git a/packages/react/src/hooks/accounts/invitations/useGetInvitationQuery.ts b/packages/react/src/hooks/accounts/invitations/UseGetInvitationQuery.ts similarity index 100% rename from packages/react/src/hooks/accounts/invitations/useGetInvitationQuery.ts rename to packages/react/src/hooks/accounts/invitations/UseGetInvitationQuery.ts diff --git a/packages/react/src/hooks/accounts/invitations/useGetInvitationsQuery.ts b/packages/react/src/hooks/accounts/invitations/UseGetInvitationsQuery.ts similarity index 100% rename from packages/react/src/hooks/accounts/invitations/useGetInvitationsQuery.ts rename to packages/react/src/hooks/accounts/invitations/UseGetInvitationsQuery.ts diff --git a/packages/react/src/hooks/accounts/invitations/useJoinInvitationMutation.ts b/packages/react/src/hooks/accounts/invitations/UseJoinInvitationMutation.ts similarity index 97% rename from packages/react/src/hooks/accounts/invitations/useJoinInvitationMutation.ts rename to packages/react/src/hooks/accounts/invitations/UseJoinInvitationMutation.ts index 00d9b8d7..0619508f 100644 --- a/packages/react/src/hooks/accounts/invitations/useJoinInvitationMutation.ts +++ b/packages/react/src/hooks/accounts/invitations/UseJoinInvitationMutation.ts @@ -17,7 +17,7 @@ export const useJoinInvitationMutation = ( trigger(url); }, - [], + [trigger], ); return { loading, trigger: callMutation }; diff --git a/packages/react/src/hooks/accounts/invitations/useResendInvitationMutation.ts b/packages/react/src/hooks/accounts/invitations/UseResendInvitationMutation.ts similarity index 97% rename from packages/react/src/hooks/accounts/invitations/useResendInvitationMutation.ts rename to packages/react/src/hooks/accounts/invitations/UseResendInvitationMutation.ts index 39c36618..c8b8eb76 100644 --- a/packages/react/src/hooks/accounts/invitations/useResendInvitationMutation.ts +++ b/packages/react/src/hooks/accounts/invitations/UseResendInvitationMutation.ts @@ -16,7 +16,7 @@ export const useResendInvitationMutation = < trigger(url); }, - [], + [trigger], ); return { loading, trigger: callMutation }; diff --git a/packages/react/src/hooks/accounts/invitations/useRevokeInvitationMutation.ts b/packages/react/src/hooks/accounts/invitations/UseRevokeInvitationMutation.ts similarity index 97% rename from packages/react/src/hooks/accounts/invitations/useRevokeInvitationMutation.ts rename to packages/react/src/hooks/accounts/invitations/UseRevokeInvitationMutation.ts index 68520370..007486bc 100644 --- a/packages/react/src/hooks/accounts/invitations/useRevokeInvitationMutation.ts +++ b/packages/react/src/hooks/accounts/invitations/UseRevokeInvitationMutation.ts @@ -16,7 +16,7 @@ export const useRevokeInvitationMutation = < trigger(url); }, - [], + [trigger], ); return { loading, trigger: callMutation }; diff --git a/packages/react/src/hooks/accounts/invitations/useSignupInvitationMutation.ts b/packages/react/src/hooks/accounts/invitations/UseSignupInvitationMutation.ts similarity index 98% rename from packages/react/src/hooks/accounts/invitations/useSignupInvitationMutation.ts rename to packages/react/src/hooks/accounts/invitations/UseSignupInvitationMutation.ts index d00c0d90..0f3b5a33 100644 --- a/packages/react/src/hooks/accounts/invitations/useSignupInvitationMutation.ts +++ b/packages/react/src/hooks/accounts/invitations/UseSignupInvitationMutation.ts @@ -22,7 +22,7 @@ export const useSignupInvitationMutation = < trigger(url, data); }, - [], + [trigger], ); return { loading, trigger: callMutation }; diff --git a/packages/react/src/hooks/accounts/invitations/index.ts b/packages/react/src/hooks/accounts/invitations/index.ts index bd05e3ea..c3f3f2d4 100644 --- a/packages/react/src/hooks/accounts/invitations/index.ts +++ b/packages/react/src/hooks/accounts/invitations/index.ts @@ -1,8 +1,8 @@ -export * from "./useAddInvitationMutation"; -export * from "./useDeleteInvitationMutation"; -export * from "./useGetInvitationQuery"; -export * from "./useGetInvitationsQuery"; -export * from "./useJoinInvitationMutation"; -export * from "./useResendInvitationMutation"; -export * from "./useRevokeInvitationMutation"; -export * from "./useSignupInvitationMutation"; +export * from "./UseAddInvitationMutation"; +export * from "./UseDeleteInvitationMutation"; +export * from "./UseGetInvitationQuery"; +export * from "./UseGetInvitationsQuery"; +export * from "./UseJoinInvitationMutation"; +export * from "./UseResendInvitationMutation"; +export * from "./UseRevokeInvitationMutation"; +export * from "./UseSignupInvitationMutation"; diff --git a/packages/react/src/hooks/accounts/users/useDisableUserMutation.ts b/packages/react/src/hooks/accounts/users/UseDisableUserMutation.ts similarity index 74% rename from packages/react/src/hooks/accounts/users/useDisableUserMutation.ts rename to packages/react/src/hooks/accounts/users/UseDisableUserMutation.ts index 45101670..9d8e1611 100644 --- a/packages/react/src/hooks/accounts/users/useDisableUserMutation.ts +++ b/packages/react/src/hooks/accounts/users/UseDisableUserMutation.ts @@ -13,11 +13,14 @@ export const useDisableUserMutation = < ...options, }); - const callMutation = useCallback((userId: string) => { - const url = `users/${userId}/disable`; + const callMutation = useCallback( + (userId: string) => { + const url = `users/${userId}/disable`; - trigger(url); - }, []); + trigger(url); + }, + [trigger], + ); return { loading, trigger: callMutation }; }; diff --git a/packages/react/src/hooks/accounts/users/useEnableUserMutation.ts b/packages/react/src/hooks/accounts/users/UseEnableUserMutation.ts similarity index 74% rename from packages/react/src/hooks/accounts/users/useEnableUserMutation.ts rename to packages/react/src/hooks/accounts/users/UseEnableUserMutation.ts index d93a599d..cceac320 100644 --- a/packages/react/src/hooks/accounts/users/useEnableUserMutation.ts +++ b/packages/react/src/hooks/accounts/users/UseEnableUserMutation.ts @@ -13,11 +13,14 @@ export const useEnableUserMutation = < ...options, }); - const callMutation = useCallback((userId: string) => { - const url = `users/${userId}/enable`; + const callMutation = useCallback( + (userId: string) => { + const url = `users/${userId}/enable`; - trigger(url); - }, []); + trigger(url); + }, + [trigger], + ); return { loading, trigger: callMutation }; }; diff --git a/packages/react/src/hooks/accounts/users/useGetUsersQuery.ts b/packages/react/src/hooks/accounts/users/UseGetUsersQuery.ts similarity index 100% rename from packages/react/src/hooks/accounts/users/useGetUsersQuery.ts rename to packages/react/src/hooks/accounts/users/UseGetUsersQuery.ts diff --git a/packages/react/src/hooks/accounts/users/index.ts b/packages/react/src/hooks/accounts/users/index.ts index 5f6b140f..96f8c931 100644 --- a/packages/react/src/hooks/accounts/users/index.ts +++ b/packages/react/src/hooks/accounts/users/index.ts @@ -1,3 +1,3 @@ -export * from "./useDisableUserMutation"; -export * from "./useEnableUserMutation"; -export * from "./useGetUsersQuery"; +export * from "./UseDisableUserMutation"; +export * from "./UseEnableUserMutation"; +export * from "./UseGetUsersQuery"; diff --git a/packages/react/src/hooks/index.ts b/packages/react/src/hooks/index.ts index df0ebc3f..39cfe3b7 100644 --- a/packages/react/src/hooks/index.ts +++ b/packages/react/src/hooks/index.ts @@ -1,3 +1,3 @@ -export * from "./useAccounts"; -export * from "./useConfig"; +export * from "./UseAccounts"; +export * from "./UseConfig"; export * from "./accounts"; diff --git a/packages/react/src/routes/getSaasAdminRoutes.tsx b/packages/react/src/routes/GetSaasAdminRoutes.tsx similarity index 100% rename from packages/react/src/routes/getSaasAdminRoutes.tsx rename to packages/react/src/routes/GetSaasAdminRoutes.tsx diff --git a/packages/react/src/routes/getSaasAppRoutes.tsx b/packages/react/src/routes/GetSaasAppRoutes.tsx similarity index 89% rename from packages/react/src/routes/getSaasAppRoutes.tsx rename to packages/react/src/routes/GetSaasAppRoutes.tsx index 86d3855b..e92457ea 100644 --- a/packages/react/src/routes/getSaasAppRoutes.tsx +++ b/packages/react/src/routes/GetSaasAppRoutes.tsx @@ -12,10 +12,15 @@ import { SignupPage, } from "@/views"; -export const getSaasAppRoutes = ( - type: "authenticated" | "unauthenticated" | "public" = "authenticated", - options?: AppRoutesProperties, -) => { +type GetSaasAppRoutesProperties = { + type?: "authenticated" | "unauthenticated" | "public"; + options?: AppRoutesProperties; +}; + +export const GetSaasAppRoutes = ({ + type = "authenticated", + options, +}: GetSaasAppRoutesProperties) => { const { accountSettings, invitationAccept, @@ -91,3 +96,8 @@ export const getSaasAppRoutes = ( ); }; + +export const getSaasAppRoutes = ( + type: "authenticated" | "unauthenticated" | "public" = "authenticated", + options?: AppRoutesProperties, +) => ; diff --git a/packages/react/src/routes/index.ts b/packages/react/src/routes/index.ts index 49ee45a5..1750e268 100644 --- a/packages/react/src/routes/index.ts +++ b/packages/react/src/routes/index.ts @@ -1,2 +1,2 @@ -export * from "./getSaasAdminRoutes"; -export * from "./getSaasAppRoutes"; +export * from "./GetSaasAdminRoutes"; +export * from "./GetSaasAppRoutes"; diff --git a/packages/react/src/types/account-invitation.ts b/packages/react/src/types/AccountInvitation.ts similarity index 100% rename from packages/react/src/types/account-invitation.ts rename to packages/react/src/types/AccountInvitation.ts diff --git a/packages/react/src/types/account-user.ts b/packages/react/src/types/AccountUser.ts similarity index 100% rename from packages/react/src/types/account-user.ts rename to packages/react/src/types/AccountUser.ts diff --git a/packages/react/src/types/index.ts b/packages/react/src/types/index.ts index da69550f..f9d8cacb 100644 --- a/packages/react/src/types/index.ts +++ b/packages/react/src/types/index.ts @@ -1,6 +1,6 @@ export * from "./account"; -export * from "./account-invitation"; -export * from "./account-user"; +export * from "./AccountInvitation"; +export * from "./AccountUser"; export * from "./config"; export * from "./routes"; export * from "./types"; diff --git a/packages/react/src/views/AcceptInvitation/AcceptInvitation.tsx b/packages/react/src/views/AcceptInvitation/AcceptInvitation.tsx index dcf2838b..e9387679 100644 --- a/packages/react/src/views/AcceptInvitation/AcceptInvitation.tsx +++ b/packages/react/src/views/AcceptInvitation/AcceptInvitation.tsx @@ -22,7 +22,7 @@ export const AcceptInvitationPage = () => { if (token) { trigger(); } - }, []); + }, [token, trigger]); if (invitationLoading || !invitation) { return ; diff --git a/packages/react/src/views/AcceptInvitation/JoinInvitation.tsx b/packages/react/src/views/AcceptInvitation/JoinInvitation.tsx index 39194024..1bc88b92 100644 --- a/packages/react/src/views/AcceptInvitation/JoinInvitation.tsx +++ b/packages/react/src/views/AcceptInvitation/JoinInvitation.tsx @@ -1,6 +1,6 @@ import { useTranslation } from "@prefabs.tech/react-i18n"; import { AuthPage, Button } from "@prefabs.tech/react-ui"; -import { useEffect } from "react"; +import { useEffect, useState } from "react"; import { useNavigate, useParams, useSearchParams } from "react-router-dom"; import { toast } from "react-toastify"; @@ -33,6 +33,8 @@ export const JoinInvitationPage = ({ const [searchParameters] = useSearchParams(); const accountId = searchParameters.get("accountId"); + const [now, setNow] = useState(null); + const { data: invitation, loading: invitationLoading, @@ -42,6 +44,10 @@ export const JoinInvitationPage = ({ lazy: true, }); + useEffect(() => { + queueMicrotask(() => setNow(Date.now())); + }, []); + const { loading: acceptLoading, trigger: triggerAcceptInvitation } = useJoinInvitationMutation({ onSuccess: (response, request) => { @@ -64,7 +70,7 @@ export const JoinInvitationPage = ({ if (token) { trigger(); } - }, []); + }, [token, trigger]); const handleSubmit = () => { if (!token) { @@ -86,7 +92,7 @@ export const JoinInvitationPage = ({ if ( invitation?.acceptedAt || invitation?.revokedAt || - (invitation?.expiresAt && invitation.expiresAt < Date.now()) + (now !== null && invitation?.expiresAt && invitation.expiresAt < now) ) { return

{t(`joinInvitation.messages.invalid`)}

; } diff --git a/packages/react/src/views/AcceptInvitation/SignupInvitation.tsx b/packages/react/src/views/AcceptInvitation/SignupInvitation.tsx index 09789702..06b7cb15 100644 --- a/packages/react/src/views/AcceptInvitation/SignupInvitation.tsx +++ b/packages/react/src/views/AcceptInvitation/SignupInvitation.tsx @@ -1,11 +1,11 @@ import { useTranslation } from "@prefabs.tech/react-i18n"; import { AuthPage } from "@prefabs.tech/react-ui"; -import { useEffect } from "react"; +import { useEffect, useState } from "react"; import { useParams, useSearchParams } from "react-router-dom"; import { toast } from "react-toastify"; import { UseMutationRequestObject } from "@/api"; -import { UserSignupForm } from "@/components/signup"; +import { UserSignupForm } from "@/components/Signup"; import { useGetInvitationQuery, useSignupInvitationMutation } from "@/hooks"; import { AcceptInvitationResponse, UserSignupData } from "@/types"; @@ -27,6 +27,8 @@ export const SignupInvitationPage = ({ const [searchParameters] = useSearchParams(); const accountId = searchParameters.get("accountId"); + const [now, setNow] = useState(null); + const { data: invitation, loading: invitationLoading, @@ -36,6 +38,10 @@ export const SignupInvitationPage = ({ lazy: true, }); + useEffect(() => { + queueMicrotask(() => setNow(Date.now())); + }, []); + const { loading: acceptLoading, trigger: triggerAcceptInvitation } = useSignupInvitationMutation({ onSuccess: (response, request) => { @@ -53,7 +59,7 @@ export const SignupInvitationPage = ({ if (token) { trigger(); } - }, []); + }, [token, trigger]); const handleSubmit = (credential: UserSignupData) => { if (!token) { @@ -71,7 +77,7 @@ export const SignupInvitationPage = ({ if ( invitation?.acceptedAt || invitation?.revokedAt || - (invitation?.expiresAt && invitation.expiresAt < Date.now()) + (now !== null && invitation?.expiresAt && invitation.expiresAt < now) ) { return

{t(`signupInvitation.messages.invalid`)}

; } diff --git a/packages/react/src/views/Account/_components/AccountForm.tsx b/packages/react/src/views/Account/_components/AccountForm.tsx index ca222e26..2505af3c 100644 --- a/packages/react/src/views/Account/_components/AccountForm.tsx +++ b/packages/react/src/views/Account/_components/AccountForm.tsx @@ -4,8 +4,10 @@ import { toast } from "react-toastify"; import { AccountForm as AccountFormBase } from "@/components/account"; import { DEFAULT_PATHS } from "@/constants"; -import { useAddAccountMutation } from "@/hooks/accounts/useAddAccountMutation"; -import { useEditAccountMutation } from "@/hooks/accounts/useEditAccountMutation"; +import { + useAddAccountMutation, + useEditAccountMutation, +} from "@/hooks/accounts"; import { Account, AccountCreateInput, AccountUpdateInput } from "@/types"; type Properties = { diff --git a/packages/react/src/views/MyAccounts/index.tsx b/packages/react/src/views/MyAccounts/index.tsx index 4c5b7b89..65612b81 100644 --- a/packages/react/src/views/MyAccounts/index.tsx +++ b/packages/react/src/views/MyAccounts/index.tsx @@ -2,7 +2,7 @@ import { useTranslation } from "@prefabs.tech/react-i18n"; import { Page } from "@prefabs.tech/react-ui"; import { Navigate } from "react-router-dom"; -import { MyAccounts } from "@/components/my-accounts"; +import { MyAccounts } from "@/components/MyAccounts"; import { useAccounts } from "@/hooks"; import { Account } from "@/types"; diff --git a/packages/react/src/views/Signup/index.tsx b/packages/react/src/views/Signup/index.tsx index b9d7c35a..d59dc514 100644 --- a/packages/react/src/views/Signup/index.tsx +++ b/packages/react/src/views/Signup/index.tsx @@ -3,7 +3,7 @@ import { AuthPage } from "@prefabs.tech/react-ui"; import { useState } from "react"; import { signup } from "@/api/accounts"; -import { AccountSignupForm, UserSignupForm } from "@/components/signup"; +import { AccountSignupForm, UserSignupForm } from "@/components/Signup"; import { SIGNUP_PATH_DEFAULT } from "@/constants"; import { useAccounts, useConfig } from "@/hooks"; import { AccountSignupData, User, UserSignupData } from "@/types/account"; diff --git a/packages/vue/.eslintignore b/packages/vue/.eslintignore deleted file mode 100644 index 393c8172..00000000 --- a/packages/vue/.eslintignore +++ /dev/null @@ -1,3 +0,0 @@ -.eslintrc.cjs -dist -node_modules diff --git a/packages/vue/.eslintrc.cjs b/packages/vue/.eslintrc.cjs deleted file mode 100644 index 64a0bd9a..00000000 --- a/packages/vue/.eslintrc.cjs +++ /dev/null @@ -1,7 +0,0 @@ -module.exports = { - extends: ["@prefabs.tech/eslint-config/vue"], - root: true, - rules: { - "prettier/prettier": ["error", { "trailingComma": "es5" }] - } -}; diff --git a/packages/vue/eslint.config.js b/packages/vue/eslint.config.js new file mode 100644 index 00000000..ade92622 --- /dev/null +++ b/packages/vue/eslint.config.js @@ -0,0 +1,10 @@ +import vueConfig from "@prefabs.tech/eslint-config/vue.js"; + +export default [ + ...vueConfig, + { + rules: { + "unicorn/no-empty-file": "off", + }, + }, +]; diff --git a/packages/vue/package.json b/packages/vue/package.json index d1ab5776..30128186 100644 --- a/packages/vue/package.json +++ b/packages/vue/package.json @@ -26,58 +26,48 @@ "dependencies": {}, "devDependencies": { "@iconify/vue": "4.3.0", - "@prefabs.tech/eslint-config": "0.2.0", - "@prefabs.tech/tsconfig": "0.2.0", - "@prefabs.tech/vue3-config": "0.18.0", - "@prefabs.tech/vue3-form": "0.18.0", - "@prefabs.tech/vue3-i18n": "0.18.0", - "@prefabs.tech/vue3-layout": "0.18.0", - "@prefabs.tech/vue3-tanstack-table": "0.18.0", - "@prefabs.tech/vue3-ui": "0.18.0", - "@prefabs.tech/vue3-user": "0.18.0", - "@types/node": "22.13.5", - "@typescript-eslint/eslint-plugin": "8.24.1", - "@typescript-eslint/parser": "8.24.1", + "@prefabs.tech/eslint-config": "0.5.0", + "@prefabs.tech/tsconfig": "0.5.0", + "@prefabs.tech/vue3-config": "0.31.0", + "@prefabs.tech/vue3-form": "0.31.0", + "@prefabs.tech/vue3-i18n": "0.31.0", + "@prefabs.tech/vue3-layout": "0.31.0", + "@prefabs.tech/vue3-tanstack-table": "0.31.0", + "@prefabs.tech/vue3-ui": "0.31.0", + "@prefabs.tech/vue3-user": "0.31.0", + "@types/node": "24.10.0", "@vee-validate/i18n": "4.15.0", "@vee-validate/rules": "4.15.0", "@vee-validate/zod": "4.15.0", - "@vitejs/plugin-vue": "5.2.1", - "@vitejs/plugin-vue-jsx": "4.1.1", + "@vitejs/plugin-vue": "5.2.4", + "@vitejs/plugin-vue-jsx": "4.2.0", "@vitest/coverage-istanbul": "3.0.6", "@vue/test-utils": "2.4.6", "@vueuse/core": "12.7.0", - "axios": "1.7.9", - "eslint": "8.57.1", - "eslint-config-prettier": "9.1.0", - "eslint-import-resolver-alias": "1.1.2", - "eslint-import-resolver-typescript": "3.8.3", - "eslint-plugin-import": "2.31.0", - "eslint-plugin-prettier": "5.2.3", - "eslint-plugin-unicorn": "56.0.1", - "eslint-plugin-vue": "9.32.0", + "axios": "1.12.0", + "eslint": "9.39.2", "mitt": "3.0.1", "pinia": "3.0.1", - "prettier": "3.5.2", - "typescript": "5.5.4", + "prettier": "3.8.1", + "typescript": "4.9.5", "vee-validate": "4.15.0", - "vite": "6.1.1", - "vitest": "3.0.6", + "vite": "6.3.5", + "vitest": "3.2.4", "vue": "3.5.13", - "vue-eslint-parser": "9.4.3", "vue-router": "4.5.0", - "vue-tsc": "1.2.0", + "vue-tsc": "1.0.24", "zod": "3.24.2" }, "peerDependencies": { - "@prefabs.tech/vue3-config": "0.18.0", - "@prefabs.tech/vue3-i18n": "0.18.0", - "@prefabs.tech/vue3-layout": "0.18.0", - "@prefabs.tech/vue3-ui": "0.18.0", - "@prefabs.tech/vue3-user": "0.18.0", + "@prefabs.tech/vue3-config": "0.31.0", + "@prefabs.tech/vue3-i18n": "0.31.0", + "@prefabs.tech/vue3-layout": "0.31.0", + "@prefabs.tech/vue3-ui": "0.31.0", + "@prefabs.tech/vue3-user": "0.31.0", "@vee-validate/i18n": ">=4.7.1", - "@vee-validate/rules": ">=4.7.1", - "@vueuse/core": ">=9.4.0", - "axios": ">=0.26.1", + "@vee-validate/rules": ">=4.15.0", + "@vueuse/core": ">=12.7.0", + "axios": ">=1.12.0", "pinia": ">=2.0", "supertokens-web-js": ">=0.13.0", "supertokens-website": ">=20.0.0", diff --git a/packages/vue/src/api/accountInvitations.ts b/packages/vue/src/api/AccountInvitations.ts similarity index 92% rename from packages/vue/src/api/accountInvitations.ts rename to packages/vue/src/api/AccountInvitations.ts index 850d4e17..05fe2a3c 100644 --- a/packages/vue/src/api/accountInvitations.ts +++ b/packages/vue/src/api/AccountInvitations.ts @@ -10,19 +10,19 @@ import type { GetInvitationResponse, ResendAccountInvitationResponse, RevokeAccountInvitationResponse, -} from "../types/accountInvitation"; +} from "../types/AccountInvitation"; export const addInvitation = async ( accountId: string, data: AccountInvitationCreateInput, - apiBaseUrl: string + apiBaseUrl: string, ): Promise => { const response = await client(apiBaseUrl).post( `/accounts/${accountId}/invitations`, data, { withCredentials: true, - } + }, ); return response.data; @@ -31,13 +31,13 @@ export const addInvitation = async ( export const deleteInvitation = async ( accountId: string, id: number, - apiBaseUrl: string + apiBaseUrl: string, ): Promise => { const response = await client(apiBaseUrl).delete( `/accounts/${accountId}/invitations/${id}`, { withCredentials: true, - } + }, ); return response.data; @@ -46,13 +46,13 @@ export const deleteInvitation = async ( export const getInvitation = async ( accountId: string, id: number, - apiBaseUrl: string + apiBaseUrl: string, ): Promise => { const response = await client(apiBaseUrl).get( `/accounts/${accountId}/invitations/${id}`, { withCredentials: true, - } + }, ); return response.data; @@ -61,14 +61,14 @@ export const getInvitation = async ( export const getInvitations = async ( accountId: string, apiBaseUrl: string, - parameters?: object + parameters?: object, ): Promise => { const response = await client(apiBaseUrl).get( `/accounts/${accountId}/invitations`, { params: parameters, withCredentials: true, - } + }, ); return response.data; @@ -77,14 +77,14 @@ export const getInvitations = async ( export const joinInvitation = async ( token: string, accountId: string | null, - apiBaseUrl: string + apiBaseUrl: string, ): Promise => { const response = await client(apiBaseUrl).post( `/accounts/${accountId}/invitations/join/${token}`, {}, { withCredentials: true, - } + }, ); return response.data; @@ -93,14 +93,14 @@ export const joinInvitation = async ( export const resendInvitation = async ( accountId: string, id: number, - apiBaseUrl: string + apiBaseUrl: string, ): Promise => { const response = await client(apiBaseUrl).post( `/accounts/${accountId}/invitations/${id}/resend`, null, { withCredentials: true, - } + }, ); return response.data; @@ -109,14 +109,14 @@ export const resendInvitation = async ( export const revokeInvitation = async ( accountId: string, id: number, - apiBaseUrl: string + apiBaseUrl: string, ): Promise => { const response = await client(apiBaseUrl).post( `/accounts/${accountId}/invitations/${id}/revoke`, null, { withCredentials: true, - } + }, ); return response.data; @@ -125,7 +125,7 @@ export const revokeInvitation = async ( export const getInvitationByToken = async ( token: string, accountId: string | null | undefined, - apiBaseUrl: string + apiBaseUrl: string, ): Promise => { const url = accountId ? `/accounts/${accountId}/invitations/token/${token}` @@ -148,7 +148,7 @@ export const signupInvitation = async ( surname?: string; }, accountId: string | null | undefined, - apiBaseUrl: string + apiBaseUrl: string, ): Promise => { const url = accountId ? `/accounts/${accountId}/invitations/token/${token}` diff --git a/packages/vue/src/api/accountUsers.ts b/packages/vue/src/api/AccountUsers.ts similarity index 86% rename from packages/vue/src/api/accountUsers.ts rename to packages/vue/src/api/AccountUsers.ts index 82ffa7ae..b16f0380 100644 --- a/packages/vue/src/api/accountUsers.ts +++ b/packages/vue/src/api/AccountUsers.ts @@ -1,20 +1,21 @@ import { client } from "./axios"; + import type { DisableAccountUserResponse, EnableAccountUserResponse, GetAccountUsersResponse, -} from "../types/accountUser"; +} from "../types/AccountUser"; export const disableUser = async ( userId: string, - apiBaseUrl: string + apiBaseUrl: string, ): Promise => { const response = await client(apiBaseUrl).put( `/users/${userId}/disable`, {}, { withCredentials: true, - } + }, ); return response.data; @@ -22,14 +23,14 @@ export const disableUser = async ( export const enableUser = async ( userId: string, - apiBaseUrl: string + apiBaseUrl: string, ): Promise => { const response = await client(apiBaseUrl).put( `/users/${userId}/enable`, {}, { withCredentials: true, - } + }, ); return response.data; @@ -38,14 +39,14 @@ export const enableUser = async ( export const getUsers = async ( accountId: string, apiBaseUrl: string, - params?: object + parameters?: object, ): Promise => { const response = await client(apiBaseUrl).get( `/accounts/${accountId}/users`, { - params, + params: parameters, withCredentials: true, - } + }, ); return response.data; diff --git a/packages/vue/src/api/accounts.ts b/packages/vue/src/api/accounts.ts index 17cd804b..a2904cab 100644 --- a/packages/vue/src/api/accounts.ts +++ b/packages/vue/src/api/accounts.ts @@ -1,13 +1,12 @@ import { client } from "./axios"; import { prepareSignupData } from "../utils/account"; -import type { Account, AccountInput, Accounts } from "../types/account"; +import type { Account, AccountInput, Accounts, User } from "../types/account"; import type { AccountSignupData, UserSignupData } from "../types/user"; -import type { User } from "../types/account"; export const createAccount = async ( data: AccountInput, - apiBaseUrl: string + apiBaseUrl: string, ): Promise => { const response = await client(apiBaseUrl).post("/accounts", data, { withCredentials: true, @@ -18,7 +17,7 @@ export const createAccount = async ( export const deleteAccount = async ( id: string, - apiBaseUrl: string + apiBaseUrl: string, ): Promise => { await client(apiBaseUrl).delete(`/accounts/${id}`, { withCredentials: true, @@ -26,7 +25,7 @@ export const deleteAccount = async ( }; export const doesAccountExist = async ( - apiBaseUrl: string + apiBaseUrl: string, ): Promise => { const response = await client(apiBaseUrl).get(`/`, { withCredentials: true, @@ -37,7 +36,7 @@ export const doesAccountExist = async ( export const getAccount = async ( id: string, - apiBaseUrl: string + apiBaseUrl: string, ): Promise => { const response = await client(apiBaseUrl).get(`/accounts/${id}`, { withCredentials: true, @@ -73,7 +72,7 @@ export const getMyAccounts = async (apiBaseUrl: string): Promise => { export const updateAccount = async ( id: string, data: AccountInput, - apiBaseUrl: string + apiBaseUrl: string, ): Promise => { const response = await client(apiBaseUrl).put(`/accounts/${id}`, data, { withCredentials: true, @@ -84,7 +83,7 @@ export const updateAccount = async ( export const updateMyAccount = async ( data: AccountInput, - apiBaseUrl: string + apiBaseUrl: string, ): Promise => { const response = await client(apiBaseUrl).put("/my-account", data, { withCredentials: true, diff --git a/packages/vue/src/components/AccountSignupForm.vue b/packages/vue/src/components/AccountSignupForm.vue index f61398c6..59b6805c 100644 --- a/packages/vue/src/components/AccountSignupForm.vue +++ b/packages/vue/src/components/AccountSignupForm.vue @@ -88,7 +88,7 @@ import { z } from "zod"; import UserSignupForm from "./UserSignupForm.vue"; import { CONFIG_UI_DEFAULT } from "../constant"; import { useTranslations } from "../index"; -import { createValidationSchemas } from "../views/Accounts/validations/accountValidations"; +import { createValidationSchemas } from "../views/Accounts/validations/AccountValidations"; import type { SaasConfig } from "../types/config"; import type { AccountSignupData, UserSignupData } from "../types/user"; @@ -121,7 +121,7 @@ const { nameSchema, registeredNumberSchema, taxIdSchema, createSlugSchema } = const slugSchema = computed(() => createSlugSchema(saasConfig)); const signupFormUi = computed( - () => saasConfig.ui?.signup?.form ?? CONFIG_UI_DEFAULT.signup.form + () => saasConfig.ui?.signup?.form ?? CONFIG_UI_DEFAULT.signup.form, ); const actionsAlignment = computed(() => signupFormUi.value.actionsAlignment); @@ -188,7 +188,7 @@ const accountSchemaObject = computed(() => { .string() .regex( /^(?!.*-+$)[\da-z][\da-z-]{0,23}([\da-z])?$/, - t("accounts.form.validations.slug.invalid") + t("accounts.form.validations.slug.invalid"), ) .nullable() .optional() @@ -200,7 +200,7 @@ const accountSchemaObject = computed(() => { }); const accountSchema = computed(() => - toFormValidator(z.object(accountSchemaObject.value)) + toFormValidator(z.object(accountSchemaObject.value)), ); const validationSchema = computed(() => accountSchema.value); @@ -231,7 +231,7 @@ watch( formData.value.registeredNumber = ""; formData.value.taxId = ""; } - } + }, ); function onSubmit(validatedData: Record) { diff --git a/packages/vue/src/components/NotFoundMessage.vue b/packages/vue/src/components/NotFoundMessage.vue index 441b38eb..1491fd52 100644 --- a/packages/vue/src/components/NotFoundMessage.vue +++ b/packages/vue/src/components/NotFoundMessage.vue @@ -16,7 +16,7 @@ import { useI18n } from "@prefabs.tech/vue3-i18n"; import { useRouter } from "vue-router"; -import { useGlobalAccountError } from "../composables/useGlobalAccountError"; +import { useGlobalAccountError } from "../composables/UseGlobalAccountError"; import { useTranslations } from "../index"; const router = useRouter(); diff --git a/packages/vue/src/components/SaasAccountsProvider.vue b/packages/vue/src/components/SaasAccountsProvider.vue index b70a137e..1eb7d6cf 100644 --- a/packages/vue/src/components/SaasAccountsProvider.vue +++ b/packages/vue/src/components/SaasAccountsProvider.vue @@ -7,8 +7,8 @@ diff --git a/packages/vue/src/components/SaasWrapper.vue b/packages/vue/src/components/SaasWrapper.vue index ca7ff5c4..8a025c6f 100644 --- a/packages/vue/src/components/SaasWrapper.vue +++ b/packages/vue/src/components/SaasWrapper.vue @@ -41,7 +41,7 @@ import ConfigProvider from "./ConfigProvider.vue"; import NotFoundMessage from "./NotFoundMessage.vue"; import SaasAccountsProvider from "./SaasAccountsProvider.vue"; import { doesAccountExist } from "../api/accounts"; -import { useGlobalAccountError } from "../composables/useGlobalAccountError"; +import { useGlobalAccountError } from "../composables/UseGlobalAccountError"; import { checkIsAdminApp } from "../utils/common"; import type { SaasConfig } from "../types/config"; @@ -57,7 +57,7 @@ const config = inject(Symbol.for("saas.config")); if (!config) { throw new Error( - "SaasConfig not found! Make sure you've installed the SaaS Vue plugin with saasConfig." + "SaasConfig not found! Make sure you've installed the SaaS Vue plugin with saasConfig.", ); } @@ -73,8 +73,8 @@ const isAdminApp = checkIsAdminApp(); onMounted(async () => { try { await doesAccountExist(config.apiBaseUrl); - } catch (err) { - error.value = err as { status?: number }; + } catch (error_) { + error.value = error_ as { status?: number }; } finally { loading.value = false; } diff --git a/packages/vue/src/components/UserSignupForm.vue b/packages/vue/src/components/UserSignupForm.vue index 74f4ba19..ccab5dda 100644 --- a/packages/vue/src/components/UserSignupForm.vue +++ b/packages/vue/src/components/UserSignupForm.vue @@ -98,7 +98,7 @@ const termsAndConditionsConfig = config.user?.features?.signUp?.termsAndConditions; const signupFormUi = computed( - () => saasConfig.ui?.signup?.form ?? CONFIG_UI_DEFAULT.signup.form + () => saasConfig.ui?.signup?.form ?? CONFIG_UI_DEFAULT.signup.form, ); const actionsAlignment = computed(() => signupFormUi.value.actionsAlignment); @@ -133,21 +133,21 @@ let fieldSchema: Record = { invalid: t("account.signup.validations.email.invalid"), required: t("account.signup.validations.email.required"), }, - config?.user?.options?.email + config?.user?.options?.email, ), password: passwordSchema( { required: t("account.signup.validations.password.required"), weak: t("account.signup.validations.password.weak"), }, - config?.user?.options?.password + config?.user?.options?.password, ), confirmPassword: passwordSchema( { required: t("account.signup.validations.password.required"), weak: t("account.signup.validations.password.weak"), }, - { minLength: 0 } + { minLength: 0 }, ), }; @@ -159,8 +159,8 @@ const validationSchema = toFormValidator( { message: t("account.signup.validations.confirmPassword.match"), path: ["confirmPassword"], - } - ) + }, + ), ); const formActions = computed(() => { @@ -176,7 +176,7 @@ const formActions = computed(() => { // Merge provided actions with default submit action // If a submit action is provided, use it; otherwise append default submit const hasSubmit = props.actions.some( - (action) => action.id === "submit" || action.type === "submit" + (action) => action.id === "submit" || action.type === "submit", ); if (hasSubmit) { @@ -196,7 +196,7 @@ watch( formData.value.email = newEmail; } }, - { immediate: true } + { immediate: true }, ); function handleCancel() { diff --git a/packages/vue/src/components/accounts/AccountSwitcher.vue b/packages/vue/src/components/accounts/AccountSwitcher.vue index d39a43e5..278b930d 100644 --- a/packages/vue/src/components/accounts/AccountSwitcher.vue +++ b/packages/vue/src/components/accounts/AccountSwitcher.vue @@ -58,7 +58,7 @@ import { onClickOutside } from "@vueuse/core"; import { defineProps, defineEmits, ref, computed } from "vue"; import { useTranslations } from "../../index"; -import { useMyAccountsStore } from "../../stores/myAccounts"; +import { useMyAccountsStore } from "../../stores/MyAccounts"; import type { Account } from "../../types/account"; diff --git a/packages/vue/src/composables/useConfig.ts b/packages/vue/src/composables/UseConfig.ts similarity index 100% rename from packages/vue/src/composables/useConfig.ts rename to packages/vue/src/composables/UseConfig.ts diff --git a/packages/vue/src/composables/useGlobalAccountError.ts b/packages/vue/src/composables/UseGlobalAccountError.ts similarity index 56% rename from packages/vue/src/composables/useGlobalAccountError.ts rename to packages/vue/src/composables/UseGlobalAccountError.ts index af0f119d..e6bfa0db 100644 --- a/packages/vue/src/composables/useGlobalAccountError.ts +++ b/packages/vue/src/composables/UseGlobalAccountError.ts @@ -2,15 +2,23 @@ import { ref } from "vue"; const globalShowAccountError = ref(false); +type ErrorWithResponse = { + response?: { status?: number; data?: { error?: { message?: string } } }; +}; + export function useGlobalAccountError() { - const checkForAccountError = (error: any) => { + const checkForAccountError = (error: unknown) => { + const err = error as ErrorWithResponse; + if ( - error?.response?.status === 404 && - error?.response?.data?.error?.message === "Account not found" + err?.response?.status === 404 && + err?.response?.data?.error?.message === "Account not found" ) { globalShowAccountError.value = true; + return true; } + return false; }; diff --git a/packages/vue/src/composables/useMyAccounts.ts b/packages/vue/src/composables/UseMyAccounts.ts similarity index 86% rename from packages/vue/src/composables/useMyAccounts.ts rename to packages/vue/src/composables/UseMyAccounts.ts index 18561dcd..a354e4a6 100644 --- a/packages/vue/src/composables/useMyAccounts.ts +++ b/packages/vue/src/composables/UseMyAccounts.ts @@ -1,5 +1,7 @@ import { inject } from "vue"; -import { useMyAccountsStore } from "../stores/myAccounts"; + +import { useMyAccountsStore } from "../stores/MyAccounts"; + import type { SaasConfig } from "../types/config"; export const useMyAccounts = (config?: SaasConfig) => { @@ -11,13 +13,13 @@ export const useMyAccounts = (config?: SaasConfig) => { if (!saasConfig) { saasConfig = inject( Symbol.for("saas.config"), - undefined + undefined, ); } if (!saasConfig && !myAccountsStore.meta.mainAppSubdomain) { throw new Error( - "SaasConfig is required! Make sure you've installed the Saas plugin or passed config directly." + "SaasConfig is required! Make sure you've installed the Saas plugin or passed config directly.", ); } diff --git a/packages/vue/src/index.ts b/packages/vue/src/index.ts index a278d46d..77ca96e6 100644 --- a/packages/vue/src/index.ts +++ b/packages/vue/src/index.ts @@ -42,7 +42,7 @@ const plugin: Plugin = { const useTranslations = (): LocaleMessages => { return inject>( __saasVueTranslations, - defaultMessages + defaultMessages, ); }; @@ -52,15 +52,15 @@ export * from "./routes"; export * from "./types/routes"; // Account management -export { default as useMyAccountsStore } from "./stores/myAccounts"; -export { useMyAccounts } from "./composables/useMyAccounts"; +export { default as useMyAccountsStore } from "./stores/MyAccounts"; +export { useMyAccounts } from "./composables/UseMyAccounts"; export { default as AccountSwitcher } from "./components/accounts/AccountSwitcher.vue"; export { default as SaasAccountsProvider } from "./components/SaasAccountsProvider.vue"; export { default as SaasWrapper } from "./components/SaasWrapper.vue"; export { default as ConfigProvider } from "./components/ConfigProvider.vue"; // Error handling -export { useGlobalAccountError } from "./composables/useGlobalAccountError"; +export { useGlobalAccountError } from "./composables/UseGlobalAccountError"; export { default as NotFoundMessage } from "./components/NotFoundMessage.vue"; // Views diff --git a/packages/vue/src/routes/getSaasAdminRoutes.ts b/packages/vue/src/routes/GetSaasAdminRoutes.ts similarity index 94% rename from packages/vue/src/routes/getSaasAdminRoutes.ts rename to packages/vue/src/routes/GetSaasAdminRoutes.ts index 162a31f6..7e3aa91e 100644 --- a/packages/vue/src/routes/getSaasAdminRoutes.ts +++ b/packages/vue/src/routes/GetSaasAdminRoutes.ts @@ -47,7 +47,7 @@ const _adminRoutes = { const getRoute = ( defaultRoute: RouteRecordRaw, - override?: RouteOverwrite + override?: RouteOverwrite, ): RouteRecordRaw => { return { ...defaultRoute, @@ -61,7 +61,7 @@ const getRoute = ( export const getSaasAdminRoutes = ( type: "authenticated" | "unauthenticated" | "public" = "authenticated", - options?: AdminRoutesProperties + options?: AdminRoutesProperties, ): RouteRecordRaw[] => { const { accounts, accountsAdd, accountsEdit, accountsView } = options?.routes || {}; @@ -87,10 +87,10 @@ export const getSaasAdminRoutes = ( export const addSaasAdminRoutes = ( router: Router, type: "authenticated" | "unauthenticated" | "public" = "authenticated", - options?: AdminRoutesProperties + options?: AdminRoutesProperties, ): void => { const routes = getSaasAdminRoutes(type, options); - routes.forEach((route) => { + for (const route of routes) { router.addRoute(route); - }); + } }; diff --git a/packages/vue/src/routes/getSaasAppRoutes.ts b/packages/vue/src/routes/GetSaasAppRoutes.ts similarity index 96% rename from packages/vue/src/routes/getSaasAppRoutes.ts rename to packages/vue/src/routes/GetSaasAppRoutes.ts index e58b19c7..b016402c 100644 --- a/packages/vue/src/routes/getSaasAppRoutes.ts +++ b/packages/vue/src/routes/GetSaasAppRoutes.ts @@ -71,7 +71,7 @@ const _appRoutes = { const getRoute = ( defaultRoute: RouteRecordRaw, - override?: RouteOverwrite + override?: RouteOverwrite, ): RouteRecordRaw => { return { ...defaultRoute, @@ -85,7 +85,7 @@ const getRoute = ( export const getSaasAppRoutes = ( type: "authenticated" | "unauthenticated" | "public" = "authenticated", - options?: AppRoutesProperties + options?: AppRoutesProperties, ): RouteRecordRaw[] => { const { accountSettings, @@ -123,10 +123,10 @@ export const getSaasAppRoutes = ( export const addSaasAppRoutes = ( router: Router, type: "authenticated" | "unauthenticated" | "public" = "authenticated", - options?: AppRoutesProperties + options?: AppRoutesProperties, ): void => { const routes = getSaasAppRoutes(type, options); - routes.forEach((route) => { + for (const route of routes) { router.addRoute(route); - }); + } }; diff --git a/packages/vue/src/routes/index.ts b/packages/vue/src/routes/index.ts index 49ee45a5..1750e268 100644 --- a/packages/vue/src/routes/index.ts +++ b/packages/vue/src/routes/index.ts @@ -1,2 +1,2 @@ -export * from "./getSaasAdminRoutes"; -export * from "./getSaasAppRoutes"; +export * from "./GetSaasAdminRoutes"; +export * from "./GetSaasAppRoutes"; diff --git a/packages/vue/src/stores/accountInvitations.ts b/packages/vue/src/stores/AccountInvitations.ts similarity index 81% rename from packages/vue/src/stores/accountInvitations.ts rename to packages/vue/src/stores/AccountInvitations.ts index 996086ca..792a9310 100644 --- a/packages/vue/src/stores/accountInvitations.ts +++ b/packages/vue/src/stores/AccountInvitations.ts @@ -10,9 +10,7 @@ import { resendInvitation, revokeInvitation, signupInvitation, -} from "../api/accountInvitations"; - -import type { AccountInvitationCreateInput } from "../types/accountInvitation"; +} from "../api/AccountInvitations"; const useInvitationStore = defineStore("invitation", () => { return { diff --git a/packages/vue/src/stores/accountUsers.ts b/packages/vue/src/stores/AccountUsers.ts similarity index 75% rename from packages/vue/src/stores/accountUsers.ts rename to packages/vue/src/stores/AccountUsers.ts index f3ae4f5f..b74a856f 100644 --- a/packages/vue/src/stores/accountUsers.ts +++ b/packages/vue/src/stores/AccountUsers.ts @@ -1,6 +1,6 @@ import { defineStore } from "pinia"; -import { getUsers, enableUser, disableUser } from "../api/accountUsers"; +import { getUsers, enableUser, disableUser } from "../api/AccountUsers"; const useUsersStore = defineStore("users", () => { return { diff --git a/packages/vue/src/stores/myAccounts.ts b/packages/vue/src/stores/MyAccounts.ts similarity index 95% rename from packages/vue/src/stores/myAccounts.ts rename to packages/vue/src/stores/MyAccounts.ts index 02ddf2f9..2d7f4671 100644 --- a/packages/vue/src/stores/myAccounts.ts +++ b/packages/vue/src/stores/MyAccounts.ts @@ -73,7 +73,7 @@ export const useMyAccountsStore = defineStore("myAccounts", () => { const switchAccount = ( newAccount: Account | null, - options: { clearState?: boolean } = {} + options: { clearState?: boolean } = {}, ) => { const { clearState = true } = options; accountLoading.value = true; @@ -110,7 +110,7 @@ export const useMyAccountsStore = defineStore("myAccounts", () => { // For non-main apps, find account by subdomain (like React implementation) if (!isMainApp) { const accountBySubdomain = accountsList.find( - (account) => account.slug === subdomain + (account) => account.slug === subdomain, ); if (!accountBySubdomain) { throw new Error("Account not found for user"); @@ -136,7 +136,7 @@ export const useMyAccountsStore = defineStore("myAccounts", () => { } const savedAccount = accountsList.find( - (account) => account.id === savedAccountId + (account) => account.id === savedAccountId, ); return savedAccount || defaultAccount; @@ -144,7 +144,7 @@ export const useMyAccountsStore = defineStore("myAccounts", () => { // If there's already an active account, try to preserve it const previousAccount = accountsList.find( - (account) => account.id === activeAccount.value?.id + (account) => account.id === activeAccount.value?.id, ); return previousAccount || defaultAccount; @@ -173,9 +173,9 @@ export const useMyAccountsStore = defineStore("myAccounts", () => { try { const accountsList = await getMyAccounts(config.value.apiBaseUrl); updateAccounts(accountsList); - } catch (err) { + } catch (error_) { error.value = true; - throw err; + throw error_; } finally { loading.value = false; } @@ -205,7 +205,7 @@ export const useMyAccountsStore = defineStore("myAccounts", () => { // Update in accounts list if (accounts.value) { const index = accounts.value.findIndex( - (acc) => acc.id === updatedAccount.id + (accumulator) => accumulator.id === updatedAccount.id, ); if (index !== -1) { accounts.value[index] = updatedAccount; diff --git a/packages/vue/src/stores/accounts.ts b/packages/vue/src/stores/accounts.ts index cf94bfec..12690cf5 100644 --- a/packages/vue/src/stores/accounts.ts +++ b/packages/vue/src/stores/accounts.ts @@ -8,8 +8,6 @@ import { updateAccount, } from "../api/accounts"; -import type { Account, AccountInput } from "../types/account"; - const useAccountsStore = defineStore("accounts", () => { return { createAccount, diff --git a/packages/vue/src/types/accountInvitation.ts b/packages/vue/src/types/AccountInvitation.ts similarity index 100% rename from packages/vue/src/types/accountInvitation.ts rename to packages/vue/src/types/AccountInvitation.ts diff --git a/packages/vue/src/types/accountUser.ts b/packages/vue/src/types/AccountUser.ts similarity index 100% rename from packages/vue/src/types/accountUser.ts rename to packages/vue/src/types/AccountUser.ts diff --git a/packages/vue/src/types/plugin.ts b/packages/vue/src/types/plugin.ts index d5e867e2..bb0f9a17 100644 --- a/packages/vue/src/types/plugin.ts +++ b/packages/vue/src/types/plugin.ts @@ -1,10 +1,10 @@ +import type { SaasConfig } from "./config"; import type { AppConfig } from "@prefabs.tech/vue3-config"; -import type { DzangolabVueUserConfig } from "@prefabs.tech/vue3-user"; import type { LocaleMessages, VueMessageType } from "@prefabs.tech/vue3-i18n"; +import type { DzangolabVueUserConfig } from "@prefabs.tech/vue3-user"; import type { Pinia } from "pinia"; import type { Component } from "vue"; import type { Router } from "vue-router"; -import type { SaasConfig } from "./config"; export type MessageType = "error" | "success"; diff --git a/packages/vue/src/types/routes.ts b/packages/vue/src/types/routes.ts index 18df6140..6d5c632b 100644 --- a/packages/vue/src/types/routes.ts +++ b/packages/vue/src/types/routes.ts @@ -4,7 +4,7 @@ export type RouteOverwrite = { disabled?: boolean; component?: RouteComponent; path?: string; - meta?: Record; + meta?: Record; }; export type AdminRouteOverwrites = { diff --git a/packages/vue/src/utils/account.ts b/packages/vue/src/utils/account.ts index 6231117e..55595d3a 100644 --- a/packages/vue/src/utils/account.ts +++ b/packages/vue/src/utils/account.ts @@ -74,4 +74,3 @@ export const prepareSignupData = ({ ], }; }; - diff --git a/packages/vue/src/utils/config.ts b/packages/vue/src/utils/config.ts index 642d6796..383680d0 100644 --- a/packages/vue/src/utils/config.ts +++ b/packages/vue/src/utils/config.ts @@ -7,19 +7,19 @@ export const prepareUiConfig = (ui: SaasConfig["ui"] = {}) => { account: { form: { ...CONFIG_UI_DEFAULT.account.form, - ...(ui?.account?.form || {}), + ...ui?.account?.form, }, }, invitation: { form: { ...CONFIG_UI_DEFAULT.invitation.form, - ...(ui?.invitation?.form || {}), + ...ui?.invitation?.form, }, }, signup: { form: { ...CONFIG_UI_DEFAULT.signup.form, - ...(ui?.signup?.form || {}), + ...ui?.signup?.form, }, }, }; diff --git a/packages/vue/src/views/AcceptInvitation/AcceptInvitation.vue b/packages/vue/src/views/AcceptInvitation/AcceptInvitation.vue index 94738588..1d4e63b0 100644 --- a/packages/vue/src/views/AcceptInvitation/AcceptInvitation.vue +++ b/packages/vue/src/views/AcceptInvitation/AcceptInvitation.vue @@ -11,9 +11,9 @@ import { ref, onMounted } from "vue"; import { useRoute, useRouter } from "vue-router"; import { REDIRECT_AFTER_LOGIN_KEY } from "../../constant"; -import useInvitationStore from "../../stores/accountInvitations"; +import useInvitationStore from "../../stores/AccountInvitations"; -import type { AccountInvitation } from "../../types/accountInvitation"; +import type { AccountInvitation } from "../../types/AccountInvitation"; import type { AppConfig } from "@prefabs.tech/vue3-config"; const config = useConfig() as AppConfig; @@ -41,7 +41,7 @@ async function fetchInvitation() { const response = await getInvitationByToken( token, accountId || null, - config.apiBaseUrl + config.apiBaseUrl, ); invitation.value = response; diff --git a/packages/vue/src/views/AcceptInvitation/JoinInvitation.vue b/packages/vue/src/views/AcceptInvitation/JoinInvitation.vue index 5a6c28bc..559a9c3c 100644 --- a/packages/vue/src/views/AcceptInvitation/JoinInvitation.vue +++ b/packages/vue/src/views/AcceptInvitation/JoinInvitation.vue @@ -50,9 +50,9 @@ import { useRoute, useRouter } from "vue-router"; import { REDIRECT_AFTER_LOGIN_KEY } from "../../constant"; import { useTranslations } from "../../index"; -import useInvitationStore from "../../stores/accountInvitations"; +import useInvitationStore from "../../stores/AccountInvitations"; -import type { AccountInvitation } from "../../types/accountInvitation"; +import type { AccountInvitation } from "../../types/AccountInvitation"; import type { SaasEventHandlers, EventMessage } from "../../types/plugin"; import type { AppConfig } from "@prefabs.tech/vue3-config"; @@ -76,7 +76,7 @@ const { t } = useI18n({ messages }); const eventHandlers = inject( Symbol.for("saas.eventHandlers"), - { notification: undefined } + { notification: undefined }, ); const token = route.params.token as string; @@ -111,13 +111,13 @@ async function fetchInvitation() { const response = await getInvitationByToken( token, accountId || null, - config.apiBaseUrl + config.apiBaseUrl, ); invitation.value = response; - } catch (err) { + } catch (error_) { // eslint-disable-next-line no-console - console.error("Failed to fetch invitation:", err); + console.error("Failed to fetch invitation:", error_); error.value = true; } finally { @@ -146,9 +146,9 @@ async function handleSubmit() { // Navigate to home or dashboard router.push("/"); - } catch (err) { + } catch (error_) { // eslint-disable-next-line no-console - console.error("Failed to join invitation:", err); + console.error("Failed to join invitation:", error_); const message: EventMessage = { type: "error", diff --git a/packages/vue/src/views/AcceptInvitation/SignupInvitation.vue b/packages/vue/src/views/AcceptInvitation/SignupInvitation.vue index dba16e00..b34ee754 100644 --- a/packages/vue/src/views/AcceptInvitation/SignupInvitation.vue +++ b/packages/vue/src/views/AcceptInvitation/SignupInvitation.vue @@ -32,9 +32,9 @@ import { useRoute, useRouter } from "vue-router"; import UserSignupForm from "../../components/UserSignupForm.vue"; import { useTranslations } from "../../index"; -import useInvitationStore from "../../stores/accountInvitations"; +import useInvitationStore from "../../stores/AccountInvitations"; -import type { AccountInvitation } from "../../types/accountInvitation"; +import type { AccountInvitation } from "../../types/AccountInvitation"; import type { SaasEventHandlers } from "../../types/plugin"; import type { UserSignupData } from "../../types/user"; import type { AppConfig } from "@prefabs.tech/vue3-config"; @@ -93,7 +93,7 @@ async function fetchInvitation() { const response = await getInvitationByToken( token, accountId || null, - config.apiBaseUrl + config.apiBaseUrl, ); invitation.value = response; } catch { @@ -114,7 +114,7 @@ async function handleSubmit(userData: UserSignupData) { token, userData, accountId || null, - config.apiBaseUrl + config.apiBaseUrl, ); if (eventHandlers?.notification) { diff --git a/packages/vue/src/views/Accounts/AccountSettings.vue b/packages/vue/src/views/Accounts/AccountSettings.vue index 4e7799bf..3f8503dc 100644 --- a/packages/vue/src/views/Accounts/AccountSettings.vue +++ b/packages/vue/src/views/Accounts/AccountSettings.vue @@ -24,7 +24,7 @@ typeof defaultTabList) | typeof defaultTabList>( __saasAccountTabs, - defaultTabList + defaultTabList, ); const processedTabs = computed(() => { @@ -118,6 +118,7 @@ async function prepareComponent() { if (checkForAccountError(error)) { return; } + // eslint-disable-next-line no-console console.error("Failed to fetch account:", error); } finally { loading.value = false; diff --git a/packages/vue/src/views/Accounts/Add.vue b/packages/vue/src/views/Accounts/Add.vue index fac7e1ea..2d322825 100644 --- a/packages/vue/src/views/Accounts/Add.vue +++ b/packages/vue/src/views/Accounts/Add.vue @@ -21,7 +21,7 @@ const router = useRouter(); const eventHandlers = inject( Symbol.for("saas.eventHandlers"), - { notification: undefined } + { notification: undefined }, ); function onAccountCreated(account: Account) { diff --git a/packages/vue/src/views/Accounts/Edit.vue b/packages/vue/src/views/Accounts/Edit.vue index 8ed93e0d..c766d1cf 100644 --- a/packages/vue/src/views/Accounts/Edit.vue +++ b/packages/vue/src/views/Accounts/Edit.vue @@ -37,7 +37,7 @@ const account = ref({} as Account); const eventHandlers = inject( Symbol.for("saas.eventHandlers"), - { notification: undefined } + { notification: undefined }, ); onMounted(async () => { diff --git a/packages/vue/src/views/Accounts/Index.vue b/packages/vue/src/views/Accounts/Index.vue index e3f595c4..28755c69 100644 --- a/packages/vue/src/views/Accounts/Index.vue +++ b/packages/vue/src/views/Accounts/Index.vue @@ -138,9 +138,9 @@ const defaultColumns: TableColumnDefinition[] = [ router.push(`/accounts/${original.id}`); }, }, - original.name + original.name, ), - ] + ], ), }, ]; @@ -171,7 +171,7 @@ const actionMenuData = [ const eventHandlers = inject( Symbol.for("saas.eventHandlers"), - { notification: undefined } + { notification: undefined }, ); onMounted(async () => { @@ -185,12 +185,14 @@ async function fetchAccounts() { function onActionSelect(rowData: { action: string; data: Account }) { switch (rowData.action) { - case "editCustomer": + case "editCustomer": { onEditCustomer(rowData.data); break; - case "deleteCustomer": + } + case "deleteCustomer": { onDeleteCustomer(rowData.data); break; + } } } diff --git a/packages/vue/src/views/Accounts/MyAccounts.vue b/packages/vue/src/views/Accounts/MyAccounts.vue index 4d280edc..c876f1de 100644 --- a/packages/vue/src/views/Accounts/MyAccounts.vue +++ b/packages/vue/src/views/Accounts/MyAccounts.vue @@ -24,7 +24,7 @@ import { computed } from "vue"; import { useTranslations } from "../../index"; import AccountCard from "./_components/AccountCard.vue"; -import { useMyAccountsStore } from "../../stores/myAccounts"; +import { useMyAccountsStore } from "../../stores/MyAccounts"; import type { Account } from "../../types/account"; diff --git a/packages/vue/src/views/Accounts/View.vue b/packages/vue/src/views/Accounts/View.vue index 853f8d12..24d599d5 100644 --- a/packages/vue/src/views/Accounts/View.vue +++ b/packages/vue/src/views/Accounts/View.vue @@ -4,7 +4,7 @@ typeof defaultTabList) | typeof defaultTabList>( __saasAccountTabs, - defaultTabList + defaultTabList, ); const processedTabs = computed(() => { diff --git a/packages/vue/src/views/Accounts/_components/AccountCard.vue b/packages/vue/src/views/Accounts/_components/AccountCard.vue index a4ea0255..81ac9c16 100644 --- a/packages/vue/src/views/Accounts/_components/AccountCard.vue +++ b/packages/vue/src/views/Accounts/_components/AccountCard.vue @@ -6,7 +6,7 @@ { const slugSchema = computed(() => createSlugSchema(saasConfig)); const accountFormUi = computed( - () => saasConfig.ui?.account?.form ?? CONFIG_UI_DEFAULT.account.form + () => saasConfig.ui?.account?.form ?? CONFIG_UI_DEFAULT.account.form, ); const actionsAlignment = computed(() => accountFormUi.value.actionsAlignment); @@ -174,7 +174,7 @@ const onSubmit = async () => { await updateAccount( props.account.id, updateDataPayload, - config.apiBaseUrl + config.apiBaseUrl, ).then((response) => { emit("account:updated", response); }); @@ -182,10 +182,11 @@ const onSubmit = async () => { await createAccount(formData.value, config.apiBaseUrl).then( (response) => { emit("account:created", response); - } + }, ); } } catch (error) { + // eslint-disable-next-line no-console console.error("Form submission error:", error); } }; @@ -197,7 +198,7 @@ watch( formData.value.registeredNumber = ""; formData.value.taxId = ""; } - } + }, ); watch( @@ -211,7 +212,7 @@ watch( formData.value.taxId = newValue.taxId ?? undefined; } }, - { immediate: true } + { immediate: true }, ); diff --git a/packages/vue/src/views/Accounts/validations/accountValidations.ts b/packages/vue/src/views/Accounts/validations/AccountValidations.ts similarity index 99% rename from packages/vue/src/views/Accounts/validations/accountValidations.ts rename to packages/vue/src/views/Accounts/validations/AccountValidations.ts index b2858298..8ec9b98e 100644 --- a/packages/vue/src/views/Accounts/validations/accountValidations.ts +++ b/packages/vue/src/views/Accounts/validations/AccountValidations.ts @@ -1,6 +1,8 @@ -import { z } from "zod"; import { useI18n } from "@prefabs.tech/vue3-i18n"; +import { z } from "zod"; + import { useTranslations } from "../../../index"; + import type { SaasConfig } from "../../../types/config"; export const createValidationSchemas = () => { diff --git a/packages/vue/src/views/Invitations/Index.vue b/packages/vue/src/views/Invitations/Index.vue index 8ba7317a..e6717ac6 100644 --- a/packages/vue/src/views/Invitations/Index.vue +++ b/packages/vue/src/views/Invitations/Index.vue @@ -39,9 +39,9 @@ import { useRoute } from "vue-router"; import InvitationModal from "./_components/InvitationModal.vue"; import { useTranslations } from "../../index"; -import useInvitationStore from "../../stores/accountInvitations"; +import useInvitationStore from "../../stores/AccountInvitations"; -import type { AccountInvitation } from "../../types/accountInvitation"; +import type { AccountInvitation } from "../../types/AccountInvitation"; import type { SaasEventHandlers } from "../../types/plugin"; import type { AppConfig } from "@prefabs.tech/vue3-config"; import type { TableColumnDefinition } from "@prefabs.tech/vue3-tanstack-table"; @@ -71,7 +71,7 @@ const route = useRoute(); const eventHandlers = inject( Symbol.for("saas.eventHandlers"), - { notification: undefined } + { notification: undefined }, ); // Reactive accountId @@ -83,10 +83,10 @@ const actionMenuData = [ { confirmationOptions: { body: t( - "account.invitations.table.confirmation.resendInvitation.message" + "account.invitations.table.confirmation.resendInvitation.message", ), header: t( - "account.invitations.table.confirmation.resendInvitation.header" + "account.invitations.table.confirmation.resendInvitation.header", ), }, key: "resendInvitation", @@ -98,10 +98,10 @@ const actionMenuData = [ class: "warning", confirmationOptions: { body: t( - "account.invitations.table.confirmation.revokeInvitation.message" + "account.invitations.table.confirmation.revokeInvitation.message", ), header: t( - "account.invitations.table.confirmation.revokeInvitation.header" + "account.invitations.table.confirmation.revokeInvitation.header", ), }, key: "revokeInvitation", @@ -113,10 +113,10 @@ const actionMenuData = [ class: "danger", confirmationOptions: { body: t( - "account.invitations.table.confirmation.deleteInvitation.message" + "account.invitations.table.confirmation.deleteInvitation.message", ), header: t( - "account.invitations.table.confirmation.deleteInvitation.header" + "account.invitations.table.confirmation.deleteInvitation.header", ), }, key: "deleteInvitation", @@ -185,6 +185,7 @@ async function fetchInvitations() { const response = await getInvitations(accountId.value, config.apiBaseUrl); invitations.value = response; } catch (error) { + // eslint-disable-next-line no-console console.error("Failed to fetch invitations:", error); } } @@ -202,6 +203,7 @@ async function handleDelete(invitation: AccountInvitation) { }); } } catch (error) { + // eslint-disable-next-line no-console console.error("Failed to delete invitation:", error); if (eventHandlers?.notification) { @@ -231,6 +233,7 @@ async function handleResend(invitation: AccountInvitation) { }); } } catch (error) { + // eslint-disable-next-line no-console console.error("Failed to resend invitation:", error); if (eventHandlers?.notification) { @@ -255,6 +258,7 @@ async function handleRevoke(invitation: AccountInvitation) { }); } } catch (error) { + // eslint-disable-next-line no-console console.error("Failed to revoke invitation:", error); if (eventHandlers?.notification) { @@ -268,15 +272,18 @@ async function handleRevoke(invitation: AccountInvitation) { function onActionSelect(rowData: { action: string; data: AccountInvitation }) { switch (rowData.action) { - case "resendInvitation": + case "resendInvitation": { handleResend(rowData.data); break; - case "revokeInvitation": + } + case "revokeInvitation": { handleRevoke(rowData.data); break; - case "deleteInvitation": + } + case "deleteInvitation": { handleDelete(rowData.data); break; + } } } diff --git a/packages/vue/src/views/Invitations/_components/Form.vue b/packages/vue/src/views/Invitations/_components/Form.vue index 811c5a9c..f352bb03 100644 --- a/packages/vue/src/views/Invitations/_components/Form.vue +++ b/packages/vue/src/views/Invitations/_components/Form.vue @@ -45,13 +45,13 @@ import { SAAS_ACCOUNT_ROLES_DEFAULT, } from "../../../constant"; import { useTranslations } from "../../../index"; -import useInvitationStore from "../../../stores/accountInvitations"; +import useInvitationStore from "../../../stores/AccountInvitations"; import { createEmailSchema, createRoleSchema, -} from "../validations/invitationValidation"; +} from "../validations/InvitationValidation"; -import type { AccountInvitationCreateInput } from "../../../types/accountInvitation"; +import type { AccountInvitationCreateInput } from "../../../types/AccountInvitation"; import type { SaasConfig } from "../../../types/config"; import type { SaasEventHandlers, EventMessage } from "../../../types/plugin"; @@ -90,11 +90,11 @@ const roles = computed(() => { }); const invitationFormUi = computed( - () => saasConfig?.ui?.invitation?.form ?? CONFIG_UI_DEFAULT.invitation.form + () => saasConfig?.ui?.invitation?.form ?? CONFIG_UI_DEFAULT.invitation.form, ); const actionsAlignment = computed( - () => invitationFormUi.value.actionsAlignment + () => invitationFormUi.value.actionsAlignment, ); const actionsReverse = computed(() => invitationFormUi.value.actionsReverse); @@ -111,7 +111,7 @@ const roleOptions = computed(() => { const eventHandlers = inject( Symbol.for("saas.eventHandlers"), - { notification: undefined } + { notification: undefined }, ); async function onSubmit() { @@ -129,7 +129,7 @@ async function onSubmit() { eventHandlers?.notification?.(message); emit("success", response); - } + }, ); } catch (error) { // eslint-disable-next-line no-console diff --git a/packages/vue/src/views/Invitations/validations/invitationValidation.ts b/packages/vue/src/views/Invitations/validations/InvitationValidation.ts similarity index 100% rename from packages/vue/src/views/Invitations/validations/invitationValidation.ts rename to packages/vue/src/views/Invitations/validations/InvitationValidation.ts diff --git a/packages/vue/src/views/Signup/Index.vue b/packages/vue/src/views/Signup/Index.vue index e6860572..2428bee0 100644 --- a/packages/vue/src/views/Signup/Index.vue +++ b/packages/vue/src/views/Signup/Index.vue @@ -26,7 +26,7 @@ import { computed, inject, ref } from "vue"; import { signup } from "../../api/accounts"; import AccountSignupForm from "../../components/AccountSignupForm.vue"; import UserSignupForm from "../../components/UserSignupForm.vue"; -import { useMyAccounts } from "../../composables/useMyAccounts"; +import { useMyAccounts } from "../../composables/UseMyAccounts"; import { SIGNUP_PATH_DEFAULT } from "../../constant"; import { useTranslations } from "../../index"; @@ -38,11 +38,11 @@ import type { AppConfig } from "@prefabs.tech/vue3-config"; export interface SignupProperties { onSignupFailure?: ( err?: unknown, - data?: UserSignupData | AccountSignupData + data?: UserSignupData | AccountSignupData, ) => Promise | void; onSignupSuccess?: ( res?: User, - data?: UserSignupData | AccountSignupData + data?: UserSignupData | AccountSignupData, ) => Promise | void; } @@ -59,7 +59,7 @@ const myAccountsStore = useMyAccounts(); const isMainApp = computed(() => myAccountsStore.meta.isMainApp); const saasConfig = inject( - Symbol.for("saas.config") + Symbol.for("saas.config"), ); if (!saasConfig) { diff --git a/packages/vue/src/views/Users/Index.vue b/packages/vue/src/views/Users/Index.vue index ce55542c..bff432f2 100644 --- a/packages/vue/src/views/Users/Index.vue +++ b/packages/vue/src/views/Users/Index.vue @@ -22,9 +22,9 @@ import { ref, onMounted, h, inject, computed } from "vue"; import { useRoute } from "vue-router"; import { useTranslations } from "../../index"; -import useUsersStore from "../../stores/accountUsers"; +import useUsersStore from "../../stores/AccountUsers"; -import type { AccountUser } from "../../types/accountUser"; +import type { AccountUser } from "../../types/AccountUser"; import type { SaasEventHandlers } from "../../types/plugin"; import type { AppConfig } from "@prefabs.tech/vue3-config"; import type { @@ -52,7 +52,7 @@ const route = useRoute(); const eventHandlers = inject( Symbol.for("saas.eventHandlers"), - { notification: undefined } + { notification: undefined }, ); // Reactive accountId @@ -98,11 +98,14 @@ const columns: TableColumnDefinition[] = [ id: "name", header: t("account.users.table.columns.name"), accessorFn: (original) => { - return ( - (original.givenName ? original.givenName : "") + - (original.middleNames ? " " + original.middleNames : "") + - (original.surname ? " " + original.surname : "") || "-" - ); + const name = [ + original.givenName || "", + original.middleNames || "", + original.surname || "", + ] + .filter(Boolean) + .join(" "); + return name || "-"; }, cell: ({ getValue }) => { const value = getValue(); @@ -157,6 +160,7 @@ async function fetchUsers() { const response = await getUsers(accountId.value, config.apiBaseUrl); users.value = response; } catch (error) { + // eslint-disable-next-line no-console console.error("Failed to fetch users:", error); } } @@ -174,6 +178,7 @@ async function handleEnable(user: AccountUser) { }); } } catch (error) { + // eslint-disable-next-line no-console console.error("Failed to enable user:", error); if (eventHandlers?.notification) { @@ -198,6 +203,7 @@ async function handleDisable(user: AccountUser) { }); } } catch (error) { + // eslint-disable-next-line no-console console.error("Failed to disable user:", error); if (eventHandlers?.notification) { @@ -211,12 +217,14 @@ async function handleDisable(user: AccountUser) { function onActionSelect(rowData: { action: string; data: AccountUser }) { switch (rowData.action) { - case "enable": + case "enable": { handleEnable(rowData.data); break; - case "disable": + } + case "disable": { handleDisable(rowData.data); break; + } } } diff --git a/packages/vue/src/vite-env.d.ts b/packages/vue/src/vite-env.d.ts index 8304c331..1cf16b85 100644 --- a/packages/vue/src/vite-env.d.ts +++ b/packages/vue/src/vite-env.d.ts @@ -1,9 +1,9 @@ /// -interface ImportMetaEnv { +interface ImportMetaEnvironment { readonly VITE_API_BASE_URL: string; } interface ImportMeta { - readonly env: ImportMetaEnv; + readonly env: ImportMetaEnvironment; } diff --git a/packages/vue/vite.config.ts b/packages/vue/vite.config.ts index a7b05410..b0cdbf07 100644 --- a/packages/vue/vite.config.ts +++ b/packages/vue/vite.config.ts @@ -46,7 +46,7 @@ export default defineConfig(({ mode }) => { plugins: [vue()], resolve: { alias: { - "@/": new URL("./src/", import.meta.url).pathname, + "@/": new URL("src/", import.meta.url).pathname, }, }, test: { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3ec67929..20b53f1b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -33,17 +33,17 @@ importers: packages/fastify: dependencies: '@graphql-tools/merge': - specifier: 9.0.19 - version: 9.0.19(graphql@16.10.0) + specifier: 9.1.1 + version: 9.1.1(graphql@16.11.0) '@prefabs.tech/postgres-migrations': specifier: 5.4.3 version: 5.4.3 graphql: - specifier: 16.10.0 - version: 16.10.0 + specifier: 16.11.0 + version: 16.11.0 graphql-tag: specifier: 2.12.6 - version: 2.12.6(graphql@16.10.0) + version: 2.12.6(graphql@16.11.0) humps: specifier: 2.0.1 version: 2.0.1 @@ -54,108 +54,87 @@ importers: specifier: 8.13.3 version: 8.13.3 devDependencies: + '@fastify/cors': + specifier: ^11.0.1 + version: 11.2.0 + '@fastify/formbody': + specifier: ^8.0.2 + version: 8.0.2 '@prefabs.tech/eslint-config': - specifier: 0.2.0 - version: 0.2.0(@typescript-eslint/eslint-plugin@8.14.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4))(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.5.4))(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint-import-resolver-alias@1.1.2(eslint-plugin-import@2.31.0))(eslint-import-resolver-typescript@3.6.3)(eslint-plugin-import@2.31.0)(eslint-plugin-n@14.0.0(eslint@8.57.1))(eslint-plugin-prettier@5.2.1(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3))(eslint-plugin-promise@7.1.0(eslint@8.57.1))(eslint-plugin-unicorn@56.0.1(eslint@8.57.1))(eslint-plugin-vue@9.32.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)(typescript@5.5.4)(vue-eslint-parser@9.4.3(eslint@8.57.1)) + specifier: 0.5.0 + version: 0.5.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3))(eslint@9.39.2(jiti@1.21.6))(prettier@3.8.1)(typescript@5.7.3) '@prefabs.tech/fastify-config': - specifier: 0.89.2 - version: 0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1) + specifier: 0.93.5 + version: 0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0) + '@prefabs.tech/fastify-error-handler': + specifier: 0.93.5 + version: 0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0) '@prefabs.tech/fastify-graphql': - specifier: 0.89.2 - version: 0.89.2(@prefabs.tech/fastify-config@0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1))(@prefabs.tech/fastify-slonik@0.89.2(@prefabs.tech/fastify-config@0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1))(fastify-plugin@5.0.1)(fastify@5.2.1)(pg-mem@3.0.4(slonik@46.1.0(zod@3.23.8)))(slonik@46.1.0(zod@3.23.8))(zod@3.23.8))(fastify-plugin@5.0.1)(fastify@5.2.1)(graphql@16.10.0)(mercurius@16.1.0(graphql@16.10.0))(slonik@46.1.0(zod@3.23.8))(zod@3.23.8) + specifier: 0.93.5 + version: 0.93.5(@prefabs.tech/fastify-config@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(@prefabs.tech/fastify-slonik@0.93.5(@prefabs.tech/fastify-config@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(fastify-plugin@5.0.1)(fastify@5.6.0)(pg-mem@3.0.4(slonik@46.8.0(zod@3.23.8)))(slonik@46.8.0(zod@3.23.8))(zod@3.23.8))(fastify-plugin@5.0.1)(fastify@5.6.0)(graphql@16.11.0)(mercurius@16.2.0(graphql@16.11.0))(slonik@46.8.0(zod@3.23.8))(zod@3.23.8) '@prefabs.tech/fastify-mailer': - specifier: 0.89.2 - version: 0.89.2(@prefabs.tech/fastify-config@0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1))(fastify-plugin@5.0.1)(fastify@5.2.1)(mjml@4.15.3) + specifier: 0.93.5 + version: 0.93.5(@prefabs.tech/fastify-config@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(fastify-plugin@5.0.1)(fastify@5.6.0)(mjml@4.15.3) '@prefabs.tech/fastify-s3': - specifier: 0.89.2 - version: 0.89.2(@prefabs.tech/fastify-config@0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1))(@prefabs.tech/fastify-graphql@0.89.2(@prefabs.tech/fastify-config@0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1))(@prefabs.tech/fastify-slonik@0.89.2(@prefabs.tech/fastify-config@0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1))(fastify-plugin@5.0.1)(fastify@5.2.1)(pg-mem@3.0.4(slonik@46.1.0(zod@3.23.8)))(slonik@46.1.0(zod@3.23.8))(zod@3.23.8))(fastify-plugin@5.0.1)(fastify@5.2.1)(graphql@16.10.0)(mercurius@16.1.0(graphql@16.10.0))(slonik@46.1.0(zod@3.23.8))(zod@3.23.8))(@prefabs.tech/fastify-slonik@0.89.2(@prefabs.tech/fastify-config@0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1))(fastify-plugin@5.0.1)(fastify@5.2.1)(pg-mem@3.0.4(slonik@46.1.0(zod@3.23.8)))(slonik@46.1.0(zod@3.23.8))(zod@3.23.8))(fastify-plugin@5.0.1)(fastify@5.2.1)(graphql@16.10.0)(slonik@46.1.0(zod@3.23.8))(zod@3.23.8) + specifier: 0.93.5 + version: 0.93.5(@prefabs.tech/fastify-config@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(@prefabs.tech/fastify-error-handler@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(@prefabs.tech/fastify-graphql@0.93.5(@prefabs.tech/fastify-config@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(@prefabs.tech/fastify-slonik@0.93.5(@prefabs.tech/fastify-config@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(fastify-plugin@5.0.1)(fastify@5.6.0)(pg-mem@3.0.4(slonik@46.8.0(zod@3.23.8)))(slonik@46.8.0(zod@3.23.8))(zod@3.23.8))(fastify-plugin@5.0.1)(fastify@5.6.0)(graphql@16.11.0)(mercurius@16.2.0(graphql@16.11.0))(slonik@46.8.0(zod@3.23.8))(zod@3.23.8))(@prefabs.tech/fastify-slonik@0.93.5(@prefabs.tech/fastify-config@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(fastify-plugin@5.0.1)(fastify@5.6.0)(pg-mem@3.0.4(slonik@46.8.0(zod@3.23.8)))(slonik@46.8.0(zod@3.23.8))(zod@3.23.8))(fastify-plugin@5.0.1)(fastify@5.6.0)(graphql@16.11.0)(slonik@46.8.0(zod@3.23.8))(zod@3.23.8) '@prefabs.tech/fastify-slonik': - specifier: 0.89.2 - version: 0.89.2(@prefabs.tech/fastify-config@0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1))(fastify-plugin@5.0.1)(fastify@5.2.1)(pg-mem@3.0.4(slonik@46.1.0(zod@3.23.8)))(slonik@46.1.0(zod@3.23.8))(zod@3.23.8) + specifier: 0.93.5 + version: 0.93.5(@prefabs.tech/fastify-config@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(fastify-plugin@5.0.1)(fastify@5.6.0)(pg-mem@3.0.4(slonik@46.8.0(zod@3.23.8)))(slonik@46.8.0(zod@3.23.8))(zod@3.23.8) '@prefabs.tech/fastify-user': - specifier: 0.89.2 - version: 0.89.2(2mzfwxvaeqhq3j52if3so6wncq) + specifier: 0.93.5 + version: 0.93.5(vjjl5d3rjsjdc3ao2hfmbhuvji) '@prefabs.tech/tsconfig': - specifier: 0.2.0 - version: 0.2.0(@types/node@20.12.2) + specifier: 0.5.0 + version: 0.5.0(@types/node@24.10.0) '@types/humps': specifier: 2.0.6 version: 2.0.6 '@types/node': - specifier: 20.12.2 - version: 20.12.2 + specifier: 24.10.0 + version: 24.10.0 '@types/pg': specifier: 8.11.10 version: 8.11.10 - '@typescript-eslint/eslint-plugin': - specifier: 8.14.0 - version: 8.14.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4) - '@typescript-eslint/parser': - specifier: 8.14.0 - version: 8.14.0(eslint@8.57.1)(typescript@5.5.4) '@vitest/coverage-istanbul': - specifier: 3.0.5 - version: 3.0.5(vitest@3.0.5(@types/node@20.12.2)(jiti@1.21.6)(jsdom@24.0.0)) + specifier: 3.2.4 + version: 3.2.4(vitest@3.2.4(@types/node@24.10.0)(jiti@1.21.6)(jsdom@25.0.1)) eslint: - specifier: 8.57.1 - version: 8.57.1 - eslint-config-prettier: - specifier: 9.1.0 - version: 9.1.0(eslint@8.57.1) - eslint-import-resolver-alias: - specifier: 1.1.2 - version: 1.1.2(eslint-plugin-import@2.31.0) - eslint-import-resolver-typescript: - specifier: 3.6.3 - version: 3.6.3(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.5.4))(eslint-plugin-import@2.31.0)(eslint@8.57.1) - eslint-plugin-import: - specifier: 2.31.0 - version: 2.31.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) - eslint-plugin-n: - specifier: 14.0.0 - version: 14.0.0(eslint@8.57.1) - eslint-plugin-prettier: - specifier: 5.2.1 - version: 5.2.1(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3) - eslint-plugin-promise: - specifier: 7.1.0 - version: 7.1.0(eslint@8.57.1) - eslint-plugin-unicorn: - specifier: 56.0.1 - version: 56.0.1(eslint@8.57.1) + specifier: 9.39.2 + version: 9.39.2(jiti@1.21.6) fastify: - specifier: 5.2.1 - version: 5.2.1 + specifier: 5.6.0 + version: 5.6.0 fastify-plugin: specifier: 5.0.1 version: 5.0.1 mercurius: - specifier: 16.1.0 - version: 16.1.0(graphql@16.10.0) + specifier: 16.2.0 + version: 16.2.0(graphql@16.11.0) mercurius-auth: specifier: 6.0.0 version: 6.0.0 pg-mem: specifier: 3.0.4 - version: 3.0.4(slonik@46.1.0(zod@3.23.8)) + version: 3.0.4(slonik@46.8.0(zod@3.23.8)) prettier: - specifier: 3.3.3 - version: 3.3.3 + specifier: 3.8.1 + version: 3.8.1 slonik: - specifier: 46.1.0 - version: 46.1.0(zod@3.23.8) + specifier: 46.8.0 + version: 46.8.0(zod@3.23.8) supertokens-node: - specifier: 14.1.3 - version: 14.1.3 + specifier: 14.1.4 + version: 14.1.4 typescript: - specifier: 5.5.4 - version: 5.5.4 + specifier: 5.7.3 + version: 5.7.3 vite: - specifier: 6.1.0 - version: 6.1.0(@types/node@20.12.2)(jiti@1.21.6) + specifier: 6.3.5 + version: 6.3.5(@types/node@24.10.0)(jiti@1.21.6) vitest: - specifier: 3.0.5 - version: 3.0.5(@types/node@20.12.2)(jiti@1.21.6)(jsdom@24.0.0) + specifier: 3.2.4 + version: 3.2.4(@types/node@24.10.0)(jiti@1.21.6)(jsdom@25.0.1) zod: specifier: 3.23.8 version: 3.23.8 @@ -163,78 +142,54 @@ importers: packages/react: dependencies: axios: - specifier: 1.7.9 - version: 1.7.9(debug@4.3.6) + specifier: 1.12.0 + version: 1.12.0(debug@4.4.0) zod: specifier: 3.23.8 version: 3.23.8 devDependencies: '@prefabs.tech/eslint-config': - specifier: 0.2.0 - version: 0.2.0(@typescript-eslint/eslint-plugin@8.14.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.4.5))(eslint@8.57.1)(typescript@5.4.5))(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.4.5))(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint-import-resolver-alias@1.1.2(eslint-plugin-import@2.31.0))(eslint-import-resolver-typescript@3.6.3)(eslint-plugin-import@2.31.0)(eslint-plugin-n@14.0.0(eslint@8.57.1))(eslint-plugin-prettier@5.2.1(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3))(eslint-plugin-promise@7.1.0(eslint@8.57.1))(eslint-plugin-unicorn@56.0.1(eslint@8.57.1))(eslint-plugin-vue@9.32.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)(typescript@5.4.5)(vue-eslint-parser@9.4.3(eslint@8.57.1)) + specifier: 0.5.0 + version: 0.5.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3))(eslint@9.39.2(jiti@1.21.6))(prettier@3.8.1)(typescript@5.7.3) '@prefabs.tech/react-config': - specifier: 0.61.0 - version: 0.61.0(react@18.3.1) + specifier: 0.70.0 + version: 0.70.0(react@18.3.1) '@prefabs.tech/react-form': - specifier: 0.61.0 - version: 0.61.0(@prefabs.tech/react-ui@0.61.0(primereact@9.6.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react-router-dom@6.26.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1))(primereact@9.6.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(zod@3.23.8) + specifier: 0.70.0 + version: 0.70.0(@prefabs.tech/react-ui@0.70.0(primereact@9.6.1(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react-router-dom@6.28.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1))(primereact@9.6.1(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(zod@3.23.8) '@prefabs.tech/react-i18n': - specifier: 0.61.0 - version: 0.61.0(@prefabs.tech/react-config@0.61.0(react@18.3.1))(primereact@9.6.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react-router-dom@6.26.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(typescript@5.4.5) + specifier: 0.70.0 + version: 0.70.0(@prefabs.tech/react-config@0.70.0(react@18.3.1))(primereact@9.6.1(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react-router-dom@6.28.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(typescript@5.7.3) '@prefabs.tech/react-ui': - specifier: 0.61.0 - version: 0.61.0(primereact@9.6.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react-router-dom@6.26.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) + specifier: 0.70.0 + version: 0.70.0(primereact@9.6.1(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react-router-dom@6.28.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) '@types/jsdom': - specifier: 21.1.6 - version: 21.1.6 + specifier: 21.1.7 + version: 21.1.7 '@types/node': - specifier: 20.14.14 - version: 20.14.14 + specifier: 24.10.0 + version: 24.10.0 '@types/react': - specifier: 18.3.3 - version: 18.3.3 - '@typescript-eslint/eslint-plugin': - specifier: 8.14.0 - version: 8.14.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.4.5))(eslint@8.57.1)(typescript@5.4.5) - '@typescript-eslint/parser': - specifier: 8.14.0 - version: 8.14.0(eslint@8.57.1)(typescript@5.4.5) + specifier: 18.3.4 + version: 18.3.4 '@vitejs/plugin-react': - specifier: 4.3.4 - version: 4.3.4(vite@6.1.1(@types/node@20.14.14)(jiti@1.21.6)) + specifier: 4.5.2 + version: 4.5.2(vite@6.3.5(@types/node@24.10.0)(jiti@1.21.6)) '@vitest/coverage-v8': - specifier: 3.0.6 - version: 3.0.6(vitest@3.0.6(@types/node@20.14.14)(jiti@1.21.6)(jsdom@24.0.0)) + specifier: 3.2.4 + version: 3.2.4(vitest@3.2.4(@types/node@24.10.0)(jiti@1.21.6)(jsdom@25.0.1)) eslint: - specifier: 8.57.1 - version: 8.57.1 - eslint-config-prettier: - specifier: 9.1.0 - version: 9.1.0(eslint@8.57.1) - eslint-import-resolver-alias: - specifier: 1.1.2 - version: 1.1.2(eslint-plugin-import@2.31.0) - eslint-import-resolver-typescript: - specifier: 3.6.3 - version: 3.6.3(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.4.5))(eslint-plugin-import@2.31.0)(eslint@8.57.1) - eslint-plugin-import: - specifier: 2.31.0 - version: 2.31.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) - eslint-plugin-prettier: - specifier: 5.2.1 - version: 5.2.1(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3) - eslint-plugin-unicorn: - specifier: 56.0.1 - version: 56.0.1(eslint@8.57.1) + specifier: 9.39.2 + version: 9.39.2(jiti@1.21.6) jsdom: - specifier: 24.0.0 - version: 24.0.0 + specifier: 25.0.1 + version: 25.0.1 prettier: - specifier: 3.3.3 - version: 3.3.3 + specifier: 3.8.1 + version: 3.8.1 primereact: specifier: 9.6.1 - version: 9.6.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 9.6.1(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: 18.3.1 version: 18.3.1 @@ -242,146 +197,116 @@ importers: specifier: 18.3.1 version: 18.3.1(react@18.3.1) react-router-dom: - specifier: 6.26.1 - version: 6.26.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: 6.28.0 + version: 6.28.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-toastify: - specifier: 10.0.6 - version: 10.0.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: 10.0.5 + version: 10.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) typescript: - specifier: 5.4.5 - version: 5.4.5 + specifier: 5.7.3 + version: 5.7.3 vite: - specifier: 6.1.1 - version: 6.1.1(@types/node@20.14.14)(jiti@1.21.6) + specifier: 6.3.5 + version: 6.3.5(@types/node@24.10.0)(jiti@1.21.6) vitest: - specifier: 3.0.6 - version: 3.0.6(@types/node@20.14.14)(jiti@1.21.6)(jsdom@24.0.0) + specifier: 3.2.4 + version: 3.2.4(@types/node@24.10.0)(jiti@1.21.6)(jsdom@25.0.1) packages/vue: devDependencies: '@iconify/vue': specifier: 4.3.0 - version: 4.3.0(vue@3.5.13(typescript@5.5.4)) + version: 4.3.0(vue@3.5.13(typescript@4.9.5)) '@prefabs.tech/eslint-config': - specifier: 0.2.0 - version: 0.2.0(@typescript-eslint/eslint-plugin@8.24.1(@typescript-eslint/parser@8.24.1(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4))(@typescript-eslint/parser@8.24.1(eslint@8.57.1)(typescript@5.5.4))(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint-import-resolver-alias@1.1.2(eslint-plugin-import@2.31.0))(eslint-import-resolver-typescript@3.8.3)(eslint-plugin-import@2.31.0)(eslint-plugin-n@14.0.0(eslint@8.57.1))(eslint-plugin-prettier@5.2.3(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.5.2))(eslint-plugin-promise@7.1.0(eslint@8.57.1))(eslint-plugin-unicorn@56.0.1(eslint@8.57.1))(eslint-plugin-vue@9.32.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.5.2)(typescript@5.5.4)(vue-eslint-parser@9.4.3(eslint@8.57.1)) + specifier: 0.5.0 + version: 0.5.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5))(eslint@9.39.2(jiti@1.21.6))(prettier@3.8.1)(typescript@4.9.5) '@prefabs.tech/tsconfig': - specifier: 0.2.0 - version: 0.2.0(@types/node@22.13.5) + specifier: 0.5.0 + version: 0.5.0(@types/node@24.10.0) '@prefabs.tech/vue3-config': - specifier: 0.18.0 - version: 0.18.0(pinia@3.0.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4)))(vue-router@4.5.0(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4)) + specifier: 0.31.0 + version: 0.31.0(pinia@3.0.1(typescript@4.9.5)(vue@3.5.13(typescript@4.9.5)))(vue-router@4.5.0(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5)) '@prefabs.tech/vue3-form': - specifier: 0.18.0 - version: 0.18.0(@vee-validate/i18n@4.15.0)(@vee-validate/rules@4.15.0(vue@3.5.13(typescript@5.5.4)))(@vee-validate/zod@4.15.0(vue@3.5.13(typescript@5.5.4))(zod@3.24.2))(vee-validate@4.15.0(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4))(zod@3.24.2) + specifier: 0.31.0 + version: 0.31.0(@vee-validate/i18n@4.15.0)(@vee-validate/rules@4.15.0(vue@3.5.13(typescript@4.9.5)))(@vee-validate/zod@4.15.0(vue@3.5.13(typescript@4.9.5))(zod@3.24.2))(vee-validate@4.15.0(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5))(zod@3.24.2) '@prefabs.tech/vue3-i18n': - specifier: 0.18.0 - version: 0.18.0(@prefabs.tech/vue3-config@0.18.0(pinia@3.0.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4)))(vue-router@4.5.0(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4)))(@vueuse/core@12.7.0(typescript@5.5.4))(pinia@3.0.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4)) + specifier: 0.31.0 + version: 0.31.0(@prefabs.tech/vue3-config@0.31.0(pinia@3.0.1(typescript@4.9.5)(vue@3.5.13(typescript@4.9.5)))(vue-router@4.5.0(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5)))(@vueuse/core@12.7.0(typescript@4.9.5))(pinia@3.0.1(typescript@4.9.5)(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5)) '@prefabs.tech/vue3-layout': - specifier: 0.18.0 - version: 0.18.0(@prefabs.tech/vue3-config@0.18.0(pinia@3.0.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4)))(vue-router@4.5.0(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4)))(@prefabs.tech/vue3-i18n@0.18.0(@prefabs.tech/vue3-config@0.18.0(pinia@3.0.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4)))(vue-router@4.5.0(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4)))(@vueuse/core@12.7.0(typescript@5.5.4))(pinia@3.0.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4)))(@prefabs.tech/vue3-ui@0.18.0(vue@3.5.13(typescript@5.5.4)))(@vueuse/core@12.7.0(typescript@5.5.4))(vue-router@4.5.0(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4)) + specifier: 0.31.0 + version: 0.31.0(@prefabs.tech/vue3-config@0.31.0(pinia@3.0.1(typescript@4.9.5)(vue@3.5.13(typescript@4.9.5)))(vue-router@4.5.0(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5)))(@prefabs.tech/vue3-i18n@0.31.0(@prefabs.tech/vue3-config@0.31.0(pinia@3.0.1(typescript@4.9.5)(vue@3.5.13(typescript@4.9.5)))(vue-router@4.5.0(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5)))(@vueuse/core@12.7.0(typescript@4.9.5))(pinia@3.0.1(typescript@4.9.5)(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5)))(@prefabs.tech/vue3-ui@0.31.0(vue@3.5.13(typescript@4.9.5)))(@vueuse/core@12.7.0(typescript@4.9.5))(vue-router@4.5.0(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5)) '@prefabs.tech/vue3-tanstack-table': - specifier: 0.18.0 - version: 0.18.0(@prefabs.tech/vue3-form@0.18.0(@vee-validate/i18n@4.15.0)(@vee-validate/rules@4.15.0(vue@3.5.13(typescript@5.5.4)))(@vee-validate/zod@4.15.0(vue@3.5.13(typescript@5.5.4))(zod@3.24.2))(vee-validate@4.15.0(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4))(zod@3.24.2))(@prefabs.tech/vue3-ui@0.18.0(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4)) + specifier: 0.31.0 + version: 0.31.0(@prefabs.tech/vue3-form@0.31.0(@vee-validate/i18n@4.15.0)(@vee-validate/rules@4.15.0(vue@3.5.13(typescript@4.9.5)))(@vee-validate/zod@4.15.0(vue@3.5.13(typescript@4.9.5))(zod@3.24.2))(vee-validate@4.15.0(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5))(zod@3.24.2))(@prefabs.tech/vue3-ui@0.31.0(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5)) '@prefabs.tech/vue3-ui': - specifier: 0.18.0 - version: 0.18.0(vue@3.5.13(typescript@5.5.4)) + specifier: 0.31.0 + version: 0.31.0(vue@3.5.13(typescript@4.9.5)) '@prefabs.tech/vue3-user': - specifier: 0.18.0 - version: 0.18.0(44d4q2laaxko3t64fvfq6zrjsm) + specifier: 0.31.0 + version: 0.31.0(n655cmjoaejkxprlggi6levmuy) '@types/node': - specifier: 22.13.5 - version: 22.13.5 - '@typescript-eslint/eslint-plugin': - specifier: 8.24.1 - version: 8.24.1(@typescript-eslint/parser@8.24.1(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4) - '@typescript-eslint/parser': - specifier: 8.24.1 - version: 8.24.1(eslint@8.57.1)(typescript@5.5.4) + specifier: 24.10.0 + version: 24.10.0 '@vee-validate/i18n': specifier: 4.15.0 version: 4.15.0 '@vee-validate/rules': specifier: 4.15.0 - version: 4.15.0(vue@3.5.13(typescript@5.5.4)) + version: 4.15.0(vue@3.5.13(typescript@4.9.5)) '@vee-validate/zod': specifier: 4.15.0 - version: 4.15.0(vue@3.5.13(typescript@5.5.4))(zod@3.24.2) + version: 4.15.0(vue@3.5.13(typescript@4.9.5))(zod@3.24.2) '@vitejs/plugin-vue': - specifier: 5.2.1 - version: 5.2.1(vite@6.1.1(@types/node@22.13.5)(jiti@1.21.6))(vue@3.5.13(typescript@5.5.4)) + specifier: 5.2.4 + version: 5.2.4(vite@6.3.5(@types/node@24.10.0)(jiti@1.21.6))(vue@3.5.13(typescript@4.9.5)) '@vitejs/plugin-vue-jsx': - specifier: 4.1.1 - version: 4.1.1(vite@6.1.1(@types/node@22.13.5)(jiti@1.21.6))(vue@3.5.13(typescript@5.5.4)) + specifier: 4.2.0 + version: 4.2.0(vite@6.3.5(@types/node@24.10.0)(jiti@1.21.6))(vue@3.5.13(typescript@4.9.5)) '@vitest/coverage-istanbul': specifier: 3.0.6 - version: 3.0.6(vitest@3.0.6(@types/node@22.13.5)(jiti@1.21.6)(jsdom@24.0.0)) + version: 3.0.6(vitest@3.2.4(@types/node@24.10.0)(jiti@1.21.6)(jsdom@25.0.1)) '@vue/test-utils': specifier: 2.4.6 version: 2.4.6 '@vueuse/core': specifier: 12.7.0 - version: 12.7.0(typescript@5.5.4) + version: 12.7.0(typescript@4.9.5) axios: - specifier: 1.7.9 - version: 1.7.9(debug@4.3.6) + specifier: 1.12.0 + version: 1.12.0(debug@4.4.0) eslint: - specifier: 8.57.1 - version: 8.57.1 - eslint-config-prettier: - specifier: 9.1.0 - version: 9.1.0(eslint@8.57.1) - eslint-import-resolver-alias: - specifier: 1.1.2 - version: 1.1.2(eslint-plugin-import@2.31.0) - eslint-import-resolver-typescript: - specifier: 3.8.3 - version: 3.8.3(eslint-plugin-import@2.31.0)(eslint@8.57.1) - eslint-plugin-import: - specifier: 2.31.0 - version: 2.31.0(@typescript-eslint/parser@8.24.1(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-typescript@3.8.3)(eslint@8.57.1) - eslint-plugin-prettier: - specifier: 5.2.3 - version: 5.2.3(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.5.2) - eslint-plugin-unicorn: - specifier: 56.0.1 - version: 56.0.1(eslint@8.57.1) - eslint-plugin-vue: - specifier: 9.32.0 - version: 9.32.0(eslint@8.57.1) + specifier: 9.39.2 + version: 9.39.2(jiti@1.21.6) mitt: specifier: 3.0.1 version: 3.0.1 pinia: specifier: 3.0.1 - version: 3.0.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4)) + version: 3.0.1(typescript@4.9.5)(vue@3.5.13(typescript@4.9.5)) prettier: - specifier: 3.5.2 - version: 3.5.2 + specifier: 3.8.1 + version: 3.8.1 typescript: - specifier: 5.5.4 - version: 5.5.4 + specifier: 4.9.5 + version: 4.9.5 vee-validate: specifier: 4.15.0 - version: 4.15.0(vue@3.5.13(typescript@5.5.4)) + version: 4.15.0(vue@3.5.13(typescript@4.9.5)) vite: - specifier: 6.1.1 - version: 6.1.1(@types/node@22.13.5)(jiti@1.21.6) + specifier: 6.3.5 + version: 6.3.5(@types/node@24.10.0)(jiti@1.21.6) vitest: - specifier: 3.0.6 - version: 3.0.6(@types/node@22.13.5)(jiti@1.21.6)(jsdom@24.0.0) + specifier: 3.2.4 + version: 3.2.4(@types/node@24.10.0)(jiti@1.21.6)(jsdom@25.0.1) vue: specifier: 3.5.13 - version: 3.5.13(typescript@5.5.4) - vue-eslint-parser: - specifier: 9.4.3 - version: 9.4.3(eslint@8.57.1) + version: 3.5.13(typescript@4.9.5) vue-router: specifier: 4.5.0 - version: 4.5.0(vue@3.5.13(typescript@5.5.4)) + version: 4.5.0(vue@3.5.13(typescript@4.9.5)) vue-tsc: - specifier: 1.2.0 - version: 1.2.0(typescript@5.5.4) + specifier: 1.0.24 + version: 1.0.24(typescript@4.9.5) zod: specifier: 3.24.2 version: 3.24.2 @@ -415,137 +340,138 @@ packages: '@aws-crypto/util@5.2.0': resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==} - '@aws-sdk/client-s3@3.850.0': - resolution: {integrity: sha512-tX5bUfqiLOh6jtAlaiAuOUKFYh8KDG9k9zFLUdgGplC5TP47AYTreUEg+deCTHo4DD3YCvrLuyZ8tIDgKu7neQ==} + '@aws-sdk/client-s3@3.917.0': + resolution: {integrity: sha512-3L73mDCpH7G0koFv3p3WkkEKqC5wn2EznKtNMrJ6hczPIr2Cu6DJz8VHeTZp9wFZLPrIBmh3ZW1KiLujT5Fd2w==} engines: {node: '>=18.0.0'} - '@aws-sdk/client-sso@3.848.0': - resolution: {integrity: sha512-mD+gOwoeZQvbecVLGoCmY6pS7kg02BHesbtIxUj+PeBqYoZV5uLvjUOmuGfw1SfoSobKvS11urxC9S7zxU/Maw==} + '@aws-sdk/client-sso@3.916.0': + resolution: {integrity: sha512-Eu4PtEUL1MyRvboQnoq5YKg0Z9vAni3ccebykJy615xokVZUdA3di2YxHM/hykDQX7lcUC62q9fVIvh0+UNk/w==} engines: {node: '>=18.0.0'} - '@aws-sdk/core@3.846.0': - resolution: {integrity: sha512-7CX0pM906r4WSS68fCTNMTtBCSkTtf3Wggssmx13gD40gcWEZXsU00KzPp1bYheNRyPlAq3rE22xt4wLPXbuxA==} + '@aws-sdk/core@3.916.0': + resolution: {integrity: sha512-1JHE5s6MD5PKGovmx/F1e01hUbds/1y3X8rD+Gvi/gWVfdg5noO7ZCerpRsWgfzgvCMZC9VicopBqNHCKLykZA==} engines: {node: '>=18.0.0'} - '@aws-sdk/credential-provider-env@3.846.0': - resolution: {integrity: sha512-QuCQZET9enja7AWVISY+mpFrEIeHzvkx/JEEbHYzHhUkxcnC2Kq2c0bB7hDihGD0AZd3Xsm653hk1O97qu69zg==} + '@aws-sdk/credential-provider-env@3.916.0': + resolution: {integrity: sha512-3gDeqOXcBRXGHScc6xb7358Lyf64NRG2P08g6Bu5mv1Vbg9PKDyCAZvhKLkG7hkdfAM8Yc6UJNhbFxr1ud/tCQ==} engines: {node: '>=18.0.0'} - '@aws-sdk/credential-provider-http@3.846.0': - resolution: {integrity: sha512-Jh1iKUuepdmtreMYozV2ePsPcOF5W9p3U4tWhi3v6nDvz0GsBjzjAROW+BW8XMz9vAD3I9R+8VC3/aq63p5nlw==} + '@aws-sdk/credential-provider-http@3.916.0': + resolution: {integrity: sha512-NmooA5Z4/kPFJdsyoJgDxuqXC1C6oPMmreJjbOPqcwo6E/h2jxaG8utlQFgXe5F9FeJsMx668dtxVxSYnAAqHQ==} engines: {node: '>=18.0.0'} - '@aws-sdk/credential-provider-ini@3.848.0': - resolution: {integrity: sha512-r6KWOG+En2xujuMhgZu7dzOZV3/M5U/5+PXrG8dLQ3rdPRB3vgp5tc56KMqLwm/EXKRzAOSuw/UE4HfNOAB8Hw==} + '@aws-sdk/credential-provider-ini@3.917.0': + resolution: {integrity: sha512-rvQ0QamLySRq+Okc0ZqFHZ3Fbvj3tYuWNIlzyEKklNmw5X5PM1idYKlOJflY2dvUGkIqY3lUC9SC2WL+1s7KIw==} engines: {node: '>=18.0.0'} - '@aws-sdk/credential-provider-node@3.848.0': - resolution: {integrity: sha512-AblNesOqdzrfyASBCo1xW3uweiSro4Kft9/htdxLeCVU1KVOnFWA5P937MNahViRmIQm2sPBCqL8ZG0u9lnh5g==} + '@aws-sdk/credential-provider-node@3.917.0': + resolution: {integrity: sha512-n7HUJ+TgU9wV/Z46yR1rqD9hUjfG50AKi+b5UXTlaDlVD8bckg40i77ROCllp53h32xQj/7H0yBIYyphwzLtmg==} engines: {node: '>=18.0.0'} - '@aws-sdk/credential-provider-process@3.846.0': - resolution: {integrity: sha512-mEpwDYarJSH+CIXnnHN0QOe0MXI+HuPStD6gsv3z/7Q6ESl8KRWon3weFZCDnqpiJMUVavlDR0PPlAFg2MQoPg==} + '@aws-sdk/credential-provider-process@3.916.0': + resolution: {integrity: sha512-SXDyDvpJ1+WbotZDLJW1lqP6gYGaXfZJrgFSXIuZjHb75fKeNRgPkQX/wZDdUvCwdrscvxmtyJorp2sVYkMcvA==} engines: {node: '>=18.0.0'} - '@aws-sdk/credential-provider-sso@3.848.0': - resolution: {integrity: sha512-pozlDXOwJZL0e7w+dqXLgzVDB7oCx4WvtY0sk6l4i07uFliWF/exupb6pIehFWvTUcOvn5aFTTqcQaEzAD5Wsg==} + '@aws-sdk/credential-provider-sso@3.916.0': + resolution: {integrity: sha512-gu9D+c+U/Dp1AKBcVxYHNNoZF9uD4wjAKYCjgSN37j4tDsazwMEylbbZLuRNuxfbXtizbo4/TiaxBXDbWM7AkQ==} engines: {node: '>=18.0.0'} - '@aws-sdk/credential-provider-web-identity@3.848.0': - resolution: {integrity: sha512-D1fRpwPxtVDhcSc/D71exa2gYweV+ocp4D3brF0PgFd//JR3XahZ9W24rVnTQwYEcK9auiBZB89Ltv+WbWN8qw==} + '@aws-sdk/credential-provider-web-identity@3.917.0': + resolution: {integrity: sha512-pZncQhFbwW04pB0jcD5OFv3x2gAddDYCVxyJVixgyhSw7bKCYxqu6ramfq1NxyVpmm+qsw+ijwi/3cCmhUHF/A==} engines: {node: '>=18.0.0'} + deprecated: This version contains a compilation TypeScript error https://github.com/aws/aws-sdk-js-v3/issues/7457 - please use @aws-sdk/credential-providers@3.918.0 or higher - '@aws-sdk/lib-storage@3.850.0': - resolution: {integrity: sha512-DKG8mKeUMLRboyqwhKiV9QOiKXN00OYLnGsT21mhlaF1Uc7OZ6Vm+Olw4YrbYSBuDup0rMWtVaWudJ49I+ZCHA==} + '@aws-sdk/lib-storage@3.917.0': + resolution: {integrity: sha512-Z8mRzfP6PgUoybJHx/tH40aop42yeh66cW7wLM8R88egB2UYQ0IgxDoRynqlLi5uceI21wss/CIDkhzO9p1cOg==} engines: {node: '>=18.0.0'} peerDependencies: - '@aws-sdk/client-s3': ^3.850.0 + '@aws-sdk/client-s3': ^3.917.0 - '@aws-sdk/middleware-bucket-endpoint@3.840.0': - resolution: {integrity: sha512-+gkQNtPwcSMmlwBHFd4saVVS11In6ID1HczNzpM3MXKXRBfSlbZJbCt6wN//AZ8HMklZEik4tcEOG0qa9UY8SQ==} + '@aws-sdk/middleware-bucket-endpoint@3.914.0': + resolution: {integrity: sha512-mHLsVnPPp4iq3gL2oEBamfpeETFV0qzxRHmcnCfEP3hualV8YF8jbXGmwPCPopUPQDpbYDBHYtXaoClZikCWPQ==} engines: {node: '>=18.0.0'} - '@aws-sdk/middleware-expect-continue@3.840.0': - resolution: {integrity: sha512-iJg2r6FKsKKvdiU4oCOuCf7Ro/YE0Q2BT/QyEZN3/Rt8Nr4SAZiQOlcBXOCpGvuIKOEAhvDOUnW3aDHL01PdVw==} + '@aws-sdk/middleware-expect-continue@3.917.0': + resolution: {integrity: sha512-UPBq1ZP2CaxwbncWSbVqkhYXQrmfNiqAtHyBxi413hjRVZ4JhQ1UyH7pz5yqiG8zx2/+Po8cUD4SDUwJgda4nw==} engines: {node: '>=18.0.0'} - '@aws-sdk/middleware-flexible-checksums@3.846.0': - resolution: {integrity: sha512-CdkeVfkwt3+bDLhmOwBxvkUf6oY9iUhvosaUnqkoPsOqIiUEN54yTGOnO8A0wLz6mMsZ6aBlfFrQhFnxt3c+yw==} + '@aws-sdk/middleware-flexible-checksums@3.916.0': + resolution: {integrity: sha512-CBRRg6slHHBYAm26AWY/pECHK0vVO/peDoNhZiAzUNt4jV6VftotjszEJ904pKGOr7/86CfZxtCnP3CCs3lQjA==} engines: {node: '>=18.0.0'} - '@aws-sdk/middleware-host-header@3.840.0': - resolution: {integrity: sha512-ub+hXJAbAje94+Ya6c6eL7sYujoE8D4Bumu1NUI8TXjUhVVn0HzVWQjpRLshdLsUp1AW7XyeJaxyajRaJQ8+Xg==} + '@aws-sdk/middleware-host-header@3.914.0': + resolution: {integrity: sha512-7r9ToySQ15+iIgXMF/h616PcQStByylVkCshmQqcdeynD/lCn2l667ynckxW4+ql0Q+Bo/URljuhJRxVJzydNA==} engines: {node: '>=18.0.0'} - '@aws-sdk/middleware-location-constraint@3.840.0': - resolution: {integrity: sha512-KVLD0u0YMF3aQkVF8bdyHAGWSUY6N1Du89htTLgqCcIhSxxAJ9qifrosVZ9jkAzqRW99hcufyt2LylcVU2yoKQ==} + '@aws-sdk/middleware-location-constraint@3.914.0': + resolution: {integrity: sha512-Mpd0Sm9+GN7TBqGnZg1+dO5QZ/EOYEcDTo7KfvoyrXScMlxvYm9fdrUVMmLdPn/lntweZGV3uNrs+huasGOOTA==} engines: {node: '>=18.0.0'} - '@aws-sdk/middleware-logger@3.840.0': - resolution: {integrity: sha512-lSV8FvjpdllpGaRspywss4CtXV8M7NNNH+2/j86vMH+YCOZ6fu2T/TyFd/tHwZ92vDfHctWkRbQxg0bagqwovA==} + '@aws-sdk/middleware-logger@3.914.0': + resolution: {integrity: sha512-/gaW2VENS5vKvJbcE1umV4Ag3NuiVzpsANxtrqISxT3ovyro29o1RezW/Avz/6oJqjnmgz8soe9J1t65jJdiNg==} engines: {node: '>=18.0.0'} - '@aws-sdk/middleware-recursion-detection@3.840.0': - resolution: {integrity: sha512-Gu7lGDyfddyhIkj1Z1JtrY5NHb5+x/CRiB87GjaSrKxkDaydtX2CU977JIABtt69l9wLbcGDIQ+W0uJ5xPof7g==} + '@aws-sdk/middleware-recursion-detection@3.914.0': + resolution: {integrity: sha512-yiAjQKs5S2JKYc+GrkvGMwkUvhepXDigEXpSJqUseR/IrqHhvGNuOxDxq+8LbDhM4ajEW81wkiBbU+Jl9G82yQ==} engines: {node: '>=18.0.0'} - '@aws-sdk/middleware-sdk-s3@3.846.0': - resolution: {integrity: sha512-jP9x+2Q87J5l8FOP+jlAd7vGLn0cC6G9QGmf386e5OslBPqxXKcl3RjqGLIOKKos2mVItY3ApP5xdXQx7jGTVA==} + '@aws-sdk/middleware-sdk-s3@3.916.0': + resolution: {integrity: sha512-pjmzzjkEkpJObzmTthqJPq/P13KoNFuEi/x5PISlzJtHofCNcyXeVAQ90yvY2dQ6UXHf511Rh1/ytiKy2A8M0g==} engines: {node: '>=18.0.0'} - '@aws-sdk/middleware-ssec@3.840.0': - resolution: {integrity: sha512-CBZP9t1QbjDFGOrtnUEHL1oAvmnCUUm7p0aPNbIdSzNtH42TNKjPRN3TuEIJDGjkrqpL3MXyDSmNayDcw/XW7Q==} + '@aws-sdk/middleware-ssec@3.914.0': + resolution: {integrity: sha512-V1Oae/oLVbpNb9uWs+v80GKylZCdsbqs2c2Xb1FsAUPtYeSnxFuAWsF3/2AEMSSpFe0dTC5KyWr/eKl2aim9VQ==} engines: {node: '>=18.0.0'} - '@aws-sdk/middleware-user-agent@3.848.0': - resolution: {integrity: sha512-rjMuqSWJEf169/ByxvBqfdei1iaduAnfolTshsZxwcmLIUtbYrFUmts0HrLQqsAG8feGPpDLHA272oPl+NTCCA==} + '@aws-sdk/middleware-user-agent@3.916.0': + resolution: {integrity: sha512-mzF5AdrpQXc2SOmAoaQeHpDFsK2GE6EGcEACeNuoESluPI2uYMpuuNMYrUufdnIAIyqgKlis0NVxiahA5jG42w==} engines: {node: '>=18.0.0'} - '@aws-sdk/nested-clients@3.848.0': - resolution: {integrity: sha512-joLsyyo9u61jnZuyYzo1z7kmS7VgWRAkzSGESVzQHfOA1H2PYeUFek6vLT4+c9xMGrX/Z6B0tkRdzfdOPiatLg==} + '@aws-sdk/nested-clients@3.916.0': + resolution: {integrity: sha512-tgg8e8AnVAer0rcgeWucFJ/uNN67TbTiDHfD+zIOPKep0Z61mrHEoeT/X8WxGIOkEn4W6nMpmS4ii8P42rNtnA==} engines: {node: '>=18.0.0'} - '@aws-sdk/region-config-resolver@3.840.0': - resolution: {integrity: sha512-Qjnxd/yDv9KpIMWr90ZDPtRj0v75AqGC92Lm9+oHXZ8p1MjG5JE2CW0HL8JRgK9iKzgKBL7pPQRXI8FkvEVfrA==} + '@aws-sdk/region-config-resolver@3.914.0': + resolution: {integrity: sha512-KlmHhRbn1qdwXUdsdrJ7S/MAkkC1jLpQ11n+XvxUUUCGAJd1gjC7AjxPZUM7ieQ2zcb8bfEzIU7al+Q3ZT0u7Q==} engines: {node: '>=18.0.0'} - '@aws-sdk/s3-request-presigner@3.850.0': - resolution: {integrity: sha512-eFvMUCJXoVTkAxkqHKn125mLMGtNa76+oD3wV97ScXUZuL5liaj+kAN9nSqRiQ5vaCz5gsOeB9t/ba/cTGATjg==} + '@aws-sdk/s3-request-presigner@3.917.0': + resolution: {integrity: sha512-V1cSM6yQv8lV1Obrp5ti8iXLCRKq45OQETANkiMWRbAwTbzKQml0EfP08BFS+LKtSl2gJfO9tH7O2RgRuqhUuQ==} engines: {node: '>=18.0.0'} - '@aws-sdk/signature-v4-multi-region@3.846.0': - resolution: {integrity: sha512-ZMfIMxUljqZzPJGOcraC6erwq/z1puNMU35cO1a/WdhB+LdYknMn1lr7SJuH754QwNzzIlZbEgg4hoHw50+DpQ==} + '@aws-sdk/signature-v4-multi-region@3.916.0': + resolution: {integrity: sha512-fuzUMo6xU7e0NBzBA6TQ4FUf1gqNbg4woBSvYfxRRsIfKmSMn9/elXXn4sAE5UKvlwVQmYnb6p7dpVRPyFvnQA==} engines: {node: '>=18.0.0'} - '@aws-sdk/token-providers@3.848.0': - resolution: {integrity: sha512-oNPyM4+Di2Umu0JJRFSxDcKQ35+Chl/rAwD47/bS0cDPI8yrao83mLXLeDqpRPHyQW4sXlP763FZcuAibC0+mg==} + '@aws-sdk/token-providers@3.916.0': + resolution: {integrity: sha512-13GGOEgq5etbXulFCmYqhWtpcEQ6WI6U53dvXbheW0guut8fDFJZmEv7tKMTJgiybxh7JHd0rWcL9JQND8DwoQ==} engines: {node: '>=18.0.0'} - '@aws-sdk/types@3.840.0': - resolution: {integrity: sha512-xliuHaUFZxEx1NSXeLLZ9Dyu6+EJVQKEoD+yM+zqUo3YDZ7medKJWY6fIOKiPX/N7XbLdBYwajb15Q7IL8KkeA==} + '@aws-sdk/types@3.914.0': + resolution: {integrity: sha512-kQWPsRDmom4yvAfyG6L1lMmlwnTzm1XwMHOU+G5IFlsP4YEaMtXidDzW/wiivY0QFrhfCz/4TVmu0a2aPU57ug==} engines: {node: '>=18.0.0'} - '@aws-sdk/util-arn-parser@3.804.0': - resolution: {integrity: sha512-wmBJqn1DRXnZu3b4EkE6CWnoWMo1ZMvlfkqU5zPz67xx1GMaXlDCchFvKAXMjk4jn/L1O3tKnoFDNsoLV1kgNQ==} + '@aws-sdk/util-arn-parser@3.893.0': + resolution: {integrity: sha512-u8H4f2Zsi19DGnwj5FSZzDMhytYF/bCh37vAtBsn3cNDL3YG578X5oc+wSX54pM3tOxS+NY7tvOAo52SW7koUA==} engines: {node: '>=18.0.0'} - '@aws-sdk/util-endpoints@3.848.0': - resolution: {integrity: sha512-fY/NuFFCq/78liHvRyFKr+aqq1aA/uuVSANjzr5Ym8c+9Z3HRPE9OrExAHoMrZ6zC8tHerQwlsXYYH5XZ7H+ww==} + '@aws-sdk/util-endpoints@3.916.0': + resolution: {integrity: sha512-bAgUQwvixdsiGNcuZSDAOWbyHlnPtg8G8TyHD6DTfTmKTHUW6tAn+af/ZYJPXEzXhhpwgJqi58vWnsiDhmr7NQ==} engines: {node: '>=18.0.0'} - '@aws-sdk/util-format-url@3.840.0': - resolution: {integrity: sha512-VB1PWyI1TQPiPvg4w7tgUGGQER1xxXPNUqfh3baxUSFi1Oh8wHrDnFywkxLm3NMmgDmnLnSZ5Q326qAoyqKLSg==} + '@aws-sdk/util-format-url@3.914.0': + resolution: {integrity: sha512-QpdkoQjvPaYyzZwgk41vFyHQM5s0DsrsbQ8IoPUggQt4HaJUvmL1ShwMcSldbgdzwiRMqXUK8q7jrqUvkYkY6w==} engines: {node: '>=18.0.0'} '@aws-sdk/util-locate-window@3.804.0': resolution: {integrity: sha512-zVoRfpmBVPodYlnMjgVjfGoEZagyRF5IPn3Uo6ZvOZp24chnW/FRstH7ESDHDDRga4z3V+ElUQHKpFDXWyBW5A==} engines: {node: '>=18.0.0'} - '@aws-sdk/util-user-agent-browser@3.840.0': - resolution: {integrity: sha512-JdyZM3EhhL4PqwFpttZu1afDpPJCCc3eyZOLi+srpX11LsGj6sThf47TYQN75HT1CarZ7cCdQHGzP2uy3/xHfQ==} + '@aws-sdk/util-user-agent-browser@3.914.0': + resolution: {integrity: sha512-rMQUrM1ECH4kmIwlGl9UB0BtbHy6ZuKdWFrIknu8yGTRI/saAucqNTh5EI1vWBxZ0ElhK5+g7zOnUuhSmVQYUA==} - '@aws-sdk/util-user-agent-node@3.848.0': - resolution: {integrity: sha512-Zz1ft9NiLqbzNj/M0jVNxaoxI2F4tGXN0ZbZIj+KJ+PbJo+w5+Jo6d0UDAtbj3AEd79pjcCaP4OA9NTVzItUdw==} + '@aws-sdk/util-user-agent-node@3.916.0': + resolution: {integrity: sha512-CwfWV2ch6UdjuSV75ZU99N03seEUb31FIUrXBnwa6oONqj/xqXwrxtlUMLx6WH3OJEE4zI3zt5PjlTdGcVwf4g==} engines: {node: '>=18.0.0'} peerDependencies: aws-crt: '>=1.0.0' @@ -553,8 +479,12 @@ packages: aws-crt: optional: true - '@aws-sdk/xml-builder@3.821.0': - resolution: {integrity: sha512-DIIotRnefVL6DiaHtO6/21DhJ4JZnnIwdNbpwiAhdt/AVbttcE4yw925gsjur0OGv5BTYXQXU3YnANBYnZjuQA==} + '@aws-sdk/xml-builder@3.914.0': + resolution: {integrity: sha512-k75evsBD5TcIjedycYS7QXQ98AmOtbnxRJOPtCo0IwYRmy7UvqgS/gBL5SmrIqeV6FDSYRQMgdBxSMp6MLmdew==} + engines: {node: '>=18.0.0'} + + '@aws/lambda-invoke-store@0.0.1': + resolution: {integrity: sha512-ORHRQ2tmvnBXc8t/X9Z8IcSbBA4xTLKuN873FopzklHMeqBst7YG0d+AX97inkvDX+NChYtSr+qGfcqGFaI8Zw==} engines: {node: '>=18.0.0'} '@babel/code-frame@7.24.7': @@ -565,6 +495,10 @@ packages: resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} engines: {node: '>=6.9.0'} + '@babel/code-frame@7.29.0': + resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==} + engines: {node: '>=6.9.0'} + '@babel/compat-data@7.25.2': resolution: {integrity: sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==} engines: {node: '>=6.9.0'} @@ -573,6 +507,10 @@ packages: resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==} engines: {node: '>=6.9.0'} + '@babel/compat-data@7.29.0': + resolution: {integrity: sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==} + engines: {node: '>=6.9.0'} + '@babel/core@7.25.2': resolution: {integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==} engines: {node: '>=6.9.0'} @@ -581,6 +519,10 @@ packages: resolution: {integrity: sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==} engines: {node: '>=6.9.0'} + '@babel/core@7.29.0': + resolution: {integrity: sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==} + engines: {node: '>=6.9.0'} + '@babel/generator@7.25.0': resolution: {integrity: sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==} engines: {node: '>=6.9.0'} @@ -593,8 +535,12 @@ packages: resolution: {integrity: sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw==} engines: {node: '>=6.9.0'} - '@babel/helper-annotate-as-pure@7.25.9': - resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==} + '@babel/generator@7.29.1': + resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-annotate-as-pure@7.27.3': + resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==} engines: {node: '>=6.9.0'} '@babel/helper-compilation-targets@7.25.2': @@ -605,20 +551,32 @@ packages: resolution: {integrity: sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==} engines: {node: '>=6.9.0'} - '@babel/helper-create-class-features-plugin@7.27.0': - resolution: {integrity: sha512-vSGCvMecvFCd/BdpGlhpXYNhhC4ccxyvQWpbGL4CWbvfEoLFWUZuSuf7s9Aw70flgQF+6vptvgK2IfOnKlRmBg==} + '@babel/helper-compilation-targets@7.28.6': + resolution: {integrity: sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-create-class-features-plugin@7.28.6': + resolution: {integrity: sha512-dTOdvsjnG3xNT9Y0AUg1wAl38y+4Rl4sf9caSQZOXdNqVn+H+HbbJ4IyyHaIqNR6SW9oJpA/RuRjsjCw2IdIow==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-member-expression-to-functions@7.25.9': - resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==} + '@babel/helper-globals@7.28.0': + resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-member-expression-to-functions@7.28.5': + resolution: {integrity: sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==} engines: {node: '>=6.9.0'} '@babel/helper-module-imports@7.25.9': resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==} engines: {node: '>=6.9.0'} + '@babel/helper-module-imports@7.28.6': + resolution: {integrity: sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==} + engines: {node: '>=6.9.0'} + '@babel/helper-module-transforms@7.25.2': resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==} engines: {node: '>=6.9.0'} @@ -631,20 +589,26 @@ packages: peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-optimise-call-expression@7.25.9': - resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==} + '@babel/helper-module-transforms@7.28.6': + resolution: {integrity: sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==} engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 - '@babel/helper-plugin-utils@7.25.9': - resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==} + '@babel/helper-optimise-call-expression@7.27.1': + resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==} engines: {node: '>=6.9.0'} '@babel/helper-plugin-utils@7.26.5': resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==} engines: {node: '>=6.9.0'} - '@babel/helper-replace-supers@7.26.5': - resolution: {integrity: sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==} + '@babel/helper-plugin-utils@7.28.6': + resolution: {integrity: sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==} + engines: {node: '>=6.9.0'} + + '@babel/helper-replace-supers@7.28.6': + resolution: {integrity: sha512-mq8e+laIk94/yFec3DxSjCRD2Z0TAjhVbEJY3UQrlwVo15Lmt7C2wAUbK4bjnTs4APkwsYLTahXRraQXhb1WCg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 @@ -653,8 +617,8 @@ packages: resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==} engines: {node: '>=6.9.0'} - '@babel/helper-skip-transparent-expression-wrappers@7.25.9': - resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==} + '@babel/helper-skip-transparent-expression-wrappers@7.27.1': + resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==} engines: {node: '>=6.9.0'} '@babel/helper-string-parser@7.24.8': @@ -665,10 +629,18 @@ packages: resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} engines: {node: '>=6.9.0'} + '@babel/helper-string-parser@7.27.1': + resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} + engines: {node: '>=6.9.0'} + '@babel/helper-validator-identifier@7.25.9': resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} engines: {node: '>=6.9.0'} + '@babel/helper-validator-identifier@7.28.5': + resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==} + engines: {node: '>=6.9.0'} + '@babel/helper-validator-option@7.24.8': resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==} engines: {node: '>=6.9.0'} @@ -677,6 +649,10 @@ packages: resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==} engines: {node: '>=6.9.0'} + '@babel/helper-validator-option@7.27.1': + resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==} + engines: {node: '>=6.9.0'} + '@babel/helpers@7.25.0': resolution: {integrity: sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==} engines: {node: '>=6.9.0'} @@ -685,6 +661,10 @@ packages: resolution: {integrity: sha512-Mz/4+y8udxBKdmzt/UjPACs4G3j5SshJJEFFKxlCGPydG4JAHXxjWjAwjd09tf6oINvl1VfMJo+nB7H2YKQ0dA==} engines: {node: '>=6.9.0'} + '@babel/helpers@7.28.6': + resolution: {integrity: sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==} + engines: {node: '>=6.9.0'} + '@babel/highlight@7.24.7': resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==} engines: {node: '>=6.9.0'} @@ -704,32 +684,37 @@ packages: engines: {node: '>=6.0.0'} hasBin: true + '@babel/parser@7.29.0': + resolution: {integrity: sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==} + engines: {node: '>=6.0.0'} + hasBin: true + '@babel/plugin-syntax-jsx@7.25.9': resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-typescript@7.25.9': - resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==} + '@babel/plugin-syntax-typescript@7.28.6': + resolution: {integrity: sha512-+nDNmQye7nlnuuHDboPbGm00Vqg3oO8niRRL27/4LYHUsHYh0zJ1xWOz0uRwNFmM1Avzk8wZbc6rdiYhomzv/A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-react-jsx-self@7.25.9': - resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==} + '@babel/plugin-transform-react-jsx-self@7.27.1': + resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-react-jsx-source@7.25.9': - resolution: {integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==} + '@babel/plugin-transform-react-jsx-source@7.27.1': + resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-typescript@7.27.0': - resolution: {integrity: sha512-fRGGjO2UEGPjvEcyAZXRXAS8AfdaQoq7HnxAbJoAoW10B9xOKesmmndJv+Sym2a+9FHWZ9KbyyLCe9s0Sn5jtg==} + '@babel/plugin-transform-typescript@7.28.6': + resolution: {integrity: sha512-0YWL2RFxOqEm9Efk5PvreamxPME8OyY0wM5wh5lHjF+VtVhdneCWGzZeSqzOfiobVqQaNCd2z0tQvnI9DaPWPw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -754,6 +739,10 @@ packages: resolution: {integrity: sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA==} engines: {node: '>=6.9.0'} + '@babel/template@7.28.6': + resolution: {integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==} + engines: {node: '>=6.9.0'} + '@babel/traverse@7.25.3': resolution: {integrity: sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==} engines: {node: '>=6.9.0'} @@ -766,6 +755,10 @@ packages: resolution: {integrity: sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA==} engines: {node: '>=6.9.0'} + '@babel/traverse@7.29.0': + resolution: {integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==} + engines: {node: '>=6.9.0'} + '@babel/types@7.25.2': resolution: {integrity: sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==} engines: {node: '>=6.9.0'} @@ -778,6 +771,10 @@ packages: resolution: {integrity: sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==} engines: {node: '>=6.9.0'} + '@babel/types@7.29.0': + resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==} + engines: {node: '>=6.9.0'} + '@bcoe/v8-coverage@1.0.2': resolution: {integrity: sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==} engines: {node: '>=18'} @@ -851,152 +848,167 @@ packages: resolution: {integrity: sha512-tpyc+7i6bPG9mvaBbtKUeghfyZSDgWquIDfMgqYtTbmZ9Y9VzEm2je9EYcQ0aoz5o7NvGS+rcDec93yO08MHYA==} engines: {node: '>=v18'} - '@esbuild/aix-ppc64@0.24.2': - resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==} + '@emnapi/core@1.8.1': + resolution: {integrity: sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg==} + + '@emnapi/runtime@1.8.1': + resolution: {integrity: sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==} + + '@emnapi/wasi-threads@1.1.0': + resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==} + + '@esbuild/aix-ppc64@0.25.12': + resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==} engines: {node: '>=18'} cpu: [ppc64] os: [aix] - '@esbuild/android-arm64@0.24.2': - resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==} + '@esbuild/android-arm64@0.25.12': + resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==} engines: {node: '>=18'} cpu: [arm64] os: [android] - '@esbuild/android-arm@0.24.2': - resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==} + '@esbuild/android-arm@0.25.12': + resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==} engines: {node: '>=18'} cpu: [arm] os: [android] - '@esbuild/android-x64@0.24.2': - resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==} + '@esbuild/android-x64@0.25.12': + resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==} engines: {node: '>=18'} cpu: [x64] os: [android] - '@esbuild/darwin-arm64@0.24.2': - resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==} + '@esbuild/darwin-arm64@0.25.12': + resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==} engines: {node: '>=18'} cpu: [arm64] os: [darwin] - '@esbuild/darwin-x64@0.24.2': - resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==} + '@esbuild/darwin-x64@0.25.12': + resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==} engines: {node: '>=18'} cpu: [x64] os: [darwin] - '@esbuild/freebsd-arm64@0.24.2': - resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==} + '@esbuild/freebsd-arm64@0.25.12': + resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==} engines: {node: '>=18'} cpu: [arm64] os: [freebsd] - '@esbuild/freebsd-x64@0.24.2': - resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==} + '@esbuild/freebsd-x64@0.25.12': + resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==} engines: {node: '>=18'} cpu: [x64] os: [freebsd] - '@esbuild/linux-arm64@0.24.2': - resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==} + '@esbuild/linux-arm64@0.25.12': + resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==} engines: {node: '>=18'} cpu: [arm64] os: [linux] - '@esbuild/linux-arm@0.24.2': - resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==} + '@esbuild/linux-arm@0.25.12': + resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==} engines: {node: '>=18'} cpu: [arm] os: [linux] - '@esbuild/linux-ia32@0.24.2': - resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==} + '@esbuild/linux-ia32@0.25.12': + resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==} engines: {node: '>=18'} cpu: [ia32] os: [linux] - '@esbuild/linux-loong64@0.24.2': - resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==} + '@esbuild/linux-loong64@0.25.12': + resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==} engines: {node: '>=18'} cpu: [loong64] os: [linux] - '@esbuild/linux-mips64el@0.24.2': - resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==} + '@esbuild/linux-mips64el@0.25.12': + resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==} engines: {node: '>=18'} cpu: [mips64el] os: [linux] - '@esbuild/linux-ppc64@0.24.2': - resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==} + '@esbuild/linux-ppc64@0.25.12': + resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==} engines: {node: '>=18'} cpu: [ppc64] os: [linux] - '@esbuild/linux-riscv64@0.24.2': - resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==} + '@esbuild/linux-riscv64@0.25.12': + resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==} engines: {node: '>=18'} cpu: [riscv64] os: [linux] - '@esbuild/linux-s390x@0.24.2': - resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==} + '@esbuild/linux-s390x@0.25.12': + resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==} engines: {node: '>=18'} cpu: [s390x] os: [linux] - '@esbuild/linux-x64@0.24.2': - resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==} + '@esbuild/linux-x64@0.25.12': + resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==} engines: {node: '>=18'} cpu: [x64] os: [linux] - '@esbuild/netbsd-arm64@0.24.2': - resolution: {integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==} + '@esbuild/netbsd-arm64@0.25.12': + resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==} engines: {node: '>=18'} cpu: [arm64] os: [netbsd] - '@esbuild/netbsd-x64@0.24.2': - resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==} + '@esbuild/netbsd-x64@0.25.12': + resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==} engines: {node: '>=18'} cpu: [x64] os: [netbsd] - '@esbuild/openbsd-arm64@0.24.2': - resolution: {integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==} + '@esbuild/openbsd-arm64@0.25.12': + resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==} engines: {node: '>=18'} cpu: [arm64] os: [openbsd] - '@esbuild/openbsd-x64@0.24.2': - resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==} + '@esbuild/openbsd-x64@0.25.12': + resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==} engines: {node: '>=18'} cpu: [x64] os: [openbsd] - '@esbuild/sunos-x64@0.24.2': - resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==} + '@esbuild/openharmony-arm64@0.25.12': + resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] + + '@esbuild/sunos-x64@0.25.12': + resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==} engines: {node: '>=18'} cpu: [x64] os: [sunos] - '@esbuild/win32-arm64@0.24.2': - resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==} + '@esbuild/win32-arm64@0.25.12': + resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==} engines: {node: '>=18'} cpu: [arm64] os: [win32] - '@esbuild/win32-ia32@0.24.2': - resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==} + '@esbuild/win32-ia32@0.25.12': + resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==} engines: {node: '>=18'} cpu: [ia32] os: [win32] - '@esbuild/win32-x64@0.24.2': - resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==} + '@esbuild/win32-x64@0.25.12': + resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==} engines: {node: '>=18'} cpu: [x64] os: [win32] @@ -1007,17 +1019,47 @@ packages: peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + '@eslint-community/eslint-utils@4.9.1': + resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + '@eslint-community/regexpp@4.11.0': resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - '@eslint/eslintrc@2.1.4': - resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@eslint-community/regexpp@4.12.2': + resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - '@eslint/js@8.57.1': - resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@eslint/config-array@0.21.1': + resolution: {integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/config-helpers@0.4.2': + resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/core@0.17.0': + resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/eslintrc@3.3.3': + resolution: {integrity: sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/js@9.39.2': + resolution: {integrity: sha512-q1mjIoW1VX4IvSocvM/vbTiveKC4k9eLrajNEuSsmjymSDEbpGddtpfOoN7YGAqBK3NG+uqo8ia4PDTt8buCYA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/object-schema@2.1.7': + resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/plugin-kit@0.4.1': + resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@fastify/accept-negotiator@2.0.1': resolution: {integrity: sha512-/c/TW2bO/v9JeEgoD/g1G5GxGeCF1Hafdf79WPmUlgYiBXummY0oX3VVq4yFkKKVBKDNlaDUYoab7g38RpPqCQ==} @@ -1028,8 +1070,11 @@ packages: '@fastify/busboy@3.1.1': resolution: {integrity: sha512-5DGmA8FTdB2XbDeEwc/5ZXBl6UbBAyBOOLlPuBnZ/N1SwdH9Ii+cOX3tBROlDgcTXxjOYnLMVoKk9+FXAw0CJw==} - '@fastify/deepmerge@2.0.2': - resolution: {integrity: sha512-3wuLdX5iiiYeZWP6bQrjqhrcvBIf0NHbQH1Ur1WbHvoiuTYUEItgygea3zs8aHpiitn0lOB8gX20u1qO+FDm7Q==} + '@fastify/cors@11.2.0': + resolution: {integrity: sha512-LbLHBuSAdGdSFZYTLVA3+Ch2t+sA6nq3Ejc6XLAKiQ6ViS2qFnvicpj0htsx03FyYeLs04HfRNBsz/a8SvbcUw==} + + '@fastify/deepmerge@3.2.0': + resolution: {integrity: sha512-aO5giNgFN+rD4fMUAkro9nEL7c9gh5Q3lh0ZGKMDAhQAytf22HLicF/qZ2EYTDmH+XL2WvdazwBfOdmp6NiwBg==} '@fastify/error@4.1.0': resolution: {integrity: sha512-KeFcciOr1eo/YvIXHP65S94jfEEqn1RxTRBT1aJaHxY5FK0/GDXYozsQMMWlZoHgi8i0s+YtrLsgj/JkUUjSkQ==} @@ -1037,6 +1082,9 @@ packages: '@fastify/fast-json-stringify-compiler@5.0.2': resolution: {integrity: sha512-YdR7gqlLg1xZAQa+SX4sMNzQHY5pC54fu9oC5aYSUqBhyn6fkLkrdtKlpVdCNPlwuUuXA1PjFTEmvMF6ZVXVGw==} + '@fastify/formbody@8.0.2': + resolution: {integrity: sha512-84v5J2KrkXzjgBpYnaNRPqwgMsmY7ZDjuj0YVuMR3NXCJRCgKEZy/taSP1wUYGn0onfxJpLyRGDLa+NMaDJtnA==} + '@fastify/forwarded@3.0.0': resolution: {integrity: sha512-kJExsp4JCms7ipzg7SJ3y8DwmePaELHxKYtg+tZow+k0znUTf3cb+npgyqm8+ATZOdmfgfydIebPDWM172wfyA==} @@ -1046,8 +1094,8 @@ packages: '@fastify/merge-json-schemas@0.2.1': resolution: {integrity: sha512-OA3KGBCy6KtIvLf8DINC5880o5iBlDX4SxzLQS8HorJAbqluzLRn80UXU0bxZn7UOFhFgpRJDasfwn9nG4FG4A==} - '@fastify/multipart@9.0.3': - resolution: {integrity: sha512-pJogxQCrT12/6I5Fh6jr3narwcymA0pv4B0jbC7c6Bl9wnrxomEUnV0d26w6gUls7gSXmhG8JGRMmHFIPsxt1g==} + '@fastify/multipart@9.3.0': + resolution: {integrity: sha512-NpeKipTOjjL1dA7SSlRMrOWWtrE8/0yKOmeudkdQoEaz4sVDJw5MVdZIahsWhvpc3YTN7f04f9ep/Y65RKoOWA==} '@fastify/proxy-addr@5.0.0': resolution: {integrity: sha512-37qVVA1qZ5sgH7KpHkkC4z9SK6StIsIcOmpjvMPXNb3vx2GQxhZocogVYbr2PbbeLCQxYIPDok307xEvRZOzGA==} @@ -1055,26 +1103,23 @@ packages: '@fastify/send@3.3.1': resolution: {integrity: sha512-6pofeVwaHN+E/MAofCwDqkWUliE3i++jlD0VH/LOfU8TJlCkMUSgKvA9bawDdVXxjve7XrdYMyDmkiYaoGWEtA==} + '@fastify/sensible@6.0.4': + resolution: {integrity: sha512-1vxcCUlPMew6WroK8fq+LVOwbsLtX+lmuRuqpcp6eYqu6vmkLwbKTdBWAZwbeaSgCfW4tzUpTIHLLvTiQQ1BwQ==} + '@fastify/static@8.1.1': resolution: {integrity: sha512-TW9eyVHJLytZNpBlSIqd0bl1giJkEaRaPZG+5AT3L/OBKq9U8D7g/OYmc2NPQZnzPURGhMt3IAWuyVkvd2nOkQ==} '@fastify/websocket@11.0.2': resolution: {integrity: sha512-1oyJkNSZNJGjo/A5fXvlpEcm1kTBD91nRAN9lA7RNVsVNsyC5DuhOXdNL9/4UawVe7SKvzPT/QVI4RdtE9ylnA==} - '@graphql-tools/merge@9.0.19': - resolution: {integrity: sha512-iJP3Xke+vgnST58A1Q/1+y3bzfbYalIMnegUNupYHNvHHSE0PXoq8YieqQF8JYzWVACMxiq/M4Y1vW75mS2UVg==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/merge@9.1.1': resolution: {integrity: sha512-BJ5/7Y7GOhTuvzzO5tSBFL4NGr7PVqTJY3KeIDlVTT8YLcTXtBR+hlrC3uyEym7Ragn+zyWdHeJ9ev+nRX1X2w==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/utils@10.8.1': - resolution: {integrity: sha512-fI5NNuqeEAHyp7NuCDjvxWR5PTUXM4AqY9BoC59ZcX4nePAJje27ZsFHbAMS6EKDosY1K/D4ADxsO0P5+FH07A==} + '@graphql-tools/merge@9.1.7': + resolution: {integrity: sha512-Y5E1vTbTabvcXbkakdFUt4zUIzB1fyaEnVmIWN0l0GMed2gdD01TpZWLUm4RNAxpturvolrb24oGLQrBbPLSoQ==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -1085,6 +1130,12 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + '@graphql-tools/utils@11.0.0': + resolution: {integrity: sha512-bM1HeZdXA2C3LSIeLOnH/bcqSgbQgKEDrjxODjqi3y58xai2TkNrtYcQSoWzGbt9VMN1dORGjR7Vem8SPnUFQA==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + '@graphql-typed-document-node/core@3.2.0': resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==} peerDependencies: @@ -1102,18 +1153,21 @@ packages: peerDependencies: react-hook-form: ^7.0.0 - '@humanwhocodes/config-array@0.13.0': - resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==} - engines: {node: '>=10.10.0'} - deprecated: Use @eslint/config-array instead + '@humanfs/core@0.19.1': + resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} + engines: {node: '>=18.18.0'} + + '@humanfs/node@0.16.7': + resolution: {integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==} + engines: {node: '>=18.18.0'} '@humanwhocodes/module-importer@1.0.1': resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} engines: {node: '>=12.22'} - '@humanwhocodes/object-schema@2.0.3': - resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} - deprecated: Use @eslint/object-schema instead + '@humanwhocodes/retry@0.4.3': + resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==} + engines: {node: '>=18.18'} '@hutson/parse-repository-url@3.0.2': resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==} @@ -1163,10 +1217,16 @@ packages: resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} engines: {node: '>=8'} + '@jridgewell/gen-mapping@0.3.13': + resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} + '@jridgewell/gen-mapping@0.3.5': resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} engines: {node: '>=6.0.0'} + '@jridgewell/remapping@2.3.5': + resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==} + '@jridgewell/resolve-uri@3.1.2': resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} engines: {node: '>=6.0.0'} @@ -1181,10 +1241,16 @@ packages: '@jridgewell/trace-mapping@0.3.25': resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + '@jridgewell/trace-mapping@0.3.31': + resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} + '@lukeed/ms@2.0.2': resolution: {integrity: sha512-9I2Zn6+NJLfaGoz9jN3lpwDgAYvfGeNYdbAIjJOqzs4Tpc+VU3Jqq4IofSUBKajiDS8k9fZIg18/z13mpk1bsA==} engines: {node: '>=8'} + '@napi-rs/wasm-runtime@0.2.12': + resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==} + '@nodelib/fs.scandir@2.1.5': resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} engines: {node: '>= 8'} @@ -1197,10 +1263,6 @@ packages: resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} engines: {node: '>= 8'} - '@nolyfill/is-core-module@1.0.39': - resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==} - engines: {node: '>=12.4.0'} - '@octokit/auth-token@2.5.0': resolution: {integrity: sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==} @@ -1250,64 +1312,48 @@ packages: '@one-ini/wasm@0.1.1': resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==} + '@opentelemetry/api@1.9.0': + resolution: {integrity: sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==} + engines: {node: '>=8.0.0'} + '@pkgjs/parseargs@0.11.0': resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} engines: {node: '>=14'} - '@pkgr/core@0.1.1': - resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==} + '@pkgr/core@0.2.9': + resolution: {integrity: sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==} engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} '@popperjs/core@2.11.8': resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} - '@prefabs.tech/eslint-config@0.2.0': - resolution: {integrity: sha512-ILmLo3T7XkCo4Yrxs+LanzETwn+MRtq4LAz3EzAAB5WyvJ0vJHZcwovR7QFfsmQffMD3/Y3U69eDKT2iCPIYHA==} - peerDependencies: - '@typescript-eslint/eslint-plugin': '>=8.14.0' - '@typescript-eslint/parser': '>=8.14.0' - eslint: '>=8.57.1 <9.0.0' - eslint-config-prettier: '>=9.1.0' - eslint-config-react-app: '>=7.0.1' - eslint-import-resolver-alias: '>=1.1.2' - eslint-import-resolver-typescript: '>=3.6.3' - eslint-plugin-cypress: '>=3.6.0' - eslint-plugin-import: '>=2.31.0' - eslint-plugin-n: '>=14.0.0' - eslint-plugin-prettier: '>=5.2.1' - eslint-plugin-promise: '>=7.1.0' - eslint-plugin-unicorn: '>=56.0.1' - eslint-plugin-vue: '>=9.29.0' + '@prefabs.tech/eslint-config@0.5.0': + resolution: {integrity: sha512-GFzcgTUqi25770aeQ7I89dk9y/ct5PEnUzburmISIewufejcTHcQtqU9EVGmuYECg8ZXRB6OyStULTeCKapAtA==} + peerDependencies: + eslint: '>=9.0.0' prettier: '>=3.3.3' typescript: '>=4.9.5' - vue-eslint-parser: '>=9.4.3' - peerDependenciesMeta: - eslint-config-react-app: - optional: true - eslint-plugin-cypress: - optional: true - eslint-plugin-n: - optional: true - eslint-plugin-promise: - optional: true - eslint-plugin-vue: - optional: true - vue-eslint-parser: - optional: true - '@prefabs.tech/fastify-config@0.89.2': - resolution: {integrity: sha512-2xyMSPceDONX/qk/TEp7Vw2TxHqUZtxZUn6kx8oFBh7HAnug0CxYWtGJ3HadIx2Xu6mEiEV8EwM7RzKfXjUhZA==} + '@prefabs.tech/fastify-config@0.93.5': + resolution: {integrity: sha512-jUStwFcjA8YpcE7tDQ/I6rdkuTcc0VjOg+KaT5/Q6t9/f6eq7P8Z2ycKj5fOWYuMmGKlqZdH85ZFKMPyaluSHA==} + engines: {node: '>=20'} + peerDependencies: + fastify: '>=5.2.1' + fastify-plugin: '>=5.0.1' + + '@prefabs.tech/fastify-error-handler@0.93.5': + resolution: {integrity: sha512-rN8Ok0osSNVGuHMmDHIhl/WIdB42FZciVA48T/EwKa0NGAkcRM+APk+f9uv9UoO+C9SqTO/rJYl8eDGTLaHRHQ==} engines: {node: '>=20'} peerDependencies: fastify: '>=5.2.1' fastify-plugin: '>=5.0.1' - '@prefabs.tech/fastify-graphql@0.89.2': - resolution: {integrity: sha512-F9edslfA6g+C4rnPenZNI1k59TlZ/G+cLYI3HwiaPmohw2Iwuc7Uk6HaCpl8Ng1VR4W5lxOr838RFMMIZrr/PA==} + '@prefabs.tech/fastify-graphql@0.93.5': + resolution: {integrity: sha512-y//8Leg3CKNAzB9dIvuSjqQdiwgWioI21I8jAtscV+2vG63HwuAnS3eX8c2YFtbbEvIoUqUNeOCImzhODqr6Ug==} engines: {node: '>=20'} peerDependencies: - '@prefabs.tech/fastify-config': 0.89.2 - '@prefabs.tech/fastify-slonik': 0.89.2 + '@prefabs.tech/fastify-config': 0.93.5 + '@prefabs.tech/fastify-slonik': 0.93.5 fastify: '>=5.2.1' fastify-plugin: '>=5.0.1' graphql: '>=16.9.0' @@ -1315,11 +1361,11 @@ packages: slonik: '>=46.1.0' zod: '>=3.23.8' - '@prefabs.tech/fastify-mailer@0.89.2': - resolution: {integrity: sha512-k6au+WpgZ/4oy13pt19/b7hINCsc0BFGCN0tKAWclibu68zEh/KlfGZOPfIVHasPZTAlJaz9a3bV75z9QtI1VQ==} + '@prefabs.tech/fastify-mailer@0.93.5': + resolution: {integrity: sha512-rYfJjRc17nAgrBwxTAF8SC4BofrnOCSBC32lj2HpXqBTj/BvcV+NSVLjCM0qLdqC5jx6f/D02XtiZiu2ODyOpw==} engines: {node: '>=20'} peerDependencies: - '@prefabs.tech/fastify-config': 0.89.2 + '@prefabs.tech/fastify-config': 0.93.5 fastify: '>=5.2.1' fastify-plugin: '>=5.0.1' mjml: '>=4.15.3' @@ -1327,23 +1373,24 @@ packages: '@prefabs.tech/fastify-config': optional: true - '@prefabs.tech/fastify-s3@0.89.2': - resolution: {integrity: sha512-fles694UBMZsXAZkncjrGS+hIcC/mv1fcGkSPyfFX8TWMboouoeQrDVgxeOwu0pcbgz94LSehBa4HzPZe7mCoQ==} + '@prefabs.tech/fastify-s3@0.93.5': + resolution: {integrity: sha512-LqpU+beLc/F0IHI0VVcLvxfUYqDP/2xu3+Ywh9C9Zcmx5DdlcmmokO6audzgKzSJkUdKP8FSxEtubcN9+0ZwRw==} engines: {node: '>=20'} peerDependencies: - '@prefabs.tech/fastify-config': 0.89.2 - '@prefabs.tech/fastify-graphql': 0.89.2 - '@prefabs.tech/fastify-slonik': 0.89.2 + '@prefabs.tech/fastify-config': 0.93.5 + '@prefabs.tech/fastify-error-handler': 0.93.5 + '@prefabs.tech/fastify-graphql': 0.93.5 + '@prefabs.tech/fastify-slonik': 0.93.5 fastify: '>=5.2.1' fastify-plugin: '>=5.0.1' slonik: '>=46.1.0' zod: '>=3.23.8' - '@prefabs.tech/fastify-slonik@0.89.2': - resolution: {integrity: sha512-ILV/jctVvCSCNF5ErRpIe3cZl22W8KpbAVdoHtui5FGI7A5guUndVW25x/m83tGy2e6Eu/QRUpSwJzAuD+pSFg==} + '@prefabs.tech/fastify-slonik@0.93.5': + resolution: {integrity: sha512-jfvkmlBPcMqZVlCQ4PVGfn1TTrNfcS/hURnIQswUTvgsyOt8XA3WvTsQhtlUFjK16e4s4NOMZ+gIdiP0lt0Kew==} engines: {node: '>=20'} peerDependencies: - '@prefabs.tech/fastify-config': 0.89.2 + '@prefabs.tech/fastify-config': 0.93.5 fastify: '>=5.2.1' fastify-plugin: '>=5.0.1' pg-mem: '>=3.0.2' @@ -1353,17 +1400,18 @@ packages: pg-mem: optional: true - '@prefabs.tech/fastify-user@0.89.2': - resolution: {integrity: sha512-ekkSNVVL8azAWZ/NP4KCApohYES5McdDfFg3qeXQrly+/X3UTlgR4qslY9wOBcXCqmnyiqjSVYhgEuDGcq6k9Q==} + '@prefabs.tech/fastify-user@0.93.5': + resolution: {integrity: sha512-jWApW9K4JR/pog3/ZekYD0WknBsOmKG074z1FBQMDIsfGT6sMmhttD04mXGUvGpVRy8s26RHNEN1BhGpKWknPg==} engines: {node: '>=20'} peerDependencies: '@fastify/cors': '>=11.0.1' '@fastify/formbody': '>=8.0.2' - '@prefabs.tech/fastify-config': 0.89.2 - '@prefabs.tech/fastify-graphql': 0.89.2 - '@prefabs.tech/fastify-mailer': 0.89.2 - '@prefabs.tech/fastify-s3': 0.89.2 - '@prefabs.tech/fastify-slonik': 0.89.2 + '@prefabs.tech/fastify-config': 0.93.5 + '@prefabs.tech/fastify-error-handler': 0.93.5 + '@prefabs.tech/fastify-graphql': 0.93.5 + '@prefabs.tech/fastify-mailer': 0.93.5 + '@prefabs.tech/fastify-s3': 0.93.5 + '@prefabs.tech/fastify-slonik': 0.93.5 fastify: '>=5.2.1' fastify-plugin: '>=5.0.1' mercurius: '>=16.1.0' @@ -1377,32 +1425,32 @@ packages: engines: {node: '>10.17.0'} hasBin: true - '@prefabs.tech/react-config@0.61.0': - resolution: {integrity: sha512-gaAtSlFokZ9oWDtZg4qf+gpNJC00pSbWmlpPagKmtbIp2kX1EZDX4LugHKkIIerQ6HYVlzMHByl6ytG2ZEJMfQ==} + '@prefabs.tech/react-config@0.70.0': + resolution: {integrity: sha512-898rolTYkujbTim9GvErhnkqcO7zvVDajxCyr1JlCp/KTn6ImBjYSHjrxfDLTIYoCKYj2shp+9FDaJ6/+SUaXQ==} engines: {node: '>=18'} peerDependencies: react: '>=18.2' - '@prefabs.tech/react-form@0.61.0': - resolution: {integrity: sha512-h4IH9ol3I4h0JbiaLYJWmg5O5wXZhNhkGaTpqAHr/x6utGky+Fc2ZpAv3zgBruR8m7kLcHoFr3M6nLeK9K74AQ==} + '@prefabs.tech/react-form@0.70.0': + resolution: {integrity: sha512-Rvigbr5IKNwzWW1ABGjVll1NiB/JRLQcsCTe68uIhiVUNRf0BBhGQ9WxKpWRFD4szlTzyTppprij4Meom2xBAQ==} engines: {node: '>=18'} peerDependencies: - '@prefabs.tech/react-ui': 0.61.0 + '@prefabs.tech/react-ui': 0.70.0 primereact: 9.6.1 react: '>=18.2' react-dom: '>=18.2' zod: '>=3.21.4' - '@prefabs.tech/react-i18n@0.61.0': - resolution: {integrity: sha512-1Bal5mEEV5Z4hreiscQA8jTON9XPHZOXyZk8YWAZMn9LTiZkH5Bt18lzY39Eq4fRTDkNvWT6A1IPS9MfRAr9jg==} + '@prefabs.tech/react-i18n@0.70.0': + resolution: {integrity: sha512-dhZfziYwuxR7NConvYAayiS6ZKVbhfc0p7Vg2YYGwVuehqYRGjgsOaSvfr3zifG33ur+gy/G3ZKbWZQlJ7YrSg==} engines: {node: '>=18'} peerDependencies: - '@prefabs.tech/react-config': 0.61.0 + '@prefabs.tech/react-config': 0.70.0 react: '>=18.2' react-dom: '>=18.2' - '@prefabs.tech/react-ui@0.61.0': - resolution: {integrity: sha512-hiDSetQMDM2TlVraZH+BiN0e7ymhVA7NgcURzNogyHI+xg6KKiq7EL68v+ucNWJs+CYXSq9UQ0bgDqRtY+Ledg==} + '@prefabs.tech/react-ui@0.70.0': + resolution: {integrity: sha512-5BYzIIxUbkTG9JxKGH7gjftiRnnd5CSB9oZy60SpEDBdiB0rypWodXnMOkvhxs1MP0aCuxXy/0hTS83wcA48pg==} engines: {node: '>=18'} peerDependencies: primereact: 9.6.1 @@ -1410,18 +1458,18 @@ packages: react-dom: '>=18.2' react-router-dom: '>=6.9' - '@prefabs.tech/tsconfig@0.2.0': - resolution: {integrity: sha512-AUsEmP7j7NnfEYa18u4bkXJlijk2duaKaEhhhfeTCOj01nNRMhaqGWYkYaphdiUR4mSU3e1+wkVvJBbX8Ri3fg==} + '@prefabs.tech/tsconfig@0.5.0': + resolution: {integrity: sha512-lpu9UPVDpbpMKlClhImF8x0YIqSm6dTtBpVK8/BFkhfOrJR1hp5l1EBlvbkzEL2hxx1vx/cQ43dEDobAZvBBQA==} - '@prefabs.tech/vue3-config@0.18.0': - resolution: {integrity: sha512-UTNjvH0vVVO6RyAkB0F63ZAhWVgWlEUcsTdvOIMz+Z4NhADi+lAeaRvosbCZG+Y9zLyiy6LBv5AZHWhmiRI4FA==} + '@prefabs.tech/vue3-config@0.31.0': + resolution: {integrity: sha512-M3WPsv0Wk8WE8EqH1kDJJqn6ZWfTrf8hD+OmIl8PP5YW9y4MhyT+xaNpyMxPw8e+vC1qp6v1Vs8tZRVOHyax0A==} engines: {node: '>=18', pnpm: '>=9'} peerDependencies: vue: '>=3.2' vue-router: '>=4.0' - '@prefabs.tech/vue3-form@0.18.0': - resolution: {integrity: sha512-g8NUF3inY8qtX0CI7cjQ/IcNHhs/uxzs8WG5hrUkF2C/W3kxZU5h7hW9TvB+HFqvFjnWcVOFBzvnNz2bezRDww==} + '@prefabs.tech/vue3-form@0.31.0': + resolution: {integrity: sha512-SzYPlVN4b0tkm9VR68aQAwxdcGIRDnRYgB/fCwoOuLjyB2MZ/WG2P1sfHIULqW5QWmPHeUZ/dd/qULXxZX5lHA==} engines: {node: '>=18', pnpm: '>=9'} peerDependencies: '@vee-validate/i18n': '>=4.7.4' @@ -1431,48 +1479,48 @@ packages: vue: '>=3.2' zod: '>=3.20.6' - '@prefabs.tech/vue3-i18n@0.18.0': - resolution: {integrity: sha512-hTWNnFI8neZsiOkey0VgdP1fy8c9+pknvIbDtt8igogaUYU8Om/dFh+/U97+y3bbX8VzolYXhk4fQ0ZCVs7mBA==} + '@prefabs.tech/vue3-i18n@0.31.0': + resolution: {integrity: sha512-aGwTXcbIgmCotEj5sbJjgTtnC8IS/8l5gFOuA9HfSOZ0YTiu+dDKS6lJLPmWbHw8x8WoGcX5/5bPahiwyyjZLQ==} engines: {node: '>=18', pnpm: '>=9'} peerDependencies: - '@prefabs.tech/vue3-config': 0.18.0 + '@prefabs.tech/vue3-config': 0.31.0 '@vueuse/core': '>=9.4.0' pinia: '>=2.0' vue: '>=3.2' - '@prefabs.tech/vue3-layout@0.18.0': - resolution: {integrity: sha512-4k5AwSp5XxrX9gwFinqXQip0i6mRTGeYiTkLw30QgUAaxzzGT5iSCJdMTszrhGulhvGwk7PewaoXj+/Gp1FGuw==} + '@prefabs.tech/vue3-layout@0.31.0': + resolution: {integrity: sha512-ZCYYSK8S7noQPGEumPTrsfNHqLUxHH+kuD2dntXodOxq9yO6x7rvXkExLBDXm3y2ENeSVE1o+GENHXUN3D/QEQ==} engines: {node: '>=18', pnpm: '>=9'} peerDependencies: - '@prefabs.tech/vue3-config': 0.18.0 - '@prefabs.tech/vue3-i18n': 0.18.0 - '@prefabs.tech/vue3-ui': 0.18.0 + '@prefabs.tech/vue3-config': 0.31.0 + '@prefabs.tech/vue3-i18n': 0.31.0 + '@prefabs.tech/vue3-ui': 0.31.0 '@vueuse/core': '>=9.4.0' vue: '>=3.2' vue-router: '>=4.0' - '@prefabs.tech/vue3-tanstack-table@0.18.0': - resolution: {integrity: sha512-AIzlJKCgokFBpIeDldEJ42ySpTkILy8qwFbbkXPGTOvxZFN7Gb9x3bqNMluH18ZDmFnWkkqO+do/K7IZZpRCcA==} + '@prefabs.tech/vue3-tanstack-table@0.31.0': + resolution: {integrity: sha512-T64Immh1QCya344ULKYMnk65o3xPE/I1zzFZ4syu5nuenGB7NnyU6c8ttkjSQXhEzPh+5q5q3wezgxru1tMkhg==} engines: {node: '>=18', pnpm: '>=9'} peerDependencies: - '@prefabs.tech/vue3-form': 0.18.0 - '@prefabs.tech/vue3-ui': 0.18.0 + '@prefabs.tech/vue3-form': 0.31.0 + '@prefabs.tech/vue3-ui': 0.31.0 vue: '>=3.2' - '@prefabs.tech/vue3-ui@0.18.0': - resolution: {integrity: sha512-AIKZLV5xXOM036aSypJg30fTSTZ+TK/aHxW1IyYjpil7ltxvp3QFJmRq0mA7pW9ARB87xTzFhDVSa/D64W459Q==} + '@prefabs.tech/vue3-ui@0.31.0': + resolution: {integrity: sha512-UEEidzpIkM8QIWLzQj8mO9DDSg0nLUnBc6bpaJ6FaLYFBE/Prt9B4dJr9vbnJW3vHLXGpuGRUrTTglqmG7tH3A==} engines: {node: '>=18', pnpm: '>=9'} peerDependencies: vue: '>=3.2' - '@prefabs.tech/vue3-user@0.18.0': - resolution: {integrity: sha512-2mgNdTIbflhIKgzGF4Zpub/QHyzcvlv7zENDVpgINCMlUCYeg9/C46H0ZUZ+MHzTt6IfkauwZ0VY0F8i0Xplhg==} + '@prefabs.tech/vue3-user@0.31.0': + resolution: {integrity: sha512-/l3sG3WYj2nrP052Tz3Uc7TptUTyv+Wi+2DCdZmD3ITMzLhz/IlhqfY9YPQP8QBA7gSqZMInhMArTeTRZ/aKfQ==} engines: {node: '>=18', pnpm: '>=9'} peerDependencies: - '@prefabs.tech/vue3-config': 0.18.0 - '@prefabs.tech/vue3-i18n': 0.18.0 - '@prefabs.tech/vue3-layout': 0.18.0 - '@prefabs.tech/vue3-ui': 0.18.0 + '@prefabs.tech/vue3-config': 0.31.0 + '@prefabs.tech/vue3-i18n': 0.31.0 + '@prefabs.tech/vue3-layout': 0.31.0 + '@prefabs.tech/vue3-ui': 0.31.0 '@vee-validate/i18n': '>=4.7.1' '@vee-validate/rules': '>=4.7.1' '@vueuse/core': '>=9.4.0' @@ -1483,102 +1531,138 @@ packages: vue-router: '>=4.0' zod: '>=3.20.6' - '@remix-run/router@1.19.1': - resolution: {integrity: sha512-S45oynt/WH19bHbIXjtli6QmwNYvaz+vtnubvNpNDvUOoA/OWh6j1OikIP3G+v5GHdxyC6EXoChG3HgYGEUfcg==} + '@remix-run/router@1.21.0': + resolution: {integrity: sha512-xfSkCAchbdG5PnbrKqFWwia4Bi61nH+wm8wLEqfHDyp7Y3dZzgqS2itV8i4gAq9pC2HsTpwyBC6Ds8VHZ96JlA==} engines: {node: '>=14.0.0'} - '@rollup/rollup-android-arm-eabi@4.34.8': - resolution: {integrity: sha512-q217OSE8DTp8AFHuNHXo0Y86e1wtlfVrXiAlwkIvGRQv9zbc6mE3sjIVfwI8sYUyNxwOg0j/Vm1RKM04JcWLJw==} + '@rolldown/pluginutils@1.0.0-beta.11': + resolution: {integrity: sha512-L/gAA/hyCSuzTF1ftlzUSI/IKr2POHsv1Dd78GfqkR83KMNuswWD61JxGV2L7nRwBBBSDr6R1gCkdTmoN7W4ag==} + + '@rolldown/pluginutils@1.0.0-rc.4': + resolution: {integrity: sha512-1BrrmTu0TWfOP1riA8uakjFc9bpIUGzVKETsOtzY39pPga8zELGDl8eu1Dx7/gjM5CAz14UknsUMpBO8L+YntQ==} + + '@rollup/rollup-android-arm-eabi@4.57.1': + resolution: {integrity: sha512-A6ehUVSiSaaliTxai040ZpZ2zTevHYbvu/lDoeAteHI8QnaosIzm4qwtezfRg1jOYaUmnzLX1AOD6Z+UJjtifg==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.34.8': - resolution: {integrity: sha512-Gigjz7mNWaOL9wCggvoK3jEIUUbGul656opstjaUSGC3eT0BM7PofdAJaBfPFWWkXNVAXbaQtC99OCg4sJv70Q==} + '@rollup/rollup-android-arm64@4.57.1': + resolution: {integrity: sha512-dQaAddCY9YgkFHZcFNS/606Exo8vcLHwArFZ7vxXq4rigo2bb494/xKMMwRRQW6ug7Js6yXmBZhSBRuBvCCQ3w==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.34.8': - resolution: {integrity: sha512-02rVdZ5tgdUNRxIUrFdcMBZQoaPMrxtwSb+/hOfBdqkatYHR3lZ2A2EGyHq2sGOd0Owk80oV3snlDASC24He3Q==} + '@rollup/rollup-darwin-arm64@4.57.1': + resolution: {integrity: sha512-crNPrwJOrRxagUYeMn/DZwqN88SDmwaJ8Cvi/TN1HnWBU7GwknckyosC2gd0IqYRsHDEnXf328o9/HC6OkPgOg==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.34.8': - resolution: {integrity: sha512-qIP/elwR/tq/dYRx3lgwK31jkZvMiD6qUtOycLhTzCvrjbZ3LjQnEM9rNhSGpbLXVJYQ3rq39A6Re0h9tU2ynw==} + '@rollup/rollup-darwin-x64@4.57.1': + resolution: {integrity: sha512-Ji8g8ChVbKrhFtig5QBV7iMaJrGtpHelkB3lsaKzadFBe58gmjfGXAOfI5FV0lYMH8wiqsxKQ1C9B0YTRXVy4w==} cpu: [x64] os: [darwin] - '@rollup/rollup-freebsd-arm64@4.34.8': - resolution: {integrity: sha512-IQNVXL9iY6NniYbTaOKdrlVP3XIqazBgJOVkddzJlqnCpRi/yAeSOa8PLcECFSQochzqApIOE1GHNu3pCz+BDA==} + '@rollup/rollup-freebsd-arm64@4.57.1': + resolution: {integrity: sha512-R+/WwhsjmwodAcz65guCGFRkMb4gKWTcIeLy60JJQbXrJ97BOXHxnkPFrP+YwFlaS0m+uWJTstrUA9o+UchFug==} cpu: [arm64] os: [freebsd] - '@rollup/rollup-freebsd-x64@4.34.8': - resolution: {integrity: sha512-TYXcHghgnCqYFiE3FT5QwXtOZqDj5GmaFNTNt3jNC+vh22dc/ukG2cG+pi75QO4kACohZzidsq7yKTKwq/Jq7Q==} + '@rollup/rollup-freebsd-x64@4.57.1': + resolution: {integrity: sha512-IEQTCHeiTOnAUC3IDQdzRAGj3jOAYNr9kBguI7MQAAZK3caezRrg0GxAb6Hchg4lxdZEI5Oq3iov/w/hnFWY9Q==} cpu: [x64] os: [freebsd] - '@rollup/rollup-linux-arm-gnueabihf@4.34.8': - resolution: {integrity: sha512-A4iphFGNkWRd+5m3VIGuqHnG3MVnqKe7Al57u9mwgbyZ2/xF9Jio72MaY7xxh+Y87VAHmGQr73qoKL9HPbXj1g==} + '@rollup/rollup-linux-arm-gnueabihf@4.57.1': + resolution: {integrity: sha512-F8sWbhZ7tyuEfsmOxwc2giKDQzN3+kuBLPwwZGyVkLlKGdV1nvnNwYD0fKQ8+XS6hp9nY7B+ZeK01EBUE7aHaw==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.34.8': - resolution: {integrity: sha512-S0lqKLfTm5u+QTxlFiAnb2J/2dgQqRy/XvziPtDd1rKZFXHTyYLoVL58M/XFwDI01AQCDIevGLbQrMAtdyanpA==} + '@rollup/rollup-linux-arm-musleabihf@4.57.1': + resolution: {integrity: sha512-rGfNUfn0GIeXtBP1wL5MnzSj98+PZe/AXaGBCRmT0ts80lU5CATYGxXukeTX39XBKsxzFpEeK+Mrp9faXOlmrw==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.34.8': - resolution: {integrity: sha512-jpz9YOuPiSkL4G4pqKrus0pn9aYwpImGkosRKwNi+sJSkz+WU3anZe6hi73StLOQdfXYXC7hUfsQlTnjMd3s1A==} + '@rollup/rollup-linux-arm64-gnu@4.57.1': + resolution: {integrity: sha512-MMtej3YHWeg/0klK2Qodf3yrNzz6CGjo2UntLvk2RSPlhzgLvYEB3frRvbEF2wRKh1Z2fDIg9KRPe1fawv7C+g==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.34.8': - resolution: {integrity: sha512-KdSfaROOUJXgTVxJNAZ3KwkRc5nggDk+06P6lgi1HLv1hskgvxHUKZ4xtwHkVYJ1Rep4GNo+uEfycCRRxht7+Q==} + '@rollup/rollup-linux-arm64-musl@4.57.1': + resolution: {integrity: sha512-1a/qhaaOXhqXGpMFMET9VqwZakkljWHLmZOX48R0I/YLbhdxr1m4gtG1Hq7++VhVUmf+L3sTAf9op4JlhQ5u1Q==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-loongarch64-gnu@4.34.8': - resolution: {integrity: sha512-NyF4gcxwkMFRjgXBM6g2lkT58OWztZvw5KkV2K0qqSnUEqCVcqdh2jN4gQrTn/YUpAcNKyFHfoOZEer9nwo6uQ==} + '@rollup/rollup-linux-loong64-gnu@4.57.1': + resolution: {integrity: sha512-QWO6RQTZ/cqYtJMtxhkRkidoNGXc7ERPbZN7dVW5SdURuLeVU7lwKMpo18XdcmpWYd0qsP1bwKPf7DNSUinhvA==} + cpu: [loong64] + os: [linux] + + '@rollup/rollup-linux-loong64-musl@4.57.1': + resolution: {integrity: sha512-xpObYIf+8gprgWaPP32xiN5RVTi/s5FCR+XMXSKmhfoJjrpRAjCuuqQXyxUa/eJTdAE6eJ+KDKaoEqjZQxh3Gw==} cpu: [loong64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.34.8': - resolution: {integrity: sha512-LMJc999GkhGvktHU85zNTDImZVUCJ1z/MbAJTnviiWmmjyckP5aQsHtcujMjpNdMZPT2rQEDBlJfubhs3jsMfw==} + '@rollup/rollup-linux-ppc64-gnu@4.57.1': + resolution: {integrity: sha512-4BrCgrpZo4hvzMDKRqEaW1zeecScDCR+2nZ86ATLhAoJ5FQ+lbHVD3ttKe74/c7tNT9c6F2viwB3ufwp01Oh2w==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.34.8': - resolution: {integrity: sha512-xAQCAHPj8nJq1PI3z8CIZzXuXCstquz7cIOL73HHdXiRcKk8Ywwqtx2wrIy23EcTn4aZ2fLJNBB8d0tQENPCmw==} + '@rollup/rollup-linux-ppc64-musl@4.57.1': + resolution: {integrity: sha512-NOlUuzesGauESAyEYFSe3QTUguL+lvrN1HtwEEsU2rOwdUDeTMJdO5dUYl/2hKf9jWydJrO9OL/XSSf65R5+Xw==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-riscv64-gnu@4.57.1': + resolution: {integrity: sha512-ptA88htVp0AwUUqhVghwDIKlvJMD/fmL/wrQj99PRHFRAG6Z5nbWoWG4o81Nt9FT+IuqUQi+L31ZKAFeJ5Is+A==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-riscv64-musl@4.57.1': + resolution: {integrity: sha512-S51t7aMMTNdmAMPpBg7OOsTdn4tySRQvklmL3RpDRyknk87+Sp3xaumlatU+ppQ+5raY7sSTcC2beGgvhENfuw==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.34.8': - resolution: {integrity: sha512-DdePVk1NDEuc3fOe3dPPTb+rjMtuFw89gw6gVWxQFAuEqqSdDKnrwzZHrUYdac7A7dXl9Q2Vflxpme15gUWQFA==} + '@rollup/rollup-linux-s390x-gnu@4.57.1': + resolution: {integrity: sha512-Bl00OFnVFkL82FHbEqy3k5CUCKH6OEJL54KCyx2oqsmZnFTR8IoNqBF+mjQVcRCT5sB6yOvK8A37LNm/kPJiZg==} cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.34.8': - resolution: {integrity: sha512-8y7ED8gjxITUltTUEJLQdgpbPh1sUQ0kMTmufRF/Ns5tI9TNMNlhWtmPKKHCU0SilX+3MJkZ0zERYYGIVBYHIA==} + '@rollup/rollup-linux-x64-gnu@4.57.1': + resolution: {integrity: sha512-ABca4ceT4N+Tv/GtotnWAeXZUZuM/9AQyCyKYyKnpk4yoA7QIAuBt6Hkgpw8kActYlew2mvckXkvx0FfoInnLg==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.34.8': - resolution: {integrity: sha512-SCXcP0ZpGFIe7Ge+McxY5zKxiEI5ra+GT3QRxL0pMMtxPfpyLAKleZODi1zdRHkz5/BhueUrYtYVgubqe9JBNQ==} + '@rollup/rollup-linux-x64-musl@4.57.1': + resolution: {integrity: sha512-HFps0JeGtuOR2convgRRkHCekD7j+gdAuXM+/i6kGzQtFhlCtQkpwtNzkNj6QhCDp7DRJ7+qC/1Vg2jt5iSOFw==} cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.34.8': - resolution: {integrity: sha512-YHYsgzZgFJzTRbth4h7Or0m5O74Yda+hLin0irAIobkLQFRQd1qWmnoVfwmKm9TXIZVAD0nZ+GEb2ICicLyCnQ==} + '@rollup/rollup-openbsd-x64@4.57.1': + resolution: {integrity: sha512-H+hXEv9gdVQuDTgnqD+SQffoWoc0Of59AStSzTEj/feWTBAnSfSD3+Dql1ZruJQxmykT/JVY0dE8Ka7z0DH1hw==} + cpu: [x64] + os: [openbsd] + + '@rollup/rollup-openharmony-arm64@4.57.1': + resolution: {integrity: sha512-4wYoDpNg6o/oPximyc/NG+mYUejZrCU2q+2w6YZqrAs2UcNUChIZXjtafAiiZSUc7On8v5NyNj34Kzj/Ltk6dQ==} + cpu: [arm64] + os: [openharmony] + + '@rollup/rollup-win32-arm64-msvc@4.57.1': + resolution: {integrity: sha512-O54mtsV/6LW3P8qdTcamQmuC990HDfR71lo44oZMZlXU4tzLrbvTii87Ni9opq60ds0YzuAlEr/GNwuNluZyMQ==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.34.8': - resolution: {integrity: sha512-r3NRQrXkHr4uWy5TOjTpTYojR9XmF0j/RYgKCef+Ag46FWUTltm5ziticv8LdNsDMehjJ543x/+TJAek/xBA2w==} + '@rollup/rollup-win32-ia32-msvc@4.57.1': + resolution: {integrity: sha512-P3dLS+IerxCT/7D2q2FYcRdWRl22dNbrbBEtxdWhXrfIMPP9lQhb5h4Du04mdl5Woq05jVCDPCMF7Ub0NAjIew==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.34.8': - resolution: {integrity: sha512-U0FaE5O1BCpZSeE6gBl3c5ObhePQSfk9vDRToMmTkbhCOgW4jqvtS5LGyQ76L1fH8sM0keRp4uDTsbjiUyjk0g==} + '@rollup/rollup-win32-x64-gnu@4.57.1': + resolution: {integrity: sha512-VMBH2eOOaKGtIJYleXsi2B8CPVADrh+TyNxJ4mWPnKfLB/DBUmzW+5m1xUrcwWoMfSLagIRpjUFeW5CO5hyciQ==} + cpu: [x64] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.57.1': + resolution: {integrity: sha512-mxRFDdHIWRxg3UfIIAwCm6NzvxG0jDX/wBN6KsQFTvKFqqg9vTrWUE68qEjHt19A5wwx5X5aUi2zuZT7YR0jrA==} cpu: [x64] os: [win32] @@ -1630,252 +1714,256 @@ packages: resolution: {integrity: sha512-IC1dpVSc2F/pmwCxOb0QzH2xnGKmyT7MofPGhNkeaoiMrLMU+Oc7xV/AxGnz40mURtCtaDchZSM3tDo9c9x6BA==} engines: {node: '>= 8.9.0', npm: '>= 5.5.1'} - '@slonik/driver@46.2.0': - resolution: {integrity: sha512-N0BPxFeMKWG7M8MwvOV/jqmzsVqVG7RbN3Fz/67f9UncmUj4N5fL6evI/YKaT9GS+gtrGzvI85o0w6v0FaWvHA==} + '@slonik/driver@46.8.0': + resolution: {integrity: sha512-cA19zOfUHZenDhUt4xfLHbLRyd3V4mxc4ojkhERCn3hJpYwe7RpIV/85NvevbGjiiVIvXoVwwOOvz8XlCElJBg==} engines: {node: '>=18'} peerDependencies: zod: ^3 - '@slonik/errors@46.2.0': - resolution: {integrity: sha512-5t6VLcdPIE9yC2hR8eTqDum23uleTPg9Nm66Ici0XGdJj7jqogI9bcT+ZFcQH7q6a+zjb7D5z5wr5f3pOtNG6g==} + '@slonik/errors@46.8.0': + resolution: {integrity: sha512-tgAGNKNeG8696c7Vab6wvHkiTq2mz4dl+TgNJbucVr2Q4lvoO2dAT07+YplO4yCTLwH2thoy9gObA4fz+/Wjgw==} engines: {node: '>=18'} peerDependencies: zod: ^3 - '@slonik/pg-driver@46.2.0': - resolution: {integrity: sha512-suz514Rcz8M4MXGctNnKQTT/B9Y3g4XInQRUr7F10UsKgNsqYdtB+vHtnKPMtMB23NpJGs+R+RBHVYlRn0/xxA==} + '@slonik/pg-driver@46.8.0': + resolution: {integrity: sha512-ene0QxhG/xpaWULuBhWGYND14NZolDCEQNnBvz31KtegWvAo9piZsK/DhVpHP/qww7JnVMrvXORTToXNUDiiNQ==} engines: {node: '>=18'} peerDependencies: zod: ^3 - '@slonik/sql-tag@46.2.0': - resolution: {integrity: sha512-wtgwtad8/VU60uHJ3UuQ4dtGCMucl6iZvUCixZT6HzGK4z/11COLU89l2HRU803wSTIWVsQkZlRSiRYEwkYE2A==} + '@slonik/sql-tag@46.8.0': + resolution: {integrity: sha512-jdUnlA7n/z16/3oFYZ9FAaf4VBkEUBx+oXjIdUQXMmyYiNwKqqjXiEteyHFMaEIY9710crrLQGWGXIKhipZ8Sw==} engines: {node: '>=18'} peerDependencies: zod: ^3 - '@slonik/types@46.2.0': - resolution: {integrity: sha512-Sm/4WUr1aySDVJ5iyQ0iO3OWhSHsXFJeDtdia8xvbcUDOQ+7OZnEn7MbZ81WHXGO90g3pd9ldFTzrnOMZEV2QQ==} + '@slonik/types@46.8.0': + resolution: {integrity: sha512-Fl9aPDVQj7xd8Ny2+uEH8PQGwks3tiKn5Ttt86NMHcjuZaWyxlXUJejTZ6PquPwBS3jhsc95/c8awONXOgnORg==} engines: {node: '>=18'} peerDependencies: zod: ^3 - '@slonik/utilities@46.2.0': - resolution: {integrity: sha512-2gNT3Bygn6tVKJgF2kHfu3yCelmxA4rihpuhtpdLbrfvlTuJ7DCbJVt7VFcanA2VPYrKvFzyWC5Jp7l3ndKwxA==} + '@slonik/utilities@46.8.0': + resolution: {integrity: sha512-1y6RM5JvAPEwQs5ei8+0CbTvmHAcKVkWm7112AJLiE/5+qV2OqrQkgDEB/Rug9aNAEGZv9/it0BdW5wNBEozAg==} engines: {node: '>=18'} peerDependencies: zod: ^3 - '@smithy/abort-controller@4.0.5': - resolution: {integrity: sha512-jcrqdTQurIrBbUm4W2YdLVMQDoL0sA9DTxYd2s+R/y+2U9NLOP7Xf/YqfSg1FZhlZIYEnvk2mwbyvIfdLEPo8g==} + '@smithy/abort-controller@4.2.8': + resolution: {integrity: sha512-peuVfkYHAmS5ybKxWcfraK7WBBP0J+rkfUcbHJJKQ4ir3UAUNQI+Y4Vt/PqSzGqgloJ5O1dk7+WzNL8wcCSXbw==} engines: {node: '>=18.0.0'} - '@smithy/chunked-blob-reader-native@4.0.0': - resolution: {integrity: sha512-R9wM2yPmfEMsUmlMlIgSzOyICs0x9uu7UTHoccMyt7BWw8shcGM8HqB355+BZCPBcySvbTYMs62EgEQkNxz2ig==} + '@smithy/chunked-blob-reader-native@4.2.1': + resolution: {integrity: sha512-lX9Ay+6LisTfpLid2zZtIhSEjHMZoAR5hHCR4H7tBz/Zkfr5ea8RcQ7Tk4mi0P76p4cN+Btz16Ffno7YHpKXnQ==} engines: {node: '>=18.0.0'} - '@smithy/chunked-blob-reader@5.0.0': - resolution: {integrity: sha512-+sKqDBQqb036hh4NPaUiEkYFkTUGYzRsn3EuFhyfQfMy6oGHEUJDurLP9Ufb5dasr/XiAmPNMr6wa9afjQB+Gw==} + '@smithy/chunked-blob-reader@5.2.0': + resolution: {integrity: sha512-WmU0TnhEAJLWvfSeMxBNe5xtbselEO8+4wG0NtZeL8oR21WgH1xiO37El+/Y+H/Ie4SCwBy3MxYWmOYaGgZueA==} engines: {node: '>=18.0.0'} - '@smithy/config-resolver@4.1.5': - resolution: {integrity: sha512-viuHMxBAqydkB0AfWwHIdwf/PRH2z5KHGUzqyRtS/Wv+n3IHI993Sk76VCA7dD/+GzgGOmlJDITfPcJC1nIVIw==} + '@smithy/config-resolver@4.4.6': + resolution: {integrity: sha512-qJpzYC64kaj3S0fueiu3kXm8xPrR3PcXDPEgnaNMRn0EjNSZFoFjvbUp0YUDsRhN1CB90EnHJtbxWKevnH99UQ==} engines: {node: '>=18.0.0'} - '@smithy/core@3.8.0': - resolution: {integrity: sha512-EYqsIYJmkR1VhVE9pccnk353xhs+lB6btdutJEtsp7R055haMJp2yE16eSxw8fv+G0WUY6vqxyYOP8kOqawxYQ==} + '@smithy/core@3.23.0': + resolution: {integrity: sha512-Yq4UPVoQICM9zHnByLmG8632t2M0+yap4T7ANVw482J0W7HW0pOuxwVmeOwzJqX2Q89fkXz0Vybz55Wj2Xzrsg==} engines: {node: '>=18.0.0'} - '@smithy/credential-provider-imds@4.0.7': - resolution: {integrity: sha512-dDzrMXA8d8riFNiPvytxn0mNwR4B3h8lgrQ5UjAGu6T9z/kRg/Xncf4tEQHE/+t25sY8IH3CowcmWi+1U5B1Gw==} + '@smithy/credential-provider-imds@4.2.8': + resolution: {integrity: sha512-FNT0xHS1c/CPN8upqbMFP83+ul5YgdisfCfkZ86Jh2NSmnqw/AJ6x5pEogVCTVvSm7j9MopRU89bmDelxuDMYw==} engines: {node: '>=18.0.0'} - '@smithy/eventstream-codec@4.0.5': - resolution: {integrity: sha512-miEUN+nz2UTNoRYRhRqVTJCx7jMeILdAurStT2XoS+mhokkmz1xAPp95DFW9Gxt4iF2VBqpeF9HbTQ3kY1viOA==} + '@smithy/eventstream-codec@4.2.8': + resolution: {integrity: sha512-jS/O5Q14UsufqoGhov7dHLOPCzkYJl9QDzusI2Psh4wyYx/izhzvX9P4D69aTxcdfVhEPhjK+wYyn/PzLjKbbw==} engines: {node: '>=18.0.0'} - '@smithy/eventstream-serde-browser@4.0.5': - resolution: {integrity: sha512-LCUQUVTbM6HFKzImYlSB9w4xafZmpdmZsOh9rIl7riPC3osCgGFVP+wwvYVw6pXda9PPT9TcEZxaq3XE81EdJQ==} + '@smithy/eventstream-serde-browser@4.2.8': + resolution: {integrity: sha512-MTfQT/CRQz5g24ayXdjg53V0mhucZth4PESoA5IhvaWVDTOQLfo8qI9vzqHcPsdd2v6sqfTYqF5L/l+pea5Uyw==} engines: {node: '>=18.0.0'} - '@smithy/eventstream-serde-config-resolver@4.1.3': - resolution: {integrity: sha512-yTTzw2jZjn/MbHu1pURbHdpjGbCuMHWncNBpJnQAPxOVnFUAbSIUSwafiphVDjNV93TdBJWmeVAds7yl5QCkcA==} + '@smithy/eventstream-serde-config-resolver@4.3.8': + resolution: {integrity: sha512-ah12+luBiDGzBruhu3efNy1IlbwSEdNiw8fOZksoKoWW1ZHvO/04MQsdnws/9Aj+5b0YXSSN2JXKy/ClIsW8MQ==} engines: {node: '>=18.0.0'} - '@smithy/eventstream-serde-node@4.0.5': - resolution: {integrity: sha512-lGS10urI4CNzz6YlTe5EYG0YOpsSp3ra8MXyco4aqSkQDuyZPIw2hcaxDU82OUVtK7UY9hrSvgWtpsW5D4rb4g==} + '@smithy/eventstream-serde-node@4.2.8': + resolution: {integrity: sha512-cYpCpp29z6EJHa5T9WL0KAlq3SOKUQkcgSoeRfRVwjGgSFl7Uh32eYGt7IDYCX20skiEdRffyDpvF2efEZPC0A==} engines: {node: '>=18.0.0'} - '@smithy/eventstream-serde-universal@4.0.5': - resolution: {integrity: sha512-JFnmu4SU36YYw3DIBVao3FsJh4Uw65vVDIqlWT4LzR6gXA0F3KP0IXFKKJrhaVzCBhAuMsrUUaT5I+/4ZhF7aw==} + '@smithy/eventstream-serde-universal@4.2.8': + resolution: {integrity: sha512-iJ6YNJd0bntJYnX6s52NC4WFYcZeKrPUr1Kmmr5AwZcwCSzVpS7oavAmxMR7pMq7V+D1G4s9F5NJK0xwOsKAlQ==} engines: {node: '>=18.0.0'} - '@smithy/fetch-http-handler@5.1.1': - resolution: {integrity: sha512-61WjM0PWmZJR+SnmzaKI7t7G0UkkNFboDpzIdzSoy7TByUzlxo18Qlh9s71qug4AY4hlH/CwXdubMtkcNEb/sQ==} + '@smithy/fetch-http-handler@5.3.9': + resolution: {integrity: sha512-I4UhmcTYXBrct03rwzQX1Y/iqQlzVQaPxWjCjula++5EmWq9YGBrx6bbGqluGc1f0XEfhSkiY4jhLgbsJUMKRA==} engines: {node: '>=18.0.0'} - '@smithy/hash-blob-browser@4.0.5': - resolution: {integrity: sha512-F7MmCd3FH/Q2edhcKd+qulWkwfChHbc9nhguBlVjSUE6hVHhec3q6uPQ+0u69S6ppvLtR3eStfCuEKMXBXhvvA==} + '@smithy/hash-blob-browser@4.2.9': + resolution: {integrity: sha512-m80d/iicI7DlBDxyQP6Th7BW/ejDGiF0bgI754+tiwK0lgMkcaIBgvwwVc7OFbY4eUzpGtnig52MhPAEJ7iNYg==} engines: {node: '>=18.0.0'} - '@smithy/hash-node@4.0.5': - resolution: {integrity: sha512-cv1HHkKhpyRb6ahD8Vcfb2Hgz67vNIXEp2vnhzfxLFGRukLCNEA5QdsorbUEzXma1Rco0u3rx5VTqbM06GcZqQ==} + '@smithy/hash-node@4.2.8': + resolution: {integrity: sha512-7ZIlPbmaDGxVoxErDZnuFG18WekhbA/g2/i97wGj+wUBeS6pcUeAym8u4BXh/75RXWhgIJhyC11hBzig6MljwA==} engines: {node: '>=18.0.0'} - '@smithy/hash-stream-node@4.0.5': - resolution: {integrity: sha512-IJuDS3+VfWB67UC0GU0uYBG/TA30w+PlOaSo0GPm9UHS88A6rCP6uZxNjNYiyRtOcjv7TXn/60cW8ox1yuZsLg==} + '@smithy/hash-stream-node@4.2.8': + resolution: {integrity: sha512-v0FLTXgHrTeheYZFGhR+ehX5qUm4IQsjAiL9qehad2cyjMWcN2QG6/4mSwbSgEQzI7jwfoXj7z4fxZUx/Mhj2w==} engines: {node: '>=18.0.0'} - '@smithy/invalid-dependency@4.0.5': - resolution: {integrity: sha512-IVnb78Qtf7EJpoEVo7qJ8BEXQwgC4n3igeJNNKEj/MLYtapnx8A67Zt/J3RXAj2xSO1910zk0LdFiygSemuLow==} + '@smithy/invalid-dependency@4.2.8': + resolution: {integrity: sha512-N9iozRybwAQ2dn9Fot9kI6/w9vos2oTXLhtK7ovGqwZjlOcxu6XhPlpLpC+INsxktqHinn5gS2DXDjDF2kG5sQ==} engines: {node: '>=18.0.0'} '@smithy/is-array-buffer@2.2.0': resolution: {integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==} engines: {node: '>=14.0.0'} - '@smithy/is-array-buffer@4.0.0': - resolution: {integrity: sha512-saYhF8ZZNoJDTvJBEWgeBccCg+yvp1CX+ed12yORU3NilJScfc6gfch2oVb4QgxZrGUx3/ZJlb+c/dJbyupxlw==} + '@smithy/is-array-buffer@4.2.0': + resolution: {integrity: sha512-DZZZBvC7sjcYh4MazJSGiWMI2L7E0oCiRHREDzIxi/M2LY79/21iXt6aPLHge82wi5LsuRF5A06Ds3+0mlh6CQ==} engines: {node: '>=18.0.0'} - '@smithy/md5-js@4.0.5': - resolution: {integrity: sha512-8n2XCwdUbGr8W/XhMTaxILkVlw2QebkVTn5tm3HOcbPbOpWg89zr6dPXsH8xbeTsbTXlJvlJNTQsKAIoqQGbdA==} + '@smithy/md5-js@4.2.8': + resolution: {integrity: sha512-oGMaLj4tVZzLi3itBa9TCswgMBr7k9b+qKYowQ6x1rTyTuO1IU2YHdHUa+891OsOH+wCsH7aTPRsTJO3RMQmjQ==} engines: {node: '>=18.0.0'} - '@smithy/middleware-content-length@4.0.5': - resolution: {integrity: sha512-l1jlNZoYzoCC7p0zCtBDE5OBXZ95yMKlRlftooE5jPWQn4YBPLgsp+oeHp7iMHaTGoUdFqmHOPa8c9G3gBsRpQ==} + '@smithy/middleware-content-length@4.2.8': + resolution: {integrity: sha512-RO0jeoaYAB1qBRhfVyq0pMgBoUK34YEJxVxyjOWYZiOKOq2yMZ4MnVXMZCUDenpozHue207+9P5ilTV1zeda0A==} engines: {node: '>=18.0.0'} - '@smithy/middleware-endpoint@4.1.18': - resolution: {integrity: sha512-ZhvqcVRPZxnZlokcPaTwb+r+h4yOIOCJmx0v2d1bpVlmP465g3qpVSf7wxcq5zZdu4jb0H4yIMxuPwDJSQc3MQ==} + '@smithy/middleware-endpoint@4.4.14': + resolution: {integrity: sha512-FUFNE5KVeaY6U/GL0nzAAHkaCHzXLZcY1EhtQnsAqhD8Du13oPKtMB9/0WK4/LK6a/T5OZ24wPoSShff5iI6Ag==} engines: {node: '>=18.0.0'} - '@smithy/middleware-retry@4.1.19': - resolution: {integrity: sha512-X58zx/NVECjeuUB6A8HBu4bhx72EoUz+T5jTMIyeNKx2lf+Gs9TmWPNNkH+5QF0COjpInP/xSpJGJ7xEnAklQQ==} + '@smithy/middleware-retry@4.4.31': + resolution: {integrity: sha512-RXBzLpMkIrxBPe4C8OmEOHvS8aH9RUuCOH++Acb5jZDEblxDjyg6un72X9IcbrGTJoiUwmI7hLypNfuDACypbg==} engines: {node: '>=18.0.0'} - '@smithy/middleware-serde@4.0.9': - resolution: {integrity: sha512-uAFFR4dpeoJPGz8x9mhxp+RPjo5wW0QEEIPPPbLXiRRWeCATf/Km3gKIVR5vaP8bN1kgsPhcEeh+IZvUlBv6Xg==} + '@smithy/middleware-serde@4.2.9': + resolution: {integrity: sha512-eMNiej0u/snzDvlqRGSN3Vl0ESn3838+nKyVfF2FKNXFbi4SERYT6PR392D39iczngbqqGG0Jl1DlCnp7tBbXQ==} engines: {node: '>=18.0.0'} - '@smithy/middleware-stack@4.0.5': - resolution: {integrity: sha512-/yoHDXZPh3ocRVyeWQFvC44u8seu3eYzZRveCMfgMOBcNKnAmOvjbL9+Cp5XKSIi9iYA9PECUuW2teDAk8T+OQ==} + '@smithy/middleware-stack@4.2.8': + resolution: {integrity: sha512-w6LCfOviTYQjBctOKSwy6A8FIkQy7ICvglrZFl6Bw4FmcQ1Z420fUtIhxaUZZshRe0VCq4kvDiPiXrPZAe8oRA==} engines: {node: '>=18.0.0'} - '@smithy/node-config-provider@4.1.4': - resolution: {integrity: sha512-+UDQV/k42jLEPPHSn39l0Bmc4sB1xtdI9Gd47fzo/0PbXzJ7ylgaOByVjF5EeQIumkepnrJyfx86dPa9p47Y+w==} + '@smithy/node-config-provider@4.3.8': + resolution: {integrity: sha512-aFP1ai4lrbVlWjfpAfRSL8KFcnJQYfTl5QxLJXY32vghJrDuFyPZ6LtUL+JEGYiFRG1PfPLHLoxj107ulncLIg==} engines: {node: '>=18.0.0'} - '@smithy/node-http-handler@4.1.1': - resolution: {integrity: sha512-RHnlHqFpoVdjSPPiYy/t40Zovf3BBHc2oemgD7VsVTFFZrU5erFFe0n52OANZZ/5sbshgD93sOh5r6I35Xmpaw==} + '@smithy/node-http-handler@4.4.10': + resolution: {integrity: sha512-u4YeUwOWRZaHbWaebvrs3UhwQwj+2VNmcVCwXcYTvPIuVyM7Ex1ftAj+fdbG/P4AkBwLq/+SKn+ydOI4ZJE9PA==} engines: {node: '>=18.0.0'} - '@smithy/property-provider@4.0.5': - resolution: {integrity: sha512-R/bswf59T/n9ZgfgUICAZoWYKBHcsVDurAGX88zsiUtOTA/xUAPyiT+qkNCPwFn43pZqN84M4MiUsbSGQmgFIQ==} + '@smithy/property-provider@4.2.8': + resolution: {integrity: sha512-EtCTbyIveCKeOXDSWSdze3k612yCPq1YbXsbqX3UHhkOSW8zKsM9NOJG5gTIya0vbY2DIaieG8pKo1rITHYL0w==} engines: {node: '>=18.0.0'} - '@smithy/protocol-http@5.1.3': - resolution: {integrity: sha512-fCJd2ZR7D22XhDY0l+92pUag/7je2BztPRQ01gU5bMChcyI0rlly7QFibnYHzcxDvccMjlpM/Q1ev8ceRIb48w==} + '@smithy/protocol-http@5.3.8': + resolution: {integrity: sha512-QNINVDhxpZ5QnP3aviNHQFlRogQZDfYlCkQT+7tJnErPQbDhysondEjhikuANxgMsZrkGeiAxXy4jguEGsDrWQ==} engines: {node: '>=18.0.0'} - '@smithy/querystring-builder@4.0.5': - resolution: {integrity: sha512-NJeSCU57piZ56c+/wY+AbAw6rxCCAOZLCIniRE7wqvndqxcKKDOXzwWjrY7wGKEISfhL9gBbAaWWgHsUGedk+A==} + '@smithy/querystring-builder@4.2.8': + resolution: {integrity: sha512-Xr83r31+DrE8CP3MqPgMJl+pQlLLmOfiEUnoyAlGzzJIrEsbKsPy1hqH0qySaQm4oWrCBlUqRt+idEgunKB+iw==} engines: {node: '>=18.0.0'} - '@smithy/querystring-parser@4.0.5': - resolution: {integrity: sha512-6SV7md2CzNG/WUeTjVe6Dj8noH32r4MnUeFKZrnVYsQxpGSIcphAanQMayi8jJLZAWm6pdM9ZXvKCpWOsIGg0w==} + '@smithy/querystring-parser@4.2.8': + resolution: {integrity: sha512-vUurovluVy50CUlazOiXkPq40KGvGWSdmusa3130MwrR1UNnNgKAlj58wlOe61XSHRpUfIIh6cE0zZ8mzKaDPA==} engines: {node: '>=18.0.0'} - '@smithy/service-error-classification@4.0.7': - resolution: {integrity: sha512-XvRHOipqpwNhEjDf2L5gJowZEm5nsxC16pAZOeEcsygdjv9A2jdOh3YoDQvOXBGTsaJk6mNWtzWalOB9976Wlg==} + '@smithy/service-error-classification@4.2.8': + resolution: {integrity: sha512-mZ5xddodpJhEt3RkCjbmUQuXUOaPNTkbMGR0bcS8FE0bJDLMZlhmpgrvPNCYglVw5rsYTpSnv19womw9WWXKQQ==} engines: {node: '>=18.0.0'} - '@smithy/shared-ini-file-loader@4.0.5': - resolution: {integrity: sha512-YVVwehRDuehgoXdEL4r1tAAzdaDgaC9EQvhK0lEbfnbrd0bd5+CTQumbdPryX3J2shT7ZqQE+jPW4lmNBAB8JQ==} + '@smithy/shared-ini-file-loader@4.4.3': + resolution: {integrity: sha512-DfQjxXQnzC5UbCUPeC3Ie8u+rIWZTvuDPAGU/BxzrOGhRvgUanaP68kDZA+jaT3ZI+djOf+4dERGlm9mWfFDrg==} engines: {node: '>=18.0.0'} - '@smithy/signature-v4@5.1.3': - resolution: {integrity: sha512-mARDSXSEgllNzMw6N+mC+r1AQlEBO3meEAkR/UlfAgnMzJUB3goRBWgip1EAMG99wh36MDqzo86SfIX5Y+VEaw==} + '@smithy/signature-v4@5.3.8': + resolution: {integrity: sha512-6A4vdGj7qKNRF16UIcO8HhHjKW27thsxYci+5r/uVRkdcBEkOEiY8OMPuydLX4QHSrJqGHPJzPRwwVTqbLZJhg==} engines: {node: '>=18.0.0'} - '@smithy/smithy-client@4.4.10': - resolution: {integrity: sha512-iW6HjXqN0oPtRS0NK/zzZ4zZeGESIFcxj2FkWed3mcK8jdSdHzvnCKXSjvewESKAgGKAbJRA+OsaqKhkdYRbQQ==} + '@smithy/smithy-client@4.11.3': + resolution: {integrity: sha512-Q7kY5sDau8OoE6Y9zJoRGgje8P4/UY0WzH8R2ok0PDh+iJ+ZnEKowhjEqYafVcubkbYxQVaqwm3iufktzhprGg==} engines: {node: '>=18.0.0'} - '@smithy/types@4.3.2': - resolution: {integrity: sha512-QO4zghLxiQ5W9UZmX2Lo0nta2PuE1sSrXUYDoaB6HMR762C0P7v/HEPHf6ZdglTVssJG1bsrSBxdc3quvDSihw==} + '@smithy/types@4.12.0': + resolution: {integrity: sha512-9YcuJVTOBDjg9LWo23Qp0lTQ3D7fQsQtwle0jVfpbUHy9qBwCEgKuVH4FqFB3VYu0nwdHKiEMA+oXz7oV8X1kw==} engines: {node: '>=18.0.0'} - '@smithy/url-parser@4.0.5': - resolution: {integrity: sha512-j+733Um7f1/DXjYhCbvNXABV53NyCRRA54C7bNEIxNPs0YjfRxeMKjjgm2jvTYrciZyCjsicHwQ6Q0ylo+NAUw==} + '@smithy/url-parser@4.2.8': + resolution: {integrity: sha512-NQho9U68TGMEU639YkXnVMV3GEFFULmmaWdlu1E9qzyIePOHsoSnagTGSDv1Zi8DCNN6btxOSdgmy5E/hsZwhA==} engines: {node: '>=18.0.0'} - '@smithy/util-base64@4.0.0': - resolution: {integrity: sha512-CvHfCmO2mchox9kjrtzoHkWHxjHZzaFojLc8quxXY7WAAMAg43nuxwv95tATVgQFNDwd4M9S1qFzj40Ul41Kmg==} + '@smithy/util-base64@4.3.0': + resolution: {integrity: sha512-GkXZ59JfyxsIwNTWFnjmFEI8kZpRNIBfxKjv09+nkAWPt/4aGaEWMM04m4sxgNVWkbt2MdSvE3KF/PfX4nFedQ==} engines: {node: '>=18.0.0'} - '@smithy/util-body-length-browser@4.0.0': - resolution: {integrity: sha512-sNi3DL0/k64/LO3A256M+m3CDdG6V7WKWHdAiBBMUN8S3hK3aMPhwnPik2A/a2ONN+9doY9UxaLfgqsIRg69QA==} + '@smithy/util-body-length-browser@4.2.0': + resolution: {integrity: sha512-Fkoh/I76szMKJnBXWPdFkQJl2r9SjPt3cMzLdOB6eJ4Pnpas8hVoWPYemX/peO0yrrvldgCUVJqOAjUrOLjbxg==} engines: {node: '>=18.0.0'} - '@smithy/util-body-length-node@4.0.0': - resolution: {integrity: sha512-q0iDP3VsZzqJyje8xJWEJCNIu3lktUGVoSy1KB0UWym2CL1siV3artm+u1DFYTLejpsrdGyCSWBdGNjJzfDPjg==} + '@smithy/util-body-length-node@4.2.1': + resolution: {integrity: sha512-h53dz/pISVrVrfxV1iqXlx5pRg3V2YWFcSQyPyXZRrZoZj4R4DeWRDo1a7dd3CPTcFi3kE+98tuNyD2axyZReA==} engines: {node: '>=18.0.0'} '@smithy/util-buffer-from@2.2.0': resolution: {integrity: sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==} engines: {node: '>=14.0.0'} - '@smithy/util-buffer-from@4.0.0': - resolution: {integrity: sha512-9TOQ7781sZvddgO8nxueKi3+yGvkY35kotA0Y6BWRajAv8jjmigQ1sBwz0UX47pQMYXJPahSKEKYFgt+rXdcug==} + '@smithy/util-buffer-from@4.2.0': + resolution: {integrity: sha512-kAY9hTKulTNevM2nlRtxAG2FQ3B2OR6QIrPY3zE5LqJy1oxzmgBGsHLWTcNhWXKchgA0WHW+mZkQrng/pgcCew==} engines: {node: '>=18.0.0'} - '@smithy/util-config-provider@4.0.0': - resolution: {integrity: sha512-L1RBVzLyfE8OXH+1hsJ8p+acNUSirQnWQ6/EgpchV88G6zGBTDPdXiiExei6Z1wR2RxYvxY/XLw6AMNCCt8H3w==} + '@smithy/util-config-provider@4.2.0': + resolution: {integrity: sha512-YEjpl6XJ36FTKmD+kRJJWYvrHeUvm5ykaUS5xK+6oXffQPHeEM4/nXlZPe+Wu0lsgRUcNZiliYNh/y7q9c2y6Q==} engines: {node: '>=18.0.0'} - '@smithy/util-defaults-mode-browser@4.0.26': - resolution: {integrity: sha512-xgl75aHIS/3rrGp7iTxQAOELYeyiwBu+eEgAk4xfKwJJ0L8VUjhO2shsDpeil54BOFsqmk5xfdesiewbUY5tKQ==} + '@smithy/util-defaults-mode-browser@4.3.30': + resolution: {integrity: sha512-cMni0uVU27zxOiU8TuC8pQLC1pYeZ/xEMxvchSK/ILwleRd1ugobOcIRr5vXtcRqKd4aBLWlpeBoDPJJ91LQng==} engines: {node: '>=18.0.0'} - '@smithy/util-defaults-mode-node@4.0.26': - resolution: {integrity: sha512-z81yyIkGiLLYVDetKTUeCZQ8x20EEzvQjrqJtb/mXnevLq2+w3XCEWTJ2pMp401b6BkEkHVfXb/cROBpVauLMQ==} + '@smithy/util-defaults-mode-node@4.2.33': + resolution: {integrity: sha512-LEb2aq5F4oZUSzWBG7S53d4UytZSkOEJPXcBq/xbG2/TmK9EW5naUZ8lKu1BEyWMzdHIzEVN16M3k8oxDq+DJA==} engines: {node: '>=18.0.0'} - '@smithy/util-endpoints@3.0.7': - resolution: {integrity: sha512-klGBP+RpBp6V5JbrY2C/VKnHXn3d5V2YrifZbmMY8os7M6m8wdYFoO6w/fe5VkP+YVwrEktW3IWYaSQVNZJ8oQ==} + '@smithy/util-endpoints@3.2.8': + resolution: {integrity: sha512-8JaVTn3pBDkhZgHQ8R0epwWt+BqPSLCjdjXXusK1onwJlRuN69fbvSK66aIKKO7SwVFM6x2J2ox5X8pOaWcUEw==} engines: {node: '>=18.0.0'} - '@smithy/util-hex-encoding@4.0.0': - resolution: {integrity: sha512-Yk5mLhHtfIgW2W2WQZWSg5kuMZCVbvhFmC7rV4IO2QqnZdbEFPmQnCcGMAX2z/8Qj3B9hYYNjZOhWym+RwhePw==} + '@smithy/util-hex-encoding@4.2.0': + resolution: {integrity: sha512-CCQBwJIvXMLKxVbO88IukazJD9a4kQ9ZN7/UMGBjBcJYvatpWk+9g870El4cB8/EJxfe+k+y0GmR9CAzkF+Nbw==} engines: {node: '>=18.0.0'} - '@smithy/util-middleware@4.0.5': - resolution: {integrity: sha512-N40PfqsZHRSsByGB81HhSo+uvMxEHT+9e255S53pfBw/wI6WKDI7Jw9oyu5tJTLwZzV5DsMha3ji8jk9dsHmQQ==} + '@smithy/util-middleware@4.2.8': + resolution: {integrity: sha512-PMqfeJxLcNPMDgvPbbLl/2Vpin+luxqTGPpW3NAQVLbRrFRzTa4rNAASYeIGjRV9Ytuhzny39SpyU04EQreF+A==} engines: {node: '>=18.0.0'} - '@smithy/util-retry@4.0.7': - resolution: {integrity: sha512-TTO6rt0ppK70alZpkjwy+3nQlTiqNfoXja+qwuAchIEAIoSZW8Qyd76dvBv3I5bCpE38APafG23Y/u270NspiQ==} + '@smithy/util-retry@4.2.8': + resolution: {integrity: sha512-CfJqwvoRY0kTGe5AkQokpURNCT1u/MkRzMTASWMPPo2hNSnKtF1D45dQl3DE2LKLr4m+PW9mCeBMJr5mCAVThg==} engines: {node: '>=18.0.0'} - '@smithy/util-stream@4.2.4': - resolution: {integrity: sha512-vSKnvNZX2BXzl0U2RgCLOwWaAP9x/ddd/XobPK02pCbzRm5s55M53uwb1rl/Ts7RXZvdJZerPkA+en2FDghLuQ==} + '@smithy/util-stream@4.5.12': + resolution: {integrity: sha512-D8tgkrmhAX/UNeCZbqbEO3uqyghUnEmmoO9YEvRuwxjlkKKUE7FOgCJnqpTlQPe9MApdWPky58mNQQHbnCzoNg==} engines: {node: '>=18.0.0'} - '@smithy/util-uri-escape@4.0.0': - resolution: {integrity: sha512-77yfbCbQMtgtTylO9itEAdpPXSog3ZxMe09AEhm0dU0NLTalV70ghDZFR+Nfi1C60jnJoh/Re4090/DuZh2Omg==} + '@smithy/util-uri-escape@4.2.0': + resolution: {integrity: sha512-igZpCKV9+E/Mzrpq6YacdTQ0qTiLm85gD6N/IrmyDvQFA4UnU3d5g3m8tMT/6zG/vVkWSU+VxeUyGonL62DuxA==} engines: {node: '>=18.0.0'} '@smithy/util-utf8@2.3.0': resolution: {integrity: sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==} engines: {node: '>=14.0.0'} - '@smithy/util-utf8@4.0.0': - resolution: {integrity: sha512-b+zebfKCfRdgNJDknHCob3O7FpeYQN6ZG6YLExMcasDHsCXlsXCEuiPZeLnJLpwa5dvPetGlnGCiMHuLwGvFow==} + '@smithy/util-utf8@4.2.0': + resolution: {integrity: sha512-zBPfuzoI8xyBtR2P6WQj63Rz8i3AmfAaJLuNG8dWsfvPe8lO4aCPYLn879mEgHndZH1zQ2oXmG8O1GGzzaoZiw==} + engines: {node: '>=18.0.0'} + + '@smithy/util-waiter@4.2.8': + resolution: {integrity: sha512-n+lahlMWk+aejGuax7DPWtqav8HYnWxQwR+LCG2BgCUmaGcTe9qZCFsmw8TMg9iG75HOwhrJCX9TCJRLH+Yzqg==} engines: {node: '>=18.0.0'} - '@smithy/util-waiter@4.0.7': - resolution: {integrity: sha512-mYqtQXPmrwvUljaHyGxYUIIRI3qjBTEb/f5QFi3A6VlxhpmZd5mWXn9W+qUkf2pVE1Hv3SqxefiZOPGdxmO64A==} + '@smithy/uuid@1.1.0': + resolution: {integrity: sha512-4aUIteuyxtBUhVdiQqcDhKFitwfd9hqoSDYY2KRXiWtgoWJ9Bmise+KfEPDiVHWeJepvF8xJO9/9+WDIciMFFw==} engines: {node: '>=18.0.0'} '@tanstack/react-table@8.21.3': @@ -1885,20 +1973,19 @@ packages: react: '>=16.8' react-dom: '>=16.8' - '@tanstack/table-core@8.21.2': - resolution: {integrity: sha512-uvXk/U4cBiFMxt+p9/G7yUWI/UbHYbyghLCjlpWZ3mLeIZiUBSKcUnw9UnKkdRz7Z/N4UBuFLWQdJCjUe7HjvA==} - engines: {node: '>=12'} - '@tanstack/table-core@8.21.3': resolution: {integrity: sha512-ldZXEhOBb8Is7xLs01fR3YEc3DERiz5silj8tnGkFZytt1abEvl/GhUmCE0PMLaMPTa3Jk4HbKmRlHmu+gCftg==} engines: {node: '>=12'} - '@tanstack/vue-table@8.21.2': - resolution: {integrity: sha512-KBgOWxha/x4m1EdhVWxOpqHb661UjqAxzPcmXR3QiA7aShZ547x19Gw0UJX9we+m+tVcPuLRZ61JsYW47QZFfQ==} + '@tanstack/vue-table@8.21.3': + resolution: {integrity: sha512-rusRyd77c5tDPloPskctMyPLFEQUeBzxdQ+2Eow4F7gDPlPOB1UnnhzfpdvqZ8ZyX2rRNGmqNnQWm87OI2OQPw==} engines: {node: '>=12'} peerDependencies: vue: '>=3.2' + '@tybys/wasm-util@0.10.1': + resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==} + '@types/babel__core@7.20.5': resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} @@ -1914,23 +2001,32 @@ packages: '@types/busboy@1.5.4': resolution: {integrity: sha512-kG7WrUuAKK0NoyxfQHsVE6j1m01s6kMma64E+OZenQABMQyTJop1DumUWcLwAQ2JzpefU7PDYoRDKl8uZosFjw==} + '@types/chai@5.2.3': + resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==} + '@types/conventional-commits-parser@5.0.0': resolution: {integrity: sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==} - '@types/estree@1.0.5': - resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} + '@types/deep-eql@4.0.2': + resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==} '@types/estree@1.0.6': resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} + '@types/estree@1.0.8': + resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} + '@types/glob@7.2.0': resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} '@types/humps@2.0.6': resolution: {integrity: sha512-Fagm1/a/1J9gDKzGdtlPmmTN5eSw/aaTzHtj740oSfo+MODsSY2WglxMmhTdOglC8nxqUhGGQ+5HfVtBvxo3Kg==} - '@types/jsdom@21.1.6': - resolution: {integrity: sha512-/7kkMsC+/kMs7gAYmmBR9P0vGTnOoLhQhyhQJSlXGI5bzTHp6xdo0TtKWQAsz6pmSAeVqKSbqeyP6hytqr9FDw==} + '@types/jsdom@21.1.7': + resolution: {integrity: sha512-yOriVnggzrnQ3a9OKOCxaVuSug3w3/SbOj5i7VwXWZEyUNl3bLF9V3MfxGbZKuwqJOQyRfqXyROBB1CoZLFWzA==} + + '@types/json-schema@7.0.15': + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} '@types/json5@0.0.29': resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} @@ -1941,18 +2037,12 @@ packages: '@types/minimist@1.2.5': resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} - '@types/node@20.12.2': - resolution: {integrity: sha512-zQ0NYO87hyN6Xrclcqp7f8ZbXNbRfoGWNcMvHTPQp9UUrwI0mI7XBz+cu7/W6/VClYo2g63B0cjull/srU7LgQ==} - - '@types/node@20.14.14': - resolution: {integrity: sha512-d64f00982fS9YoOgJkAMolK7MN8Iq3TDdVjchbYHdEmjth/DHowx82GnoA+tVUAN+7vxfYUgAzi+JXbKNd2SDQ==} - - '@types/node@22.13.5': - resolution: {integrity: sha512-+lTU0PxZXn0Dr1NBtC7Y8cR21AJr87dLLU953CWA6pMxxv/UDc7jYAY90upcrie1nRcD6XNG5HOYEDtgW5TxAg==} - '@types/node@22.4.0': resolution: {integrity: sha512-49AbMDwYUz7EXxKU/r7mXOsxwFr4BYbvB7tWYxVuLdb2ibd30ijjXINSMAHiEEZk5PCRBmW1gUeisn2VMKt3cQ==} + '@types/node@24.10.0': + resolution: {integrity: sha512-qzQZRBqkFsYyaSWXuEHc2WR9c0a0CXwiE5FWUvn7ZM+vdy1uZLfCunD38UzhuB7YN/J11ndbDBcTmOdxJo9Q7A==} + '@types/normalize-package-data@2.4.4': resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} @@ -1965,8 +2055,8 @@ packages: '@types/react-transition-group@4.4.11': resolution: {integrity: sha512-RM05tAniPZ5DZPzzNFP+DmrcOdD0efDUxMy3145oljWSl3x9ZV5vhme98gTxFrj2lhXvmGNnUiuDyJgY9IKkNA==} - '@types/react@18.3.3': - resolution: {integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==} + '@types/react@18.3.4': + resolution: {integrity: sha512-J7W30FTdfCxDDjmfRM+/JqLHBIyl7xUIp9kwK637FGmY7+mkSFSe6L4jpZzhj5QMfLssSDP4/i75AKkrdC7/Jw==} '@types/tough-cookie@4.0.5': resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==} @@ -1977,112 +2067,196 @@ packages: '@types/web-bluetooth@0.0.20': resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==} - '@typescript-eslint/eslint-plugin@8.14.0': - resolution: {integrity: sha512-tqp8H7UWFaZj0yNO6bycd5YjMwxa6wIHOLZvWPkidwbgLCsBMetQoGj7DPuAlWa2yGO3H48xmPwjhsSPPCGU5w==} + '@typescript-eslint/eslint-plugin@8.54.0': + resolution: {integrity: sha512-hAAP5io/7csFStuOmR782YmTthKBJ9ND3WVL60hcOjvtGFb+HJxH4O5huAcmcZ9v9G8P+JETiZ/G1B8MALnWZQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 + '@typescript-eslint/parser': ^8.54.0 eslint: ^8.57.0 || ^9.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/eslint-plugin@8.24.1': - resolution: {integrity: sha512-ll1StnKtBigWIGqvYDVuDmXJHVH4zLVot1yQ4fJtLpL7qacwkxJc1T0bptqw+miBQ/QfUbhl1TcQ4accW5KUyA==} + '@typescript-eslint/parser@8.54.0': + resolution: {integrity: sha512-BtE0k6cjwjLZoZixN0t5AKP0kSzlGu7FctRXYuPAm//aaiZhmfq1JwdYpYr1brzEspYyFeF+8XF5j2VK6oalrA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.8.0' + typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/parser@8.14.0': - resolution: {integrity: sha512-2p82Yn9juUJq0XynBXtFCyrBDb6/dJombnz6vbo6mgQEtWHfvHbQuEa9kAOVIt1c9YFwi7H6WxtPj1kg+80+RA==} + '@typescript-eslint/project-service@8.54.0': + resolution: {integrity: sha512-YPf+rvJ1s7MyiWM4uTRhE4DvBXrEV+d8oC3P9Y2eT7S+HBS0clybdMIPnhiATi9vZOYDc7OQ1L/i6ga6NFYK/g==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/parser@8.24.1': - resolution: {integrity: sha512-Tqoa05bu+t5s8CTZFaGpCH2ub3QeT9YDkXbPd3uQ4SfsLoh1/vv2GEYAioPoxCWJJNsenXlC88tRjwoHNts1oQ==} + '@typescript-eslint/project-service@8.55.0': + resolution: {integrity: sha512-zRcVVPFUYWa3kNnjaZGXSu3xkKV1zXy8M4nO/pElzQhFweb7PPtluDLQtKArEOGmjXoRjnUZ29NjOiF0eCDkcQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.8.0' + typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/scope-manager@8.14.0': - resolution: {integrity: sha512-aBbBrnW9ARIDn92Zbo7rguLnqQ/pOrUguVpbUwzOhkFg2npFDwTgPGqFqE0H5feXcOoJOfX3SxlJaKEVtq54dw==} + '@typescript-eslint/scope-manager@8.54.0': + resolution: {integrity: sha512-27rYVQku26j/PbHYcVfRPonmOlVI6gihHtXFbTdB5sb6qA0wdAQAbyXFVarQ5t4HRojIz64IV90YtsjQSSGlQg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/scope-manager@8.24.1': - resolution: {integrity: sha512-OdQr6BNBzwRjNEXMQyaGyZzgg7wzjYKfX2ZBV3E04hUCBDv3GQCHiz9RpqdUIiVrMgJGkXm3tcEh4vFSHreS2Q==} + '@typescript-eslint/scope-manager@8.55.0': + resolution: {integrity: sha512-fVu5Omrd3jeqeQLiB9f1YsuK/iHFOwb04bCtY4BSCLgjNbOD33ZdV6KyEqplHr+IlpgT0QTZ/iJ+wT7hvTx49Q==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/type-utils@8.14.0': - resolution: {integrity: sha512-Xcz9qOtZuGusVOH5Uk07NGs39wrKkf3AxlkK79RBK6aJC1l03CobXjJbwBPSidetAOV+5rEVuiT1VSBUOAsanQ==} + '@typescript-eslint/tsconfig-utils@8.54.0': + resolution: {integrity: sha512-dRgOyT2hPk/JwxNMZDsIXDgyl9axdJI3ogZ2XWhBPsnZUv+hPesa5iuhdYt2gzwA9t8RE5ytOJ6xB0moV0Ujvw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/type-utils@8.24.1': - resolution: {integrity: sha512-/Do9fmNgCsQ+K4rCz0STI7lYB4phTtEXqqCAs3gZW0pnK7lWNkvWd5iW545GSmApm4AzmQXmSqXPO565B4WVrw==} + '@typescript-eslint/tsconfig-utils@8.55.0': + resolution: {integrity: sha512-1R9cXqY7RQd7WuqSN47PK9EDpgFUK3VqdmbYrvWJZYDd0cavROGn+74ktWBlmJ13NXUQKlZ/iAEQHI/V0kKe0Q==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/type-utils@8.54.0': + resolution: {integrity: sha512-hiLguxJWHjjwL6xMBwD903ciAwd7DmK30Y9Axs/etOkftC3ZNN9K44IuRD/EB08amu+Zw6W37x9RecLkOo3pMA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.8.0' + typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/types@8.14.0': - resolution: {integrity: sha512-yjeB9fnO/opvLJFAsPNYlKPnEM8+z4og09Pk504dkqonT02AyL5Z9SSqlE0XqezS93v6CXn49VHvB2G7XSsl0g==} + '@typescript-eslint/types@8.54.0': + resolution: {integrity: sha512-PDUI9R1BVjqu7AUDsRBbKMtwmjWcn4J3le+5LpcFgWULN3LvHC5rkc9gCVxbrsrGmO1jfPybN5s6h4Jy+OnkAA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/types@8.24.1': - resolution: {integrity: sha512-9kqJ+2DkUXiuhoiYIUvIYjGcwle8pcPpdlfkemGvTObzgmYfJ5d0Qm6jwb4NBXP9W1I5tss0VIAnWFumz3mC5A==} + '@typescript-eslint/types@8.55.0': + resolution: {integrity: sha512-ujT0Je8GI5BJWi+/mMoR0wxwVEQaxM+pi30xuMiJETlX80OPovb2p9E8ss87gnSVtYXtJoU9U1Cowcr6w2FE0w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/typescript-estree@8.14.0': - resolution: {integrity: sha512-OPXPLYKGZi9XS/49rdaCbR5j/S14HazviBlUQFvSKz3npr3NikF+mrgK7CFVur6XEt95DZp/cmke9d5i3vtVnQ==} + '@typescript-eslint/typescript-estree@8.54.0': + resolution: {integrity: sha512-BUwcskRaPvTk6fzVWgDPdUndLjB87KYDrN5EYGetnktoeAvPtO4ONHlAZDnj5VFnUANg0Sjm7j4usBlnoVMHwA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/typescript-estree@8.24.1': - resolution: {integrity: sha512-UPyy4MJ/0RE648DSKQe9g0VDSehPINiejjA6ElqnFaFIhI6ZEiZAkUI0D5MCk0bQcTf/LVqZStvQ6K4lPn/BRg==} + '@typescript-eslint/typescript-estree@8.55.0': + resolution: {integrity: sha512-EwrH67bSWdx/3aRQhCoxDaHM+CrZjotc2UCCpEDVqfCE+7OjKAGWNY2HsCSTEVvWH2clYQK8pdeLp42EVs+xQw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - typescript: '>=4.8.4 <5.8.0' + typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/utils@8.14.0': - resolution: {integrity: sha512-OGqj6uB8THhrHj0Fk27DcHPojW7zKwKkPmHXHvQ58pLYp4hy8CSUdTKykKeh+5vFqTTVmjz0zCOOPKRovdsgHA==} + '@typescript-eslint/utils@8.54.0': + resolution: {integrity: sha512-9Cnda8GS57AQakvRyG0PTejJNlA2xhvyNtEVIMlDWOOeEyBkYWhGPnfrIAnqxLMTSTo6q8g12XVjjev5l1NvMA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/utils@8.24.1': - resolution: {integrity: sha512-OOcg3PMMQx9EXspId5iktsI3eMaXVwlhC8BvNnX6B5w9a4dVgpkQZuU8Hy67TolKcl+iFWq0XX+jbDGN4xWxjQ==} + '@typescript-eslint/utils@8.55.0': + resolution: {integrity: sha512-BqZEsnPGdYpgyEIkDC1BadNY8oMwckftxBT+C8W0g1iKPdeqKZBtTfnvcq0nf60u7MkjFO8RBvpRGZBPw4L2ow==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.8.0' + typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/visitor-keys@8.14.0': - resolution: {integrity: sha512-vG0XZo8AdTH9OE6VFRwAZldNc7qtJ/6NLGWak+BtENuEUXGZgFpihILPiBvKXvJ2nFu27XNGC6rKiwuaoMbYzQ==} + '@typescript-eslint/visitor-keys@8.54.0': + resolution: {integrity: sha512-VFlhGSl4opC0bprJiItPQ1RfUhGDIBokcPwaFH4yiBCaNPeld/9VeXbiPO1cLyorQi1G1vL+ecBk1x8o1axORA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/visitor-keys@8.24.1': - resolution: {integrity: sha512-EwVHlp5l+2vp8CoqJm9KikPZgi3gbdZAtabKT9KPShGeOcJhsv4Zdo3oc8T8I0uKEmYoU4ItyxbptjF08enaxg==} + '@typescript-eslint/visitor-keys@8.55.0': + resolution: {integrity: sha512-AxNRwEie8Nn4eFS1FzDMJWIISMGoXMb037sgCBJ3UR6o0fQTzr2tqN9WT+DkWJPhIdQCfV7T6D387566VtnCJA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@ungap/structured-clone@1.2.0': - resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} + '@unrs/resolver-binding-android-arm-eabi@1.11.1': + resolution: {integrity: sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==} + cpu: [arm] + os: [android] + + '@unrs/resolver-binding-android-arm64@1.11.1': + resolution: {integrity: sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==} + cpu: [arm64] + os: [android] + + '@unrs/resolver-binding-darwin-arm64@1.11.1': + resolution: {integrity: sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g==} + cpu: [arm64] + os: [darwin] + + '@unrs/resolver-binding-darwin-x64@1.11.1': + resolution: {integrity: sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==} + cpu: [x64] + os: [darwin] + + '@unrs/resolver-binding-freebsd-x64@1.11.1': + resolution: {integrity: sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==} + cpu: [x64] + os: [freebsd] + + '@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1': + resolution: {integrity: sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==} + cpu: [arm] + os: [linux] + + '@unrs/resolver-binding-linux-arm-musleabihf@1.11.1': + resolution: {integrity: sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw==} + cpu: [arm] + os: [linux] + + '@unrs/resolver-binding-linux-arm64-gnu@1.11.1': + resolution: {integrity: sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==} + cpu: [arm64] + os: [linux] + + '@unrs/resolver-binding-linux-arm64-musl@1.11.1': + resolution: {integrity: sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==} + cpu: [arm64] + os: [linux] + + '@unrs/resolver-binding-linux-ppc64-gnu@1.11.1': + resolution: {integrity: sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==} + cpu: [ppc64] + os: [linux] + + '@unrs/resolver-binding-linux-riscv64-gnu@1.11.1': + resolution: {integrity: sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==} + cpu: [riscv64] + os: [linux] + + '@unrs/resolver-binding-linux-riscv64-musl@1.11.1': + resolution: {integrity: sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==} + cpu: [riscv64] + os: [linux] + + '@unrs/resolver-binding-linux-s390x-gnu@1.11.1': + resolution: {integrity: sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==} + cpu: [s390x] + os: [linux] + + '@unrs/resolver-binding-linux-x64-gnu@1.11.1': + resolution: {integrity: sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==} + cpu: [x64] + os: [linux] + + '@unrs/resolver-binding-linux-x64-musl@1.11.1': + resolution: {integrity: sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==} + cpu: [x64] + os: [linux] + + '@unrs/resolver-binding-wasm32-wasi@1.11.1': + resolution: {integrity: sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==} + engines: {node: '>=14.0.0'} + cpu: [wasm32] + + '@unrs/resolver-binding-win32-arm64-msvc@1.11.1': + resolution: {integrity: sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw==} + cpu: [arm64] + os: [win32] + + '@unrs/resolver-binding-win32-ia32-msvc@1.11.1': + resolution: {integrity: sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ==} + cpu: [ia32] + os: [win32] + + '@unrs/resolver-binding-win32-x64-msvc@1.11.1': + resolution: {integrity: sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g==} + cpu: [x64] + os: [win32] '@vee-validate/i18n@4.15.0': resolution: {integrity: sha512-XAXoIhcgy4//9WBmxK/6Wnv14Bwkrka/0PMHPOxUhbc8y4QfdIRbyFWvxWZw2nzc6suHrFIePt1mBx91aTqIwg==} @@ -2095,117 +2269,88 @@ packages: peerDependencies: zod: ^3.24.0 - '@vitejs/plugin-react@4.3.4': - resolution: {integrity: sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug==} + '@vitejs/plugin-react@4.5.2': + resolution: {integrity: sha512-QNVT3/Lxx99nMQWJWF7K4N6apUEuT0KlZA3mx/mVaoGj3smm/8rc8ezz15J1pcbcjDK0V15rpHetVfya08r76Q==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: - vite: ^4.2.0 || ^5.0.0 || ^6.0.0 + vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0 - '@vitejs/plugin-vue-jsx@4.1.1': - resolution: {integrity: sha512-uMJqv/7u1zz/9NbWAD3XdjaY20tKTf17XVfQ9zq4wY1BjsB/PjpJPMe2xiG39QpP4ZdhYNhm4Hvo66uJrykNLA==} + '@vitejs/plugin-vue-jsx@4.2.0': + resolution: {integrity: sha512-DSTrmrdLp+0LDNF77fqrKfx7X0ErRbOcUAgJL/HbSesqQwoUvUQ4uYQqaex+rovqgGcoPqVk+AwUh3v9CuiYIw==} engines: {node: ^18.0.0 || >=20.0.0} peerDependencies: vite: ^5.0.0 || ^6.0.0 vue: ^3.0.0 - '@vitejs/plugin-vue@5.2.1': - resolution: {integrity: sha512-cxh314tzaWwOLqVes2gnnCtvBDcM1UMdn+iFR+UjAn411dPT3tOmqrJjbMd7koZpMAmBM/GqeV4n9ge7JSiJJQ==} + '@vitejs/plugin-vue@5.2.4': + resolution: {integrity: sha512-7Yx/SXSOcQq5HiiV3orevHUFn+pmMB4cgbEkDYgnkUWb0WfeQ/wa2yFv6D5ICiCQOVpjA7vYDXrC7AGO8yjDHA==} engines: {node: ^18.0.0 || >=20.0.0} peerDependencies: vite: ^5.0.0 || ^6.0.0 vue: ^3.2.25 - '@vitest/coverage-istanbul@3.0.5': - resolution: {integrity: sha512-yTcIwrpLHOyPP28PXXLRv1NzzKCrqDnmT7oVypTa1Q24P6OwGT4Wi6dXNEaJg33vmrPpoe81f31kwB5MtfM+ow==} - peerDependencies: - vitest: 3.0.5 - '@vitest/coverage-istanbul@3.0.6': resolution: {integrity: sha512-e+8HkmVlPpqOZXIWGE8opxex3trTMCeCMHax7yG0JbWOtGRVKBjuNS/GGA/eta89LuXUrCIcQrRfJHLUrWl7Wg==} peerDependencies: vitest: 3.0.6 - '@vitest/coverage-v8@3.0.6': - resolution: {integrity: sha512-JRTlR8Bw+4BcmVTICa7tJsxqphAktakiLsAmibVLAWbu1lauFddY/tXeM6sAyl1cgkPuXtpnUgaCPhTdz1Qapg==} + '@vitest/coverage-istanbul@3.2.4': + resolution: {integrity: sha512-IDlpuFJiWU9rhcKLkpzj8mFu/lpe64gVgnV15ZOrYx1iFzxxrxCzbExiUEKtwwXRvEiEMUS6iZeYgnMxgbqbxQ==} peerDependencies: - '@vitest/browser': 3.0.6 - vitest: 3.0.6 - peerDependenciesMeta: - '@vitest/browser': - optional: true + vitest: 3.2.4 - '@vitest/expect@3.0.5': - resolution: {integrity: sha512-nNIOqupgZ4v5jWuQx2DSlHLEs7Q4Oh/7AYwNyE+k0UQzG7tSmjPXShUikn1mpNGzYEN2jJbTvLejwShMitovBA==} - - '@vitest/expect@3.0.6': - resolution: {integrity: sha512-zBduHf/ja7/QRX4HdP1DSq5XrPgdN+jzLOwaTq/0qZjYfgETNFCKf9nOAp2j3hmom3oTbczuUzrzg9Hafh7hNg==} - - '@vitest/mocker@3.0.5': - resolution: {integrity: sha512-CLPNBFBIE7x6aEGbIjaQAX03ZZlBMaWwAjBdMkIf/cAn6xzLTiM3zYqO/WAbieEjsAZir6tO71mzeHZoodThvw==} + '@vitest/coverage-v8@3.2.4': + resolution: {integrity: sha512-EyF9SXU6kS5Ku/U82E259WSnvg6c8KTjppUncuNdm5QHpe17mwREHnjDzozC8x9MZ0xfBUFSaLkRv4TMA75ALQ==} peerDependencies: - msw: ^2.4.9 - vite: ^5.0.0 || ^6.0.0 + '@vitest/browser': 3.2.4 + vitest: 3.2.4 peerDependenciesMeta: - msw: - optional: true - vite: + '@vitest/browser': optional: true - '@vitest/mocker@3.0.6': - resolution: {integrity: sha512-KPztr4/tn7qDGZfqlSPQoF2VgJcKxnDNhmfR3VgZ6Fy1bO8T9Fc1stUiTXtqz0yG24VpD00pZP5f8EOFknjNuQ==} + '@vitest/expect@3.2.4': + resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==} + + '@vitest/mocker@3.2.4': + resolution: {integrity: sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==} peerDependencies: msw: ^2.4.9 - vite: ^5.0.0 || ^6.0.0 + vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0 peerDependenciesMeta: msw: optional: true vite: optional: true - '@vitest/pretty-format@3.0.5': - resolution: {integrity: sha512-CjUtdmpOcm4RVtB+up8r2vVDLR16Mgm/bYdkGFe3Yj/scRfCpbSi2W/BDSDcFK7ohw8UXvjMbOp9H4fByd/cOA==} - - '@vitest/pretty-format@3.0.6': - resolution: {integrity: sha512-Zyctv3dbNL+67qtHfRnUE/k8qxduOamRfAL1BurEIQSyOEFffoMvx2pnDSSbKAAVxY0Ej2J/GH2dQKI0W2JyVg==} - - '@vitest/runner@3.0.5': - resolution: {integrity: sha512-BAiZFityFexZQi2yN4OX3OkJC6scwRo8EhRB0Z5HIGGgd2q+Nq29LgHU/+ovCtd0fOfXj5ZI6pwdlUmC5bpi8A==} + '@vitest/pretty-format@3.2.4': + resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==} - '@vitest/runner@3.0.6': - resolution: {integrity: sha512-JopP4m/jGoaG1+CBqubV/5VMbi7L+NQCJTu1J1Pf6YaUbk7bZtaq5CX7p+8sY64Sjn1UQ1XJparHfcvTTdu9cA==} + '@vitest/runner@3.2.4': + resolution: {integrity: sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==} - '@vitest/snapshot@3.0.5': - resolution: {integrity: sha512-GJPZYcd7v8QNUJ7vRvLDmRwl+a1fGg4T/54lZXe+UOGy47F9yUfE18hRCtXL5aHN/AONu29NGzIXSVFh9K0feA==} + '@vitest/snapshot@3.2.4': + resolution: {integrity: sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==} - '@vitest/snapshot@3.0.6': - resolution: {integrity: sha512-qKSmxNQwT60kNwwJHMVwavvZsMGXWmngD023OHSgn873pV0lylK7dwBTfYP7e4URy5NiBCHHiQGA9DHkYkqRqg==} + '@vitest/spy@3.2.4': + resolution: {integrity: sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==} - '@vitest/spy@3.0.5': - resolution: {integrity: sha512-5fOzHj0WbUNqPK6blI/8VzZdkBlQLnT25knX0r4dbZI9qoZDf3qAdjoMmDcLG5A83W6oUUFJgUd0EYBc2P5xqg==} + '@vitest/utils@3.2.4': + resolution: {integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==} - '@vitest/spy@3.0.6': - resolution: {integrity: sha512-HfOGx/bXtjy24fDlTOpgiAEJbRfFxoX3zIGagCqACkFKKZ/TTOE6gYMKXlqecvxEndKFuNHcHqP081ggZ2yM0Q==} + '@volar/language-core@1.0.24': + resolution: {integrity: sha512-vTN+alJiWwK0Pax6POqrmevbtFW2dXhjwWiW/MW4f48eDYPLdyURWcr8TixO7EN/nHsUBj2udT7igFKPtjyAKg==} - '@vitest/utils@3.0.5': - resolution: {integrity: sha512-N9AX0NUoUtVwKwy21JtwzaqR5L5R5A99GAbrHfCCXK1lp593i/3AZAXhSP43wRQuxYsflrdzEfXZFo1reR1Nkg==} + '@volar/source-map@1.0.24': + resolution: {integrity: sha512-Qsv/tkplx18pgBr8lKAbM1vcDqgkGKQzbChg6NW+v0CZc3G7FLmK+WrqEPzKlN7Cwdc6XVL559Nod8WKAfKr4A==} - '@vitest/utils@3.0.6': - resolution: {integrity: sha512-18ktZpf4GQFTbf9jK543uspU03Q2qya7ZGya5yiZ0Gx0nnnalBvd5ZBislbl2EhLjM8A8rt4OilqKG7QwcGkvQ==} + '@volar/typescript@1.0.24': + resolution: {integrity: sha512-f8hCSk+PfKR1/RQHxZ79V1NpDImHoivqoizK+mstphm25tn/YJ/JnKNjZHB+o21fuW0yKlI26NV3jkVb2Cc/7A==} - '@volar/language-core@1.3.0-alpha.0': - resolution: {integrity: sha512-W3uMzecHPcbwddPu4SJpUcPakRBK/y/BP+U0U6NiPpUX1tONLC4yCawt+QBJqtgJ+sfD6ztf5PyvPL3hQRqfOA==} + '@volar/vue-language-core@1.0.24': + resolution: {integrity: sha512-2NTJzSgrwKu6uYwPqLiTMuAzi7fAY3yFy5PJ255bGJc82If0Xr+cW8pC80vpjG0D/aVLmlwAdO4+Ya2BI8GdDg==} - '@volar/source-map@1.3.0-alpha.0': - resolution: {integrity: sha512-jSdizxWFvDTvkPYZnO6ew3sBZUnS0abKCbuopkc0JrIlFbznWC/fPH3iPFIMS8/IIkRxq1Jh9VVG60SmtsdaMQ==} - - '@volar/typescript@1.3.0-alpha.0': - resolution: {integrity: sha512-5UItyW2cdH2mBLu4RrECRNJRgtvvzKrSCn2y3v/D61QwIDkGx4aeil6x8RFuUL5TFtV6QvVHXnsOHxNgd+sCow==} - - '@volar/vue-language-core@1.2.0': - resolution: {integrity: sha512-w7yEiaITh2WzKe6u8ZdeLKCUz43wdmY/OqAmsB/PGDvvhTcVhCJ6f0W/RprZL1IhqH8wALoWiwEh/Wer7ZviMQ==} - - '@volar/vue-typescript@1.2.0': - resolution: {integrity: sha512-zjmRi9y3J1EkG+pfuHp8IbHmibihrKK485cfzsHjiuvJMGrpkWvlO5WVEk8oslMxxeGC5XwBFE9AOlvh378EPA==} + '@volar/vue-typescript@1.0.24': + resolution: {integrity: sha512-9a25oHDvGaNC0okRS47uqJI6FxY4hUQZUsxeOUFHcqVxZEv8s17LPuP/pMMXyz7jPygrZubB/qXqHY5jEu/akA==} deprecated: 'WARNING: This project has been renamed to @vue/typescript. Install using @vue/typescript instead.' '@vue/babel-helper-vue-transform-on@1.4.0': @@ -2309,8 +2454,8 @@ packages: peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - acorn@8.14.0: - resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} + acorn@8.15.0: + resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==} engines: {node: '>=0.4.0'} hasBin: true @@ -2376,10 +2521,18 @@ packages: argparse@2.0.1: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + aria-query@5.3.2: + resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} + engines: {node: '>= 0.4'} + array-buffer-byte-length@1.0.1: resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} engines: {node: '>= 0.4'} + array-buffer-byte-length@1.0.2: + resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==} + engines: {node: '>= 0.4'} + array-ify@1.0.0: resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} @@ -2387,34 +2540,71 @@ packages: resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} engines: {node: '>= 0.4'} + array-includes@3.1.9: + resolution: {integrity: sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==} + engines: {node: '>= 0.4'} + array-union@2.1.0: resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} engines: {node: '>=8'} - array.prototype.findlastindex@1.2.5: - resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} + array.prototype.findlast@1.2.5: + resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} + engines: {node: '>= 0.4'} + + array.prototype.findlastindex@1.2.6: + resolution: {integrity: sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==} engines: {node: '>= 0.4'} array.prototype.flat@1.3.2: resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} engines: {node: '>= 0.4'} + array.prototype.flat@1.3.3: + resolution: {integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==} + engines: {node: '>= 0.4'} + array.prototype.flatmap@1.3.2: resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} engines: {node: '>= 0.4'} - arraybuffer.prototype.slice@1.0.3: - resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} + array.prototype.flatmap@1.3.3: + resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==} engines: {node: '>= 0.4'} - arrify@1.0.1: + array.prototype.tosorted@1.1.4: + resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==} + engines: {node: '>= 0.4'} + + arraybuffer.prototype.slice@1.0.3: + resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} + engines: {node: '>= 0.4'} + + arraybuffer.prototype.slice@1.0.4: + resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==} + engines: {node: '>= 0.4'} + + arrify@1.0.1: resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} engines: {node: '>=0.10.0'} + as-table@1.0.55: + resolution: {integrity: sha512-xvsWESUJn0JN421Xb9MQw6AsMHRCUknCe0Wjlxvjud80mU4E6hQf1A6NzQKcYNmYw62MfzEtXc+badstZP3JpQ==} + assertion-error@2.0.1: resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} engines: {node: '>=12'} + ast-types-flow@0.0.8: + resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} + + ast-v8-to-istanbul@0.3.11: + resolution: {integrity: sha512-Qya9fkoofMjCBNVdWINMjB5KZvkYfaO9/anwkWnjxibpWUxo5iHl2sOdP7/uAqaRuUYuoo8rDwnbaaKVFxoUvw==} + + async-function@1.0.0: + resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==} + engines: {node: '>= 0.4'} + async@3.2.5: resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==} @@ -2436,11 +2626,19 @@ packages: avvio@9.1.0: resolution: {integrity: sha512-fYASnYi600CsH/j9EQov7lECAniYiBFiiAtBNuZYLA2leLe9qOvZzqYHFjtIj6gD2VMoMLP14834LFWvr4IfDw==} + axe-core@4.11.1: + resolution: {integrity: sha512-BASOg+YwO2C+346x3LZOeoovTIoTrRqEsqMa6fmfAV0P+U9mFr9NsyOEpiYvFjbc64NMrSswhV50WdXzdb/Z5A==} + engines: {node: '>=4'} + axios@0.21.4: resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} - axios@1.7.9: - resolution: {integrity: sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==} + axios@1.12.0: + resolution: {integrity: sha512-oXTDccv8PcfjZmPGlWsPSwtOJCZ/b6W5jAMCNcfwJbCzDckwG0jrYJFaWH1yvivfCXjVzV/SPDEhMB3Q+DSurg==} + + axobject-query@4.1.0: + resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} + engines: {node: '>= 0.4'} balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} @@ -2448,6 +2646,10 @@ packages: base64-js@1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + baseline-browser-mapping@2.9.19: + resolution: {integrity: sha512-ipDqC8FrAl/76p2SSWKSI+H9tFwm7vYqXQrItCuiVPt26Km0jS+NzSsBWAaBusvSbQcfJG+JitdMm+wZAgTYqg==} + hasBin: true + before-after-hook@2.2.3: resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} @@ -2491,6 +2693,11 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true + browserslist@4.28.1: + resolution: {integrity: sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + buffer-equal-constant-time@1.0.1: resolution: {integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==} @@ -2500,9 +2707,9 @@ packages: buffer@6.0.3: resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} - builtin-modules@3.3.0: - resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} - engines: {node: '>=6'} + builtin-modules@5.0.0: + resolution: {integrity: sha512-bkXY9WsVpY7CvMhKSR6pZilZu9Ln5WDrKVBUXf2S443etkmEO4V58heTecXcUIsNsi4Rx8JUO4NfX1IcQl4deg==} + engines: {node: '>=18.20'} busboy@1.6.0: resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} @@ -2520,6 +2727,10 @@ packages: resolution: {integrity: sha512-CCKAP2tkPau7D3GE8+V8R6sQubA9R5foIzGp+85EXCVSCivuxBNAWqcpn72PKYiIcqoViv/kcUDpaEIMBVi1lQ==} engines: {node: '>= 0.4'} + call-bind-apply-helpers@1.0.2: + resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} + engines: {node: '>= 0.4'} + call-bind@1.0.7: resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} engines: {node: '>= 0.4'} @@ -2528,6 +2739,10 @@ packages: resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} engines: {node: '>= 0.4'} + call-bound@1.0.4: + resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==} + engines: {node: '>= 0.4'} + callsites@3.1.0: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} engines: {node: '>=6'} @@ -2552,6 +2767,9 @@ packages: caniuse-lite@1.0.30001687: resolution: {integrity: sha512-0S/FDhf4ZiqrTUiQ39dKeUjYRjkv7lOZU1Dgif2rIqrTzX/1wV2hfKu9TOm1IHkdSijfLswxTFzl/cvir+SLSQ==} + caniuse-lite@1.0.30001769: + resolution: {integrity: sha512-BCfFL1sHijQlBGWBMuJyhZUhzo7wer5sVj9hqekB/7xn0Ypy+pER/edCYQm4exbXj4WiySGp40P8UuTh6w1srg==} + capital-case@1.0.4: resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} @@ -2582,6 +2800,9 @@ packages: change-case@4.1.1: resolution: {integrity: sha512-qRlUWn/hXnX1R1LBDF/RelJLiqNjKjUqlmuBVSEIyye8kq49CXqkZWKmi8XeUAdDXWFOcGLUMZ+aHn3Q5lzUXw==} + change-case@5.4.4: + resolution: {integrity: sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==} + chardet@0.7.0: resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} @@ -2600,8 +2821,8 @@ packages: resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} engines: {node: '>= 8.10.0'} - ci-info@4.1.0: - resolution: {integrity: sha512-HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A==} + ci-info@4.4.0: + resolution: {integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==} engines: {node: '>=8'} clean-css@4.2.4: @@ -2736,8 +2957,8 @@ packages: resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==} engines: {node: '>=12.13'} - core-js-compat@3.39.0: - resolution: {integrity: sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==} + core-js-compat@3.48.0: + resolution: {integrity: sha512-OM4cAF3D6VtH/WkLtWvyNC56EZVXsZdU3iqaMG2B4WvYrlqU831pc4UtG5yp0sE9z8Y02wVN7PjW5Zf9Gt0f1Q==} core-util-is@1.0.3: resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} @@ -2778,6 +2999,10 @@ packages: resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} engines: {node: '>= 8'} + cross-spawn@7.0.6: + resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} + engines: {node: '>= 8'} + css-select@5.1.0: resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} @@ -2797,6 +3022,9 @@ packages: csstype@3.1.3: resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + damerau-levenshtein@1.0.8: + resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} + dargs@7.0.0: resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} engines: {node: '>=8'} @@ -2805,6 +3033,9 @@ packages: resolution: {integrity: sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==} engines: {node: '>=12'} + data-uri-to-buffer@2.0.2: + resolution: {integrity: sha512-ND9qDTLc6diwj+Xe5cdAgVTbLVdXbtxTJRXRhli8Mowuaan+0EJOtdqJ0QCHNSSPyoXGx9HX2/VMnKeC34AChA==} + data-urls@5.0.0: resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==} engines: {node: '>=18'} @@ -2813,14 +3044,26 @@ packages: resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} engines: {node: '>= 0.4'} + data-view-buffer@1.0.2: + resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==} + engines: {node: '>= 0.4'} + data-view-byte-length@1.0.1: resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} engines: {node: '>= 0.4'} + data-view-byte-length@1.0.2: + resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==} + engines: {node: '>= 0.4'} + data-view-byte-offset@1.0.0: resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} engines: {node: '>= 0.4'} + data-view-byte-offset@1.0.1: + resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==} + engines: {node: '>= 0.4'} + dateformat@3.0.3: resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} @@ -2856,6 +3099,15 @@ packages: supports-color: optional: true + debug@4.4.3: + resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + decamelize-keys@1.1.1: resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} engines: {node: '>=0.10.0'} @@ -2915,10 +3167,6 @@ packages: resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} engines: {node: '>=0.10.0'} - doctrine@3.0.0: - resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} - engines: {node: '>=6.0.0'} - dom-helpers@5.2.1: resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} @@ -2964,6 +3212,10 @@ packages: resolution: {integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==} engines: {node: '>=4'} + dunder-proto@1.0.1: + resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} + engines: {node: '>= 0.4'} + duplexify@4.1.3: resolution: {integrity: sha512-M3BmBhwJRZsSx38lZyhE53Csddgzl5R7xGJNk7CVddZD6CcmwMCH8J+7AprIrQKH7TonKxaCjcv27Qmf+sQ+oA==} @@ -2983,6 +3235,9 @@ packages: engines: {node: '>=0.10.0'} hasBin: true + electron-to-chromium@1.5.286: + resolution: {integrity: sha512-9tfDXhJ4RKFNerfjdCcZfufu49vg620741MNs26a9+bhLThdB+plgMeou98CAaHu/WATj2iHOOHTp1hWtABj2A==} + electron-to-chromium@1.5.6: resolution: {integrity: sha512-jwXWsM5RPf6j9dPYzaorcBSUg6AiqocPEyMpkchkvntaH9HGfOOMZwxMJjDY/XEs3T5dM7uyH1VhRMkqUU9qVw==} @@ -3020,34 +3275,62 @@ packages: resolution: {integrity: sha512-vlmniQ0WNPwXqA0BnmwV3Ng7HxiGlh6r5U6JcTMNx8OilcAGqVJBHJcPjqOMaczU9fRuRK5Px2BdVyPRnKMMVQ==} engines: {node: '>= 0.4'} + es-abstract@1.24.1: + resolution: {integrity: sha512-zHXBLhP+QehSSbsS9Pt23Gg964240DPd6QCf8WpkqEXxQ7fhdZzYsocOr5u7apWonsS5EjZDmTF+/slGMyasvw==} + engines: {node: '>= 0.4'} + es-define-property@1.0.0: resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} engines: {node: '>= 0.4'} + es-define-property@1.0.1: + resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} + engines: {node: '>= 0.4'} + es-errors@1.3.0: resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} engines: {node: '>= 0.4'} - es-module-lexer@1.6.0: - resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==} + es-iterator-helpers@1.2.2: + resolution: {integrity: sha512-BrUQ0cPTB/IwXj23HtwHjS9n7O4h9FX94b4xc5zlTHxeLgTAdzYUDyy6KdExAl9lbN5rtfe44xpjpmj9grxs5w==} + engines: {node: '>= 0.4'} + + es-module-lexer@1.7.0: + resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} es-object-atoms@1.0.0: resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} engines: {node: '>= 0.4'} + es-object-atoms@1.1.1: + resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} + engines: {node: '>= 0.4'} + es-set-tostringtag@2.0.3: resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} engines: {node: '>= 0.4'} + es-set-tostringtag@2.1.0: + resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==} + engines: {node: '>= 0.4'} + es-shim-unscopables@1.0.2: resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} + es-shim-unscopables@1.1.0: + resolution: {integrity: sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==} + engines: {node: '>= 0.4'} + es-to-primitive@1.2.1: resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} engines: {node: '>= 0.4'} - esbuild@0.24.2: - resolution: {integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==} + es-to-primitive@1.3.0: + resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} + engines: {node: '>= 0.4'} + + esbuild@0.25.12: + resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==} engines: {node: '>=18'} hasBin: true @@ -3074,12 +3357,27 @@ packages: resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} engines: {node: '>=10'} - eslint-config-prettier@9.1.0: - resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==} + eslint-compat-utils@0.5.1: + resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==} + engines: {node: '>=12'} + peerDependencies: + eslint: '>=6.0.0' + + eslint-config-prettier@10.1.8: + resolution: {integrity: sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w==} hasBin: true peerDependencies: eslint: '>=7.0.0' + eslint-import-context@0.1.9: + resolution: {integrity: sha512-K9Hb+yRaGAGUbwjhFNHvSmmkZs9+zbuoe3kFQ4V1wYjrepUFYM2dZAfNtjbbj3qsPfUfsA68Bx/ICWQMi+C8Eg==} + engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} + peerDependencies: + unrs-resolver: ^1.0.0 + peerDependenciesMeta: + unrs-resolver: + optional: true + eslint-import-resolver-alias@1.1.2: resolution: {integrity: sha512-WdviM1Eu834zsfjHtcGHtGfcu+F30Od3V7I9Fi57uhBEwPkjDcii7/yW8jAT+gOhn4P/vOxxNAXbFAKsrrc15w==} engines: {node: '>= 4'} @@ -3089,22 +3387,9 @@ packages: eslint-import-resolver-node@0.3.9: resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} - eslint-import-resolver-typescript@3.6.3: - resolution: {integrity: sha512-ud9aw4szY9cCT1EWWdGv1L1XR6hh2PaRWif0j2QjQ0pgTY/69iw+W0Z4qZv5wHahOl8isEr+k/JnyAqNQkLkIA==} - engines: {node: ^14.18.0 || >=16.0.0} - peerDependencies: - eslint: '*' - eslint-plugin-import: '*' - eslint-plugin-import-x: '*' - peerDependenciesMeta: - eslint-plugin-import: - optional: true - eslint-plugin-import-x: - optional: true - - eslint-import-resolver-typescript@3.8.3: - resolution: {integrity: sha512-A0bu4Ks2QqDWNpeEgTQMPTngaMhuDu4yv6xpftBMAf+1ziXnpx+eSR1WRfoPTe2BAiAjHFZ7kSNx1fvr5g5pmQ==} - engines: {node: ^14.18.0 || >=16.0.0} + eslint-import-resolver-typescript@4.4.4: + resolution: {integrity: sha512-1iM2zeBvrYmUNTj2vSC/90JTHDth+dfOfiNKkxApWRsTJYNrc8rOdxxIf5vazX+BiAXTeOT0UvWpGI/7qIWQOw==} + engines: {node: ^16.17.0 || >=18.6.0} peerDependencies: eslint: '*' eslint-plugin-import: '*' @@ -3115,8 +3400,8 @@ packages: eslint-plugin-import-x: optional: true - eslint-module-utils@2.12.0: - resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==} + eslint-module-utils@2.12.1: + resolution: {integrity: sha512-L8jSWTze7K2mTg0vos/RuLRS5soomksDPoJLXIslC7c8Wmut3bx7CPpJijDcBZtxQ5lrbUdM+s0OlNbz0DCDNw==} engines: {node: '>=4'} peerDependencies: '@typescript-eslint/parser': '*' @@ -3136,14 +3421,14 @@ packages: eslint-import-resolver-webpack: optional: true - eslint-plugin-es@4.1.0: - resolution: {integrity: sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==} - engines: {node: '>=8.10.0'} + eslint-plugin-es-x@7.8.0: + resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==} + engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: - eslint: '>=4.19.1' + eslint: '>=8' - eslint-plugin-import@2.31.0: - resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==} + eslint-plugin-import@2.32.0: + resolution: {integrity: sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==} engines: {node: '>=4'} peerDependencies: '@typescript-eslint/parser': '*' @@ -3152,33 +3437,25 @@ packages: '@typescript-eslint/parser': optional: true - eslint-plugin-n@14.0.0: - resolution: {integrity: sha512-mNwplPLsbaKhHyA0fa/cy8j+oF6bF6l81hzBTWa6JOvPcMNAuIogk2ih6d9tYvWYzyUG+7ZFeChqbzdFpg2QrQ==} - engines: {node: '>=12.22.0'} + eslint-plugin-jsx-a11y@6.10.2: + resolution: {integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==} + engines: {node: '>=4.0'} peerDependencies: - eslint: '>=7.0.0' + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9 - eslint-plugin-prettier@5.2.1: - resolution: {integrity: sha512-gH3iR3g4JfF+yYPaJYkN7jEl9QbweL/YfkoRlNnuIEHEz1vHVlCmWOS+eGGiRuzHQXdJFCOTxRgvju9b8VUmrw==} - engines: {node: ^14.18.0 || >=16.0.0} + eslint-plugin-n@17.20.0: + resolution: {integrity: sha512-IRSoatgB/NQJZG5EeTbv/iAx1byOGdbbyhQrNvWdCfTnmPxUT0ao9/eGOeG7ljD8wJBsxwE8f6tES5Db0FRKEw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - '@types/eslint': '>=8.0.0' - eslint: '>=8.0.0' - eslint-config-prettier: '*' - prettier: '>=3.0.0' - peerDependenciesMeta: - '@types/eslint': - optional: true - eslint-config-prettier: - optional: true + eslint: '>=8.23.0' - eslint-plugin-prettier@5.2.3: - resolution: {integrity: sha512-qJ+y0FfCp/mQYQ/vWQ3s7eUlFEL4PyKfAJxsnYTJ4YT73nsJBWqmEpFryxV9OeUiqmsTsYJ5Y+KDNaeP31wrRw==} + eslint-plugin-prettier@5.5.5: + resolution: {integrity: sha512-hscXkbqUZ2sPithAuLm5MXL+Wph+U7wHngPBv9OMWwlP8iaflyxpjTYZkmdgB4/vPIhemRlBEoLrH7UC1n7aUw==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: '@types/eslint': '>=8.0.0' eslint: '>=8.0.0' - eslint-config-prettier: '*' + eslint-config-prettier: '>= 7.0.0 <10.0.0 || >=10.1.0' prettier: '>=3.0.0' peerDependenciesMeta: '@types/eslint': @@ -3186,45 +3463,47 @@ packages: eslint-config-prettier: optional: true - eslint-plugin-promise@7.1.0: - resolution: {integrity: sha512-8trNmPxdAy3W620WKDpaS65NlM5yAumod6XeC4LOb+jxlkG4IVcp68c6dXY2ev+uT4U1PtG57YDV6EGAXN0GbQ==} + eslint-plugin-promise@7.2.1: + resolution: {integrity: sha512-SWKjd+EuvWkYaS+uN2csvj0KoP43YTu7+phKQ5v+xw6+A0gutVX2yqCeCkC3uLCJFiPfR2dD8Es5L7yUsmvEaA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 - eslint-plugin-unicorn@56.0.1: - resolution: {integrity: sha512-FwVV0Uwf8XPfVnKSGpMg7NtlZh0G0gBarCaFcMUOoqPxXryxdYxTRRv4kH6B9TFCVIrjRXG+emcxIk2ayZilog==} - engines: {node: '>=18.18'} + eslint-plugin-react-hooks@7.0.1: + resolution: {integrity: sha512-O0d0m04evaNzEPoSW+59Mezf8Qt0InfgGIBJnpC0h3NH/WjUAR7BIKUfysC6todmtiZ/A0oUVS8Gce0WhBrHsA==} + engines: {node: '>=18'} peerDependencies: - eslint: '>=8.56.0' + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 - eslint-plugin-vue@9.32.0: - resolution: {integrity: sha512-b/Y05HYmnB/32wqVcjxjHZzNpwxj1onBOvqW89W+V+XNG1dRuaFbNd3vT9CLbr2LXjEoq+3vn8DanWf7XU22Ug==} - engines: {node: ^14.17.0 || >=16.0.0} + eslint-plugin-react@7.37.5: + resolution: {integrity: sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==} + engines: {node: '>=4'} peerDependencies: - eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7 - eslint-scope@7.2.2: - resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - eslint-utils@2.1.0: - resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} - engines: {node: '>=6'} - - eslint-utils@3.0.0: - resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} - engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} + eslint-plugin-unicorn@62.0.0: + resolution: {integrity: sha512-HIlIkGLkvf29YEiS/ImuDZQbP12gWyx5i3C6XrRxMvVdqMroCI9qoVYCoIl17ChN+U89pn9sVwLxhIWj5nEc7g==} + engines: {node: ^20.10.0 || >=21.0.0} peerDependencies: - eslint: '>=5' + eslint: '>=9.38.0' - eslint-visitor-keys@1.3.0: - resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} - engines: {node: '>=4'} + eslint-plugin-vue@10.7.0: + resolution: {integrity: sha512-r2XFCK4qlo1sxEoAMIoTTX0PZAdla0JJDt1fmYiworZUX67WeEGqm+JbyAg3M+pGiJ5U6Mp5WQbontXWtIW7TA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + '@stylistic/eslint-plugin': ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 + '@typescript-eslint/parser': ^7.0.0 || ^8.0.0 + eslint: ^8.57.0 || ^9.0.0 + vue-eslint-parser: ^10.0.0 + peerDependenciesMeta: + '@stylistic/eslint-plugin': + optional: true + '@typescript-eslint/parser': + optional: true - eslint-visitor-keys@2.1.0: - resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} - engines: {node: '>=10'} + eslint-scope@8.4.0: + resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} eslint-visitor-keys@3.4.3: resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} @@ -3234,19 +3513,27 @@ packages: resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - eslint@8.57.1: - resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options. + eslint-visitor-keys@4.2.1: + resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + eslint@9.39.2: + resolution: {integrity: sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true + peerDependencies: + jiti: '*' + peerDependenciesMeta: + jiti: + optional: true esm@3.2.25: resolution: {integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==} engines: {node: '>=6'} - espree@9.6.1: - resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + espree@10.4.0: + resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} esquery@1.6.0: resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} @@ -3286,8 +3573,8 @@ packages: resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} engines: {node: '>=16.17'} - expect-type@1.1.0: - resolution: {integrity: sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==} + expect-type@1.3.0: + resolution: {integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==} engines: {node: '>=12.0.0'} external-editor@3.1.0: @@ -3343,8 +3630,8 @@ packages: fastify-plugin@5.0.1: resolution: {integrity: sha512-HCxs+YnRaWzCl+cWRYFnHmeRFyR5GVnJTAaCJQiYzQSDwK9MgJdyAsuL3nh0EWRCYMgQ5MeziymvmAhUHYHDUQ==} - fastify@5.2.1: - resolution: {integrity: sha512-rslrNBF67eg8/Gyn7P2URV8/6pz8kSAscFL4EThZJ8JBMaXacVdVE4hmUcnPNKERl5o/xTiBSLfdowBRhVF1WA==} + fastify@5.6.0: + resolution: {integrity: sha512-9j2r9TnwNsfGiCKGYT0Voqy244qwcoYM9qvNi/i+F8sNNWDnqUEVuGYNc9GyjldhXmMlJmVPS6gI1LdvjYGRJw==} fastparallel@2.4.1: resolution: {integrity: sha512-qUmhxPgNHmvRjZKBFUNI0oZuuH9OlSIOXmJ98lhKPxMZZ7zS/Fi0wRHOihDSz0R1YiIOjxzOY4bq65YTcdBi2Q==} @@ -3360,13 +3647,22 @@ packages: picomatch: optional: true + fdir@6.5.0: + resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} + engines: {node: '>=12.0.0'} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + figures@3.2.0: resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} engines: {node: '>=8'} - file-entry-cache@6.0.1: - resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} - engines: {node: ^10.12.0 || >=12.0.0} + file-entry-cache@8.0.0: + resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} + engines: {node: '>=16.0.0'} file-saver@2.0.5: resolution: {integrity: sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==} @@ -3386,6 +3682,10 @@ packages: resolution: {integrity: sha512-eRoFWQw+Yv2tuYlK2pjFS2jGXSxSppAs3hSQjfxVKxM5amECzIgYYc1FEI8ZmhSh/Ig+FrKEz43NLRKJjYCZVg==} engines: {node: '>=20'} + find-up-simple@1.0.1: + resolution: {integrity: sha512-afd4O7zpqHeRyg4PfDQsXmlDe2PfdHtJt6Akt8jOWaApLOZk5JXs6VMR29lz03pRe9mpykrRCYIYxaJYcfpncQ==} + engines: {node: '>=18'} + find-up@2.1.0: resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} engines: {node: '>=4'} @@ -3402,9 +3702,9 @@ packages: resolution: {integrity: sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==} engines: {node: '>=18'} - flat-cache@3.2.0: - resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} - engines: {node: ^10.12.0 || >=12.0.0} + flat-cache@4.0.1: + resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} + engines: {node: '>=16'} flatted@3.3.1: resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} @@ -3421,6 +3721,10 @@ packages: for-each@0.3.3: resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + for-each@0.3.5: + resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==} + engines: {node: '>= 0.4'} + foreground-child@3.3.0: resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} engines: {node: '>=14'} @@ -3429,6 +3733,14 @@ packages: resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} engines: {node: '>= 6'} + form-data@4.0.5: + resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==} + engines: {node: '>= 6'} + + forwarded@0.2.0: + resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} + engines: {node: '>= 0.6'} + fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} @@ -3444,6 +3756,10 @@ packages: resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} engines: {node: '>= 0.4'} + function.prototype.name@1.1.8: + resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==} + engines: {node: '>= 0.4'} + functional-red-black-tree@1.0.1: resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} @@ -3453,6 +3769,10 @@ packages: generate-function@2.3.1: resolution: {integrity: sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==} + generator-function@2.0.1: + resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==} + engines: {node: '>= 0.4'} + gensync@1.0.0-beta.2: resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} engines: {node: '>=6.9.0'} @@ -3461,18 +3781,26 @@ packages: resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} engines: {node: 6.* || 8.* || >= 10.*} - get-func-name@2.0.2: - resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==} - get-intrinsic@1.2.4: resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} engines: {node: '>= 0.4'} + get-intrinsic@1.3.0: + resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} + engines: {node: '>= 0.4'} + get-pkg-repo@4.2.1: resolution: {integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==} engines: {node: '>=6.9.0'} hasBin: true + get-proto@1.0.1: + resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} + engines: {node: '>= 0.4'} + + get-source@2.0.12: + resolution: {integrity: sha512-X5+4+iD+HoSeEED+uwrQ07BOQr0kEDFMVqqpBuI+RaZBpBpHCuXxo70bjar6f0b0u/DQJsJ7ssurpP0V60Az+w==} + get-stack-trace@3.1.1: resolution: {integrity: sha512-E1rM+umbm9MlMp6zNSap+UI8VVWWmAoUxiAHp1Ron1FV2dM99mgMAHS1tGAGO/ceBjgOXz24GC47aLeNN1llrA==} engines: {node: '>=18.0'} @@ -3489,11 +3817,15 @@ packages: resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} engines: {node: '>= 0.4'} + get-symbol-description@1.1.0: + resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} + engines: {node: '>= 0.4'} + get-tsconfig@4.10.0: resolution: {integrity: sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==} - get-tsconfig@4.7.6: - resolution: {integrity: sha512-ZAqrLlu18NbDdRaHq+AKXzAmqIUPswPWKUchfytdAjiRFnCe5ojG2bstg6mRiZabkKfCoL/e98pbBELIV/YCeA==} + get-tsconfig@4.13.6: + resolution: {integrity: sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==} git-raw-commits@2.0.11: resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==} @@ -3532,6 +3864,7 @@ packages: glob@11.0.1: resolution: {integrity: sha512-zrQDm8XPnYEKawJScsnM0QzobJxlT/kHOOlRTio8IH/GrmxRE5fjllkzdaHclIuNjUQTJYH2xHNIGfdpJkDJUw==} engines: {node: 20 || >=22} + deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me hasBin: true glob@7.2.3: @@ -3546,14 +3879,22 @@ packages: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} engines: {node: '>=4'} - globals@13.24.0: - resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} - engines: {node: '>=8'} + globals@14.0.0: + resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} + engines: {node: '>=18'} globals@15.13.0: resolution: {integrity: sha512-49TewVEz0UxZjr1WYYsWpPrhyC/B/pA8Bq0fUmet2n+eR7yn0IvNzNaoBwnK6mdkzcN+se7Ez9zUgULTz2QH4g==} engines: {node: '>=18'} + globals@16.5.0: + resolution: {integrity: sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==} + engines: {node: '>=18'} + + globals@17.3.0: + resolution: {integrity: sha512-yMqGUQVVCkD4tqjOJf3TnrvaaHDMYp4VlUSObbkIiuCPe/ofdMBFIAcBbCSRFWOnos6qRiTVStDwqPLUclaxIw==} + engines: {node: '>=18'} + globalthis@1.0.4: resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} engines: {node: '>= 0.4'} @@ -3572,9 +3913,6 @@ packages: graceful-fs@4.2.11: resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} - graphemer@1.4.0: - resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} - graphql-jit@0.8.7: resolution: {integrity: sha512-KGzCrsxQPfEiXOUIJCexWKiWF6ycjO89kAO6SdO8OWRGwYXbG0hsLuTnbFfMq0gj7d7/ib/Gh7jtst7FHZEEjw==} peerDependencies: @@ -3586,14 +3924,14 @@ packages: peerDependencies: graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - graphql-upload-minimal@1.6.1: - resolution: {integrity: sha512-wNUf/KqA0B/OguL1k6qWa4AmAduLUAhXzovh9i14SKbpBa8HX2vc7f+fR67S0rG7fSpGdM/aivxzC329/+9xXw==} + graphql-upload-minimal@1.6.4: + resolution: {integrity: sha512-8uSNQp+rGFmh+yuq60wMVfD6b0kHMiMtvYbdcSl2e/ZmlG2cgel+J/UPTgvsWVAUZvtfYCRE8A4r+mVHydCQyQ==} engines: {node: '>=12'} peerDependencies: graphql: 0.13.1 - 16 - graphql@16.10.0: - resolution: {integrity: sha512-AjqGKbDGUFRKIRCP9tCKiIGHyriz2oHEbPIbEtcSLSs4YjReZOIPQQWek4+6hjw62H9QShXHyaGivGiYVLeYFQ==} + graphql@16.11.0: + resolution: {integrity: sha512-mS1lbMsxgQj6hge1XZ6p7GPhbrtFwUFYi3wRzXAC/FmYnyXMTvvI3td3rjmQ2u8ewXueaSvRPWaEcgVVOT9Jnw==} engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} handlebars@4.7.8: @@ -3623,10 +3961,18 @@ packages: resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} engines: {node: '>= 0.4'} + has-proto@1.2.0: + resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==} + engines: {node: '>= 0.4'} + has-symbols@1.0.3: resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} engines: {node: '>= 0.4'} + has-symbols@1.1.0: + resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} + engines: {node: '>= 0.4'} + has-tostringtag@1.0.2: resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} engines: {node: '>= 0.4'} @@ -3642,6 +3988,12 @@ packages: header-case@2.0.4: resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==} + hermes-estree@0.25.1: + resolution: {integrity: sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==} + + hermes-parser@0.25.1: + resolution: {integrity: sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==} + hookable@5.5.3: resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==} @@ -3748,6 +4100,14 @@ packages: resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} engines: {node: '>= 4'} + ignore@5.3.2: + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} + engines: {node: '>= 4'} + + ignore@7.0.5: + resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==} + engines: {node: '>= 4'} + immutable@4.3.7: resolution: {integrity: sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==} @@ -3766,6 +4126,10 @@ packages: resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} engines: {node: '>=8'} + indent-string@5.0.0: + resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==} + engines: {node: '>=12'} + inflation@2.1.0: resolution: {integrity: sha512-t54PPJHG1Pp7VQvxyVCJ9mBbjG3Hqryges9bXoOO6GExCPa+//i/d5GSuFtpx3ALLd7lgIAur6zrIlBQyJuMlQ==} engines: {node: '>= 0.8.0'} @@ -3792,6 +4156,10 @@ packages: resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} engines: {node: '>= 0.4'} + internal-slot@1.1.0: + resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} + engines: {node: '>= 0.4'} + interpret@1.4.0: resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} engines: {node: '>= 0.10'} @@ -3804,12 +4172,24 @@ packages: resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} engines: {node: '>= 0.4'} + is-array-buffer@3.0.5: + resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==} + engines: {node: '>= 0.4'} + is-arrayish@0.2.1: resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + is-async-function@2.1.1: + resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==} + engines: {node: '>= 0.4'} + is-bigint@1.0.4: resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + is-bigint@1.1.0: + resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==} + engines: {node: '>= 0.4'} + is-binary-path@2.1.0: resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} engines: {node: '>=8'} @@ -3818,12 +4198,16 @@ packages: resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} engines: {node: '>= 0.4'} - is-builtin-module@3.2.1: - resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} - engines: {node: '>=6'} + is-boolean-object@1.2.2: + resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==} + engines: {node: '>= 0.4'} - is-bun-module@1.3.0: - resolution: {integrity: sha512-DgXeu5UWI0IsMQundYb5UAOzm6G2eVnarJ0byP6Tm55iZNKceD59LNPA2L4VvsScTtHcw0yEkVwSf7PC+QoLSA==} + is-builtin-module@5.0.0: + resolution: {integrity: sha512-f4RqJKBUe5rQkJ2eJEJBXSticB3hGbN9j0yxxMQFqIW89Jp9WYFtzfTcRlstDKVUTRzSOTLKRfO9vIztenwtxA==} + engines: {node: '>=18.20'} + + is-bun-module@2.0.0: + resolution: {integrity: sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==} is-callable@1.2.7: resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} @@ -3837,14 +4221,26 @@ packages: resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==} engines: {node: '>= 0.4'} + is-core-module@2.16.1: + resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} + engines: {node: '>= 0.4'} + is-data-view@1.0.1: resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} engines: {node: '>= 0.4'} + is-data-view@1.0.2: + resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==} + engines: {node: '>= 0.4'} + is-date-object@1.0.5: resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} engines: {node: '>= 0.4'} + is-date-object@1.1.0: + resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==} + engines: {node: '>= 0.4'} + is-docker@2.2.1: resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} engines: {node: '>=8'} @@ -3854,14 +4250,26 @@ packages: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} + is-finalizationregistry@1.1.1: + resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==} + engines: {node: '>= 0.4'} + is-fullwidth-code-point@3.0.0: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} engines: {node: '>=8'} + is-generator-function@1.1.2: + resolution: {integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==} + engines: {node: '>= 0.4'} + is-glob@4.0.3: resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} engines: {node: '>=0.10.0'} + is-map@2.0.3: + resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} + engines: {node: '>= 0.4'} + is-negative-zero@2.0.3: resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} engines: {node: '>= 0.4'} @@ -3870,6 +4278,10 @@ packages: resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} engines: {node: '>= 0.4'} + is-number-object@1.1.1: + resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==} + engines: {node: '>= 0.4'} + is-number@7.0.0: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} engines: {node: '>=0.12.0'} @@ -3878,10 +4290,6 @@ packages: resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} engines: {node: '>=8'} - is-path-inside@3.0.3: - resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} - engines: {node: '>=8'} - is-plain-obj@1.1.0: resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} engines: {node: '>=0.10.0'} @@ -3900,10 +4308,22 @@ packages: resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} engines: {node: '>= 0.4'} + is-regex@1.2.1: + resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} + engines: {node: '>= 0.4'} + + is-set@2.0.3: + resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} + engines: {node: '>= 0.4'} + is-shared-array-buffer@1.0.3: resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} engines: {node: '>= 0.4'} + is-shared-array-buffer@1.0.4: + resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==} + engines: {node: '>= 0.4'} + is-stream@1.1.0: resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} engines: {node: '>=0.10.0'} @@ -3920,10 +4340,18 @@ packages: resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} engines: {node: '>= 0.4'} + is-string@1.1.1: + resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==} + engines: {node: '>= 0.4'} + is-symbol@1.0.4: resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} engines: {node: '>= 0.4'} + is-symbol@1.1.1: + resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==} + engines: {node: '>= 0.4'} + is-text-path@1.0.1: resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==} engines: {node: '>=0.10.0'} @@ -3936,9 +4364,25 @@ packages: resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} engines: {node: '>= 0.4'} + is-typed-array@1.1.15: + resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} + engines: {node: '>= 0.4'} + + is-weakmap@2.0.2: + resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} + engines: {node: '>= 0.4'} + is-weakref@1.0.2: resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + is-weakref@1.1.1: + resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==} + engines: {node: '>= 0.4'} + + is-weakset@2.0.4: + resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==} + engines: {node: '>= 0.4'} + is-what@4.1.16: resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==} engines: {node: '>=12.13'} @@ -3979,6 +4423,10 @@ packages: resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==} engines: {node: '>=8'} + iterator.prototype@1.1.5: + resolution: {integrity: sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==} + engines: {node: '>= 0.4'} + jackspeak@3.4.3: resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} @@ -4007,15 +4455,25 @@ packages: resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==} engines: {node: '>=14'} + js-tokens@10.0.0: + resolution: {integrity: sha512-lM/UBzQmfJRo9ABXbPWemivdCW8V2G8FHaHdypQaIy523snUjog0W71ayWXTjiR+ixeMyVHN2XcpnTd/liPg/Q==} + js-tokens@4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + js-tokens@9.0.1: + resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==} + js-yaml@4.1.0: resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} hasBin: true - jsdom@24.0.0: - resolution: {integrity: sha512-UDS2NayCvmXSXVP6mpTj+73JnNQadZlr9N68189xib2tx5Mls7swlTNao26IoHv46BZJFvXygyRtyXd1feAk1A==} + js-yaml@4.1.1: + resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==} + hasBin: true + + jsdom@25.0.1: + resolution: {integrity: sha512-8i7LzZj7BF8uplX+ZyOlIz86V6TAsSs+np6m1kpW9u0JWi4z/1t+FzcK1aek+ybTnAC4KhBL4uXCNT0wcUIeCw==} engines: {node: '>=18'} peerDependencies: canvas: ^2.11.2 @@ -4023,10 +4481,6 @@ packages: canvas: optional: true - jsesc@0.5.0: - resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} - hasBin: true - jsesc@2.5.2: resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} engines: {node: '>=4'} @@ -4037,6 +4491,11 @@ packages: engines: {node: '>=6'} hasBin: true + jsesc@3.1.0: + resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} + engines: {node: '>=6'} + hasBin: true + json-buffer@3.0.1: resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} @@ -4088,6 +4547,10 @@ packages: resolution: {integrity: sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==} engines: {node: '>=12', npm: '>=6'} + jsx-ast-utils@3.3.5: + resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} + engines: {node: '>=4.0'} + juice@10.0.1: resolution: {integrity: sha512-ZhJT1soxJCkOiO55/mz8yeBKTAJhRzX9WBO+16ZTqNTONnnVlUPyVBIzQ7lDRjaBdTbid+bAnyIon/GM3yp4cA==} engines: {node: '>=10.0.0'} @@ -4106,6 +4569,13 @@ packages: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} engines: {node: '>=0.10.0'} + language-subtag-registry@0.3.23: + resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==} + + language-tags@1.0.9: + resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} + engines: {node: '>=0.10'} + leac@0.6.0: resolution: {integrity: sha512-y+SqErxb8h7nE/fiEX07jsbuhrpO9lL8eca7/Y1nuWV2moNlXhyd59iDGcRf6moVyDMbmTNzL40SUyrFU/yDpg==} @@ -4203,12 +4673,12 @@ packages: resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} hasBin: true - loupe@3.1.1: - resolution: {integrity: sha512-edNu/8D5MKVfGVFRhFf8aAxiTM6Wumfz5XsaatSxlD3w4R1d/WEKUTydCdPGbl9K7QG/Ca3GnDV2sIKIpXRQcw==} - loupe@3.1.3: resolution: {integrity: sha512-kkIp7XSkP78ZxJEsSxW3712C6teJVoeHHwgo9zJ380de7IYyJ2ISlxojcH2pC5OFLewESmnRi/+XCDIEEVyoug==} + loupe@3.2.1: + resolution: {integrity: sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==} + lower-case@1.1.4: resolution: {integrity: sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==} @@ -4255,6 +4725,14 @@ packages: resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} engines: {node: '>=8'} + math-intrinsics@1.1.0: + resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} + engines: {node: '>= 0.4'} + + media-typer@1.1.0: + resolution: {integrity: sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==} + engines: {node: '>= 0.8'} + mensch@0.3.4: resolution: {integrity: sha512-IAeFvcOnV9V0Yk+bFhYR07O3yNina9ANIN5MoXBKYJ/RLYPurd2d0yw14MDhpr9/momp0WofT1bPUh3hkzdi/g==} @@ -4269,8 +4747,8 @@ packages: mercurius-auth@6.0.0: resolution: {integrity: sha512-pwxoF2xrYaItu9GFpNMFzNULmC7JCC3XCRzYtUOG8TgmrCtQ5N0SSKnA92FGkt/Q/5/3FfFJIiF4GSW6iRbolQ==} - mercurius@16.1.0: - resolution: {integrity: sha512-foMnqtFn3Wf/3zh0IJEz30Dq0alZIlIMCoQpxpS3/GkDB12h/LfmcoZ6ASCZ8xBJIvStEIKYxOyjfDeEcYhjLQ==} + mercurius@16.2.0: + resolution: {integrity: sha512-I2+KRkC6MVbf44FN7hopWXj+OzS1nKLwN7brAkpd3MLTz9mQgWMYdnrk2ETVaG6yD3x9zIIzuRrCQcuWHyFL1w==} engines: {node: ^20.9.0 || >=22.0.0} peerDependencies: graphql: ^16.0.0 @@ -4290,10 +4768,18 @@ packages: resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} engines: {node: '>= 0.6'} + mime-db@1.54.0: + resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==} + engines: {node: '>= 0.6'} + mime-types@2.1.35: resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} engines: {node: '>= 0.6'} + mime-types@3.0.2: + resolution: {integrity: sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==} + engines: {node: '>=18'} + mime@2.6.0: resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} engines: {node: '>=4.0.0'} @@ -4327,10 +4813,6 @@ packages: resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} engines: {node: '>=10'} - minimatch@6.2.0: - resolution: {integrity: sha512-sauLxniAmvnhhRjFwPNnJKaPFYyddAgbYdeUpHULtCT/GhzdCx/MDNy+Y40lBxTQUrMzDE8e0S43Z5uqfO0REg==} - engines: {node: '>=10'} - minimatch@9.0.1: resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==} engines: {node: '>=16 || 14 >=14.17'} @@ -4467,9 +4949,9 @@ packages: moo@0.5.2: resolution: {integrity: sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==} - mqemitter@6.0.2: - resolution: {integrity: sha512-8RGlznQx/Nb1xC3xKUFXHWov7pn7JdH++YVwlr6SLT6k3ft1h+ImGqZdVudbdKruFckIq9wheq9s4hgCivJDow==} - engines: {node: '>=16'} + mqemitter@7.1.0: + resolution: {integrity: sha512-GnBDNz3lxmllW201ne0mrmdy5tPOTnc79jjVcsfUa2LG2pUGeyGWVeiae6ZysfC/64XrYOqCKRAQYrB7pGyBVQ==} + engines: {node: '>=20'} ms@2.1.2: resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} @@ -4477,8 +4959,8 @@ packages: ms@2.1.3: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - muggle-string@0.2.2: - resolution: {integrity: sha512-YVE1mIJ4VpUMqZObFndk9CJu6DBJR/GB13p3tXuNbwD4XExaI5EOuRl6BHeIDxIqXZVxSfAC+y6U1Z/IxCfKUg==} + muggle-string@0.1.0: + resolution: {integrity: sha512-Tr1knR3d2mKvvWthlk7202rywKbiOm4rVFLsfAaSIhJ6dt9o47W4S+JMtWhd/PW9Wrdew2/S2fSvhz3E2gkfEg==} mustache@4.2.0: resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==} @@ -4487,13 +4969,23 @@ packages: mute-stream@0.0.8: resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} + nanoid@3.3.11: + resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + nanoid@3.3.8: resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true - natural-compare@1.4.0: - resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + napi-postinstall@0.3.4: + resolution: {integrity: sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==} + engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} + hasBin: true + + natural-compare@1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} nearley@2.20.1: resolution: {integrity: sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==} @@ -4523,6 +5015,9 @@ packages: node-releases@2.0.18: resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==} + node-releases@2.0.27: + resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==} + node-xlsx@0.24.0: resolution: {integrity: sha512-1olwK48XK9nXZsyH/FCltvGrQYvXXZuxVitxXXv2GIuRm51aBi1+5KwR4rWM4KeO61sFU+00913WLZTD+AcXEg==} engines: {node: '>=10.0.0'} @@ -4545,8 +5040,8 @@ packages: resolution: {integrity: sha512-Z+iLaBGVaSjbIzQ4pX6XV41HrooLsQ10ZWPUehGmuantvzWoDVBnmsdUcOIDM1t+yPor5pDhVlDESgOMEGxhHA==} engines: {node: '>=6.0.0'} - nodemailer@6.9.14: - resolution: {integrity: sha512-Dobp/ebDKBvz91sbtRKhcznLThrKxKt97GI2FAlAyy+fk19j73Uz3sBXolVtmcXjaorivqsbbbjDY+Jkt4/bQA==} + nodemailer@7.0.13: + resolution: {integrity: sha512-PNDFSJdP+KFgdsG3ZzMXCgquO7I6McjY2vlqILjtJd0hy8wEvtugS9xKRF2NWlPNGxvLCXlTNIae4serI7dinw==} engines: {node: '>=6.0.0'} nopt@7.2.1: @@ -4595,6 +5090,10 @@ packages: resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==} engines: {node: '>= 0.4'} + object-inspect@1.13.4: + resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==} + engines: {node: '>= 0.4'} + object-keys@1.1.1: resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} engines: {node: '>= 0.4'} @@ -4603,6 +5102,14 @@ packages: resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} engines: {node: '>= 0.4'} + object.assign@4.1.7: + resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} + engines: {node: '>= 0.4'} + + object.entries@1.1.9: + resolution: {integrity: sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==} + engines: {node: '>= 0.4'} + object.fromentries@2.0.8: resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} engines: {node: '>= 0.4'} @@ -4611,8 +5118,8 @@ packages: resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} engines: {node: '>= 0.4'} - object.values@1.2.0: - resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} + object.values@1.2.1: + resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==} engines: {node: '>= 0.4'} obuf@1.1.2: @@ -4649,6 +5156,10 @@ packages: resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} engines: {node: '>=0.10.0'} + own-keys@1.0.1: + resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==} + engines: {node: '>= 0.4'} + p-finally@1.0.0: resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} engines: {node: '>=4'} @@ -4814,8 +5325,8 @@ packages: pg-connection-string@2.9.1: resolution: {integrity: sha512-nkc6NpDcvPVpZXxrreI/FOtX3XemeLl8E0qFr6F2Lrm/I8WOnaWNhIPK2Z7OHpw7gh5XJThi6j6ppgNoaT1w4w==} - pg-cursor@2.12.1: - resolution: {integrity: sha512-V13tEaA9Oq1w+V6Q3UBIB/blxJrwbbr35/dY54r/86soBJ7xkP236bXaORUTVXUPt9B6Ql2BQu+uwQiuMfRVgg==} + pg-cursor@2.17.0: + resolution: {integrity: sha512-2Uio3Xfl5ldwJfls+RgGL+YbPcKQncWACWjYQFqlamvHZ4HJFjZhhZBbqd7jQ2LIkZYSvU90bm2dNW0rno+QFQ==} peerDependencies: pg: ^8 @@ -4881,8 +5392,8 @@ packages: pg-protocol@1.7.1: resolution: {integrity: sha512-gjTHWGYWsEgy9MsY0Gp6ZJxV24IjDqdpTW7Eh0x+WfJLFsm/TJx1MzL6T0D88mBvkpxotCQ6TwW6N+Kko7lhgQ==} - pg-query-stream@4.7.1: - resolution: {integrity: sha512-UMgsgn/pOIYsIifRySp59vwlpTpLADMK9HWJtq5ff0Z3MxBnPMGnCQeaQl5VuL+7ov4F96mSzIRIcz+Duo6OiQ==} + pg-query-stream@4.12.0: + resolution: {integrity: sha512-H97oiVPQ0+eRqIFOeYMUnjDcv9od7vHHMjiVDAhg2SEzAUr3M/dT83UEV1B+fm+tcVnymI8j2LSp57/+yjF6Fg==} peerDependencies: pg: ^8 @@ -4929,6 +5440,10 @@ packages: resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} engines: {node: '>=12'} + picomatch@4.0.3: + resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} + engines: {node: '>=12'} + pify@2.3.0: resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} engines: {node: '>=0.10.0'} @@ -4964,14 +5479,18 @@ packages: resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} engines: {node: '>= 0.4'} - postcss-selector-parser@6.1.2: - resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} + postcss-selector-parser@7.1.1: + resolution: {integrity: sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==} engines: {node: '>=4'} postcss@8.5.2: resolution: {integrity: sha512-MjOadfU3Ys9KYoX0AdkBlFEF1Vx37uCCeN4ZHnmwm9FfpbsGWMZeBLMmmpY+6Ocqod7mkdZ0DT31OlbsFrLlkA==} engines: {node: ^10 || ^12 || >=14} + postcss@8.5.6: + resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} + engines: {node: ^10 || ^12 || >=14} + postgres-array@2.0.0: resolution: {integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==} engines: {node: '>=4'} @@ -4980,6 +5499,10 @@ packages: resolution: {integrity: sha512-6faShkdFugNQCLwucjPcY5ARoW1SlbnrZjmGl0IrrqewpvxvhSLHimCVzqeuULCbG0fQv7Dtk1yDbG3xv7Veog==} engines: {node: '>=12'} + postgres-array@3.0.4: + resolution: {integrity: sha512-nAUSGfSDGOaOAEGwqsRY27GPOea7CNipJPOA7lPbdEpx5Kg3qzdP0AaWC5MlhTWV9s4hFX39nomVZ+C4tnGOJQ==} + engines: {node: '>=12'} + postgres-bytea@1.0.0: resolution: {integrity: sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==} engines: {node: '>=0.10.0'} @@ -5015,8 +5538,8 @@ packages: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} engines: {node: '>= 0.8.0'} - prettier-linter-helpers@1.0.0: - resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} + prettier-linter-helpers@1.0.1: + resolution: {integrity: sha512-SxToR7P8Y2lWmv/kTzVLC1t/GDI2WGjMwNhLLE9qtH8Q13C+aEmuRlzDst4Up4s0Wc8sF2M+J57iB3cMLqftfg==} engines: {node: '>=6.0.0'} prettier@2.8.8: @@ -5024,13 +5547,8 @@ packages: engines: {node: '>=10.13.0'} hasBin: true - prettier@3.3.3: - resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==} - engines: {node: '>=14'} - hasBin: true - - prettier@3.5.2: - resolution: {integrity: sha512-lc6npv5PH7hVqozBR7lkBNOGXV9vMwROAPlumdBkX0wTbbzPu/U1hk5yL8p2pt4Xoc+2mkT8t/sow2YrV/M5qg==} + prettier@3.8.1: + resolution: {integrity: sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==} engines: {node: '>=14'} hasBin: true @@ -5048,12 +5566,18 @@ packages: '@types/react': optional: true + printable-characters@1.0.42: + resolution: {integrity: sha512-dKp+C4iXWK4vVYZmYSd0KBH5F/h1HoZRsbJ82AVKRO3PEo8L4lBS/vLwhVtpwwuYcoIsVY+1JYKR268yn480uQ==} + process-nextick-args@2.0.1: resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} process-warning@4.0.1: resolution: {integrity: sha512-3c2LzQ3rY9d0hc1emcsHhfT9Jwz0cChib/QN89oME2R451w5fy3f0afAhERFZAwrbDU43wk12d0ORBpDVME50Q==} + process-warning@5.0.0: + resolution: {integrity: sha512-a39t9ApHNx2L4+HBnQKqxxHNs1r7KF+Intd8Q/g1bUh6q0WIp9voPXJ/x0j+ZL45KF1pJd9+q2jLIRMfvEshkA==} + process@0.11.10: resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} engines: {node: '>= 0.6.0'} @@ -5172,25 +5696,25 @@ packages: react: ^16.8.0 || ^17 || ^18 react-dom: ^16.8.0 || ^17 || ^18 - react-refresh@0.14.2: - resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} + react-refresh@0.17.0: + resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==} engines: {node: '>=0.10.0'} - react-router-dom@6.26.1: - resolution: {integrity: sha512-veut7m41S1fLql4pLhxeSW3jlqs+4MtjRLj0xvuCEXsxusJCbs6I8yn9BxzzDX2XDgafrccY6hwjmd/bL54tFw==} + react-router-dom@6.28.0: + resolution: {integrity: sha512-kQ7Unsl5YdyOltsPGl31zOjLrDv+m2VcIEcIHqYYD3Lp0UppLjrzcfJqDJwXxFw3TH/yvapbnUvPlAj7Kx5nbg==} engines: {node: '>=14.0.0'} peerDependencies: react: '>=16.8' react-dom: '>=16.8' - react-router@6.26.1: - resolution: {integrity: sha512-kIwJveZNwp7teQRI5QmwWo39A5bXRyqpH0COKKmPnyD2vBvDwgFXSqDUYtt1h+FEyfnE8eXr7oe0MxRzVwCcvQ==} + react-router@6.28.0: + resolution: {integrity: sha512-HrYdIFqdrnhDw0PqG/AKjAqEqM7AvxCz0DQ4h2W8k6nqmc5uRBYDag0SBxx9iYz5G8gnuNVLzUe13wl9eAsXXg==} engines: {node: '>=14.0.0'} peerDependencies: react: '>=16.8' - react-toastify@10.0.6: - resolution: {integrity: sha512-yYjp+omCDf9lhZcrZHKbSq7YMuK0zcYkDFTzfRFgTXkTFHZ1ToxwAonzA4JI5CxA91JpjFLmwEsZEgfYfOqI1A==} + react-toastify@10.0.5: + resolution: {integrity: sha512-mNKt2jBXJg4O7pSdbNUfDdTsK9FIdikfsIE/yUCxbAEXl4HMyJaivrVFcn3Elvt5xvCQYhUZm+hqTIu1UXM3Pw==} peerDependencies: react: '>=18' react-dom: '>=18' @@ -5248,6 +5772,10 @@ packages: resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} engines: {node: '>=8'} + reflect.getprototypeof@1.0.10: + resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==} + engines: {node: '>= 0.4'} + regenerator-runtime@0.14.1: resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} @@ -5259,12 +5787,12 @@ packages: resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==} engines: {node: '>= 0.4'} - regexpp@3.2.0: - resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} - engines: {node: '>=8'} + regexp.prototype.flags@1.5.4: + resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==} + engines: {node: '>= 0.4'} - regjsparser@0.10.0: - resolution: {integrity: sha512-qx+xQGZVsy55CH0a1hiVwHmqjLryfh7wQyF5HO07XJ9f7dQMY/gPQHhlyDkIzJKC+x2fUCpCcUODUUUFrm7SHA==} + regjsparser@0.13.0: + resolution: {integrity: sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q==} hasBin: true relateurl@0.2.7: @@ -5297,6 +5825,10 @@ packages: resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} hasBin: true + resolve@2.0.0-next.5: + resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} + hasBin: true + restore-cursor@3.1.0: resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} engines: {node: '>=8'} @@ -5316,23 +5848,15 @@ packages: rfdc@1.4.1: resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} - rimraf@3.0.2: - resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} - deprecated: Rimraf versions prior to v4 are no longer supported - hasBin: true - roarr@7.21.1: resolution: {integrity: sha512-3niqt5bXFY1InKU8HKWqqYTYjtrBaxBMnXELXCXUYgtNYGUtZM5rB46HIC430AyacL95iEniGf7RgqsesykLmQ==} engines: {node: '>=18.0'} - rollup@4.34.8: - resolution: {integrity: sha512-489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==} + rollup@4.57.1: + resolution: {integrity: sha512-oQL6lgK3e2QZeQ7gcgIkS2YZPg5slw37hYufJ3edKlfQSGGm8ICoxswK15ntSzF/a8+h7ekRy7k7oWc3BQ7y8A==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true - rrweb-cssom@0.6.0: - resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==} - rrweb-cssom@0.7.1: resolution: {integrity: sha512-TrEMa7JGdVm0UThDJSx7ddw5nVm3UJS9o9CCIZ72B1vSyEZoziDqBYP3XIoi/12lKrJR8rE3jeFHMok2F/Mnsg==} @@ -5351,16 +5875,28 @@ packages: resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} engines: {node: '>=0.4'} + safe-array-concat@1.1.3: + resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==} + engines: {node: '>=0.4'} + safe-buffer@5.1.2: resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} safe-buffer@5.2.1: resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + safe-push-apply@1.0.0: + resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==} + engines: {node: '>= 0.4'} + safe-regex-test@1.0.3: resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} engines: {node: '>= 0.4'} + safe-regex-test@1.1.0: + resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} + engines: {node: '>= 0.4'} + safe-regex2@5.0.0: resolution: {integrity: sha512-YwJwe5a51WlK7KbOJREPdjNrpViQBI3p4T50lfwPuDhZnE3XGVTlGvi+aolc5+RvxDD6bnUmjVsU9n1eboLUYw==} @@ -5368,6 +5904,10 @@ packages: resolution: {integrity: sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==} engines: {node: '>=10'} + safe-stable-stringify@2.5.0: + resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==} + engines: {node: '>=10'} + safer-buffer@2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} @@ -5380,10 +5920,14 @@ packages: scmp@2.1.0: resolution: {integrity: sha512-o/mRQGk9Rcer/jEEw/yw4mwo3EU/NvYvp577/Btqrym9Qy5/MdWGBqipbALgd2lrdWTJ5/gqDusxfnQBxOxT2Q==} + deprecated: Just use Node.js's crypto.timingSafeEqual() secure-json-parse@3.0.2: resolution: {integrity: sha512-H6nS2o8bWfpFEV6U38sOSjS7bTbdgbCGU9wEM6W14P5H0QOsz94KCusifV44GpHDTu2nqZbuDNhTzu+mjDSw1w==} + secure-json-parse@4.1.0: + resolution: {integrity: sha512-l4KnYfEyqYJxDwlNVyRfO2E4NTHfMKAWdUuA8J0yve2Dz/E/PdBepY03RvyJpssIpRFwJoCD55wA+mEDs6ByWA==} + selderee@0.11.0: resolution: {integrity: sha512-5TF+l7p4+OsnP8BCCvSyZiSPc4x4//p5uPwK8TCnVPJYRmU2aYKMpOXvw8zM5a5JvuuCGN1jmsMwuU2W02ukfA==} @@ -5407,6 +5951,11 @@ packages: engines: {node: '>=10'} hasBin: true + semver@7.7.4: + resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==} + engines: {node: '>=10'} + hasBin: true + sentence-case@3.0.4: resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==} @@ -5428,6 +5977,10 @@ packages: resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} engines: {node: '>= 0.4'} + set-proto@1.0.0: + resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==} + engines: {node: '>= 0.4'} + setprototypeof@1.2.0: resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} @@ -5463,10 +6016,26 @@ packages: engines: {node: '>=8'} hasBin: true + side-channel-list@1.0.0: + resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} + engines: {node: '>= 0.4'} + + side-channel-map@1.0.1: + resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} + engines: {node: '>= 0.4'} + + side-channel-weakmap@1.0.2: + resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} + engines: {node: '>= 0.4'} + side-channel@1.0.6: resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} engines: {node: '>= 0.4'} + side-channel@1.1.0: + resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} + engines: {node: '>= 0.4'} + siginfo@2.0.0: resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} @@ -5477,8 +6046,8 @@ packages: resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} engines: {node: '>=14'} - single-user-cache@1.0.1: - resolution: {integrity: sha512-xFW/TuZUKoMZl47xqfC2jb7dO1XtJ5VgZxQliOKQWTueIH96CX6USaPiZcyDN0HFb4Ow+tsXpJZViRyIkl/rDA==} + single-user-cache@2.1.0: + resolution: {integrity: sha512-Wmu+uIEkabMoQPpJTOYhEsE6h/XjnjIhtuB1+tynxeO/hQxwQD0hIDq/ad65P1Tw9wt9f5SKnUe+63m6TMB4Uw==} slash@3.0.0: resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} @@ -5493,8 +6062,8 @@ packages: peerDependencies: slonik: '>=45.0.0' - slonik@46.1.0: - resolution: {integrity: sha512-c1SgJ1tz5sZvKCZ61WvYQ3kuz0vvu+EX1b22t1KjHkXbvGtTja6D0GX5W5hh6cLj8apKSIHrTrVBy3JNWTYfHw==} + slonik@46.8.0: + resolution: {integrity: sha512-1sBzz4k5eowrzaGvP0gdZ41p62K1FxC7tDpA/IWvyGpf7A51eGNoAVfrg/mL9+OifWnKuru9opHPrdE15UHpfg==} engines: {node: '>=18'} peerDependencies: zod: ^3 @@ -5547,8 +6116,9 @@ packages: resolution: {integrity: sha512-UXhXR2869FQaD+GMly8jAMCRZ94nU5KcrFetZfWEMd+LVVG6y0ExgHAhatEcKZ/wk8YcKPdi+hiD2wm75lq3/Q==} engines: {node: '>=4.0.0'} - stable-hash@0.0.4: - resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==} + stable-hash-x@0.2.0: + resolution: {integrity: sha512-o3yWv49B/o4QZk5ZcsALc6t0+eCelPc44zZsLtCQnZPDwFpDYSWcDnrv2TtMmMbQ7uKo3J0HTURCqckw23czNQ==} + engines: {node: '>=12.0.0'} stackback@0.0.2: resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} @@ -5557,12 +6127,19 @@ packages: resolution: {integrity: sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==} engines: {node: '>=6'} + stacktracey@2.1.8: + resolution: {integrity: sha512-Kpij9riA+UNg7TnphqjH7/CzctQ/owJGNbFkfEeve4Z4uxT5+JapVLFXcsurIfN34gnTWZNJ/f7NMG0E8JDzTw==} + statuses@2.0.1: resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} engines: {node: '>= 0.8'} - std-env@3.8.0: - resolution: {integrity: sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==} + std-env@3.10.0: + resolution: {integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==} + + stop-iteration-iterator@1.1.0: + resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==} + engines: {node: '>= 0.4'} stream-browserify@3.0.0: resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==} @@ -5585,6 +6162,21 @@ packages: resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} engines: {node: '>=12'} + string.prototype.includes@2.0.1: + resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==} + engines: {node: '>= 0.4'} + + string.prototype.matchall@4.0.12: + resolution: {integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==} + engines: {node: '>= 0.4'} + + string.prototype.repeat@1.0.0: + resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==} + + string.prototype.trim@1.2.10: + resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==} + engines: {node: '>= 0.4'} + string.prototype.trim@1.2.9: resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} engines: {node: '>= 0.4'} @@ -5592,6 +6184,10 @@ packages: string.prototype.trimend@1.0.8: resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} + string.prototype.trimend@1.0.9: + resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==} + engines: {node: '>= 0.4'} + string.prototype.trimstart@1.0.8: resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} engines: {node: '>= 0.4'} @@ -5626,10 +6222,17 @@ packages: resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} engines: {node: '>=8'} + strip-indent@4.1.1: + resolution: {integrity: sha512-SlyRoSkdh1dYP0PzclLE7r0M9sgbFKKMFXpFRUMNuKhQSbC6VQIGzq3E0qsfvGJaUFJPGv6Ws1NZ/haTAjfbMA==} + engines: {node: '>=12'} + strip-json-comments@3.1.1: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} + strip-literal@3.1.0: + resolution: {integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==} + strnum@2.1.1: resolution: {integrity: sha512-7ZvoFTiCnGxBtDqJ//Cu6fWtZtc7Y3x+QOirG15wztbdngGSkht27o2pyGWrVy0b4WAy3jbKmnoK6g5VlVNUUw==} @@ -5640,8 +6243,8 @@ packages: supertokens-js-override@0.0.4: resolution: {integrity: sha512-r0JFBjkMIdep3Lbk3JA+MpnpuOtw4RSyrlRAbrzMcxwiYco3GFWl/daimQZ5b1forOiUODpOlXbSOljP/oyurg==} - supertokens-node@14.1.3: - resolution: {integrity: sha512-cwnzmJMHRQvqiztdRITlkK0o2psAw2wAYP+tJVYyIk4fm/93Yb0e9QMekuCJnhZAP0KXaZi+PGjA6F5FEE123Q==} + supertokens-node@14.1.4: + resolution: {integrity: sha512-Hf/z4r1W9Pk6rlRp7Pa9ibgsqnIy0tc4kzZk72gZ/fHArNKb+G0BZI3JJ5Vm8TrOZx5+DabLN40xahx2qLwalQ==} supertokens-web-js@0.5.0: resolution: {integrity: sha512-qlpgWLnHBor98k5wY97vzG7ouVOb/eeWOCKgaid055MUVPQr2gTEDrlKJN9I+Z4Vj6Dmblg1vC/cUbR/cx1TGw==} @@ -5664,8 +6267,8 @@ packages: symbol-tree@3.2.4: resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} - synckit@0.9.2: - resolution: {integrity: sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==} + synckit@0.11.12: + resolution: {integrity: sha512-Bh7QjT8/SuKUIfObSXNHNSK6WHo6J1tHCqJsuaFDP7gP0fkzSfTxI8y85JrppZ0h8l0maIgc2tfuZQ6/t3GtnQ==} engines: {node: ^14.18.0 || >=16.0.0} tapable@2.2.1: @@ -5700,9 +6303,6 @@ packages: resolution: {integrity: sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==} engines: {node: '>=8'} - text-table@0.2.0: - resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} - thread-stream@3.1.0: resolution: {integrity: sha512-OqyPZ9u96VohAyMfJykzmivOrY2wfMSf3C5TtFJVgN+Hm6aj+voFhlK+kZEIv2FBh1X6Xp3DlnCOfEQ3B2J86A==} @@ -5729,18 +6329,29 @@ packages: resolution: {integrity: sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==} engines: {node: '>=12.0.0'} - tinypool@1.0.2: - resolution: {integrity: sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==} + 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} tinyrainbow@2.0.0: resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==} engines: {node: '>=14.0.0'} - tinyspy@3.0.2: - resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==} + tinyspy@4.0.4: + resolution: {integrity: sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==} engines: {node: '>=14.0.0'} + tldts-core@6.1.86: + resolution: {integrity: sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==} + + tldts@6.1.86: + resolution: {integrity: sha512-WMi/OQ2axVTf/ykqCQgXiIct+mSQDFdH2fkwhPwgEwvJ1kSzZRiinb0zF2Xb8u4+OqPChmyI6MEu4EezNJz+FQ==} + hasBin: true + tmp@0.0.33: resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} engines: {node: '>=0.6.0'} @@ -5761,9 +6372,9 @@ packages: resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} engines: {node: '>=0.6'} - tough-cookie@4.1.4: - resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} - engines: {node: '>=6'} + tough-cookie@5.1.2: + resolution: {integrity: sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==} + engines: {node: '>=16'} tr46@0.0.3: resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} @@ -5776,18 +6387,17 @@ packages: resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} engines: {node: '>=8'} - ts-api-utils@1.4.3: - resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==} - engines: {node: '>=16'} - peerDependencies: - typescript: '>=4.2.0' - - ts-api-utils@2.1.0: - resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==} + ts-api-utils@2.4.0: + resolution: {integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==} engines: {node: '>=18.12'} peerDependencies: typescript: '>=4.8.4' + ts-declaration-location@1.0.7: + resolution: {integrity: sha512-EDyGAwH1gO0Ausm9gV6T2nUvBgXT5kGoCMJPllOaooZ+4VvJiKBdZE7wK18N1deEowhcUptS+5GXZK8U/fvpwA==} + peerDependencies: + typescript: '>=4.0.0' + tsconfig-paths@3.15.0: resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} @@ -5870,25 +6480,52 @@ packages: resolution: {integrity: sha512-ABHZ2/tS2JkvH1PEjxFDTUWC8dB5OsIGZP4IFLhR293GqT5Y5qB1WwL2kMPYhQW9DVgVD8Hd7I8gjwPIf5GFkw==} engines: {node: '>=16'} + type-is@2.0.1: + resolution: {integrity: sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==} + engines: {node: '>= 0.6'} + typed-array-buffer@1.0.2: resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} engines: {node: '>= 0.4'} + typed-array-buffer@1.0.3: + resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} + engines: {node: '>= 0.4'} + typed-array-byte-length@1.0.1: resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} engines: {node: '>= 0.4'} + typed-array-byte-length@1.0.3: + resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==} + engines: {node: '>= 0.4'} + typed-array-byte-offset@1.0.2: resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} engines: {node: '>= 0.4'} + typed-array-byte-offset@1.0.4: + resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==} + engines: {node: '>= 0.4'} + typed-array-length@1.0.6: resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} engines: {node: '>= 0.4'} - typescript@5.4.5: - resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==} - engines: {node: '>=14.17'} + typed-array-length@1.0.7: + resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} + engines: {node: '>= 0.4'} + + typescript-eslint@8.54.0: + resolution: {integrity: sha512-CKsJ+g53QpsNPqbzUsfKVgd3Lny4yKZ1pP4qN3jdMOg/sisIDLGyDMezycquXLE5JsEU0wp3dGNdzig0/fmSVQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' + + typescript@4.9.5: + resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} + engines: {node: '>=4.2.0'} hasBin: true typescript@5.5.4: @@ -5896,6 +6533,11 @@ packages: engines: {node: '>=14.17'} hasBin: true + typescript@5.7.3: + resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==} + engines: {node: '>=14.17'} + hasBin: true + uglify-js@3.19.2: resolution: {integrity: sha512-S8KA6DDI47nQXJSi2ctQ629YzwOVs+bQML6DAtvy0wgNdpi+0ySpQK0g2pxBq2xfF2z3YCscu7NNA8nXT9PlIQ==} engines: {node: '>=0.8.0'} @@ -5904,14 +6546,15 @@ packages: unbox-primitive@1.0.2: resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} - undici-types@5.26.5: - resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + unbox-primitive@1.1.0: + resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} + engines: {node: '>= 0.4'} undici-types@6.19.8: resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} - undici-types@6.20.0: - resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==} + undici-types@7.16.0: + resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==} unicorn-magic@0.1.0: resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} @@ -5923,14 +6566,13 @@ packages: universal-user-agent@6.0.1: resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==} - universalify@0.2.0: - resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} - engines: {node: '>= 4.0.0'} - unpipe@1.0.0: resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} engines: {node: '>= 0.8'} + unrs-resolver@1.11.1: + resolution: {integrity: sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==} + update-browserslist-db@1.1.0: resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==} hasBin: true @@ -5943,6 +6585,12 @@ packages: peerDependencies: browserslist: '>= 4.21.0' + update-browserslist-db@1.2.3: + resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + upper-case-first@2.0.2: resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==} @@ -5977,71 +6625,30 @@ packages: validate-npm-package-license@3.0.4: resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} - validator@13.12.0: - resolution: {integrity: sha512-c1Q0mCiPlgdTVVVIJIrBuxNicYE+t/7oKeI9MWLj3fh/uq2Pxh/3eeWbVZ4OcGW1TUf53At0njHw5SMdA3tmMg==} + validator@13.15.22: + resolution: {integrity: sha512-uT/YQjiyLJP7HSrv/dPZqK9L28xf8hsNca01HSz1dfmI0DgMfjopp1rO/z13NeGF1tVystF0Ejx3y4rUKPw+bQ==} engines: {node: '>= 0.10'} - validator@13.15.15: - resolution: {integrity: sha512-BgWVbCI72aIQy937xbawcs+hrVaN/CZ2UwutgaJ36hGqRrLNM+f5LUT/YPRbo8IV/ASeFzXszezV+y2+rq3l8A==} + validator@13.15.26: + resolution: {integrity: sha512-spH26xU080ydGggxRyR1Yhcbgx+j3y5jbNXk/8L+iRvdIEQ4uTRH2Sgf2dokud6Q4oAtsbNvJ1Ft+9xmm6IZcA==} engines: {node: '>= 0.10'} + vary@1.1.2: + resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} + engines: {node: '>= 0.8'} + vee-validate@4.15.0: resolution: {integrity: sha512-PGJh1QCFwCBjbHu5aN6vB8macYVWrajbDvgo1Y/8fz9n/RVIkLmZCJDpUgu7+mUmCOPMxeyq7vXUOhbwAqdXcA==} peerDependencies: vue: ^3.4.26 - vite-node@3.0.5: - resolution: {integrity: sha512-02JEJl7SbtwSDJdYS537nU6l+ktdvcREfLksk/NDAqtdKWGqHl+joXzEubHROmS3E6pip+Xgu2tFezMu75jH7A==} + vite-node@3.2.4: + resolution: {integrity: sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==} engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} hasBin: true - vite-node@3.0.6: - resolution: {integrity: sha512-s51RzrTkXKJrhNbUzQRsarjmAae7VmMPAsRT7lppVpIg6mK3zGthP9Hgz0YQQKuNcF+Ii7DfYk3Fxz40jRmePw==} - engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} - hasBin: true - - vite@6.1.0: - resolution: {integrity: sha512-RjjMipCKVoR4hVfPY6GQTgveinjNuyLw+qruksLDvA5ktI1150VmcMBKmQaEWJhg/j6Uaf6dNCNA0AfdzUb/hQ==} - engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} - hasBin: true - peerDependencies: - '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 - jiti: '>=1.21.0' - less: '*' - lightningcss: ^1.21.0 - sass: '*' - sass-embedded: '*' - stylus: '*' - sugarss: '*' - terser: ^5.16.0 - tsx: ^4.8.1 - yaml: ^2.4.2 - peerDependenciesMeta: - '@types/node': - optional: true - jiti: - optional: true - less: - optional: true - lightningcss: - optional: true - sass: - optional: true - sass-embedded: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true - tsx: - optional: true - yaml: - optional: true - - vite@6.1.1: - resolution: {integrity: sha512-4GgM54XrwRfrOp297aIYspIti66k56v16ZnqHvrIM7mG+HjDlAwS7p+Srr7J6fGvEdOJ5JcQ/D9T7HhtdXDTzA==} + vite@6.3.5: + resolution: {integrity: sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==} engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} hasBin: true peerDependencies: @@ -6080,44 +6687,16 @@ packages: yaml: optional: true - vitest@3.0.5: - resolution: {integrity: sha512-4dof+HvqONw9bvsYxtkfUp2uHsTN9bV2CZIi1pWgoFpL1Lld8LA1ka9q/ONSsoScAKG7NVGf2stJTI7XRkXb2Q==} - engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} - hasBin: true - peerDependencies: - '@edge-runtime/vm': '*' - '@types/debug': ^4.1.12 - '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 - '@vitest/browser': 3.0.5 - '@vitest/ui': 3.0.5 - happy-dom: '*' - jsdom: '*' - peerDependenciesMeta: - '@edge-runtime/vm': - optional: true - '@types/debug': - optional: true - '@types/node': - optional: true - '@vitest/browser': - optional: true - '@vitest/ui': - optional: true - happy-dom: - optional: true - jsdom: - optional: true - - vitest@3.0.6: - resolution: {integrity: sha512-/iL1Sc5VeDZKPDe58oGK4HUFLhw6b5XdY1MYawjuSaDA4sEfYlY9HnS6aCEG26fX+MgUi7MwlduTBHHAI/OvMA==} + vitest@3.2.4: + resolution: {integrity: sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==} engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' '@types/debug': ^4.1.12 '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 - '@vitest/browser': 3.0.6 - '@vitest/ui': 3.0.6 + '@vitest/browser': 3.2.4 + '@vitest/ui': 3.2.4 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -6143,11 +6722,11 @@ packages: vue-component-type-helpers@2.2.10: resolution: {integrity: sha512-iDUO7uQK+Sab2tYuiP9D1oLujCWlhHELHMgV/cB13cuGbG4qwkLHvtfWb6FzvxrIOPDnU0oHsz2MlQjhYDeaHA==} - vue-eslint-parser@9.4.3: - resolution: {integrity: sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==} - engines: {node: ^14.17.0 || >=16.0.0} + vue-eslint-parser@10.2.0: + resolution: {integrity: sha512-CydUvFOQKD928UzZhTp4pr2vWz1L+H99t7Pkln2QSPdvmURT0MoC4wUccfCnuEaihNsu9aYYyk+bep8rlfkUXw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - eslint: '>=6.0.0' + eslint: ^8.57.0 || ^9.0.0 vue-i18n@9.1.10: resolution: {integrity: sha512-jpr7gV5KPk4n+sSPdpZT8Qx3XzTcNDWffRlHV/cT2NUyEf+sEgTTmLvnBAibjOFJ0zsUyZlVTAWH5DDnYep+1g==} @@ -6163,8 +6742,8 @@ packages: vue-template-compiler@2.7.16: resolution: {integrity: sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==} - vue-tsc@1.2.0: - resolution: {integrity: sha512-rIlzqdrhyPYyLG9zxsVRa+JEseeS9s8F2BbVVVWRRsTZvJO2BbhLEb2HW3MY+DFma0378tnIqs+vfTzbcQtRFw==} + vue-tsc@1.0.24: + resolution: {integrity: sha512-mmU1s5SAqE1nByQAiQnao9oU4vX+mSdsgI8H57SfKH6UVzq/jP9+Dbi2GaV+0b4Cn361d2ln8m6xeU60ApiEXg==} hasBin: true peerDependencies: typescript: '*' @@ -6198,6 +6777,7 @@ packages: whatwg-encoding@3.1.1: resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==} engines: {node: '>=18'} + deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation whatwg-mimetype@4.0.0: resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==} @@ -6213,10 +6793,26 @@ packages: which-boxed-primitive@1.0.2: resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} + which-boxed-primitive@1.1.1: + resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==} + engines: {node: '>= 0.4'} + + which-builtin-type@1.2.1: + resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==} + engines: {node: '>= 0.4'} + + which-collection@1.0.2: + resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} + engines: {node: '>= 0.4'} + which-typed-array@1.1.15: resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} engines: {node: '>= 0.4'} + which-typed-array@1.1.20: + resolution: {integrity: sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg==} + engines: {node: '>= 0.4'} + which@1.3.1: resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} hasBin: true @@ -6324,12 +6920,21 @@ packages: resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==} engines: {node: '>=12.20'} + zod-validation-error@4.0.2: + resolution: {integrity: sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==} + engines: {node: '>=18.0.0'} + peerDependencies: + zod: ^3.25.0 || ^4.0.0 + zod@3.23.8: resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} zod@3.24.2: resolution: {integrity: sha512-lY7CDW43ECgW9u1TcT3IoXHflywfVqDYze4waEz812jR/bZ8FHDsl7pFQoSZTz5N+2NqRXs8GBwnAwo3ZNxqhQ==} + zod@3.25.76: + resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==} + snapshots: '@ampproject/remapping@2.3.0': @@ -6340,20 +6945,20 @@ snapshots: '@aws-crypto/crc32@5.2.0': dependencies: '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.840.0 + '@aws-sdk/types': 3.914.0 tslib: 2.8.1 '@aws-crypto/crc32c@5.2.0': dependencies: '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.840.0 + '@aws-sdk/types': 3.914.0 tslib: 2.8.1 '@aws-crypto/sha1-browser@5.2.0': dependencies: '@aws-crypto/supports-web-crypto': 5.2.0 '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.840.0 + '@aws-sdk/types': 3.914.0 '@aws-sdk/util-locate-window': 3.804.0 '@smithy/util-utf8': 2.3.0 tslib: 2.8.1 @@ -6363,7 +6968,7 @@ snapshots: '@aws-crypto/sha256-js': 5.2.0 '@aws-crypto/supports-web-crypto': 5.2.0 '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.840.0 + '@aws-sdk/types': 3.914.0 '@aws-sdk/util-locate-window': 3.804.0 '@smithy/util-utf8': 2.3.0 tslib: 2.8.1 @@ -6371,7 +6976,7 @@ snapshots: '@aws-crypto/sha256-js@5.2.0': dependencies: '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.840.0 + '@aws-sdk/types': 3.914.0 tslib: 2.8.1 '@aws-crypto/supports-web-crypto@5.2.0': @@ -6380,458 +6985,458 @@ snapshots: '@aws-crypto/util@5.2.0': dependencies: - '@aws-sdk/types': 3.840.0 + '@aws-sdk/types': 3.914.0 '@smithy/util-utf8': 2.3.0 tslib: 2.8.1 - '@aws-sdk/client-s3@3.850.0': + '@aws-sdk/client-s3@3.917.0': dependencies: '@aws-crypto/sha1-browser': 5.2.0 '@aws-crypto/sha256-browser': 5.2.0 '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/core': 3.846.0 - '@aws-sdk/credential-provider-node': 3.848.0 - '@aws-sdk/middleware-bucket-endpoint': 3.840.0 - '@aws-sdk/middleware-expect-continue': 3.840.0 - '@aws-sdk/middleware-flexible-checksums': 3.846.0 - '@aws-sdk/middleware-host-header': 3.840.0 - '@aws-sdk/middleware-location-constraint': 3.840.0 - '@aws-sdk/middleware-logger': 3.840.0 - '@aws-sdk/middleware-recursion-detection': 3.840.0 - '@aws-sdk/middleware-sdk-s3': 3.846.0 - '@aws-sdk/middleware-ssec': 3.840.0 - '@aws-sdk/middleware-user-agent': 3.848.0 - '@aws-sdk/region-config-resolver': 3.840.0 - '@aws-sdk/signature-v4-multi-region': 3.846.0 - '@aws-sdk/types': 3.840.0 - '@aws-sdk/util-endpoints': 3.848.0 - '@aws-sdk/util-user-agent-browser': 3.840.0 - '@aws-sdk/util-user-agent-node': 3.848.0 - '@aws-sdk/xml-builder': 3.821.0 - '@smithy/config-resolver': 4.1.5 - '@smithy/core': 3.8.0 - '@smithy/eventstream-serde-browser': 4.0.5 - '@smithy/eventstream-serde-config-resolver': 4.1.3 - '@smithy/eventstream-serde-node': 4.0.5 - '@smithy/fetch-http-handler': 5.1.1 - '@smithy/hash-blob-browser': 4.0.5 - '@smithy/hash-node': 4.0.5 - '@smithy/hash-stream-node': 4.0.5 - '@smithy/invalid-dependency': 4.0.5 - '@smithy/md5-js': 4.0.5 - '@smithy/middleware-content-length': 4.0.5 - '@smithy/middleware-endpoint': 4.1.18 - '@smithy/middleware-retry': 4.1.19 - '@smithy/middleware-serde': 4.0.9 - '@smithy/middleware-stack': 4.0.5 - '@smithy/node-config-provider': 4.1.4 - '@smithy/node-http-handler': 4.1.1 - '@smithy/protocol-http': 5.1.3 - '@smithy/smithy-client': 4.4.10 - '@smithy/types': 4.3.2 - '@smithy/url-parser': 4.0.5 - '@smithy/util-base64': 4.0.0 - '@smithy/util-body-length-browser': 4.0.0 - '@smithy/util-body-length-node': 4.0.0 - '@smithy/util-defaults-mode-browser': 4.0.26 - '@smithy/util-defaults-mode-node': 4.0.26 - '@smithy/util-endpoints': 3.0.7 - '@smithy/util-middleware': 4.0.5 - '@smithy/util-retry': 4.0.7 - '@smithy/util-stream': 4.2.4 - '@smithy/util-utf8': 4.0.0 - '@smithy/util-waiter': 4.0.7 - '@types/uuid': 9.0.8 + '@aws-sdk/core': 3.916.0 + '@aws-sdk/credential-provider-node': 3.917.0 + '@aws-sdk/middleware-bucket-endpoint': 3.914.0 + '@aws-sdk/middleware-expect-continue': 3.917.0 + '@aws-sdk/middleware-flexible-checksums': 3.916.0 + '@aws-sdk/middleware-host-header': 3.914.0 + '@aws-sdk/middleware-location-constraint': 3.914.0 + '@aws-sdk/middleware-logger': 3.914.0 + '@aws-sdk/middleware-recursion-detection': 3.914.0 + '@aws-sdk/middleware-sdk-s3': 3.916.0 + '@aws-sdk/middleware-ssec': 3.914.0 + '@aws-sdk/middleware-user-agent': 3.916.0 + '@aws-sdk/region-config-resolver': 3.914.0 + '@aws-sdk/signature-v4-multi-region': 3.916.0 + '@aws-sdk/types': 3.914.0 + '@aws-sdk/util-endpoints': 3.916.0 + '@aws-sdk/util-user-agent-browser': 3.914.0 + '@aws-sdk/util-user-agent-node': 3.916.0 + '@aws-sdk/xml-builder': 3.914.0 + '@smithy/config-resolver': 4.4.6 + '@smithy/core': 3.23.0 + '@smithy/eventstream-serde-browser': 4.2.8 + '@smithy/eventstream-serde-config-resolver': 4.3.8 + '@smithy/eventstream-serde-node': 4.2.8 + '@smithy/fetch-http-handler': 5.3.9 + '@smithy/hash-blob-browser': 4.2.9 + '@smithy/hash-node': 4.2.8 + '@smithy/hash-stream-node': 4.2.8 + '@smithy/invalid-dependency': 4.2.8 + '@smithy/md5-js': 4.2.8 + '@smithy/middleware-content-length': 4.2.8 + '@smithy/middleware-endpoint': 4.4.14 + '@smithy/middleware-retry': 4.4.31 + '@smithy/middleware-serde': 4.2.9 + '@smithy/middleware-stack': 4.2.8 + '@smithy/node-config-provider': 4.3.8 + '@smithy/node-http-handler': 4.4.10 + '@smithy/protocol-http': 5.3.8 + '@smithy/smithy-client': 4.11.3 + '@smithy/types': 4.12.0 + '@smithy/url-parser': 4.2.8 + '@smithy/util-base64': 4.3.0 + '@smithy/util-body-length-browser': 4.2.0 + '@smithy/util-body-length-node': 4.2.1 + '@smithy/util-defaults-mode-browser': 4.3.30 + '@smithy/util-defaults-mode-node': 4.2.33 + '@smithy/util-endpoints': 3.2.8 + '@smithy/util-middleware': 4.2.8 + '@smithy/util-retry': 4.2.8 + '@smithy/util-stream': 4.5.12 + '@smithy/util-utf8': 4.2.0 + '@smithy/util-waiter': 4.2.8 + '@smithy/uuid': 1.1.0 tslib: 2.8.1 - uuid: 9.0.1 transitivePeerDependencies: - aws-crt - '@aws-sdk/client-sso@3.848.0': + '@aws-sdk/client-sso@3.916.0': dependencies: '@aws-crypto/sha256-browser': 5.2.0 '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/core': 3.846.0 - '@aws-sdk/middleware-host-header': 3.840.0 - '@aws-sdk/middleware-logger': 3.840.0 - '@aws-sdk/middleware-recursion-detection': 3.840.0 - '@aws-sdk/middleware-user-agent': 3.848.0 - '@aws-sdk/region-config-resolver': 3.840.0 - '@aws-sdk/types': 3.840.0 - '@aws-sdk/util-endpoints': 3.848.0 - '@aws-sdk/util-user-agent-browser': 3.840.0 - '@aws-sdk/util-user-agent-node': 3.848.0 - '@smithy/config-resolver': 4.1.5 - '@smithy/core': 3.8.0 - '@smithy/fetch-http-handler': 5.1.1 - '@smithy/hash-node': 4.0.5 - '@smithy/invalid-dependency': 4.0.5 - '@smithy/middleware-content-length': 4.0.5 - '@smithy/middleware-endpoint': 4.1.18 - '@smithy/middleware-retry': 4.1.19 - '@smithy/middleware-serde': 4.0.9 - '@smithy/middleware-stack': 4.0.5 - '@smithy/node-config-provider': 4.1.4 - '@smithy/node-http-handler': 4.1.1 - '@smithy/protocol-http': 5.1.3 - '@smithy/smithy-client': 4.4.10 - '@smithy/types': 4.3.2 - '@smithy/url-parser': 4.0.5 - '@smithy/util-base64': 4.0.0 - '@smithy/util-body-length-browser': 4.0.0 - '@smithy/util-body-length-node': 4.0.0 - '@smithy/util-defaults-mode-browser': 4.0.26 - '@smithy/util-defaults-mode-node': 4.0.26 - '@smithy/util-endpoints': 3.0.7 - '@smithy/util-middleware': 4.0.5 - '@smithy/util-retry': 4.0.7 - '@smithy/util-utf8': 4.0.0 + '@aws-sdk/core': 3.916.0 + '@aws-sdk/middleware-host-header': 3.914.0 + '@aws-sdk/middleware-logger': 3.914.0 + '@aws-sdk/middleware-recursion-detection': 3.914.0 + '@aws-sdk/middleware-user-agent': 3.916.0 + '@aws-sdk/region-config-resolver': 3.914.0 + '@aws-sdk/types': 3.914.0 + '@aws-sdk/util-endpoints': 3.916.0 + '@aws-sdk/util-user-agent-browser': 3.914.0 + '@aws-sdk/util-user-agent-node': 3.916.0 + '@smithy/config-resolver': 4.4.6 + '@smithy/core': 3.23.0 + '@smithy/fetch-http-handler': 5.3.9 + '@smithy/hash-node': 4.2.8 + '@smithy/invalid-dependency': 4.2.8 + '@smithy/middleware-content-length': 4.2.8 + '@smithy/middleware-endpoint': 4.4.14 + '@smithy/middleware-retry': 4.4.31 + '@smithy/middleware-serde': 4.2.9 + '@smithy/middleware-stack': 4.2.8 + '@smithy/node-config-provider': 4.3.8 + '@smithy/node-http-handler': 4.4.10 + '@smithy/protocol-http': 5.3.8 + '@smithy/smithy-client': 4.11.3 + '@smithy/types': 4.12.0 + '@smithy/url-parser': 4.2.8 + '@smithy/util-base64': 4.3.0 + '@smithy/util-body-length-browser': 4.2.0 + '@smithy/util-body-length-node': 4.2.1 + '@smithy/util-defaults-mode-browser': 4.3.30 + '@smithy/util-defaults-mode-node': 4.2.33 + '@smithy/util-endpoints': 3.2.8 + '@smithy/util-middleware': 4.2.8 + '@smithy/util-retry': 4.2.8 + '@smithy/util-utf8': 4.2.0 tslib: 2.8.1 transitivePeerDependencies: - aws-crt - '@aws-sdk/core@3.846.0': - dependencies: - '@aws-sdk/types': 3.840.0 - '@aws-sdk/xml-builder': 3.821.0 - '@smithy/core': 3.8.0 - '@smithy/node-config-provider': 4.1.4 - '@smithy/property-provider': 4.0.5 - '@smithy/protocol-http': 5.1.3 - '@smithy/signature-v4': 5.1.3 - '@smithy/smithy-client': 4.4.10 - '@smithy/types': 4.3.2 - '@smithy/util-base64': 4.0.0 - '@smithy/util-body-length-browser': 4.0.0 - '@smithy/util-middleware': 4.0.5 - '@smithy/util-utf8': 4.0.0 - fast-xml-parser: 5.2.5 + '@aws-sdk/core@3.916.0': + dependencies: + '@aws-sdk/types': 3.914.0 + '@aws-sdk/xml-builder': 3.914.0 + '@smithy/core': 3.23.0 + '@smithy/node-config-provider': 4.3.8 + '@smithy/property-provider': 4.2.8 + '@smithy/protocol-http': 5.3.8 + '@smithy/signature-v4': 5.3.8 + '@smithy/smithy-client': 4.11.3 + '@smithy/types': 4.12.0 + '@smithy/util-base64': 4.3.0 + '@smithy/util-middleware': 4.2.8 + '@smithy/util-utf8': 4.2.0 tslib: 2.8.1 - '@aws-sdk/credential-provider-env@3.846.0': + '@aws-sdk/credential-provider-env@3.916.0': dependencies: - '@aws-sdk/core': 3.846.0 - '@aws-sdk/types': 3.840.0 - '@smithy/property-provider': 4.0.5 - '@smithy/types': 4.3.2 + '@aws-sdk/core': 3.916.0 + '@aws-sdk/types': 3.914.0 + '@smithy/property-provider': 4.2.8 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@aws-sdk/credential-provider-http@3.846.0': - dependencies: - '@aws-sdk/core': 3.846.0 - '@aws-sdk/types': 3.840.0 - '@smithy/fetch-http-handler': 5.1.1 - '@smithy/node-http-handler': 4.1.1 - '@smithy/property-provider': 4.0.5 - '@smithy/protocol-http': 5.1.3 - '@smithy/smithy-client': 4.4.10 - '@smithy/types': 4.3.2 - '@smithy/util-stream': 4.2.4 + '@aws-sdk/credential-provider-http@3.916.0': + dependencies: + '@aws-sdk/core': 3.916.0 + '@aws-sdk/types': 3.914.0 + '@smithy/fetch-http-handler': 5.3.9 + '@smithy/node-http-handler': 4.4.10 + '@smithy/property-provider': 4.2.8 + '@smithy/protocol-http': 5.3.8 + '@smithy/smithy-client': 4.11.3 + '@smithy/types': 4.12.0 + '@smithy/util-stream': 4.5.12 tslib: 2.8.1 - '@aws-sdk/credential-provider-ini@3.848.0': - dependencies: - '@aws-sdk/core': 3.846.0 - '@aws-sdk/credential-provider-env': 3.846.0 - '@aws-sdk/credential-provider-http': 3.846.0 - '@aws-sdk/credential-provider-process': 3.846.0 - '@aws-sdk/credential-provider-sso': 3.848.0 - '@aws-sdk/credential-provider-web-identity': 3.848.0 - '@aws-sdk/nested-clients': 3.848.0 - '@aws-sdk/types': 3.840.0 - '@smithy/credential-provider-imds': 4.0.7 - '@smithy/property-provider': 4.0.5 - '@smithy/shared-ini-file-loader': 4.0.5 - '@smithy/types': 4.3.2 + '@aws-sdk/credential-provider-ini@3.917.0': + dependencies: + '@aws-sdk/core': 3.916.0 + '@aws-sdk/credential-provider-env': 3.916.0 + '@aws-sdk/credential-provider-http': 3.916.0 + '@aws-sdk/credential-provider-process': 3.916.0 + '@aws-sdk/credential-provider-sso': 3.916.0 + '@aws-sdk/credential-provider-web-identity': 3.917.0 + '@aws-sdk/nested-clients': 3.916.0 + '@aws-sdk/types': 3.914.0 + '@smithy/credential-provider-imds': 4.2.8 + '@smithy/property-provider': 4.2.8 + '@smithy/shared-ini-file-loader': 4.4.3 + '@smithy/types': 4.12.0 tslib: 2.8.1 transitivePeerDependencies: - aws-crt - '@aws-sdk/credential-provider-node@3.848.0': - dependencies: - '@aws-sdk/credential-provider-env': 3.846.0 - '@aws-sdk/credential-provider-http': 3.846.0 - '@aws-sdk/credential-provider-ini': 3.848.0 - '@aws-sdk/credential-provider-process': 3.846.0 - '@aws-sdk/credential-provider-sso': 3.848.0 - '@aws-sdk/credential-provider-web-identity': 3.848.0 - '@aws-sdk/types': 3.840.0 - '@smithy/credential-provider-imds': 4.0.7 - '@smithy/property-provider': 4.0.5 - '@smithy/shared-ini-file-loader': 4.0.5 - '@smithy/types': 4.3.2 + '@aws-sdk/credential-provider-node@3.917.0': + dependencies: + '@aws-sdk/credential-provider-env': 3.916.0 + '@aws-sdk/credential-provider-http': 3.916.0 + '@aws-sdk/credential-provider-ini': 3.917.0 + '@aws-sdk/credential-provider-process': 3.916.0 + '@aws-sdk/credential-provider-sso': 3.916.0 + '@aws-sdk/credential-provider-web-identity': 3.917.0 + '@aws-sdk/types': 3.914.0 + '@smithy/credential-provider-imds': 4.2.8 + '@smithy/property-provider': 4.2.8 + '@smithy/shared-ini-file-loader': 4.4.3 + '@smithy/types': 4.12.0 tslib: 2.8.1 transitivePeerDependencies: - aws-crt - '@aws-sdk/credential-provider-process@3.846.0': + '@aws-sdk/credential-provider-process@3.916.0': dependencies: - '@aws-sdk/core': 3.846.0 - '@aws-sdk/types': 3.840.0 - '@smithy/property-provider': 4.0.5 - '@smithy/shared-ini-file-loader': 4.0.5 - '@smithy/types': 4.3.2 + '@aws-sdk/core': 3.916.0 + '@aws-sdk/types': 3.914.0 + '@smithy/property-provider': 4.2.8 + '@smithy/shared-ini-file-loader': 4.4.3 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@aws-sdk/credential-provider-sso@3.848.0': + '@aws-sdk/credential-provider-sso@3.916.0': dependencies: - '@aws-sdk/client-sso': 3.848.0 - '@aws-sdk/core': 3.846.0 - '@aws-sdk/token-providers': 3.848.0 - '@aws-sdk/types': 3.840.0 - '@smithy/property-provider': 4.0.5 - '@smithy/shared-ini-file-loader': 4.0.5 - '@smithy/types': 4.3.2 + '@aws-sdk/client-sso': 3.916.0 + '@aws-sdk/core': 3.916.0 + '@aws-sdk/token-providers': 3.916.0 + '@aws-sdk/types': 3.914.0 + '@smithy/property-provider': 4.2.8 + '@smithy/shared-ini-file-loader': 4.4.3 + '@smithy/types': 4.12.0 tslib: 2.8.1 transitivePeerDependencies: - aws-crt - '@aws-sdk/credential-provider-web-identity@3.848.0': + '@aws-sdk/credential-provider-web-identity@3.917.0': dependencies: - '@aws-sdk/core': 3.846.0 - '@aws-sdk/nested-clients': 3.848.0 - '@aws-sdk/types': 3.840.0 - '@smithy/property-provider': 4.0.5 - '@smithy/types': 4.3.2 + '@aws-sdk/core': 3.916.0 + '@aws-sdk/nested-clients': 3.916.0 + '@aws-sdk/types': 3.914.0 + '@smithy/property-provider': 4.2.8 + '@smithy/shared-ini-file-loader': 4.4.3 + '@smithy/types': 4.12.0 tslib: 2.8.1 transitivePeerDependencies: - aws-crt - '@aws-sdk/lib-storage@3.850.0(@aws-sdk/client-s3@3.850.0)': + '@aws-sdk/lib-storage@3.917.0(@aws-sdk/client-s3@3.917.0)': dependencies: - '@aws-sdk/client-s3': 3.850.0 - '@smithy/abort-controller': 4.0.5 - '@smithy/middleware-endpoint': 4.1.18 - '@smithy/smithy-client': 4.4.10 + '@aws-sdk/client-s3': 3.917.0 + '@smithy/abort-controller': 4.2.8 + '@smithy/middleware-endpoint': 4.4.14 + '@smithy/smithy-client': 4.11.3 buffer: 5.6.0 events: 3.3.0 stream-browserify: 3.0.0 tslib: 2.8.1 - '@aws-sdk/middleware-bucket-endpoint@3.840.0': + '@aws-sdk/middleware-bucket-endpoint@3.914.0': dependencies: - '@aws-sdk/types': 3.840.0 - '@aws-sdk/util-arn-parser': 3.804.0 - '@smithy/node-config-provider': 4.1.4 - '@smithy/protocol-http': 5.1.3 - '@smithy/types': 4.3.2 - '@smithy/util-config-provider': 4.0.0 + '@aws-sdk/types': 3.914.0 + '@aws-sdk/util-arn-parser': 3.893.0 + '@smithy/node-config-provider': 4.3.8 + '@smithy/protocol-http': 5.3.8 + '@smithy/types': 4.12.0 + '@smithy/util-config-provider': 4.2.0 tslib: 2.8.1 - '@aws-sdk/middleware-expect-continue@3.840.0': + '@aws-sdk/middleware-expect-continue@3.917.0': dependencies: - '@aws-sdk/types': 3.840.0 - '@smithy/protocol-http': 5.1.3 - '@smithy/types': 4.3.2 + '@aws-sdk/types': 3.914.0 + '@smithy/protocol-http': 5.3.8 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@aws-sdk/middleware-flexible-checksums@3.846.0': + '@aws-sdk/middleware-flexible-checksums@3.916.0': dependencies: '@aws-crypto/crc32': 5.2.0 '@aws-crypto/crc32c': 5.2.0 '@aws-crypto/util': 5.2.0 - '@aws-sdk/core': 3.846.0 - '@aws-sdk/types': 3.840.0 - '@smithy/is-array-buffer': 4.0.0 - '@smithy/node-config-provider': 4.1.4 - '@smithy/protocol-http': 5.1.3 - '@smithy/types': 4.3.2 - '@smithy/util-middleware': 4.0.5 - '@smithy/util-stream': 4.2.4 - '@smithy/util-utf8': 4.0.0 + '@aws-sdk/core': 3.916.0 + '@aws-sdk/types': 3.914.0 + '@smithy/is-array-buffer': 4.2.0 + '@smithy/node-config-provider': 4.3.8 + '@smithy/protocol-http': 5.3.8 + '@smithy/types': 4.12.0 + '@smithy/util-middleware': 4.2.8 + '@smithy/util-stream': 4.5.12 + '@smithy/util-utf8': 4.2.0 tslib: 2.8.1 - '@aws-sdk/middleware-host-header@3.840.0': + '@aws-sdk/middleware-host-header@3.914.0': dependencies: - '@aws-sdk/types': 3.840.0 - '@smithy/protocol-http': 5.1.3 - '@smithy/types': 4.3.2 + '@aws-sdk/types': 3.914.0 + '@smithy/protocol-http': 5.3.8 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@aws-sdk/middleware-location-constraint@3.840.0': + '@aws-sdk/middleware-location-constraint@3.914.0': dependencies: - '@aws-sdk/types': 3.840.0 - '@smithy/types': 4.3.2 + '@aws-sdk/types': 3.914.0 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@aws-sdk/middleware-logger@3.840.0': + '@aws-sdk/middleware-logger@3.914.0': dependencies: - '@aws-sdk/types': 3.840.0 - '@smithy/types': 4.3.2 + '@aws-sdk/types': 3.914.0 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@aws-sdk/middleware-recursion-detection@3.840.0': + '@aws-sdk/middleware-recursion-detection@3.914.0': dependencies: - '@aws-sdk/types': 3.840.0 - '@smithy/protocol-http': 5.1.3 - '@smithy/types': 4.3.2 + '@aws-sdk/types': 3.914.0 + '@aws/lambda-invoke-store': 0.0.1 + '@smithy/protocol-http': 5.3.8 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@aws-sdk/middleware-sdk-s3@3.846.0': - dependencies: - '@aws-sdk/core': 3.846.0 - '@aws-sdk/types': 3.840.0 - '@aws-sdk/util-arn-parser': 3.804.0 - '@smithy/core': 3.8.0 - '@smithy/node-config-provider': 4.1.4 - '@smithy/protocol-http': 5.1.3 - '@smithy/signature-v4': 5.1.3 - '@smithy/smithy-client': 4.4.10 - '@smithy/types': 4.3.2 - '@smithy/util-config-provider': 4.0.0 - '@smithy/util-middleware': 4.0.5 - '@smithy/util-stream': 4.2.4 - '@smithy/util-utf8': 4.0.0 + '@aws-sdk/middleware-sdk-s3@3.916.0': + dependencies: + '@aws-sdk/core': 3.916.0 + '@aws-sdk/types': 3.914.0 + '@aws-sdk/util-arn-parser': 3.893.0 + '@smithy/core': 3.23.0 + '@smithy/node-config-provider': 4.3.8 + '@smithy/protocol-http': 5.3.8 + '@smithy/signature-v4': 5.3.8 + '@smithy/smithy-client': 4.11.3 + '@smithy/types': 4.12.0 + '@smithy/util-config-provider': 4.2.0 + '@smithy/util-middleware': 4.2.8 + '@smithy/util-stream': 4.5.12 + '@smithy/util-utf8': 4.2.0 tslib: 2.8.1 - '@aws-sdk/middleware-ssec@3.840.0': + '@aws-sdk/middleware-ssec@3.914.0': dependencies: - '@aws-sdk/types': 3.840.0 - '@smithy/types': 4.3.2 + '@aws-sdk/types': 3.914.0 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@aws-sdk/middleware-user-agent@3.848.0': + '@aws-sdk/middleware-user-agent@3.916.0': dependencies: - '@aws-sdk/core': 3.846.0 - '@aws-sdk/types': 3.840.0 - '@aws-sdk/util-endpoints': 3.848.0 - '@smithy/core': 3.8.0 - '@smithy/protocol-http': 5.1.3 - '@smithy/types': 4.3.2 + '@aws-sdk/core': 3.916.0 + '@aws-sdk/types': 3.914.0 + '@aws-sdk/util-endpoints': 3.916.0 + '@smithy/core': 3.23.0 + '@smithy/protocol-http': 5.3.8 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@aws-sdk/nested-clients@3.848.0': + '@aws-sdk/nested-clients@3.916.0': dependencies: '@aws-crypto/sha256-browser': 5.2.0 '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/core': 3.846.0 - '@aws-sdk/middleware-host-header': 3.840.0 - '@aws-sdk/middleware-logger': 3.840.0 - '@aws-sdk/middleware-recursion-detection': 3.840.0 - '@aws-sdk/middleware-user-agent': 3.848.0 - '@aws-sdk/region-config-resolver': 3.840.0 - '@aws-sdk/types': 3.840.0 - '@aws-sdk/util-endpoints': 3.848.0 - '@aws-sdk/util-user-agent-browser': 3.840.0 - '@aws-sdk/util-user-agent-node': 3.848.0 - '@smithy/config-resolver': 4.1.5 - '@smithy/core': 3.8.0 - '@smithy/fetch-http-handler': 5.1.1 - '@smithy/hash-node': 4.0.5 - '@smithy/invalid-dependency': 4.0.5 - '@smithy/middleware-content-length': 4.0.5 - '@smithy/middleware-endpoint': 4.1.18 - '@smithy/middleware-retry': 4.1.19 - '@smithy/middleware-serde': 4.0.9 - '@smithy/middleware-stack': 4.0.5 - '@smithy/node-config-provider': 4.1.4 - '@smithy/node-http-handler': 4.1.1 - '@smithy/protocol-http': 5.1.3 - '@smithy/smithy-client': 4.4.10 - '@smithy/types': 4.3.2 - '@smithy/url-parser': 4.0.5 - '@smithy/util-base64': 4.0.0 - '@smithy/util-body-length-browser': 4.0.0 - '@smithy/util-body-length-node': 4.0.0 - '@smithy/util-defaults-mode-browser': 4.0.26 - '@smithy/util-defaults-mode-node': 4.0.26 - '@smithy/util-endpoints': 3.0.7 - '@smithy/util-middleware': 4.0.5 - '@smithy/util-retry': 4.0.7 - '@smithy/util-utf8': 4.0.0 + '@aws-sdk/core': 3.916.0 + '@aws-sdk/middleware-host-header': 3.914.0 + '@aws-sdk/middleware-logger': 3.914.0 + '@aws-sdk/middleware-recursion-detection': 3.914.0 + '@aws-sdk/middleware-user-agent': 3.916.0 + '@aws-sdk/region-config-resolver': 3.914.0 + '@aws-sdk/types': 3.914.0 + '@aws-sdk/util-endpoints': 3.916.0 + '@aws-sdk/util-user-agent-browser': 3.914.0 + '@aws-sdk/util-user-agent-node': 3.916.0 + '@smithy/config-resolver': 4.4.6 + '@smithy/core': 3.23.0 + '@smithy/fetch-http-handler': 5.3.9 + '@smithy/hash-node': 4.2.8 + '@smithy/invalid-dependency': 4.2.8 + '@smithy/middleware-content-length': 4.2.8 + '@smithy/middleware-endpoint': 4.4.14 + '@smithy/middleware-retry': 4.4.31 + '@smithy/middleware-serde': 4.2.9 + '@smithy/middleware-stack': 4.2.8 + '@smithy/node-config-provider': 4.3.8 + '@smithy/node-http-handler': 4.4.10 + '@smithy/protocol-http': 5.3.8 + '@smithy/smithy-client': 4.11.3 + '@smithy/types': 4.12.0 + '@smithy/url-parser': 4.2.8 + '@smithy/util-base64': 4.3.0 + '@smithy/util-body-length-browser': 4.2.0 + '@smithy/util-body-length-node': 4.2.1 + '@smithy/util-defaults-mode-browser': 4.3.30 + '@smithy/util-defaults-mode-node': 4.2.33 + '@smithy/util-endpoints': 3.2.8 + '@smithy/util-middleware': 4.2.8 + '@smithy/util-retry': 4.2.8 + '@smithy/util-utf8': 4.2.0 tslib: 2.8.1 transitivePeerDependencies: - aws-crt - '@aws-sdk/region-config-resolver@3.840.0': + '@aws-sdk/region-config-resolver@3.914.0': dependencies: - '@aws-sdk/types': 3.840.0 - '@smithy/node-config-provider': 4.1.4 - '@smithy/types': 4.3.2 - '@smithy/util-config-provider': 4.0.0 - '@smithy/util-middleware': 4.0.5 + '@aws-sdk/types': 3.914.0 + '@smithy/config-resolver': 4.4.6 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@aws-sdk/s3-request-presigner@3.850.0': + '@aws-sdk/s3-request-presigner@3.917.0': dependencies: - '@aws-sdk/signature-v4-multi-region': 3.846.0 - '@aws-sdk/types': 3.840.0 - '@aws-sdk/util-format-url': 3.840.0 - '@smithy/middleware-endpoint': 4.1.18 - '@smithy/protocol-http': 5.1.3 - '@smithy/smithy-client': 4.4.10 - '@smithy/types': 4.3.2 + '@aws-sdk/signature-v4-multi-region': 3.916.0 + '@aws-sdk/types': 3.914.0 + '@aws-sdk/util-format-url': 3.914.0 + '@smithy/middleware-endpoint': 4.4.14 + '@smithy/protocol-http': 5.3.8 + '@smithy/smithy-client': 4.11.3 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@aws-sdk/signature-v4-multi-region@3.846.0': + '@aws-sdk/signature-v4-multi-region@3.916.0': dependencies: - '@aws-sdk/middleware-sdk-s3': 3.846.0 - '@aws-sdk/types': 3.840.0 - '@smithy/protocol-http': 5.1.3 - '@smithy/signature-v4': 5.1.3 - '@smithy/types': 4.3.2 + '@aws-sdk/middleware-sdk-s3': 3.916.0 + '@aws-sdk/types': 3.914.0 + '@smithy/protocol-http': 5.3.8 + '@smithy/signature-v4': 5.3.8 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@aws-sdk/token-providers@3.848.0': + '@aws-sdk/token-providers@3.916.0': dependencies: - '@aws-sdk/core': 3.846.0 - '@aws-sdk/nested-clients': 3.848.0 - '@aws-sdk/types': 3.840.0 - '@smithy/property-provider': 4.0.5 - '@smithy/shared-ini-file-loader': 4.0.5 - '@smithy/types': 4.3.2 + '@aws-sdk/core': 3.916.0 + '@aws-sdk/nested-clients': 3.916.0 + '@aws-sdk/types': 3.914.0 + '@smithy/property-provider': 4.2.8 + '@smithy/shared-ini-file-loader': 4.4.3 + '@smithy/types': 4.12.0 tslib: 2.8.1 transitivePeerDependencies: - aws-crt - '@aws-sdk/types@3.840.0': + '@aws-sdk/types@3.914.0': dependencies: - '@smithy/types': 4.3.2 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@aws-sdk/util-arn-parser@3.804.0': + '@aws-sdk/util-arn-parser@3.893.0': dependencies: tslib: 2.8.1 - '@aws-sdk/util-endpoints@3.848.0': + '@aws-sdk/util-endpoints@3.916.0': dependencies: - '@aws-sdk/types': 3.840.0 - '@smithy/types': 4.3.2 - '@smithy/url-parser': 4.0.5 - '@smithy/util-endpoints': 3.0.7 + '@aws-sdk/types': 3.914.0 + '@smithy/types': 4.12.0 + '@smithy/url-parser': 4.2.8 + '@smithy/util-endpoints': 3.2.8 tslib: 2.8.1 - '@aws-sdk/util-format-url@3.840.0': + '@aws-sdk/util-format-url@3.914.0': dependencies: - '@aws-sdk/types': 3.840.0 - '@smithy/querystring-builder': 4.0.5 - '@smithy/types': 4.3.2 + '@aws-sdk/types': 3.914.0 + '@smithy/querystring-builder': 4.2.8 + '@smithy/types': 4.12.0 tslib: 2.8.1 '@aws-sdk/util-locate-window@3.804.0': dependencies: tslib: 2.8.1 - '@aws-sdk/util-user-agent-browser@3.840.0': + '@aws-sdk/util-user-agent-browser@3.914.0': dependencies: - '@aws-sdk/types': 3.840.0 - '@smithy/types': 4.3.2 + '@aws-sdk/types': 3.914.0 + '@smithy/types': 4.12.0 bowser: 2.12.0 tslib: 2.8.1 - '@aws-sdk/util-user-agent-node@3.848.0': + '@aws-sdk/util-user-agent-node@3.916.0': dependencies: - '@aws-sdk/middleware-user-agent': 3.848.0 - '@aws-sdk/types': 3.840.0 - '@smithy/node-config-provider': 4.1.4 - '@smithy/types': 4.3.2 + '@aws-sdk/middleware-user-agent': 3.916.0 + '@aws-sdk/types': 3.914.0 + '@smithy/node-config-provider': 4.3.8 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@aws-sdk/xml-builder@3.821.0': + '@aws-sdk/xml-builder@3.914.0': dependencies: - '@smithy/types': 4.3.2 + '@smithy/types': 4.12.0 + fast-xml-parser: 5.2.5 tslib: 2.8.1 + '@aws/lambda-invoke-store@0.0.1': {} + '@babel/code-frame@7.24.7': dependencies: '@babel/highlight': 7.24.7 @@ -6843,10 +7448,18 @@ snapshots: js-tokens: 4.0.0 picocolors: 1.1.1 + '@babel/code-frame@7.29.0': + dependencies: + '@babel/helper-validator-identifier': 7.28.5 + js-tokens: 4.0.0 + picocolors: 1.1.1 + '@babel/compat-data@7.25.2': {} '@babel/compat-data@7.26.8': {} + '@babel/compat-data@7.29.0': {} + '@babel/core@7.25.2': dependencies: '@ampproject/remapping': 2.3.0 @@ -6871,14 +7484,34 @@ snapshots: dependencies: '@ampproject/remapping': 2.3.0 '@babel/code-frame': 7.26.2 - '@babel/generator': 7.26.9 + '@babel/generator': 7.27.0 '@babel/helper-compilation-targets': 7.26.5 '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9) '@babel/helpers': 7.26.9 - '@babel/parser': 7.26.9 - '@babel/template': 7.26.9 - '@babel/traverse': 7.26.9 - '@babel/types': 7.26.9 + '@babel/parser': 7.27.0 + '@babel/template': 7.27.0 + '@babel/traverse': 7.27.0 + '@babel/types': 7.27.0 + convert-source-map: 2.0.0 + debug: 4.4.3 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/core@7.29.0': + dependencies: + '@babel/code-frame': 7.29.0 + '@babel/generator': 7.29.1 + '@babel/helper-compilation-targets': 7.28.6 + '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0) + '@babel/helpers': 7.28.6 + '@babel/parser': 7.29.0 + '@babel/template': 7.28.6 + '@babel/traverse': 7.29.0 + '@babel/types': 7.29.0 + '@jridgewell/remapping': 2.3.5 convert-source-map: 2.0.0 debug: 4.4.0 gensync: 1.0.0-beta.2 @@ -6910,9 +7543,17 @@ snapshots: '@jridgewell/trace-mapping': 0.3.25 jsesc: 3.0.2 - '@babel/helper-annotate-as-pure@7.25.9': + '@babel/generator@7.29.1': dependencies: - '@babel/types': 7.26.9 + '@babel/parser': 7.29.0 + '@babel/types': 7.29.0 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 + jsesc: 3.0.2 + + '@babel/helper-annotate-as-pure@7.27.3': + dependencies: + '@babel/types': 7.29.0 '@babel/helper-compilation-targets@7.25.2': dependencies: @@ -6930,23 +7571,33 @@ snapshots: lru-cache: 5.1.1 semver: 6.3.1 - '@babel/helper-create-class-features-plugin@7.27.0(@babel/core@7.26.9)': + '@babel/helper-compilation-targets@7.28.6': dependencies: - '@babel/core': 7.26.9 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-member-expression-to-functions': 7.25.9 - '@babel/helper-optimise-call-expression': 7.25.9 - '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.9) - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - '@babel/traverse': 7.27.0 + '@babel/compat-data': 7.29.0 + '@babel/helper-validator-option': 7.27.1 + browserslist: 4.24.2 + lru-cache: 5.1.1 + semver: 6.3.1 + + '@babel/helper-create-class-features-plugin@7.28.6(@babel/core@7.29.0)': + dependencies: + '@babel/core': 7.29.0 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-member-expression-to-functions': 7.28.5 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/helper-replace-supers': 7.28.6(@babel/core@7.29.0) + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/traverse': 7.29.0 semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/helper-member-expression-to-functions@7.25.9': + '@babel/helper-globals@7.28.0': {} + + '@babel/helper-member-expression-to-functions@7.28.5': dependencies: - '@babel/traverse': 7.27.0 - '@babel/types': 7.26.9 + '@babel/traverse': 7.29.0 + '@babel/types': 7.29.0 transitivePeerDependencies: - supports-color @@ -6957,6 +7608,13 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/helper-module-imports@7.28.6': + dependencies: + '@babel/traverse': 7.29.0 + '@babel/types': 7.29.0 + transitivePeerDependencies: + - supports-color + '@babel/helper-module-transforms@7.25.2(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 @@ -6972,24 +7630,33 @@ snapshots: '@babel/core': 7.26.9 '@babel/helper-module-imports': 7.25.9 '@babel/helper-validator-identifier': 7.25.9 - '@babel/traverse': 7.26.9 + '@babel/traverse': 7.27.0 transitivePeerDependencies: - supports-color - '@babel/helper-optimise-call-expression@7.25.9': + '@babel/helper-module-transforms@7.28.6(@babel/core@7.29.0)': dependencies: - '@babel/types': 7.26.9 + '@babel/core': 7.29.0 + '@babel/helper-module-imports': 7.28.6 + '@babel/helper-validator-identifier': 7.28.5 + '@babel/traverse': 7.29.0 + transitivePeerDependencies: + - supports-color - '@babel/helper-plugin-utils@7.25.9': {} + '@babel/helper-optimise-call-expression@7.27.1': + dependencies: + '@babel/types': 7.29.0 '@babel/helper-plugin-utils@7.26.5': {} - '@babel/helper-replace-supers@7.26.5(@babel/core@7.26.9)': + '@babel/helper-plugin-utils@7.28.6': {} + + '@babel/helper-replace-supers@7.28.6(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.9 - '@babel/helper-member-expression-to-functions': 7.25.9 - '@babel/helper-optimise-call-expression': 7.25.9 - '@babel/traverse': 7.27.0 + '@babel/core': 7.29.0 + '@babel/helper-member-expression-to-functions': 7.28.5 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/traverse': 7.29.0 transitivePeerDependencies: - supports-color @@ -7000,10 +7667,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-skip-transparent-expression-wrappers@7.25.9': + '@babel/helper-skip-transparent-expression-wrappers@7.27.1': dependencies: - '@babel/traverse': 7.26.9 - '@babel/types': 7.26.9 + '@babel/traverse': 7.29.0 + '@babel/types': 7.29.0 transitivePeerDependencies: - supports-color @@ -7011,12 +7678,18 @@ snapshots: '@babel/helper-string-parser@7.25.9': {} + '@babel/helper-string-parser@7.27.1': {} + '@babel/helper-validator-identifier@7.25.9': {} + '@babel/helper-validator-identifier@7.28.5': {} + '@babel/helper-validator-option@7.24.8': {} '@babel/helper-validator-option@7.25.9': {} + '@babel/helper-validator-option@7.27.1': {} + '@babel/helpers@7.25.0': dependencies: '@babel/template': 7.26.9 @@ -7024,10 +7697,15 @@ snapshots: '@babel/helpers@7.26.9': dependencies: - '@babel/template': 7.26.9 - '@babel/types': 7.26.9 + '@babel/template': 7.27.0 + '@babel/types': 7.27.0 - '@babel/highlight@7.24.7': + '@babel/helpers@7.28.6': + dependencies: + '@babel/template': 7.28.6 + '@babel/types': 7.29.0 + + '@babel/highlight@7.24.7': dependencies: '@babel/helper-validator-identifier': 7.25.9 chalk: 2.4.2 @@ -7046,34 +7724,38 @@ snapshots: dependencies: '@babel/types': 7.27.0 - '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.9)': + '@babel/parser@7.29.0': dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/types': 7.29.0 - '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.9)': + '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.9 + '@babel/core': 7.29.0 '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.9)': + '@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.9)': + '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.9 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-typescript@7.27.0(@babel/core@7.26.9)': + '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.29.0)': dependencies: - '@babel/core': 7.26.9 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.9) - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.9) + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.28.6 + + '@babel/plugin-transform-typescript@7.28.6(@babel/core@7.29.0)': + dependencies: + '@babel/core': 7.29.0 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.28.6(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.28.6 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.29.0) transitivePeerDependencies: - supports-color @@ -7101,6 +7783,12 @@ snapshots: '@babel/parser': 7.27.0 '@babel/types': 7.27.0 + '@babel/template@7.28.6': + dependencies: + '@babel/code-frame': 7.29.0 + '@babel/parser': 7.29.0 + '@babel/types': 7.29.0 + '@babel/traverse@7.25.3': dependencies: '@babel/code-frame': 7.24.7 @@ -7137,6 +7825,18 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/traverse@7.29.0': + dependencies: + '@babel/code-frame': 7.29.0 + '@babel/generator': 7.29.1 + '@babel/helper-globals': 7.28.0 + '@babel/parser': 7.29.0 + '@babel/template': 7.28.6 + '@babel/types': 7.29.0 + debug: 4.4.0 + transitivePeerDependencies: + - supports-color + '@babel/types@7.25.2': dependencies: '@babel/helper-string-parser': 7.24.8 @@ -7153,6 +7853,11 @@ snapshots: '@babel/helper-string-parser': 7.25.9 '@babel/helper-validator-identifier': 7.25.9 + '@babel/types@7.29.0': + dependencies: + '@babel/helper-string-parser': 7.27.1 + '@babel/helper-validator-identifier': 7.28.5 + '@bcoe/v8-coverage@1.0.2': {} '@commitlint/cli@19.4.0(@types/node@22.4.0)(typescript@5.5.4)': @@ -7266,103 +7971,152 @@ snapshots: '@types/conventional-commits-parser': 5.0.0 chalk: 5.3.0 - '@esbuild/aix-ppc64@0.24.2': + '@emnapi/core@1.8.1': + dependencies: + '@emnapi/wasi-threads': 1.1.0 + tslib: 2.8.1 + optional: true + + '@emnapi/runtime@1.8.1': + dependencies: + tslib: 2.8.1 + optional: true + + '@emnapi/wasi-threads@1.1.0': + dependencies: + tslib: 2.8.1 + optional: true + + '@esbuild/aix-ppc64@0.25.12': + optional: true + + '@esbuild/android-arm64@0.25.12': optional: true - '@esbuild/android-arm64@0.24.2': + '@esbuild/android-arm@0.25.12': optional: true - '@esbuild/android-arm@0.24.2': + '@esbuild/android-x64@0.25.12': optional: true - '@esbuild/android-x64@0.24.2': + '@esbuild/darwin-arm64@0.25.12': optional: true - '@esbuild/darwin-arm64@0.24.2': + '@esbuild/darwin-x64@0.25.12': optional: true - '@esbuild/darwin-x64@0.24.2': + '@esbuild/freebsd-arm64@0.25.12': optional: true - '@esbuild/freebsd-arm64@0.24.2': + '@esbuild/freebsd-x64@0.25.12': optional: true - '@esbuild/freebsd-x64@0.24.2': + '@esbuild/linux-arm64@0.25.12': optional: true - '@esbuild/linux-arm64@0.24.2': + '@esbuild/linux-arm@0.25.12': optional: true - '@esbuild/linux-arm@0.24.2': + '@esbuild/linux-ia32@0.25.12': optional: true - '@esbuild/linux-ia32@0.24.2': + '@esbuild/linux-loong64@0.25.12': optional: true - '@esbuild/linux-loong64@0.24.2': + '@esbuild/linux-mips64el@0.25.12': optional: true - '@esbuild/linux-mips64el@0.24.2': + '@esbuild/linux-ppc64@0.25.12': optional: true - '@esbuild/linux-ppc64@0.24.2': + '@esbuild/linux-riscv64@0.25.12': optional: true - '@esbuild/linux-riscv64@0.24.2': + '@esbuild/linux-s390x@0.25.12': optional: true - '@esbuild/linux-s390x@0.24.2': + '@esbuild/linux-x64@0.25.12': optional: true - '@esbuild/linux-x64@0.24.2': + '@esbuild/netbsd-arm64@0.25.12': optional: true - '@esbuild/netbsd-arm64@0.24.2': + '@esbuild/netbsd-x64@0.25.12': optional: true - '@esbuild/netbsd-x64@0.24.2': + '@esbuild/openbsd-arm64@0.25.12': optional: true - '@esbuild/openbsd-arm64@0.24.2': + '@esbuild/openbsd-x64@0.25.12': optional: true - '@esbuild/openbsd-x64@0.24.2': + '@esbuild/openharmony-arm64@0.25.12': optional: true - '@esbuild/sunos-x64@0.24.2': + '@esbuild/sunos-x64@0.25.12': optional: true - '@esbuild/win32-arm64@0.24.2': + '@esbuild/win32-arm64@0.25.12': optional: true - '@esbuild/win32-ia32@0.24.2': + '@esbuild/win32-ia32@0.25.12': optional: true - '@esbuild/win32-x64@0.24.2': + '@esbuild/win32-x64@0.25.12': optional: true - '@eslint-community/eslint-utils@4.4.0(eslint@8.57.1)': + '@eslint-community/eslint-utils@4.4.0(eslint@9.39.2(jiti@1.21.6))': + dependencies: + eslint: 9.39.2(jiti@1.21.6) + eslint-visitor-keys: 3.4.3 + + '@eslint-community/eslint-utils@4.9.1(eslint@9.39.2(jiti@1.21.6))': dependencies: - eslint: 8.57.1 + eslint: 9.39.2(jiti@1.21.6) eslint-visitor-keys: 3.4.3 '@eslint-community/regexpp@4.11.0': {} - '@eslint/eslintrc@2.1.4': + '@eslint-community/regexpp@4.12.2': {} + + '@eslint/config-array@0.21.1': + dependencies: + '@eslint/object-schema': 2.1.7 + debug: 4.4.3 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + + '@eslint/config-helpers@0.4.2': + dependencies: + '@eslint/core': 0.17.0 + + '@eslint/core@0.17.0': + dependencies: + '@types/json-schema': 7.0.15 + + '@eslint/eslintrc@3.3.3': dependencies: ajv: 6.12.6 - debug: 4.4.0 - espree: 9.6.1 - globals: 13.24.0 - ignore: 5.3.1 + debug: 4.4.3 + espree: 10.4.0 + globals: 14.0.0 + ignore: 5.3.2 import-fresh: 3.3.0 - js-yaml: 4.1.0 + js-yaml: 4.1.1 minimatch: 3.1.2 strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color - '@eslint/js@8.57.1': {} + '@eslint/js@9.39.2': {} + + '@eslint/object-schema@2.1.7': {} + + '@eslint/plugin-kit@0.4.1': + dependencies: + '@eslint/core': 0.17.0 + levn: 0.4.1 '@fastify/accept-negotiator@2.0.1': {} @@ -7374,7 +8128,12 @@ snapshots: '@fastify/busboy@3.1.1': {} - '@fastify/deepmerge@2.0.2': {} + '@fastify/cors@11.2.0': + dependencies: + fastify-plugin: 5.0.1 + toad-cache: 3.7.0 + + '@fastify/deepmerge@3.2.0': {} '@fastify/error@4.1.0': {} @@ -7382,6 +8141,11 @@ snapshots: dependencies: fast-json-stringify: 6.0.1 + '@fastify/formbody@8.0.2': + dependencies: + fast-querystring: 1.1.2 + fastify-plugin: 5.0.1 + '@fastify/forwarded@3.0.0': {} '@fastify/merge-json-schemas@0.1.1': @@ -7392,13 +8156,13 @@ snapshots: dependencies: dequal: 2.0.3 - '@fastify/multipart@9.0.3': + '@fastify/multipart@9.3.0': dependencies: '@fastify/busboy': 3.1.1 - '@fastify/deepmerge': 2.0.2 + '@fastify/deepmerge': 3.2.0 '@fastify/error': 4.1.0 fastify-plugin: 5.0.1 - secure-json-parse: 3.0.2 + secure-json-parse: 4.1.0 '@fastify/proxy-addr@5.0.0': dependencies: @@ -7413,6 +8177,16 @@ snapshots: http-errors: 2.0.0 mime: 3.0.0 + '@fastify/sensible@6.0.4': + dependencies: + '@lukeed/ms': 2.0.2 + dequal: 2.0.3 + fastify-plugin: 5.0.1 + forwarded: 0.2.0 + http-errors: 2.0.0 + type-is: 2.0.1 + vary: 1.1.2 + '@fastify/static@8.1.1': dependencies: '@fastify/accept-negotiator': 2.0.1 @@ -7431,38 +8205,38 @@ snapshots: - bufferutil - utf-8-validate - '@graphql-tools/merge@9.0.19(graphql@16.10.0)': + '@graphql-tools/merge@9.1.1(graphql@16.11.0)': dependencies: - '@graphql-tools/utils': 10.8.1(graphql@16.10.0) - graphql: 16.10.0 + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + graphql: 16.11.0 tslib: 2.8.1 - '@graphql-tools/merge@9.1.1(graphql@16.10.0)': + '@graphql-tools/merge@9.1.7(graphql@16.11.0)': dependencies: - '@graphql-tools/utils': 10.9.1(graphql@16.10.0) - graphql: 16.10.0 + '@graphql-tools/utils': 11.0.0(graphql@16.11.0) + graphql: 16.11.0 tslib: 2.8.1 - '@graphql-tools/utils@10.8.1(graphql@16.10.0)': + '@graphql-tools/utils@10.9.1(graphql@16.11.0)': dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.10.0) + '@graphql-typed-document-node/core': 3.2.0(graphql@16.11.0) + '@whatwg-node/promise-helpers': 1.3.2 cross-inspect: 1.0.1 dset: 3.1.4 - graphql: 16.10.0 + graphql: 16.11.0 tslib: 2.8.1 - '@graphql-tools/utils@10.9.1(graphql@16.10.0)': + '@graphql-tools/utils@11.0.0(graphql@16.11.0)': dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.10.0) + '@graphql-typed-document-node/core': 3.2.0(graphql@16.11.0) '@whatwg-node/promise-helpers': 1.3.2 cross-inspect: 1.0.1 - dset: 3.1.4 - graphql: 16.10.0 + graphql: 16.11.0 tslib: 2.8.1 - '@graphql-typed-document-node/core@3.2.0(graphql@16.10.0)': + '@graphql-typed-document-node/core@3.2.0(graphql@16.11.0)': dependencies: - graphql: 16.10.0 + graphql: 16.11.0 '@hookform/error-message@2.0.1(react-dom@18.3.1(react@18.3.1))(react-hook-form@7.54.2(react@18.3.1))(react@18.3.1)': dependencies: @@ -7474,26 +8248,25 @@ snapshots: dependencies: react-hook-form: 7.54.2(react@18.3.1) - '@humanwhocodes/config-array@0.13.0': + '@humanfs/core@0.19.1': {} + + '@humanfs/node@0.16.7': dependencies: - '@humanwhocodes/object-schema': 2.0.3 - debug: 4.4.0 - minimatch: 3.1.2 - transitivePeerDependencies: - - supports-color + '@humanfs/core': 0.19.1 + '@humanwhocodes/retry': 0.4.3 '@humanwhocodes/module-importer@1.0.1': {} - '@humanwhocodes/object-schema@2.0.3': {} + '@humanwhocodes/retry@0.4.3': {} '@hutson/parse-repository-url@3.0.2': {} '@iconify/types@2.0.0': {} - '@iconify/vue@4.3.0(vue@3.5.13(typescript@5.5.4))': + '@iconify/vue@4.3.0(vue@3.5.13(typescript@4.9.5))': dependencies: '@iconify/types': 2.0.0 - vue: 3.5.13(typescript@5.5.4) + vue: 3.5.13(typescript@4.9.5) '@intlify/core-base@9.1.10': dependencies: @@ -7541,12 +8314,22 @@ snapshots: '@istanbuljs/schema@0.1.3': {} + '@jridgewell/gen-mapping@0.3.13': + dependencies: + '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/trace-mapping': 0.3.31 + '@jridgewell/gen-mapping@0.3.5': dependencies: '@jridgewell/set-array': 1.2.1 '@jridgewell/sourcemap-codec': 1.5.0 '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/remapping@2.3.5': + dependencies: + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/resolve-uri@3.1.2': {} '@jridgewell/set-array@1.2.1': {} @@ -7558,8 +8341,20 @@ snapshots: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/trace-mapping@0.3.31': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.0 + '@lukeed/ms@2.0.2': {} + '@napi-rs/wasm-runtime@0.2.12': + dependencies: + '@emnapi/core': 1.8.1 + '@emnapi/runtime': 1.8.1 + '@tybys/wasm-util': 0.10.1 + optional: true + '@nodelib/fs.scandir@2.1.5': dependencies: '@nodelib/fs.stat': 2.0.5 @@ -7572,8 +8367,6 @@ snapshots: '@nodelib/fs.scandir': 2.1.5 fastq: 1.17.1 - '@nolyfill/is-core-module@1.0.39': {} - '@octokit/auth-token@2.5.0': dependencies: '@octokit/types': 6.41.0 @@ -7647,11 +8440,11 @@ snapshots: '@octokit/types@4.1.10': dependencies: - '@types/node': 22.13.5 + '@types/node': 24.10.0 '@octokit/types@5.5.0': dependencies: - '@types/node': 22.13.5 + '@types/node': 24.10.0 '@octokit/types@6.41.0': dependencies: @@ -7659,158 +8452,172 @@ snapshots: '@one-ini/wasm@0.1.1': {} + '@opentelemetry/api@1.9.0': {} + '@pkgjs/parseargs@0.11.0': optional: true - '@pkgr/core@0.1.1': {} + '@pkgr/core@0.2.9': {} '@popperjs/core@2.11.8': {} - '@prefabs.tech/eslint-config@0.2.0(@typescript-eslint/eslint-plugin@8.14.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.4.5))(eslint@8.57.1)(typescript@5.4.5))(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.4.5))(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint-import-resolver-alias@1.1.2(eslint-plugin-import@2.31.0))(eslint-import-resolver-typescript@3.6.3)(eslint-plugin-import@2.31.0)(eslint-plugin-n@14.0.0(eslint@8.57.1))(eslint-plugin-prettier@5.2.1(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3))(eslint-plugin-promise@7.1.0(eslint@8.57.1))(eslint-plugin-unicorn@56.0.1(eslint@8.57.1))(eslint-plugin-vue@9.32.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)(typescript@5.4.5)(vue-eslint-parser@9.4.3(eslint@8.57.1))': - dependencies: - '@typescript-eslint/eslint-plugin': 8.14.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.4.5))(eslint@8.57.1)(typescript@5.4.5) - '@typescript-eslint/parser': 8.14.0(eslint@8.57.1)(typescript@5.4.5) - eslint: 8.57.1 - eslint-config-prettier: 9.1.0(eslint@8.57.1) - eslint-import-resolver-alias: 1.1.2(eslint-plugin-import@2.31.0) - eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.4.5))(eslint-plugin-import@2.31.0)(eslint@8.57.1) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) - eslint-plugin-prettier: 5.2.1(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3) - eslint-plugin-unicorn: 56.0.1(eslint@8.57.1) - prettier: 3.3.3 - typescript: 5.4.5 - optionalDependencies: - eslint-plugin-n: 14.0.0(eslint@8.57.1) - eslint-plugin-promise: 7.1.0(eslint@8.57.1) - eslint-plugin-vue: 9.32.0(eslint@8.57.1) - vue-eslint-parser: 9.4.3(eslint@8.57.1) - - '@prefabs.tech/eslint-config@0.2.0(@typescript-eslint/eslint-plugin@8.14.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4))(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.5.4))(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint-import-resolver-alias@1.1.2(eslint-plugin-import@2.31.0))(eslint-import-resolver-typescript@3.6.3)(eslint-plugin-import@2.31.0)(eslint-plugin-n@14.0.0(eslint@8.57.1))(eslint-plugin-prettier@5.2.1(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3))(eslint-plugin-promise@7.1.0(eslint@8.57.1))(eslint-plugin-unicorn@56.0.1(eslint@8.57.1))(eslint-plugin-vue@9.32.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)(typescript@5.5.4)(vue-eslint-parser@9.4.3(eslint@8.57.1))': - dependencies: - '@typescript-eslint/eslint-plugin': 8.14.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4) - '@typescript-eslint/parser': 8.14.0(eslint@8.57.1)(typescript@5.5.4) - eslint: 8.57.1 - eslint-config-prettier: 9.1.0(eslint@8.57.1) - eslint-import-resolver-alias: 1.1.2(eslint-plugin-import@2.31.0) - eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.5.4))(eslint-plugin-import@2.31.0)(eslint@8.57.1) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) - eslint-plugin-prettier: 5.2.1(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3) - eslint-plugin-unicorn: 56.0.1(eslint@8.57.1) - prettier: 3.3.3 - typescript: 5.5.4 - optionalDependencies: - eslint-plugin-n: 14.0.0(eslint@8.57.1) - eslint-plugin-promise: 7.1.0(eslint@8.57.1) - eslint-plugin-vue: 9.32.0(eslint@8.57.1) - vue-eslint-parser: 9.4.3(eslint@8.57.1) - - '@prefabs.tech/eslint-config@0.2.0(@typescript-eslint/eslint-plugin@8.24.1(@typescript-eslint/parser@8.24.1(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4))(@typescript-eslint/parser@8.24.1(eslint@8.57.1)(typescript@5.5.4))(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint-import-resolver-alias@1.1.2(eslint-plugin-import@2.31.0))(eslint-import-resolver-typescript@3.8.3)(eslint-plugin-import@2.31.0)(eslint-plugin-n@14.0.0(eslint@8.57.1))(eslint-plugin-prettier@5.2.3(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.5.2))(eslint-plugin-promise@7.1.0(eslint@8.57.1))(eslint-plugin-unicorn@56.0.1(eslint@8.57.1))(eslint-plugin-vue@9.32.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.5.2)(typescript@5.5.4)(vue-eslint-parser@9.4.3(eslint@8.57.1))': - dependencies: - '@typescript-eslint/eslint-plugin': 8.24.1(@typescript-eslint/parser@8.24.1(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4) - '@typescript-eslint/parser': 8.24.1(eslint@8.57.1)(typescript@5.5.4) - eslint: 8.57.1 - eslint-config-prettier: 9.1.0(eslint@8.57.1) - eslint-import-resolver-alias: 1.1.2(eslint-plugin-import@2.31.0) - eslint-import-resolver-typescript: 3.8.3(eslint-plugin-import@2.31.0)(eslint@8.57.1) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.24.1(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-typescript@3.8.3)(eslint@8.57.1) - eslint-plugin-prettier: 5.2.3(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.5.2) - eslint-plugin-unicorn: 56.0.1(eslint@8.57.1) - prettier: 3.5.2 - typescript: 5.5.4 - optionalDependencies: - eslint-plugin-n: 14.0.0(eslint@8.57.1) - eslint-plugin-promise: 7.1.0(eslint@8.57.1) - eslint-plugin-vue: 9.32.0(eslint@8.57.1) - vue-eslint-parser: 9.4.3(eslint@8.57.1) + '@prefabs.tech/eslint-config@0.5.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5))(eslint@9.39.2(jiti@1.21.6))(prettier@3.8.1)(typescript@4.9.5)': + dependencies: + '@eslint/js': 9.39.2 + eslint: 9.39.2(jiti@1.21.6) + eslint-config-prettier: 10.1.8(eslint@9.39.2(jiti@1.21.6)) + eslint-import-resolver-alias: 1.1.2(eslint-plugin-import@2.32.0) + eslint-import-resolver-typescript: 4.4.4(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@1.21.6)) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5))(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.2(jiti@1.21.6)) + eslint-plugin-jsx-a11y: 6.10.2(eslint@9.39.2(jiti@1.21.6)) + eslint-plugin-n: 17.20.0(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5) + eslint-plugin-prettier: 5.5.5(eslint-config-prettier@10.1.8(eslint@9.39.2(jiti@1.21.6)))(eslint@9.39.2(jiti@1.21.6))(prettier@3.8.1) + eslint-plugin-promise: 7.2.1(eslint@9.39.2(jiti@1.21.6)) + eslint-plugin-react: 7.37.5(eslint@9.39.2(jiti@1.21.6)) + eslint-plugin-react-hooks: 7.0.1(eslint@9.39.2(jiti@1.21.6)) + eslint-plugin-unicorn: 62.0.0(eslint@9.39.2(jiti@1.21.6)) + eslint-plugin-vue: 10.7.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5))(eslint@9.39.2(jiti@1.21.6))(vue-eslint-parser@10.2.0(eslint@9.39.2(jiti@1.21.6))) + globals: 17.3.0 + prettier: 3.8.1 + typescript: 4.9.5 + typescript-eslint: 8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5) + vue-eslint-parser: 10.2.0(eslint@9.39.2(jiti@1.21.6)) + transitivePeerDependencies: + - '@stylistic/eslint-plugin' + - '@types/eslint' + - '@typescript-eslint/parser' + - eslint-import-resolver-webpack + - eslint-plugin-import-x + - supports-color + + '@prefabs.tech/eslint-config@0.5.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3))(eslint@9.39.2(jiti@1.21.6))(prettier@3.8.1)(typescript@5.7.3)': + dependencies: + '@eslint/js': 9.39.2 + eslint: 9.39.2(jiti@1.21.6) + eslint-config-prettier: 10.1.8(eslint@9.39.2(jiti@1.21.6)) + eslint-import-resolver-alias: 1.1.2(eslint-plugin-import@2.32.0) + eslint-import-resolver-typescript: 4.4.4(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@1.21.6)) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.2(jiti@1.21.6)) + eslint-plugin-jsx-a11y: 6.10.2(eslint@9.39.2(jiti@1.21.6)) + eslint-plugin-n: 17.20.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3) + eslint-plugin-prettier: 5.5.5(eslint-config-prettier@10.1.8(eslint@9.39.2(jiti@1.21.6)))(eslint@9.39.2(jiti@1.21.6))(prettier@3.8.1) + eslint-plugin-promise: 7.2.1(eslint@9.39.2(jiti@1.21.6)) + eslint-plugin-react: 7.37.5(eslint@9.39.2(jiti@1.21.6)) + eslint-plugin-react-hooks: 7.0.1(eslint@9.39.2(jiti@1.21.6)) + eslint-plugin-unicorn: 62.0.0(eslint@9.39.2(jiti@1.21.6)) + eslint-plugin-vue: 10.7.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3))(eslint@9.39.2(jiti@1.21.6))(vue-eslint-parser@10.2.0(eslint@9.39.2(jiti@1.21.6))) + globals: 17.3.0 + prettier: 3.8.1 + typescript: 5.7.3 + typescript-eslint: 8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3) + vue-eslint-parser: 10.2.0(eslint@9.39.2(jiti@1.21.6)) + transitivePeerDependencies: + - '@stylistic/eslint-plugin' + - '@types/eslint' + - '@typescript-eslint/parser' + - eslint-import-resolver-webpack + - eslint-plugin-import-x + - supports-color + + '@prefabs.tech/fastify-config@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0)': + dependencies: + fastify: 5.6.0 + fastify-plugin: 5.0.1 - '@prefabs.tech/fastify-config@0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1)': + '@prefabs.tech/fastify-error-handler@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0)': dependencies: - fastify: 5.2.1 + '@fastify/sensible': 6.0.4 + fastify: 5.6.0 fastify-plugin: 5.0.1 + stacktracey: 2.1.8 - '@prefabs.tech/fastify-graphql@0.89.2(@prefabs.tech/fastify-config@0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1))(@prefabs.tech/fastify-slonik@0.89.2(@prefabs.tech/fastify-config@0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1))(fastify-plugin@5.0.1)(fastify@5.2.1)(pg-mem@3.0.4(slonik@46.1.0(zod@3.23.8)))(slonik@46.1.0(zod@3.23.8))(zod@3.23.8))(fastify-plugin@5.0.1)(fastify@5.2.1)(graphql@16.10.0)(mercurius@16.1.0(graphql@16.10.0))(slonik@46.1.0(zod@3.23.8))(zod@3.23.8)': + '@prefabs.tech/fastify-graphql@0.93.5(@prefabs.tech/fastify-config@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(@prefabs.tech/fastify-slonik@0.93.5(@prefabs.tech/fastify-config@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(fastify-plugin@5.0.1)(fastify@5.6.0)(pg-mem@3.0.4(slonik@46.8.0(zod@3.23.8)))(slonik@46.8.0(zod@3.23.8))(zod@3.23.8))(fastify-plugin@5.0.1)(fastify@5.6.0)(graphql@16.11.0)(mercurius@16.2.0(graphql@16.11.0))(slonik@46.8.0(zod@3.23.8))(zod@3.23.8)': dependencies: - '@graphql-tools/merge': 9.1.1(graphql@16.10.0) - '@prefabs.tech/fastify-config': 0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1) - '@prefabs.tech/fastify-slonik': 0.89.2(@prefabs.tech/fastify-config@0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1))(fastify-plugin@5.0.1)(fastify@5.2.1)(pg-mem@3.0.4(slonik@46.1.0(zod@3.23.8)))(slonik@46.1.0(zod@3.23.8))(zod@3.23.8) - fastify: 5.2.1 + '@graphql-tools/merge': 9.1.7(graphql@16.11.0) + '@prefabs.tech/fastify-config': 0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0) + '@prefabs.tech/fastify-slonik': 0.93.5(@prefabs.tech/fastify-config@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(fastify-plugin@5.0.1)(fastify@5.6.0)(pg-mem@3.0.4(slonik@46.8.0(zod@3.23.8)))(slonik@46.8.0(zod@3.23.8))(zod@3.23.8) + fastify: 5.6.0 fastify-plugin: 5.0.1 - graphql: 16.10.0 - graphql-tag: 2.12.6(graphql@16.10.0) - mercurius: 16.1.0(graphql@16.10.0) - slonik: 46.1.0(zod@3.23.8) + graphql: 16.11.0 + graphql-tag: 2.12.6(graphql@16.11.0) + mercurius: 16.2.0(graphql@16.11.0) + slonik: 46.8.0(zod@3.23.8) zod: 3.23.8 - '@prefabs.tech/fastify-mailer@0.89.2(@prefabs.tech/fastify-config@0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1))(fastify-plugin@5.0.1)(fastify@5.2.1)(mjml@4.15.3)': + '@prefabs.tech/fastify-mailer@0.93.5(@prefabs.tech/fastify-config@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(fastify-plugin@5.0.1)(fastify@5.6.0)(mjml@4.15.3)': dependencies: - fastify: 5.2.1 + fastify: 5.6.0 fastify-plugin: 5.0.1 html-to-text: 9.0.5 mjml: 4.15.3 mustache: 4.2.0 - nodemailer: 6.10.1 + nodemailer: 7.0.13 nodemailer-html-to-text: 3.2.0 - nodemailer-mjml: 1.6.0(nodemailer@6.10.1) + nodemailer-mjml: 1.6.0(nodemailer@7.0.13) optionalDependencies: - '@prefabs.tech/fastify-config': 0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1) + '@prefabs.tech/fastify-config': 0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0) transitivePeerDependencies: - encoding - htmlnano - '@prefabs.tech/fastify-s3@0.89.2(@prefabs.tech/fastify-config@0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1))(@prefabs.tech/fastify-graphql@0.89.2(@prefabs.tech/fastify-config@0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1))(@prefabs.tech/fastify-slonik@0.89.2(@prefabs.tech/fastify-config@0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1))(fastify-plugin@5.0.1)(fastify@5.2.1)(pg-mem@3.0.4(slonik@46.1.0(zod@3.23.8)))(slonik@46.1.0(zod@3.23.8))(zod@3.23.8))(fastify-plugin@5.0.1)(fastify@5.2.1)(graphql@16.10.0)(mercurius@16.1.0(graphql@16.10.0))(slonik@46.1.0(zod@3.23.8))(zod@3.23.8))(@prefabs.tech/fastify-slonik@0.89.2(@prefabs.tech/fastify-config@0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1))(fastify-plugin@5.0.1)(fastify@5.2.1)(pg-mem@3.0.4(slonik@46.1.0(zod@3.23.8)))(slonik@46.1.0(zod@3.23.8))(zod@3.23.8))(fastify-plugin@5.0.1)(fastify@5.2.1)(graphql@16.10.0)(slonik@46.1.0(zod@3.23.8))(zod@3.23.8)': + '@prefabs.tech/fastify-s3@0.93.5(@prefabs.tech/fastify-config@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(@prefabs.tech/fastify-error-handler@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(@prefabs.tech/fastify-graphql@0.93.5(@prefabs.tech/fastify-config@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(@prefabs.tech/fastify-slonik@0.93.5(@prefabs.tech/fastify-config@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(fastify-plugin@5.0.1)(fastify@5.6.0)(pg-mem@3.0.4(slonik@46.8.0(zod@3.23.8)))(slonik@46.8.0(zod@3.23.8))(zod@3.23.8))(fastify-plugin@5.0.1)(fastify@5.6.0)(graphql@16.11.0)(mercurius@16.2.0(graphql@16.11.0))(slonik@46.8.0(zod@3.23.8))(zod@3.23.8))(@prefabs.tech/fastify-slonik@0.93.5(@prefabs.tech/fastify-config@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(fastify-plugin@5.0.1)(fastify@5.6.0)(pg-mem@3.0.4(slonik@46.8.0(zod@3.23.8)))(slonik@46.8.0(zod@3.23.8))(zod@3.23.8))(fastify-plugin@5.0.1)(fastify@5.6.0)(graphql@16.11.0)(slonik@46.8.0(zod@3.23.8))(zod@3.23.8)': dependencies: - '@aws-sdk/client-s3': 3.850.0 - '@aws-sdk/lib-storage': 3.850.0(@aws-sdk/client-s3@3.850.0) - '@aws-sdk/s3-request-presigner': 3.850.0 - '@fastify/multipart': 9.0.3 - '@prefabs.tech/fastify-config': 0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1) - '@prefabs.tech/fastify-graphql': 0.89.2(@prefabs.tech/fastify-config@0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1))(@prefabs.tech/fastify-slonik@0.89.2(@prefabs.tech/fastify-config@0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1))(fastify-plugin@5.0.1)(fastify@5.2.1)(pg-mem@3.0.4(slonik@46.1.0(zod@3.23.8)))(slonik@46.1.0(zod@3.23.8))(zod@3.23.8))(fastify-plugin@5.0.1)(fastify@5.2.1)(graphql@16.10.0)(mercurius@16.1.0(graphql@16.10.0))(slonik@46.1.0(zod@3.23.8))(zod@3.23.8) - '@prefabs.tech/fastify-slonik': 0.89.2(@prefabs.tech/fastify-config@0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1))(fastify-plugin@5.0.1)(fastify@5.2.1)(pg-mem@3.0.4(slonik@46.1.0(zod@3.23.8)))(slonik@46.1.0(zod@3.23.8))(zod@3.23.8) + '@aws-sdk/client-s3': 3.917.0 + '@aws-sdk/lib-storage': 3.917.0(@aws-sdk/client-s3@3.917.0) + '@aws-sdk/s3-request-presigner': 3.917.0 + '@fastify/multipart': 9.3.0 + '@prefabs.tech/fastify-config': 0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0) + '@prefabs.tech/fastify-error-handler': 0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0) + '@prefabs.tech/fastify-graphql': 0.93.5(@prefabs.tech/fastify-config@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(@prefabs.tech/fastify-slonik@0.93.5(@prefabs.tech/fastify-config@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(fastify-plugin@5.0.1)(fastify@5.6.0)(pg-mem@3.0.4(slonik@46.8.0(zod@3.23.8)))(slonik@46.8.0(zod@3.23.8))(zod@3.23.8))(fastify-plugin@5.0.1)(fastify@5.6.0)(graphql@16.11.0)(mercurius@16.2.0(graphql@16.11.0))(slonik@46.8.0(zod@3.23.8))(zod@3.23.8) + '@prefabs.tech/fastify-slonik': 0.93.5(@prefabs.tech/fastify-config@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(fastify-plugin@5.0.1)(fastify@5.6.0)(pg-mem@3.0.4(slonik@46.8.0(zod@3.23.8)))(slonik@46.8.0(zod@3.23.8))(zod@3.23.8) '@types/busboy': 1.5.4 '@types/uuid': 9.0.8 ajv: 8.17.1 busboy: 1.6.0 - fastify: 5.2.1 + fastify: 5.6.0 fastify-plugin: 5.0.1 - graphql-upload-minimal: 1.6.1(graphql@16.10.0) - slonik: 46.1.0(zod@3.23.8) + graphql-upload-minimal: 1.6.4(graphql@16.11.0) + slonik: 46.8.0(zod@3.23.8) uuid: 9.0.1 zod: 3.23.8 transitivePeerDependencies: - aws-crt - graphql - '@prefabs.tech/fastify-slonik@0.89.2(@prefabs.tech/fastify-config@0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1))(fastify-plugin@5.0.1)(fastify@5.2.1)(pg-mem@3.0.4(slonik@46.1.0(zod@3.23.8)))(slonik@46.1.0(zod@3.23.8))(zod@3.23.8)': + '@prefabs.tech/fastify-slonik@0.93.5(@prefabs.tech/fastify-config@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(fastify-plugin@5.0.1)(fastify@5.6.0)(pg-mem@3.0.4(slonik@46.8.0(zod@3.23.8)))(slonik@46.8.0(zod@3.23.8))(zod@3.23.8)': dependencies: - '@prefabs.tech/fastify-config': 0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1) + '@prefabs.tech/fastify-config': 0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0) '@prefabs.tech/postgres-migrations': 5.4.3 - fastify: 5.2.1 + fastify: 5.6.0 fastify-plugin: 5.0.1 humps: 2.0.1 pg: 8.16.3 - slonik: 46.1.0(zod@3.23.8) - slonik-interceptor-query-logging: 46.8.0(slonik@46.1.0(zod@3.23.8)) + slonik: 46.8.0(zod@3.23.8) + slonik-interceptor-query-logging: 46.8.0(slonik@46.8.0(zod@3.23.8)) zod: 3.23.8 optionalDependencies: - pg-mem: 3.0.4(slonik@46.1.0(zod@3.23.8)) + pg-mem: 3.0.4(slonik@46.8.0(zod@3.23.8)) transitivePeerDependencies: - pg-native - '@prefabs.tech/fastify-user@0.89.2(2mzfwxvaeqhq3j52if3so6wncq)': - dependencies: - '@prefabs.tech/fastify-config': 0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1) - '@prefabs.tech/fastify-graphql': 0.89.2(@prefabs.tech/fastify-config@0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1))(@prefabs.tech/fastify-slonik@0.89.2(@prefabs.tech/fastify-config@0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1))(fastify-plugin@5.0.1)(fastify@5.2.1)(pg-mem@3.0.4(slonik@46.1.0(zod@3.23.8)))(slonik@46.1.0(zod@3.23.8))(zod@3.23.8))(fastify-plugin@5.0.1)(fastify@5.2.1)(graphql@16.10.0)(mercurius@16.1.0(graphql@16.10.0))(slonik@46.1.0(zod@3.23.8))(zod@3.23.8) - '@prefabs.tech/fastify-mailer': 0.89.2(@prefabs.tech/fastify-config@0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1))(fastify-plugin@5.0.1)(fastify@5.2.1)(mjml@4.15.3) - '@prefabs.tech/fastify-s3': 0.89.2(@prefabs.tech/fastify-config@0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1))(@prefabs.tech/fastify-graphql@0.89.2(@prefabs.tech/fastify-config@0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1))(@prefabs.tech/fastify-slonik@0.89.2(@prefabs.tech/fastify-config@0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1))(fastify-plugin@5.0.1)(fastify@5.2.1)(pg-mem@3.0.4(slonik@46.1.0(zod@3.23.8)))(slonik@46.1.0(zod@3.23.8))(zod@3.23.8))(fastify-plugin@5.0.1)(fastify@5.2.1)(graphql@16.10.0)(mercurius@16.1.0(graphql@16.10.0))(slonik@46.1.0(zod@3.23.8))(zod@3.23.8))(@prefabs.tech/fastify-slonik@0.89.2(@prefabs.tech/fastify-config@0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1))(fastify-plugin@5.0.1)(fastify@5.2.1)(pg-mem@3.0.4(slonik@46.1.0(zod@3.23.8)))(slonik@46.1.0(zod@3.23.8))(zod@3.23.8))(fastify-plugin@5.0.1)(fastify@5.2.1)(graphql@16.10.0)(slonik@46.1.0(zod@3.23.8))(zod@3.23.8) - '@prefabs.tech/fastify-slonik': 0.89.2(@prefabs.tech/fastify-config@0.89.2(fastify-plugin@5.0.1)(fastify@5.2.1))(fastify-plugin@5.0.1)(fastify@5.2.1)(pg-mem@3.0.4(slonik@46.1.0(zod@3.23.8)))(slonik@46.1.0(zod@3.23.8))(zod@3.23.8) - fastify: 5.2.1 + '@prefabs.tech/fastify-user@0.93.5(vjjl5d3rjsjdc3ao2hfmbhuvji)': + dependencies: + '@fastify/cors': 11.2.0 + '@fastify/formbody': 8.0.2 + '@prefabs.tech/fastify-config': 0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0) + '@prefabs.tech/fastify-error-handler': 0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0) + '@prefabs.tech/fastify-graphql': 0.93.5(@prefabs.tech/fastify-config@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(@prefabs.tech/fastify-slonik@0.93.5(@prefabs.tech/fastify-config@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(fastify-plugin@5.0.1)(fastify@5.6.0)(pg-mem@3.0.4(slonik@46.8.0(zod@3.23.8)))(slonik@46.8.0(zod@3.23.8))(zod@3.23.8))(fastify-plugin@5.0.1)(fastify@5.6.0)(graphql@16.11.0)(mercurius@16.2.0(graphql@16.11.0))(slonik@46.8.0(zod@3.23.8))(zod@3.23.8) + '@prefabs.tech/fastify-mailer': 0.93.5(@prefabs.tech/fastify-config@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(fastify-plugin@5.0.1)(fastify@5.6.0)(mjml@4.15.3) + '@prefabs.tech/fastify-s3': 0.93.5(@prefabs.tech/fastify-config@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(@prefabs.tech/fastify-error-handler@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(@prefabs.tech/fastify-graphql@0.93.5(@prefabs.tech/fastify-config@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(@prefabs.tech/fastify-slonik@0.93.5(@prefabs.tech/fastify-config@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(fastify-plugin@5.0.1)(fastify@5.6.0)(pg-mem@3.0.4(slonik@46.8.0(zod@3.23.8)))(slonik@46.8.0(zod@3.23.8))(zod@3.23.8))(fastify-plugin@5.0.1)(fastify@5.6.0)(graphql@16.11.0)(mercurius@16.2.0(graphql@16.11.0))(slonik@46.8.0(zod@3.23.8))(zod@3.23.8))(@prefabs.tech/fastify-slonik@0.93.5(@prefabs.tech/fastify-config@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(fastify-plugin@5.0.1)(fastify@5.6.0)(pg-mem@3.0.4(slonik@46.8.0(zod@3.23.8)))(slonik@46.8.0(zod@3.23.8))(zod@3.23.8))(fastify-plugin@5.0.1)(fastify@5.6.0)(graphql@16.11.0)(slonik@46.8.0(zod@3.23.8))(zod@3.23.8) + '@prefabs.tech/fastify-slonik': 0.93.5(@prefabs.tech/fastify-config@0.93.5(fastify-plugin@5.0.1)(fastify@5.6.0))(fastify-plugin@5.0.1)(fastify@5.6.0)(pg-mem@3.0.4(slonik@46.8.0(zod@3.23.8)))(slonik@46.8.0(zod@3.23.8))(zod@3.23.8) + fastify: 5.6.0 fastify-plugin: 5.0.1 humps: 2.0.1 - mercurius: 16.1.0(graphql@16.10.0) + mercurius: 16.2.0(graphql@16.11.0) mercurius-auth: 6.0.0 - slonik: 46.1.0(zod@3.23.8) - supertokens-node: 14.1.3 - validator: 13.15.15 + slonik: 46.8.0(zod@3.23.8) + supertokens-node: 14.1.4 + validator: 13.15.26 zod: 3.23.8 '@prefabs.tech/postgres-migrations@5.4.3': @@ -7820,188 +8627,204 @@ snapshots: transitivePeerDependencies: - pg-native - '@prefabs.tech/react-config@0.61.0(react@18.3.1)': + '@prefabs.tech/react-config@0.70.0(react@18.3.1)': dependencies: react: 18.3.1 - '@prefabs.tech/react-form@0.61.0(@prefabs.tech/react-ui@0.61.0(primereact@9.6.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react-router-dom@6.26.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1))(primereact@9.6.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(zod@3.23.8)': + '@prefabs.tech/react-form@0.70.0(@prefabs.tech/react-ui@0.70.0(primereact@9.6.1(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react-router-dom@6.28.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1))(primereact@9.6.1(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(zod@3.23.8)': dependencies: '@hookform/error-message': 2.0.1(react-dom@18.3.1(react@18.3.1))(react-hook-form@7.54.2(react@18.3.1))(react@18.3.1) '@hookform/resolvers': 3.9.1(react-hook-form@7.54.2(react@18.3.1)) - '@prefabs.tech/react-ui': 0.61.0(primereact@9.6.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react-router-dom@6.26.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) - primereact: 9.6.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@prefabs.tech/react-ui': 0.70.0(primereact@9.6.1(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react-router-dom@6.28.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) + primereact: 9.6.1(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-debounce-input: 3.3.0(react@18.3.1) react-dom: 18.3.1(react@18.3.1) react-dropzone: 14.3.5(react@18.3.1) react-hook-form: 7.54.2(react@18.3.1) - validator: 13.12.0 + validator: 13.15.22 zod: 3.23.8 - '@prefabs.tech/react-i18n@0.61.0(@prefabs.tech/react-config@0.61.0(react@18.3.1))(primereact@9.6.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react-router-dom@6.26.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(typescript@5.4.5)': + '@prefabs.tech/react-i18n@0.70.0(@prefabs.tech/react-config@0.70.0(react@18.3.1))(primereact@9.6.1(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react-router-dom@6.28.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(typescript@5.7.3)': dependencies: - '@prefabs.tech/react-config': 0.61.0(react@18.3.1) - '@prefabs.tech/react-ui': 0.61.0(primereact@9.6.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react-router-dom@6.26.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) - i18next: 24.2.3(typescript@5.4.5) + '@prefabs.tech/react-config': 0.70.0(react@18.3.1) + '@prefabs.tech/react-ui': 0.70.0(primereact@9.6.1(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react-router-dom@6.28.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) + i18next: 24.2.3(typescript@5.7.3) i18next-browser-languagedetector: 8.0.5 i18next-chained-backend: 4.6.2 i18next-resources-to-backend: 1.2.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-i18next: 15.4.1(i18next@24.2.3(typescript@5.4.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-i18next: 15.4.1(i18next@24.2.3(typescript@5.7.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) transitivePeerDependencies: - primereact - react-native - react-router-dom - typescript - '@prefabs.tech/react-ui@0.61.0(primereact@9.6.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react-router-dom@6.26.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': + '@prefabs.tech/react-ui@0.70.0(primereact@9.6.1(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react-router-dom@6.28.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: '@popperjs/core': 2.11.8 '@tanstack/react-table': 8.21.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) file-saver: 2.0.5 node-xlsx: 0.24.0 - primereact: 9.6.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + primereact: 9.6.1(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-debounce-input: 3.3.0(react@18.3.1) react-dom: 18.3.1(react@18.3.1) react-popper: 2.3.0(@popperjs/core@2.11.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-router-dom: 6.26.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - - '@prefabs.tech/tsconfig@0.2.0(@types/node@20.12.2)': - dependencies: - '@vue/tsconfig': 0.1.3(@types/node@20.12.2) - transitivePeerDependencies: - - '@types/node' + react-router-dom: 6.28.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@prefabs.tech/tsconfig@0.2.0(@types/node@22.13.5)': + '@prefabs.tech/tsconfig@0.5.0(@types/node@24.10.0)': dependencies: - '@vue/tsconfig': 0.1.3(@types/node@22.13.5) + '@vue/tsconfig': 0.1.3(@types/node@24.10.0) transitivePeerDependencies: - '@types/node' - '@prefabs.tech/vue3-config@0.18.0(pinia@3.0.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4)))(vue-router@4.5.0(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4))': + '@prefabs.tech/vue3-config@0.31.0(pinia@3.0.1(typescript@4.9.5)(vue@3.5.13(typescript@4.9.5)))(vue-router@4.5.0(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5))': dependencies: '@sentry/core': 9.1.0 - '@sentry/vue': 9.1.0(pinia@3.0.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4)) - vue: 3.5.13(typescript@5.5.4) - vue-router: 4.5.0(vue@3.5.13(typescript@5.5.4)) + '@sentry/vue': 9.1.0(pinia@3.0.1(typescript@4.9.5)(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5)) + vue: 3.5.13(typescript@4.9.5) + vue-router: 4.5.0(vue@3.5.13(typescript@4.9.5)) transitivePeerDependencies: - pinia - '@prefabs.tech/vue3-form@0.18.0(@vee-validate/i18n@4.15.0)(@vee-validate/rules@4.15.0(vue@3.5.13(typescript@5.5.4)))(@vee-validate/zod@4.15.0(vue@3.5.13(typescript@5.5.4))(zod@3.24.2))(vee-validate@4.15.0(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4))(zod@3.24.2)': + '@prefabs.tech/vue3-form@0.31.0(@vee-validate/i18n@4.15.0)(@vee-validate/rules@4.15.0(vue@3.5.13(typescript@4.9.5)))(@vee-validate/zod@4.15.0(vue@3.5.13(typescript@4.9.5))(zod@3.24.2))(vee-validate@4.15.0(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5))(zod@3.24.2)': dependencies: '@vee-validate/i18n': 4.15.0 - '@vee-validate/rules': 4.15.0(vue@3.5.13(typescript@5.5.4)) - '@vee-validate/zod': 4.15.0(vue@3.5.13(typescript@5.5.4))(zod@3.24.2) - validator: 13.12.0 - vee-validate: 4.15.0(vue@3.5.13(typescript@5.5.4)) - vue: 3.5.13(typescript@5.5.4) + '@vee-validate/rules': 4.15.0(vue@3.5.13(typescript@4.9.5)) + '@vee-validate/zod': 4.15.0(vue@3.5.13(typescript@4.9.5))(zod@3.24.2) + validator: 13.15.26 + vee-validate: 4.15.0(vue@3.5.13(typescript@4.9.5)) + vue: 3.5.13(typescript@4.9.5) zod: 3.24.2 - '@prefabs.tech/vue3-i18n@0.18.0(@prefabs.tech/vue3-config@0.18.0(pinia@3.0.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4)))(vue-router@4.5.0(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4)))(@vueuse/core@12.7.0(typescript@5.5.4))(pinia@3.0.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4))': + '@prefabs.tech/vue3-i18n@0.31.0(@prefabs.tech/vue3-config@0.31.0(pinia@3.0.1(typescript@4.9.5)(vue@3.5.13(typescript@4.9.5)))(vue-router@4.5.0(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5)))(@vueuse/core@12.7.0(typescript@4.9.5))(pinia@3.0.1(typescript@4.9.5)(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5))': dependencies: - '@prefabs.tech/vue3-config': 0.18.0(pinia@3.0.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4)))(vue-router@4.5.0(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4)) - '@vueuse/core': 12.7.0(typescript@5.5.4) - pinia: 3.0.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4)) - vue: 3.5.13(typescript@5.5.4) - vue-i18n: 9.1.10(vue@3.5.13(typescript@5.5.4)) + '@prefabs.tech/vue3-config': 0.31.0(pinia@3.0.1(typescript@4.9.5)(vue@3.5.13(typescript@4.9.5)))(vue-router@4.5.0(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5)) + '@vueuse/core': 12.7.0(typescript@4.9.5) + pinia: 3.0.1(typescript@4.9.5)(vue@3.5.13(typescript@4.9.5)) + vue: 3.5.13(typescript@4.9.5) + vue-i18n: 9.1.10(vue@3.5.13(typescript@4.9.5)) - '@prefabs.tech/vue3-layout@0.18.0(@prefabs.tech/vue3-config@0.18.0(pinia@3.0.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4)))(vue-router@4.5.0(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4)))(@prefabs.tech/vue3-i18n@0.18.0(@prefabs.tech/vue3-config@0.18.0(pinia@3.0.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4)))(vue-router@4.5.0(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4)))(@vueuse/core@12.7.0(typescript@5.5.4))(pinia@3.0.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4)))(@prefabs.tech/vue3-ui@0.18.0(vue@3.5.13(typescript@5.5.4)))(@vueuse/core@12.7.0(typescript@5.5.4))(vue-router@4.5.0(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4))': + '@prefabs.tech/vue3-layout@0.31.0(@prefabs.tech/vue3-config@0.31.0(pinia@3.0.1(typescript@4.9.5)(vue@3.5.13(typescript@4.9.5)))(vue-router@4.5.0(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5)))(@prefabs.tech/vue3-i18n@0.31.0(@prefabs.tech/vue3-config@0.31.0(pinia@3.0.1(typescript@4.9.5)(vue@3.5.13(typescript@4.9.5)))(vue-router@4.5.0(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5)))(@vueuse/core@12.7.0(typescript@4.9.5))(pinia@3.0.1(typescript@4.9.5)(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5)))(@prefabs.tech/vue3-ui@0.31.0(vue@3.5.13(typescript@4.9.5)))(@vueuse/core@12.7.0(typescript@4.9.5))(vue-router@4.5.0(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5))': dependencies: - '@prefabs.tech/vue3-config': 0.18.0(pinia@3.0.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4)))(vue-router@4.5.0(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4)) - '@prefabs.tech/vue3-i18n': 0.18.0(@prefabs.tech/vue3-config@0.18.0(pinia@3.0.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4)))(vue-router@4.5.0(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4)))(@vueuse/core@12.7.0(typescript@5.5.4))(pinia@3.0.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4)) - '@prefabs.tech/vue3-ui': 0.18.0(vue@3.5.13(typescript@5.5.4)) - '@vueuse/core': 12.7.0(typescript@5.5.4) - vue: 3.5.13(typescript@5.5.4) - vue-router: 4.5.0(vue@3.5.13(typescript@5.5.4)) + '@prefabs.tech/vue3-config': 0.31.0(pinia@3.0.1(typescript@4.9.5)(vue@3.5.13(typescript@4.9.5)))(vue-router@4.5.0(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5)) + '@prefabs.tech/vue3-i18n': 0.31.0(@prefabs.tech/vue3-config@0.31.0(pinia@3.0.1(typescript@4.9.5)(vue@3.5.13(typescript@4.9.5)))(vue-router@4.5.0(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5)))(@vueuse/core@12.7.0(typescript@4.9.5))(pinia@3.0.1(typescript@4.9.5)(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5)) + '@prefabs.tech/vue3-ui': 0.31.0(vue@3.5.13(typescript@4.9.5)) + '@vueuse/core': 12.7.0(typescript@4.9.5) + vue: 3.5.13(typescript@4.9.5) + vue-router: 4.5.0(vue@3.5.13(typescript@4.9.5)) - '@prefabs.tech/vue3-tanstack-table@0.18.0(@prefabs.tech/vue3-form@0.18.0(@vee-validate/i18n@4.15.0)(@vee-validate/rules@4.15.0(vue@3.5.13(typescript@5.5.4)))(@vee-validate/zod@4.15.0(vue@3.5.13(typescript@5.5.4))(zod@3.24.2))(vee-validate@4.15.0(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4))(zod@3.24.2))(@prefabs.tech/vue3-ui@0.18.0(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4))': + '@prefabs.tech/vue3-tanstack-table@0.31.0(@prefabs.tech/vue3-form@0.31.0(@vee-validate/i18n@4.15.0)(@vee-validate/rules@4.15.0(vue@3.5.13(typescript@4.9.5)))(@vee-validate/zod@4.15.0(vue@3.5.13(typescript@4.9.5))(zod@3.24.2))(vee-validate@4.15.0(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5))(zod@3.24.2))(@prefabs.tech/vue3-ui@0.31.0(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5))': dependencies: - '@prefabs.tech/vue3-form': 0.18.0(@vee-validate/i18n@4.15.0)(@vee-validate/rules@4.15.0(vue@3.5.13(typescript@5.5.4)))(@vee-validate/zod@4.15.0(vue@3.5.13(typescript@5.5.4))(zod@3.24.2))(vee-validate@4.15.0(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4))(zod@3.24.2) - '@prefabs.tech/vue3-ui': 0.18.0(vue@3.5.13(typescript@5.5.4)) - '@tanstack/vue-table': 8.21.2(vue@3.5.13(typescript@5.5.4)) - vue: 3.5.13(typescript@5.5.4) + '@prefabs.tech/vue3-form': 0.31.0(@vee-validate/i18n@4.15.0)(@vee-validate/rules@4.15.0(vue@3.5.13(typescript@4.9.5)))(@vee-validate/zod@4.15.0(vue@3.5.13(typescript@4.9.5))(zod@3.24.2))(vee-validate@4.15.0(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5))(zod@3.24.2) + '@prefabs.tech/vue3-ui': 0.31.0(vue@3.5.13(typescript@4.9.5)) + '@tanstack/vue-table': 8.21.3(vue@3.5.13(typescript@4.9.5)) + vue: 3.5.13(typescript@4.9.5) - '@prefabs.tech/vue3-ui@0.18.0(vue@3.5.13(typescript@5.5.4))': + '@prefabs.tech/vue3-ui@0.31.0(vue@3.5.13(typescript@4.9.5))': dependencies: - vue: 3.5.13(typescript@5.5.4) + vue: 3.5.13(typescript@4.9.5) - '@prefabs.tech/vue3-user@0.18.0(44d4q2laaxko3t64fvfq6zrjsm)': + '@prefabs.tech/vue3-user@0.31.0(n655cmjoaejkxprlggi6levmuy)': dependencies: - '@prefabs.tech/vue3-config': 0.18.0(pinia@3.0.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4)))(vue-router@4.5.0(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4)) - '@prefabs.tech/vue3-i18n': 0.18.0(@prefabs.tech/vue3-config@0.18.0(pinia@3.0.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4)))(vue-router@4.5.0(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4)))(@vueuse/core@12.7.0(typescript@5.5.4))(pinia@3.0.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4)) - '@prefabs.tech/vue3-layout': 0.18.0(@prefabs.tech/vue3-config@0.18.0(pinia@3.0.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4)))(vue-router@4.5.0(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4)))(@prefabs.tech/vue3-i18n@0.18.0(@prefabs.tech/vue3-config@0.18.0(pinia@3.0.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4)))(vue-router@4.5.0(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4)))(@vueuse/core@12.7.0(typescript@5.5.4))(pinia@3.0.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4)))(@prefabs.tech/vue3-ui@0.18.0(vue@3.5.13(typescript@5.5.4)))(@vueuse/core@12.7.0(typescript@5.5.4))(vue-router@4.5.0(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4)) - '@prefabs.tech/vue3-ui': 0.18.0(vue@3.5.13(typescript@5.5.4)) + '@prefabs.tech/vue3-config': 0.31.0(pinia@3.0.1(typescript@4.9.5)(vue@3.5.13(typescript@4.9.5)))(vue-router@4.5.0(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5)) + '@prefabs.tech/vue3-i18n': 0.31.0(@prefabs.tech/vue3-config@0.31.0(pinia@3.0.1(typescript@4.9.5)(vue@3.5.13(typescript@4.9.5)))(vue-router@4.5.0(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5)))(@vueuse/core@12.7.0(typescript@4.9.5))(pinia@3.0.1(typescript@4.9.5)(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5)) + '@prefabs.tech/vue3-layout': 0.31.0(@prefabs.tech/vue3-config@0.31.0(pinia@3.0.1(typescript@4.9.5)(vue@3.5.13(typescript@4.9.5)))(vue-router@4.5.0(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5)))(@prefabs.tech/vue3-i18n@0.31.0(@prefabs.tech/vue3-config@0.31.0(pinia@3.0.1(typescript@4.9.5)(vue@3.5.13(typescript@4.9.5)))(vue-router@4.5.0(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5)))(@vueuse/core@12.7.0(typescript@4.9.5))(pinia@3.0.1(typescript@4.9.5)(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5)))(@prefabs.tech/vue3-ui@0.31.0(vue@3.5.13(typescript@4.9.5)))(@vueuse/core@12.7.0(typescript@4.9.5))(vue-router@4.5.0(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5)) + '@prefabs.tech/vue3-ui': 0.31.0(vue@3.5.13(typescript@4.9.5)) '@vee-validate/i18n': 4.15.0 - '@vee-validate/rules': 4.15.0(vue@3.5.13(typescript@5.5.4)) - '@vueuse/core': 12.7.0(typescript@5.5.4) - axios: 1.7.9(debug@4.3.6) - pinia: 3.0.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4)) + '@vee-validate/rules': 4.15.0(vue@3.5.13(typescript@4.9.5)) + '@vueuse/core': 12.7.0(typescript@4.9.5) + axios: 1.12.0(debug@4.4.0) + pinia: 3.0.1(typescript@4.9.5)(vue@3.5.13(typescript@4.9.5)) supertokens-web-js: 0.5.0 supertokens-website: 16.0.1 - vee-validate: 4.15.0(vue@3.5.13(typescript@5.5.4)) - vue: 3.5.13(typescript@5.5.4) - vue-router: 4.5.0(vue@3.5.13(typescript@5.5.4)) + vee-validate: 4.15.0(vue@3.5.13(typescript@4.9.5)) + vue: 3.5.13(typescript@4.9.5) + vue-router: 4.5.0(vue@3.5.13(typescript@4.9.5)) zod: 3.24.2 - '@remix-run/router@1.19.1': {} + '@remix-run/router@1.21.0': {} + + '@rolldown/pluginutils@1.0.0-beta.11': {} + + '@rolldown/pluginutils@1.0.0-rc.4': {} + + '@rollup/rollup-android-arm-eabi@4.57.1': + optional: true + + '@rollup/rollup-android-arm64@4.57.1': + optional: true + + '@rollup/rollup-darwin-arm64@4.57.1': + optional: true + + '@rollup/rollup-darwin-x64@4.57.1': + optional: true + + '@rollup/rollup-freebsd-arm64@4.57.1': + optional: true + + '@rollup/rollup-freebsd-x64@4.57.1': + optional: true - '@rollup/rollup-android-arm-eabi@4.34.8': + '@rollup/rollup-linux-arm-gnueabihf@4.57.1': optional: true - '@rollup/rollup-android-arm64@4.34.8': + '@rollup/rollup-linux-arm-musleabihf@4.57.1': optional: true - '@rollup/rollup-darwin-arm64@4.34.8': + '@rollup/rollup-linux-arm64-gnu@4.57.1': optional: true - '@rollup/rollup-darwin-x64@4.34.8': + '@rollup/rollup-linux-arm64-musl@4.57.1': optional: true - '@rollup/rollup-freebsd-arm64@4.34.8': + '@rollup/rollup-linux-loong64-gnu@4.57.1': optional: true - '@rollup/rollup-freebsd-x64@4.34.8': + '@rollup/rollup-linux-loong64-musl@4.57.1': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.34.8': + '@rollup/rollup-linux-ppc64-gnu@4.57.1': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.34.8': + '@rollup/rollup-linux-ppc64-musl@4.57.1': optional: true - '@rollup/rollup-linux-arm64-gnu@4.34.8': + '@rollup/rollup-linux-riscv64-gnu@4.57.1': optional: true - '@rollup/rollup-linux-arm64-musl@4.34.8': + '@rollup/rollup-linux-riscv64-musl@4.57.1': optional: true - '@rollup/rollup-linux-loongarch64-gnu@4.34.8': + '@rollup/rollup-linux-s390x-gnu@4.57.1': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.34.8': + '@rollup/rollup-linux-x64-gnu@4.57.1': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.34.8': + '@rollup/rollup-linux-x64-musl@4.57.1': optional: true - '@rollup/rollup-linux-s390x-gnu@4.34.8': + '@rollup/rollup-openbsd-x64@4.57.1': optional: true - '@rollup/rollup-linux-x64-gnu@4.34.8': + '@rollup/rollup-openharmony-arm64@4.57.1': optional: true - '@rollup/rollup-linux-x64-musl@4.34.8': + '@rollup/rollup-win32-arm64-msvc@4.57.1': optional: true - '@rollup/rollup-win32-arm64-msvc@4.34.8': + '@rollup/rollup-win32-ia32-msvc@4.57.1': optional: true - '@rollup/rollup-win32-ia32-msvc@4.34.8': + '@rollup/rollup-win32-x64-gnu@4.57.1': optional: true - '@rollup/rollup-win32-x64-msvc@4.34.8': + '@rollup/rollup-win32-x64-msvc@4.57.1': optional: true '@rtsao/scc@1.1.0': {} @@ -8039,321 +8862,320 @@ snapshots: '@sentry/core@9.1.0': {} - '@sentry/vue@9.1.0(pinia@3.0.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4)))(vue@3.5.13(typescript@5.5.4))': + '@sentry/vue@9.1.0(pinia@3.0.1(typescript@4.9.5)(vue@3.5.13(typescript@4.9.5)))(vue@3.5.13(typescript@4.9.5))': dependencies: '@sentry/browser': 9.1.0 '@sentry/core': 9.1.0 - vue: 3.5.13(typescript@5.5.4) + vue: 3.5.13(typescript@4.9.5) optionalDependencies: - pinia: 3.0.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4)) + pinia: 3.0.1(typescript@4.9.5)(vue@3.5.13(typescript@4.9.5)) '@slack/types@1.10.0': {} '@slack/webhook@5.0.4': dependencies: '@slack/types': 1.10.0 - '@types/node': 22.13.5 + '@types/node': 24.10.0 axios: 0.21.4 transitivePeerDependencies: - debug - '@slonik/driver@46.2.0(zod@3.23.8)': + '@slonik/driver@46.8.0(zod@3.23.8)': dependencies: - '@slonik/types': 46.2.0(zod@3.23.8) - '@slonik/utilities': 46.2.0(zod@3.23.8) + '@slonik/types': 46.8.0(zod@3.23.8) + '@slonik/utilities': 46.8.0(zod@3.23.8) roarr: 7.21.1 serialize-error: 8.1.0 strict-event-emitter-types: 2.0.0 zod: 3.23.8 - '@slonik/errors@46.2.0(zod@3.23.8)': + '@slonik/errors@46.8.0(zod@3.23.8)': dependencies: - '@slonik/types': 46.2.0(zod@3.23.8) + '@slonik/types': 46.8.0(zod@3.23.8) zod: 3.23.8 - '@slonik/pg-driver@46.2.0(zod@3.23.8)': + '@slonik/pg-driver@46.8.0(zod@3.23.8)': dependencies: - '@slonik/driver': 46.2.0(zod@3.23.8) - '@slonik/errors': 46.2.0(zod@3.23.8) - '@slonik/sql-tag': 46.2.0(zod@3.23.8) - '@slonik/types': 46.2.0(zod@3.23.8) - '@slonik/utilities': 46.2.0(zod@3.23.8) + '@slonik/driver': 46.8.0(zod@3.23.8) + '@slonik/errors': 46.8.0(zod@3.23.8) + '@slonik/sql-tag': 46.8.0(zod@3.23.8) + '@slonik/types': 46.8.0(zod@3.23.8) + '@slonik/utilities': 46.8.0(zod@3.23.8) pg: 8.13.3 - pg-query-stream: 4.7.1(pg@8.13.3) + pg-query-stream: 4.12.0(pg@8.13.3) pg-types: 4.0.2 - postgres-array: 3.0.2 + postgres-array: 3.0.4 zod: 3.23.8 transitivePeerDependencies: - pg-native - '@slonik/sql-tag@46.2.0(zod@3.23.8)': + '@slonik/sql-tag@46.8.0(zod@3.23.8)': dependencies: - '@slonik/errors': 46.2.0(zod@3.23.8) - '@slonik/types': 46.2.0(zod@3.23.8) + '@slonik/errors': 46.8.0(zod@3.23.8) + '@slonik/types': 46.8.0(zod@3.23.8) roarr: 7.21.1 - safe-stable-stringify: 2.4.3 + safe-stable-stringify: 2.5.0 serialize-error: 8.1.0 zod: 3.23.8 - '@slonik/types@46.2.0(zod@3.23.8)': + '@slonik/types@46.8.0(zod@3.23.8)': dependencies: zod: 3.23.8 - '@slonik/utilities@46.2.0(zod@3.23.8)': + '@slonik/utilities@46.8.0(zod@3.23.8)': dependencies: - '@slonik/types': 46.2.0(zod@3.23.8) - roarr: 7.21.1 + '@slonik/errors': 46.8.0(zod@3.23.8) + '@slonik/types': 46.8.0(zod@3.23.8) zod: 3.23.8 - '@smithy/abort-controller@4.0.5': + '@smithy/abort-controller@4.2.8': dependencies: - '@smithy/types': 4.3.2 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@smithy/chunked-blob-reader-native@4.0.0': + '@smithy/chunked-blob-reader-native@4.2.1': dependencies: - '@smithy/util-base64': 4.0.0 + '@smithy/util-base64': 4.3.0 tslib: 2.8.1 - '@smithy/chunked-blob-reader@5.0.0': + '@smithy/chunked-blob-reader@5.2.0': dependencies: tslib: 2.8.1 - '@smithy/config-resolver@4.1.5': + '@smithy/config-resolver@4.4.6': dependencies: - '@smithy/node-config-provider': 4.1.4 - '@smithy/types': 4.3.2 - '@smithy/util-config-provider': 4.0.0 - '@smithy/util-middleware': 4.0.5 + '@smithy/node-config-provider': 4.3.8 + '@smithy/types': 4.12.0 + '@smithy/util-config-provider': 4.2.0 + '@smithy/util-endpoints': 3.2.8 + '@smithy/util-middleware': 4.2.8 tslib: 2.8.1 - '@smithy/core@3.8.0': - dependencies: - '@smithy/middleware-serde': 4.0.9 - '@smithy/protocol-http': 5.1.3 - '@smithy/types': 4.3.2 - '@smithy/util-base64': 4.0.0 - '@smithy/util-body-length-browser': 4.0.0 - '@smithy/util-middleware': 4.0.5 - '@smithy/util-stream': 4.2.4 - '@smithy/util-utf8': 4.0.0 - '@types/uuid': 9.0.8 + '@smithy/core@3.23.0': + dependencies: + '@smithy/middleware-serde': 4.2.9 + '@smithy/protocol-http': 5.3.8 + '@smithy/types': 4.12.0 + '@smithy/util-base64': 4.3.0 + '@smithy/util-body-length-browser': 4.2.0 + '@smithy/util-middleware': 4.2.8 + '@smithy/util-stream': 4.5.12 + '@smithy/util-utf8': 4.2.0 + '@smithy/uuid': 1.1.0 tslib: 2.8.1 - uuid: 9.0.1 - '@smithy/credential-provider-imds@4.0.7': + '@smithy/credential-provider-imds@4.2.8': dependencies: - '@smithy/node-config-provider': 4.1.4 - '@smithy/property-provider': 4.0.5 - '@smithy/types': 4.3.2 - '@smithy/url-parser': 4.0.5 + '@smithy/node-config-provider': 4.3.8 + '@smithy/property-provider': 4.2.8 + '@smithy/types': 4.12.0 + '@smithy/url-parser': 4.2.8 tslib: 2.8.1 - '@smithy/eventstream-codec@4.0.5': + '@smithy/eventstream-codec@4.2.8': dependencies: '@aws-crypto/crc32': 5.2.0 - '@smithy/types': 4.3.2 - '@smithy/util-hex-encoding': 4.0.0 + '@smithy/types': 4.12.0 + '@smithy/util-hex-encoding': 4.2.0 tslib: 2.8.1 - '@smithy/eventstream-serde-browser@4.0.5': + '@smithy/eventstream-serde-browser@4.2.8': dependencies: - '@smithy/eventstream-serde-universal': 4.0.5 - '@smithy/types': 4.3.2 + '@smithy/eventstream-serde-universal': 4.2.8 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@smithy/eventstream-serde-config-resolver@4.1.3': + '@smithy/eventstream-serde-config-resolver@4.3.8': dependencies: - '@smithy/types': 4.3.2 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@smithy/eventstream-serde-node@4.0.5': + '@smithy/eventstream-serde-node@4.2.8': dependencies: - '@smithy/eventstream-serde-universal': 4.0.5 - '@smithy/types': 4.3.2 + '@smithy/eventstream-serde-universal': 4.2.8 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@smithy/eventstream-serde-universal@4.0.5': + '@smithy/eventstream-serde-universal@4.2.8': dependencies: - '@smithy/eventstream-codec': 4.0.5 - '@smithy/types': 4.3.2 + '@smithy/eventstream-codec': 4.2.8 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@smithy/fetch-http-handler@5.1.1': + '@smithy/fetch-http-handler@5.3.9': dependencies: - '@smithy/protocol-http': 5.1.3 - '@smithy/querystring-builder': 4.0.5 - '@smithy/types': 4.3.2 - '@smithy/util-base64': 4.0.0 + '@smithy/protocol-http': 5.3.8 + '@smithy/querystring-builder': 4.2.8 + '@smithy/types': 4.12.0 + '@smithy/util-base64': 4.3.0 tslib: 2.8.1 - '@smithy/hash-blob-browser@4.0.5': + '@smithy/hash-blob-browser@4.2.9': dependencies: - '@smithy/chunked-blob-reader': 5.0.0 - '@smithy/chunked-blob-reader-native': 4.0.0 - '@smithy/types': 4.3.2 + '@smithy/chunked-blob-reader': 5.2.0 + '@smithy/chunked-blob-reader-native': 4.2.1 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@smithy/hash-node@4.0.5': + '@smithy/hash-node@4.2.8': dependencies: - '@smithy/types': 4.3.2 - '@smithy/util-buffer-from': 4.0.0 - '@smithy/util-utf8': 4.0.0 + '@smithy/types': 4.12.0 + '@smithy/util-buffer-from': 4.2.0 + '@smithy/util-utf8': 4.2.0 tslib: 2.8.1 - '@smithy/hash-stream-node@4.0.5': + '@smithy/hash-stream-node@4.2.8': dependencies: - '@smithy/types': 4.3.2 - '@smithy/util-utf8': 4.0.0 + '@smithy/types': 4.12.0 + '@smithy/util-utf8': 4.2.0 tslib: 2.8.1 - '@smithy/invalid-dependency@4.0.5': + '@smithy/invalid-dependency@4.2.8': dependencies: - '@smithy/types': 4.3.2 + '@smithy/types': 4.12.0 tslib: 2.8.1 '@smithy/is-array-buffer@2.2.0': dependencies: tslib: 2.8.1 - '@smithy/is-array-buffer@4.0.0': + '@smithy/is-array-buffer@4.2.0': dependencies: tslib: 2.8.1 - '@smithy/md5-js@4.0.5': + '@smithy/md5-js@4.2.8': dependencies: - '@smithy/types': 4.3.2 - '@smithy/util-utf8': 4.0.0 + '@smithy/types': 4.12.0 + '@smithy/util-utf8': 4.2.0 tslib: 2.8.1 - '@smithy/middleware-content-length@4.0.5': + '@smithy/middleware-content-length@4.2.8': dependencies: - '@smithy/protocol-http': 5.1.3 - '@smithy/types': 4.3.2 + '@smithy/protocol-http': 5.3.8 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@smithy/middleware-endpoint@4.1.18': + '@smithy/middleware-endpoint@4.4.14': dependencies: - '@smithy/core': 3.8.0 - '@smithy/middleware-serde': 4.0.9 - '@smithy/node-config-provider': 4.1.4 - '@smithy/shared-ini-file-loader': 4.0.5 - '@smithy/types': 4.3.2 - '@smithy/url-parser': 4.0.5 - '@smithy/util-middleware': 4.0.5 + '@smithy/core': 3.23.0 + '@smithy/middleware-serde': 4.2.9 + '@smithy/node-config-provider': 4.3.8 + '@smithy/shared-ini-file-loader': 4.4.3 + '@smithy/types': 4.12.0 + '@smithy/url-parser': 4.2.8 + '@smithy/util-middleware': 4.2.8 tslib: 2.8.1 - '@smithy/middleware-retry@4.1.19': + '@smithy/middleware-retry@4.4.31': dependencies: - '@smithy/node-config-provider': 4.1.4 - '@smithy/protocol-http': 5.1.3 - '@smithy/service-error-classification': 4.0.7 - '@smithy/smithy-client': 4.4.10 - '@smithy/types': 4.3.2 - '@smithy/util-middleware': 4.0.5 - '@smithy/util-retry': 4.0.7 - '@types/uuid': 9.0.8 + '@smithy/node-config-provider': 4.3.8 + '@smithy/protocol-http': 5.3.8 + '@smithy/service-error-classification': 4.2.8 + '@smithy/smithy-client': 4.11.3 + '@smithy/types': 4.12.0 + '@smithy/util-middleware': 4.2.8 + '@smithy/util-retry': 4.2.8 + '@smithy/uuid': 1.1.0 tslib: 2.8.1 - uuid: 9.0.1 - '@smithy/middleware-serde@4.0.9': + '@smithy/middleware-serde@4.2.9': dependencies: - '@smithy/protocol-http': 5.1.3 - '@smithy/types': 4.3.2 + '@smithy/protocol-http': 5.3.8 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@smithy/middleware-stack@4.0.5': + '@smithy/middleware-stack@4.2.8': dependencies: - '@smithy/types': 4.3.2 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@smithy/node-config-provider@4.1.4': + '@smithy/node-config-provider@4.3.8': dependencies: - '@smithy/property-provider': 4.0.5 - '@smithy/shared-ini-file-loader': 4.0.5 - '@smithy/types': 4.3.2 + '@smithy/property-provider': 4.2.8 + '@smithy/shared-ini-file-loader': 4.4.3 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@smithy/node-http-handler@4.1.1': + '@smithy/node-http-handler@4.4.10': dependencies: - '@smithy/abort-controller': 4.0.5 - '@smithy/protocol-http': 5.1.3 - '@smithy/querystring-builder': 4.0.5 - '@smithy/types': 4.3.2 + '@smithy/abort-controller': 4.2.8 + '@smithy/protocol-http': 5.3.8 + '@smithy/querystring-builder': 4.2.8 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@smithy/property-provider@4.0.5': + '@smithy/property-provider@4.2.8': dependencies: - '@smithy/types': 4.3.2 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@smithy/protocol-http@5.1.3': + '@smithy/protocol-http@5.3.8': dependencies: - '@smithy/types': 4.3.2 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@smithy/querystring-builder@4.0.5': + '@smithy/querystring-builder@4.2.8': dependencies: - '@smithy/types': 4.3.2 - '@smithy/util-uri-escape': 4.0.0 + '@smithy/types': 4.12.0 + '@smithy/util-uri-escape': 4.2.0 tslib: 2.8.1 - '@smithy/querystring-parser@4.0.5': + '@smithy/querystring-parser@4.2.8': dependencies: - '@smithy/types': 4.3.2 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@smithy/service-error-classification@4.0.7': + '@smithy/service-error-classification@4.2.8': dependencies: - '@smithy/types': 4.3.2 + '@smithy/types': 4.12.0 - '@smithy/shared-ini-file-loader@4.0.5': + '@smithy/shared-ini-file-loader@4.4.3': dependencies: - '@smithy/types': 4.3.2 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@smithy/signature-v4@5.1.3': + '@smithy/signature-v4@5.3.8': dependencies: - '@smithy/is-array-buffer': 4.0.0 - '@smithy/protocol-http': 5.1.3 - '@smithy/types': 4.3.2 - '@smithy/util-hex-encoding': 4.0.0 - '@smithy/util-middleware': 4.0.5 - '@smithy/util-uri-escape': 4.0.0 - '@smithy/util-utf8': 4.0.0 + '@smithy/is-array-buffer': 4.2.0 + '@smithy/protocol-http': 5.3.8 + '@smithy/types': 4.12.0 + '@smithy/util-hex-encoding': 4.2.0 + '@smithy/util-middleware': 4.2.8 + '@smithy/util-uri-escape': 4.2.0 + '@smithy/util-utf8': 4.2.0 tslib: 2.8.1 - '@smithy/smithy-client@4.4.10': + '@smithy/smithy-client@4.11.3': dependencies: - '@smithy/core': 3.8.0 - '@smithy/middleware-endpoint': 4.1.18 - '@smithy/middleware-stack': 4.0.5 - '@smithy/protocol-http': 5.1.3 - '@smithy/types': 4.3.2 - '@smithy/util-stream': 4.2.4 + '@smithy/core': 3.23.0 + '@smithy/middleware-endpoint': 4.4.14 + '@smithy/middleware-stack': 4.2.8 + '@smithy/protocol-http': 5.3.8 + '@smithy/types': 4.12.0 + '@smithy/util-stream': 4.5.12 tslib: 2.8.1 - '@smithy/types@4.3.2': + '@smithy/types@4.12.0': dependencies: tslib: 2.8.1 - '@smithy/url-parser@4.0.5': + '@smithy/url-parser@4.2.8': dependencies: - '@smithy/querystring-parser': 4.0.5 - '@smithy/types': 4.3.2 + '@smithy/querystring-parser': 4.2.8 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@smithy/util-base64@4.0.0': + '@smithy/util-base64@4.3.0': dependencies: - '@smithy/util-buffer-from': 4.0.0 - '@smithy/util-utf8': 4.0.0 + '@smithy/util-buffer-from': 4.2.0 + '@smithy/util-utf8': 4.2.0 tslib: 2.8.1 - '@smithy/util-body-length-browser@4.0.0': + '@smithy/util-body-length-browser@4.2.0': dependencies: tslib: 2.8.1 - '@smithy/util-body-length-node@4.0.0': + '@smithy/util-body-length-node@4.2.1': dependencies: tslib: 2.8.1 @@ -8362,66 +9184,65 @@ snapshots: '@smithy/is-array-buffer': 2.2.0 tslib: 2.8.1 - '@smithy/util-buffer-from@4.0.0': + '@smithy/util-buffer-from@4.2.0': dependencies: - '@smithy/is-array-buffer': 4.0.0 + '@smithy/is-array-buffer': 4.2.0 tslib: 2.8.1 - '@smithy/util-config-provider@4.0.0': + '@smithy/util-config-provider@4.2.0': dependencies: tslib: 2.8.1 - '@smithy/util-defaults-mode-browser@4.0.26': + '@smithy/util-defaults-mode-browser@4.3.30': dependencies: - '@smithy/property-provider': 4.0.5 - '@smithy/smithy-client': 4.4.10 - '@smithy/types': 4.3.2 - bowser: 2.12.0 + '@smithy/property-provider': 4.2.8 + '@smithy/smithy-client': 4.11.3 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@smithy/util-defaults-mode-node@4.0.26': + '@smithy/util-defaults-mode-node@4.2.33': dependencies: - '@smithy/config-resolver': 4.1.5 - '@smithy/credential-provider-imds': 4.0.7 - '@smithy/node-config-provider': 4.1.4 - '@smithy/property-provider': 4.0.5 - '@smithy/smithy-client': 4.4.10 - '@smithy/types': 4.3.2 + '@smithy/config-resolver': 4.4.6 + '@smithy/credential-provider-imds': 4.2.8 + '@smithy/node-config-provider': 4.3.8 + '@smithy/property-provider': 4.2.8 + '@smithy/smithy-client': 4.11.3 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@smithy/util-endpoints@3.0.7': + '@smithy/util-endpoints@3.2.8': dependencies: - '@smithy/node-config-provider': 4.1.4 - '@smithy/types': 4.3.2 + '@smithy/node-config-provider': 4.3.8 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@smithy/util-hex-encoding@4.0.0': + '@smithy/util-hex-encoding@4.2.0': dependencies: tslib: 2.8.1 - '@smithy/util-middleware@4.0.5': + '@smithy/util-middleware@4.2.8': dependencies: - '@smithy/types': 4.3.2 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@smithy/util-retry@4.0.7': + '@smithy/util-retry@4.2.8': dependencies: - '@smithy/service-error-classification': 4.0.7 - '@smithy/types': 4.3.2 + '@smithy/service-error-classification': 4.2.8 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@smithy/util-stream@4.2.4': + '@smithy/util-stream@4.5.12': dependencies: - '@smithy/fetch-http-handler': 5.1.1 - '@smithy/node-http-handler': 4.1.1 - '@smithy/types': 4.3.2 - '@smithy/util-base64': 4.0.0 - '@smithy/util-buffer-from': 4.0.0 - '@smithy/util-hex-encoding': 4.0.0 - '@smithy/util-utf8': 4.0.0 + '@smithy/fetch-http-handler': 5.3.9 + '@smithy/node-http-handler': 4.4.10 + '@smithy/types': 4.12.0 + '@smithy/util-base64': 4.3.0 + '@smithy/util-buffer-from': 4.2.0 + '@smithy/util-hex-encoding': 4.2.0 + '@smithy/util-utf8': 4.2.0 tslib: 2.8.1 - '@smithy/util-uri-escape@4.0.0': + '@smithy/util-uri-escape@4.2.0': dependencies: tslib: 2.8.1 @@ -8430,15 +9251,19 @@ snapshots: '@smithy/util-buffer-from': 2.2.0 tslib: 2.8.1 - '@smithy/util-utf8@4.0.0': + '@smithy/util-utf8@4.2.0': + dependencies: + '@smithy/util-buffer-from': 4.2.0 + tslib: 2.8.1 + + '@smithy/util-waiter@4.2.8': dependencies: - '@smithy/util-buffer-from': 4.0.0 + '@smithy/abort-controller': 4.2.8 + '@smithy/types': 4.12.0 tslib: 2.8.1 - '@smithy/util-waiter@4.0.7': + '@smithy/uuid@1.1.0': dependencies: - '@smithy/abort-controller': 4.0.5 - '@smithy/types': 4.3.2 tslib: 2.8.1 '@tanstack/react-table@8.21.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': @@ -8447,88 +9272,92 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@tanstack/table-core@8.21.2': {} - '@tanstack/table-core@8.21.3': {} - '@tanstack/vue-table@8.21.2(vue@3.5.13(typescript@5.5.4))': + '@tanstack/vue-table@8.21.3(vue@3.5.13(typescript@4.9.5))': + dependencies: + '@tanstack/table-core': 8.21.3 + vue: 3.5.13(typescript@4.9.5) + + '@tybys/wasm-util@0.10.1': dependencies: - '@tanstack/table-core': 8.21.2 - vue: 3.5.13(typescript@5.5.4) + tslib: 2.8.1 + optional: true '@types/babel__core@7.20.5': dependencies: - '@babel/parser': 7.26.9 - '@babel/types': 7.26.9 + '@babel/parser': 7.27.0 + '@babel/types': 7.27.0 '@types/babel__generator': 7.6.8 '@types/babel__template': 7.4.4 '@types/babel__traverse': 7.20.6 '@types/babel__generator@7.6.8': dependencies: - '@babel/types': 7.26.9 + '@babel/types': 7.27.0 '@types/babel__template@7.4.4': dependencies: - '@babel/parser': 7.26.9 - '@babel/types': 7.26.9 + '@babel/parser': 7.27.0 + '@babel/types': 7.27.0 '@types/babel__traverse@7.20.6': dependencies: - '@babel/types': 7.26.9 + '@babel/types': 7.27.0 '@types/busboy@1.5.4': dependencies: - '@types/node': 22.13.5 + '@types/node': 24.10.0 + + '@types/chai@5.2.3': + dependencies: + '@types/deep-eql': 4.0.2 + assertion-error: 2.0.1 '@types/conventional-commits-parser@5.0.0': dependencies: - '@types/node': 22.13.5 + '@types/node': 24.10.0 - '@types/estree@1.0.5': {} + '@types/deep-eql@4.0.2': {} '@types/estree@1.0.6': {} + '@types/estree@1.0.8': {} + '@types/glob@7.2.0': dependencies: '@types/minimatch': 5.1.2 - '@types/node': 22.13.5 + '@types/node': 24.10.0 '@types/humps@2.0.6': {} - '@types/jsdom@21.1.6': + '@types/jsdom@21.1.7': dependencies: - '@types/node': 22.4.0 + '@types/node': 24.10.0 '@types/tough-cookie': 4.0.5 parse5: 7.2.1 + '@types/json-schema@7.0.15': {} + '@types/json5@0.0.29': {} '@types/minimatch@5.1.2': {} '@types/minimist@1.2.5': {} - '@types/node@20.12.2': - dependencies: - undici-types: 5.26.5 - - '@types/node@20.14.14': - dependencies: - undici-types: 5.26.5 - - '@types/node@22.13.5': - dependencies: - undici-types: 6.20.0 - '@types/node@22.4.0': dependencies: undici-types: 6.19.8 + '@types/node@24.10.0': + dependencies: + undici-types: 7.16.0 + '@types/normalize-package-data@2.4.4': {} '@types/pg@8.11.10': dependencies: - '@types/node': 22.4.0 + '@types/node': 24.10.0 pg-protocol: 1.7.0 pg-types: 4.0.2 @@ -8536,9 +9365,9 @@ snapshots: '@types/react-transition-group@4.4.11': dependencies: - '@types/react': 18.3.3 + '@types/react': 18.3.4 - '@types/react@18.3.3': + '@types/react@18.3.4': dependencies: '@types/prop-types': 15.7.14 csstype: 3.1.3 @@ -8549,278 +9378,370 @@ snapshots: '@types/web-bluetooth@0.0.20': {} - '@typescript-eslint/eslint-plugin@8.14.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.4.5))(eslint@8.57.1)(typescript@5.4.5)': + '@typescript-eslint/eslint-plugin@8.54.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5))(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5)': dependencies: - '@eslint-community/regexpp': 4.11.0 - '@typescript-eslint/parser': 8.14.0(eslint@8.57.1)(typescript@5.4.5) - '@typescript-eslint/scope-manager': 8.14.0 - '@typescript-eslint/type-utils': 8.14.0(eslint@8.57.1)(typescript@5.4.5) - '@typescript-eslint/utils': 8.14.0(eslint@8.57.1)(typescript@5.4.5) - '@typescript-eslint/visitor-keys': 8.14.0 - eslint: 8.57.1 - graphemer: 1.4.0 - ignore: 5.3.1 + '@eslint-community/regexpp': 4.12.2 + '@typescript-eslint/parser': 8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5) + '@typescript-eslint/scope-manager': 8.54.0 + '@typescript-eslint/type-utils': 8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5) + '@typescript-eslint/utils': 8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5) + '@typescript-eslint/visitor-keys': 8.54.0 + eslint: 9.39.2(jiti@1.21.6) + ignore: 7.0.5 natural-compare: 1.4.0 - ts-api-utils: 1.4.3(typescript@5.4.5) - optionalDependencies: - typescript: 5.4.5 + ts-api-utils: 2.4.0(typescript@4.9.5) + typescript: 4.9.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@8.14.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4)': + '@typescript-eslint/eslint-plugin@8.54.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3))(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3)': dependencies: - '@eslint-community/regexpp': 4.11.0 - '@typescript-eslint/parser': 8.14.0(eslint@8.57.1)(typescript@5.5.4) - '@typescript-eslint/scope-manager': 8.14.0 - '@typescript-eslint/type-utils': 8.14.0(eslint@8.57.1)(typescript@5.5.4) - '@typescript-eslint/utils': 8.14.0(eslint@8.57.1)(typescript@5.5.4) - '@typescript-eslint/visitor-keys': 8.14.0 - eslint: 8.57.1 - graphemer: 1.4.0 - ignore: 5.3.1 + '@eslint-community/regexpp': 4.12.2 + '@typescript-eslint/parser': 8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3) + '@typescript-eslint/scope-manager': 8.54.0 + '@typescript-eslint/type-utils': 8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3) + '@typescript-eslint/utils': 8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3) + '@typescript-eslint/visitor-keys': 8.54.0 + eslint: 9.39.2(jiti@1.21.6) + ignore: 7.0.5 natural-compare: 1.4.0 - ts-api-utils: 1.4.3(typescript@5.5.4) - optionalDependencies: - typescript: 5.5.4 + ts-api-utils: 2.4.0(typescript@5.7.3) + typescript: 5.7.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@8.24.1(@typescript-eslint/parser@8.24.1(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4)': + '@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5)': dependencies: - '@eslint-community/regexpp': 4.11.0 - '@typescript-eslint/parser': 8.24.1(eslint@8.57.1)(typescript@5.5.4) - '@typescript-eslint/scope-manager': 8.24.1 - '@typescript-eslint/type-utils': 8.24.1(eslint@8.57.1)(typescript@5.5.4) - '@typescript-eslint/utils': 8.24.1(eslint@8.57.1)(typescript@5.5.4) - '@typescript-eslint/visitor-keys': 8.24.1 - eslint: 8.57.1 - graphemer: 1.4.0 - ignore: 5.3.1 - natural-compare: 1.4.0 - ts-api-utils: 2.1.0(typescript@5.5.4) - typescript: 5.5.4 + '@typescript-eslint/scope-manager': 8.54.0 + '@typescript-eslint/types': 8.54.0 + '@typescript-eslint/typescript-estree': 8.54.0(typescript@4.9.5) + '@typescript-eslint/visitor-keys': 8.54.0 + debug: 4.4.3 + eslint: 9.39.2(jiti@1.21.6) + typescript: 4.9.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.4.5)': + '@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3)': dependencies: - '@typescript-eslint/scope-manager': 8.14.0 - '@typescript-eslint/types': 8.14.0 - '@typescript-eslint/typescript-estree': 8.14.0(typescript@5.4.5) - '@typescript-eslint/visitor-keys': 8.14.0 - debug: 4.3.6 - eslint: 8.57.1 - optionalDependencies: - typescript: 5.4.5 + '@typescript-eslint/scope-manager': 8.54.0 + '@typescript-eslint/types': 8.54.0 + '@typescript-eslint/typescript-estree': 8.54.0(typescript@5.7.3) + '@typescript-eslint/visitor-keys': 8.54.0 + debug: 4.4.3 + eslint: 9.39.2(jiti@1.21.6) + typescript: 5.7.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.5.4)': + '@typescript-eslint/project-service@8.54.0(typescript@4.9.5)': dependencies: - '@typescript-eslint/scope-manager': 8.14.0 - '@typescript-eslint/types': 8.14.0 - '@typescript-eslint/typescript-estree': 8.14.0(typescript@5.5.4) - '@typescript-eslint/visitor-keys': 8.14.0 - debug: 4.3.6 - eslint: 8.57.1 - optionalDependencies: - typescript: 5.5.4 + '@typescript-eslint/tsconfig-utils': 8.54.0(typescript@4.9.5) + '@typescript-eslint/types': 8.54.0 + debug: 4.4.3 + typescript: 4.9.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.24.1(eslint@8.57.1)(typescript@5.5.4)': + '@typescript-eslint/project-service@8.54.0(typescript@5.7.3)': dependencies: - '@typescript-eslint/scope-manager': 8.24.1 - '@typescript-eslint/types': 8.24.1 - '@typescript-eslint/typescript-estree': 8.24.1(typescript@5.5.4) - '@typescript-eslint/visitor-keys': 8.24.1 - debug: 4.4.0 - eslint: 8.57.1 - typescript: 5.5.4 + '@typescript-eslint/tsconfig-utils': 8.54.0(typescript@5.7.3) + '@typescript-eslint/types': 8.54.0 + debug: 4.4.3 + typescript: 5.7.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@8.14.0': - dependencies: - '@typescript-eslint/types': 8.14.0 - '@typescript-eslint/visitor-keys': 8.14.0 - - '@typescript-eslint/scope-manager@8.24.1': - dependencies: - '@typescript-eslint/types': 8.24.1 - '@typescript-eslint/visitor-keys': 8.24.1 - - '@typescript-eslint/type-utils@8.14.0(eslint@8.57.1)(typescript@5.4.5)': + '@typescript-eslint/project-service@8.55.0(typescript@4.9.5)': dependencies: - '@typescript-eslint/typescript-estree': 8.14.0(typescript@5.4.5) - '@typescript-eslint/utils': 8.14.0(eslint@8.57.1)(typescript@5.4.5) - debug: 4.4.0 - ts-api-utils: 1.4.3(typescript@5.4.5) - optionalDependencies: - typescript: 5.4.5 + '@typescript-eslint/tsconfig-utils': 8.55.0(typescript@4.9.5) + '@typescript-eslint/types': 8.55.0 + debug: 4.4.3 + typescript: 4.9.5 transitivePeerDependencies: - - eslint - supports-color - '@typescript-eslint/type-utils@8.14.0(eslint@8.57.1)(typescript@5.5.4)': + '@typescript-eslint/project-service@8.55.0(typescript@5.7.3)': dependencies: - '@typescript-eslint/typescript-estree': 8.14.0(typescript@5.5.4) - '@typescript-eslint/utils': 8.14.0(eslint@8.57.1)(typescript@5.5.4) - debug: 4.4.0 - ts-api-utils: 1.4.3(typescript@5.5.4) - optionalDependencies: - typescript: 5.5.4 + '@typescript-eslint/tsconfig-utils': 8.55.0(typescript@5.7.3) + '@typescript-eslint/types': 8.55.0 + debug: 4.4.3 + typescript: 5.7.3 transitivePeerDependencies: - - eslint - supports-color - '@typescript-eslint/type-utils@8.24.1(eslint@8.57.1)(typescript@5.5.4)': + '@typescript-eslint/scope-manager@8.54.0': dependencies: - '@typescript-eslint/typescript-estree': 8.24.1(typescript@5.5.4) - '@typescript-eslint/utils': 8.24.1(eslint@8.57.1)(typescript@5.5.4) - debug: 4.4.0 - eslint: 8.57.1 - ts-api-utils: 2.1.0(typescript@5.5.4) - typescript: 5.5.4 - transitivePeerDependencies: - - supports-color + '@typescript-eslint/types': 8.54.0 + '@typescript-eslint/visitor-keys': 8.54.0 - '@typescript-eslint/types@8.14.0': {} + '@typescript-eslint/scope-manager@8.55.0': + dependencies: + '@typescript-eslint/types': 8.55.0 + '@typescript-eslint/visitor-keys': 8.55.0 - '@typescript-eslint/types@8.24.1': {} + '@typescript-eslint/tsconfig-utils@8.54.0(typescript@4.9.5)': + dependencies: + typescript: 4.9.5 - '@typescript-eslint/typescript-estree@8.14.0(typescript@5.4.5)': + '@typescript-eslint/tsconfig-utils@8.54.0(typescript@5.7.3)': dependencies: - '@typescript-eslint/types': 8.14.0 - '@typescript-eslint/visitor-keys': 8.14.0 - debug: 4.3.6 - fast-glob: 3.3.2 - is-glob: 4.0.3 - minimatch: 9.0.5 - semver: 7.6.3 - ts-api-utils: 1.4.3(typescript@5.4.5) - optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 + + '@typescript-eslint/tsconfig-utils@8.55.0(typescript@4.9.5)': + dependencies: + typescript: 4.9.5 + + '@typescript-eslint/tsconfig-utils@8.55.0(typescript@5.7.3)': + dependencies: + typescript: 5.7.3 + + '@typescript-eslint/type-utils@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5)': + dependencies: + '@typescript-eslint/types': 8.54.0 + '@typescript-eslint/typescript-estree': 8.54.0(typescript@4.9.5) + '@typescript-eslint/utils': 8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5) + debug: 4.4.3 + eslint: 9.39.2(jiti@1.21.6) + ts-api-utils: 2.4.0(typescript@4.9.5) + typescript: 4.9.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@8.14.0(typescript@5.5.4)': + '@typescript-eslint/type-utils@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3)': dependencies: - '@typescript-eslint/types': 8.14.0 - '@typescript-eslint/visitor-keys': 8.14.0 - debug: 4.3.6 - fast-glob: 3.3.2 - is-glob: 4.0.3 - minimatch: 9.0.5 - semver: 7.6.3 - ts-api-utils: 1.4.3(typescript@5.5.4) - optionalDependencies: - typescript: 5.5.4 + '@typescript-eslint/types': 8.54.0 + '@typescript-eslint/typescript-estree': 8.54.0(typescript@5.7.3) + '@typescript-eslint/utils': 8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3) + debug: 4.4.3 + eslint: 9.39.2(jiti@1.21.6) + ts-api-utils: 2.4.0(typescript@5.7.3) + typescript: 5.7.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@8.24.1(typescript@5.5.4)': + '@typescript-eslint/types@8.54.0': {} + + '@typescript-eslint/types@8.55.0': {} + + '@typescript-eslint/typescript-estree@8.54.0(typescript@4.9.5)': dependencies: - '@typescript-eslint/types': 8.24.1 - '@typescript-eslint/visitor-keys': 8.24.1 - debug: 4.4.0 - fast-glob: 3.3.2 - is-glob: 4.0.3 + '@typescript-eslint/project-service': 8.54.0(typescript@4.9.5) + '@typescript-eslint/tsconfig-utils': 8.54.0(typescript@4.9.5) + '@typescript-eslint/types': 8.54.0 + '@typescript-eslint/visitor-keys': 8.54.0 + debug: 4.4.3 minimatch: 9.0.5 - semver: 7.6.3 - ts-api-utils: 2.1.0(typescript@5.5.4) - typescript: 5.5.4 + semver: 7.7.4 + tinyglobby: 0.2.15 + ts-api-utils: 2.4.0(typescript@4.9.5) + typescript: 4.9.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.14.0(eslint@8.57.1)(typescript@5.4.5)': + '@typescript-eslint/typescript-estree@8.54.0(typescript@5.7.3)': dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1) - '@typescript-eslint/scope-manager': 8.14.0 - '@typescript-eslint/types': 8.14.0 - '@typescript-eslint/typescript-estree': 8.14.0(typescript@5.4.5) - eslint: 8.57.1 + '@typescript-eslint/project-service': 8.54.0(typescript@5.7.3) + '@typescript-eslint/tsconfig-utils': 8.54.0(typescript@5.7.3) + '@typescript-eslint/types': 8.54.0 + '@typescript-eslint/visitor-keys': 8.54.0 + debug: 4.4.3 + minimatch: 9.0.5 + semver: 7.7.4 + tinyglobby: 0.2.15 + ts-api-utils: 2.4.0(typescript@5.7.3) + typescript: 5.7.3 transitivePeerDependencies: - supports-color - - typescript - '@typescript-eslint/utils@8.14.0(eslint@8.57.1)(typescript@5.5.4)': + '@typescript-eslint/typescript-estree@8.55.0(typescript@4.9.5)': dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1) - '@typescript-eslint/scope-manager': 8.14.0 - '@typescript-eslint/types': 8.14.0 - '@typescript-eslint/typescript-estree': 8.14.0(typescript@5.5.4) - eslint: 8.57.1 + '@typescript-eslint/project-service': 8.55.0(typescript@4.9.5) + '@typescript-eslint/tsconfig-utils': 8.55.0(typescript@4.9.5) + '@typescript-eslint/types': 8.55.0 + '@typescript-eslint/visitor-keys': 8.55.0 + debug: 4.4.3 + minimatch: 9.0.5 + semver: 7.7.4 + tinyglobby: 0.2.15 + ts-api-utils: 2.4.0(typescript@4.9.5) + typescript: 4.9.5 transitivePeerDependencies: - supports-color - - typescript - '@typescript-eslint/utils@8.24.1(eslint@8.57.1)(typescript@5.5.4)': + '@typescript-eslint/typescript-estree@8.55.0(typescript@5.7.3)': dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1) - '@typescript-eslint/scope-manager': 8.24.1 - '@typescript-eslint/types': 8.24.1 - '@typescript-eslint/typescript-estree': 8.24.1(typescript@5.5.4) - eslint: 8.57.1 - typescript: 5.5.4 + '@typescript-eslint/project-service': 8.55.0(typescript@5.7.3) + '@typescript-eslint/tsconfig-utils': 8.55.0(typescript@5.7.3) + '@typescript-eslint/types': 8.55.0 + '@typescript-eslint/visitor-keys': 8.55.0 + debug: 4.4.3 + minimatch: 9.0.5 + semver: 7.7.4 + tinyglobby: 0.2.15 + ts-api-utils: 2.4.0(typescript@5.7.3) + typescript: 5.7.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/visitor-keys@8.14.0': - dependencies: - '@typescript-eslint/types': 8.14.0 - eslint-visitor-keys: 3.4.3 - - '@typescript-eslint/visitor-keys@8.24.1': - dependencies: - '@typescript-eslint/types': 8.24.1 - eslint-visitor-keys: 4.2.0 - - '@ungap/structured-clone@1.2.0': {} - - '@vee-validate/i18n@4.15.0': {} - - '@vee-validate/rules@4.15.0(vue@3.5.13(typescript@5.5.4))': + '@typescript-eslint/utils@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5)': dependencies: - vee-validate: 4.15.0(vue@3.5.13(typescript@5.5.4)) + '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@1.21.6)) + '@typescript-eslint/scope-manager': 8.54.0 + '@typescript-eslint/types': 8.54.0 + '@typescript-eslint/typescript-estree': 8.54.0(typescript@4.9.5) + eslint: 9.39.2(jiti@1.21.6) + typescript: 4.9.5 transitivePeerDependencies: - - vue + - supports-color - '@vee-validate/zod@4.15.0(vue@3.5.13(typescript@5.5.4))(zod@3.24.2)': + '@typescript-eslint/utils@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3)': dependencies: - type-fest: 4.40.0 - vee-validate: 4.15.0(vue@3.5.13(typescript@5.5.4)) - zod: 3.24.2 + '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@1.21.6)) + '@typescript-eslint/scope-manager': 8.54.0 + '@typescript-eslint/types': 8.54.0 + '@typescript-eslint/typescript-estree': 8.54.0(typescript@5.7.3) + eslint: 9.39.2(jiti@1.21.6) + typescript: 5.7.3 transitivePeerDependencies: - - vue + - supports-color - '@vitejs/plugin-react@4.3.4(vite@6.1.1(@types/node@20.14.14)(jiti@1.21.6))': + '@typescript-eslint/utils@8.55.0(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5)': dependencies: - '@babel/core': 7.26.9 - '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.9) - '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.9) - '@types/babel__core': 7.20.5 - react-refresh: 0.14.2 - vite: 6.1.1(@types/node@20.14.14)(jiti@1.21.6) + '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@1.21.6)) + '@typescript-eslint/scope-manager': 8.55.0 + '@typescript-eslint/types': 8.55.0 + '@typescript-eslint/typescript-estree': 8.55.0(typescript@4.9.5) + eslint: 9.39.2(jiti@1.21.6) + typescript: 4.9.5 transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue-jsx@4.1.1(vite@6.1.1(@types/node@22.13.5)(jiti@1.21.6))(vue@3.5.13(typescript@5.5.4))': + '@typescript-eslint/utils@8.55.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3)': dependencies: - '@babel/core': 7.26.9 - '@babel/plugin-transform-typescript': 7.27.0(@babel/core@7.26.9) - '@vue/babel-plugin-jsx': 1.4.0(@babel/core@7.26.9) - vite: 6.1.1(@types/node@22.13.5)(jiti@1.21.6) - vue: 3.5.13(typescript@5.5.4) + '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@1.21.6)) + '@typescript-eslint/scope-manager': 8.55.0 + '@typescript-eslint/types': 8.55.0 + '@typescript-eslint/typescript-estree': 8.55.0(typescript@5.7.3) + eslint: 9.39.2(jiti@1.21.6) + typescript: 5.7.3 transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue@5.2.1(vite@6.1.1(@types/node@22.13.5)(jiti@1.21.6))(vue@3.5.13(typescript@5.5.4))': + '@typescript-eslint/visitor-keys@8.54.0': dependencies: - vite: 6.1.1(@types/node@22.13.5)(jiti@1.21.6) - vue: 3.5.13(typescript@5.5.4) + '@typescript-eslint/types': 8.54.0 + eslint-visitor-keys: 4.2.1 - '@vitest/coverage-istanbul@3.0.5(vitest@3.0.5(@types/node@20.12.2)(jiti@1.21.6)(jsdom@24.0.0))': + '@typescript-eslint/visitor-keys@8.55.0': + dependencies: + '@typescript-eslint/types': 8.55.0 + eslint-visitor-keys: 4.2.1 + + '@unrs/resolver-binding-android-arm-eabi@1.11.1': + optional: true + + '@unrs/resolver-binding-android-arm64@1.11.1': + optional: true + + '@unrs/resolver-binding-darwin-arm64@1.11.1': + optional: true + + '@unrs/resolver-binding-darwin-x64@1.11.1': + optional: true + + '@unrs/resolver-binding-freebsd-x64@1.11.1': + optional: true + + '@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1': + optional: true + + '@unrs/resolver-binding-linux-arm-musleabihf@1.11.1': + optional: true + + '@unrs/resolver-binding-linux-arm64-gnu@1.11.1': + optional: true + + '@unrs/resolver-binding-linux-arm64-musl@1.11.1': + optional: true + + '@unrs/resolver-binding-linux-ppc64-gnu@1.11.1': + optional: true + + '@unrs/resolver-binding-linux-riscv64-gnu@1.11.1': + optional: true + + '@unrs/resolver-binding-linux-riscv64-musl@1.11.1': + optional: true + + '@unrs/resolver-binding-linux-s390x-gnu@1.11.1': + optional: true + + '@unrs/resolver-binding-linux-x64-gnu@1.11.1': + optional: true + + '@unrs/resolver-binding-linux-x64-musl@1.11.1': + optional: true + + '@unrs/resolver-binding-wasm32-wasi@1.11.1': + dependencies: + '@napi-rs/wasm-runtime': 0.2.12 + optional: true + + '@unrs/resolver-binding-win32-arm64-msvc@1.11.1': + optional: true + + '@unrs/resolver-binding-win32-ia32-msvc@1.11.1': + optional: true + + '@unrs/resolver-binding-win32-x64-msvc@1.11.1': + optional: true + + '@vee-validate/i18n@4.15.0': {} + + '@vee-validate/rules@4.15.0(vue@3.5.13(typescript@4.9.5))': + dependencies: + vee-validate: 4.15.0(vue@3.5.13(typescript@4.9.5)) + transitivePeerDependencies: + - vue + + '@vee-validate/zod@4.15.0(vue@3.5.13(typescript@4.9.5))(zod@3.24.2)': + dependencies: + type-fest: 4.40.0 + vee-validate: 4.15.0(vue@3.5.13(typescript@4.9.5)) + zod: 3.24.2 + transitivePeerDependencies: + - vue + + '@vitejs/plugin-react@4.5.2(vite@6.3.5(@types/node@24.10.0)(jiti@1.21.6))': + dependencies: + '@babel/core': 7.29.0 + '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.29.0) + '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.29.0) + '@rolldown/pluginutils': 1.0.0-beta.11 + '@types/babel__core': 7.20.5 + react-refresh: 0.17.0 + vite: 6.3.5(@types/node@24.10.0)(jiti@1.21.6) + transitivePeerDependencies: + - supports-color + + '@vitejs/plugin-vue-jsx@4.2.0(vite@6.3.5(@types/node@24.10.0)(jiti@1.21.6))(vue@3.5.13(typescript@4.9.5))': + dependencies: + '@babel/core': 7.29.0 + '@babel/plugin-transform-typescript': 7.28.6(@babel/core@7.29.0) + '@rolldown/pluginutils': 1.0.0-rc.4 + '@vue/babel-plugin-jsx': 1.4.0(@babel/core@7.29.0) + vite: 6.3.5(@types/node@24.10.0)(jiti@1.21.6) + vue: 3.5.13(typescript@4.9.5) + transitivePeerDependencies: + - supports-color + + '@vitejs/plugin-vue@5.2.4(vite@6.3.5(@types/node@24.10.0)(jiti@1.21.6))(vue@3.5.13(typescript@4.9.5))': + dependencies: + vite: 6.3.5(@types/node@24.10.0)(jiti@1.21.6) + vue: 3.5.13(typescript@4.9.5) + + '@vitest/coverage-istanbul@3.0.6(vitest@3.2.4(@types/node@24.10.0)(jiti@1.21.6)(jsdom@25.0.1))': dependencies: '@istanbuljs/schema': 0.1.3 debug: 4.4.0 @@ -8832,14 +9753,14 @@ snapshots: magicast: 0.3.5 test-exclude: 7.0.1 tinyrainbow: 2.0.0 - vitest: 3.0.5(@types/node@20.12.2)(jiti@1.21.6)(jsdom@24.0.0) + vitest: 3.2.4(@types/node@24.10.0)(jiti@1.21.6)(jsdom@25.0.1) transitivePeerDependencies: - supports-color - '@vitest/coverage-istanbul@3.0.6(vitest@3.0.6(@types/node@22.13.5)(jiti@1.21.6)(jsdom@24.0.0))': + '@vitest/coverage-istanbul@3.2.4(vitest@3.2.4(@types/node@24.10.0)(jiti@1.21.6)(jsdom@25.0.1))': dependencies: '@istanbuljs/schema': 0.1.3 - debug: 4.4.0 + debug: 4.4.3 istanbul-lib-coverage: 3.2.2 istanbul-lib-instrument: 6.0.3 istanbul-lib-report: 3.0.1 @@ -8848,167 +9769,122 @@ snapshots: magicast: 0.3.5 test-exclude: 7.0.1 tinyrainbow: 2.0.0 - vitest: 3.0.6(@types/node@22.13.5)(jiti@1.21.6)(jsdom@24.0.0) + vitest: 3.2.4(@types/node@24.10.0)(jiti@1.21.6)(jsdom@25.0.1) transitivePeerDependencies: - supports-color - '@vitest/coverage-v8@3.0.6(vitest@3.0.6(@types/node@20.14.14)(jiti@1.21.6)(jsdom@24.0.0))': + '@vitest/coverage-v8@3.2.4(vitest@3.2.4(@types/node@24.10.0)(jiti@1.21.6)(jsdom@25.0.1))': dependencies: '@ampproject/remapping': 2.3.0 '@bcoe/v8-coverage': 1.0.2 - debug: 4.4.0 + ast-v8-to-istanbul: 0.3.11 + debug: 4.4.3 istanbul-lib-coverage: 3.2.2 istanbul-lib-report: 3.0.1 istanbul-lib-source-maps: 5.0.6 istanbul-reports: 3.1.7 magic-string: 0.30.17 magicast: 0.3.5 - std-env: 3.8.0 + std-env: 3.10.0 test-exclude: 7.0.1 tinyrainbow: 2.0.0 - vitest: 3.0.6(@types/node@20.14.14)(jiti@1.21.6)(jsdom@24.0.0) + vitest: 3.2.4(@types/node@24.10.0)(jiti@1.21.6)(jsdom@25.0.1) transitivePeerDependencies: - supports-color - '@vitest/expect@3.0.5': - dependencies: - '@vitest/spy': 3.0.5 - '@vitest/utils': 3.0.5 - chai: 5.2.0 - tinyrainbow: 2.0.0 - - '@vitest/expect@3.0.6': + '@vitest/expect@3.2.4': dependencies: - '@vitest/spy': 3.0.6 - '@vitest/utils': 3.0.6 + '@types/chai': 5.2.3 + '@vitest/spy': 3.2.4 + '@vitest/utils': 3.2.4 chai: 5.2.0 tinyrainbow: 2.0.0 - '@vitest/mocker@3.0.5(vite@6.1.0(@types/node@20.12.2)(jiti@1.21.6))': - dependencies: - '@vitest/spy': 3.0.5 - estree-walker: 3.0.3 - magic-string: 0.30.17 - optionalDependencies: - vite: 6.1.0(@types/node@20.12.2)(jiti@1.21.6) - - '@vitest/mocker@3.0.6(vite@6.1.1(@types/node@20.14.14)(jiti@1.21.6))': - dependencies: - '@vitest/spy': 3.0.6 - estree-walker: 3.0.3 - magic-string: 0.30.17 - optionalDependencies: - vite: 6.1.1(@types/node@20.14.14)(jiti@1.21.6) - - '@vitest/mocker@3.0.6(vite@6.1.1(@types/node@22.13.5)(jiti@1.21.6))': + '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@24.10.0)(jiti@1.21.6))': dependencies: - '@vitest/spy': 3.0.6 + '@vitest/spy': 3.2.4 estree-walker: 3.0.3 magic-string: 0.30.17 optionalDependencies: - vite: 6.1.1(@types/node@22.13.5)(jiti@1.21.6) + vite: 6.3.5(@types/node@24.10.0)(jiti@1.21.6) - '@vitest/pretty-format@3.0.5': + '@vitest/pretty-format@3.2.4': dependencies: tinyrainbow: 2.0.0 - '@vitest/pretty-format@3.0.6': + '@vitest/runner@3.2.4': dependencies: - tinyrainbow: 2.0.0 - - '@vitest/runner@3.0.5': - dependencies: - '@vitest/utils': 3.0.5 - pathe: 2.0.3 - - '@vitest/runner@3.0.6': - dependencies: - '@vitest/utils': 3.0.6 - pathe: 2.0.3 - - '@vitest/snapshot@3.0.5': - dependencies: - '@vitest/pretty-format': 3.0.5 - magic-string: 0.30.17 + '@vitest/utils': 3.2.4 pathe: 2.0.3 + strip-literal: 3.1.0 - '@vitest/snapshot@3.0.6': + '@vitest/snapshot@3.2.4': dependencies: - '@vitest/pretty-format': 3.0.6 + '@vitest/pretty-format': 3.2.4 magic-string: 0.30.17 pathe: 2.0.3 - '@vitest/spy@3.0.5': - dependencies: - tinyspy: 3.0.2 - - '@vitest/spy@3.0.6': + '@vitest/spy@3.2.4': dependencies: - tinyspy: 3.0.2 - - '@vitest/utils@3.0.5': - dependencies: - '@vitest/pretty-format': 3.0.5 - loupe: 3.1.3 - tinyrainbow: 2.0.0 + tinyspy: 4.0.4 - '@vitest/utils@3.0.6': + '@vitest/utils@3.2.4': dependencies: - '@vitest/pretty-format': 3.0.6 - loupe: 3.1.3 + '@vitest/pretty-format': 3.2.4 + loupe: 3.2.1 tinyrainbow: 2.0.0 - '@volar/language-core@1.3.0-alpha.0': + '@volar/language-core@1.0.24': dependencies: - '@volar/source-map': 1.3.0-alpha.0 + '@volar/source-map': 1.0.24 + muggle-string: 0.1.0 - '@volar/source-map@1.3.0-alpha.0': + '@volar/source-map@1.0.24': dependencies: - muggle-string: 0.2.2 + muggle-string: 0.1.0 - '@volar/typescript@1.3.0-alpha.0': + '@volar/typescript@1.0.24': dependencies: - '@volar/language-core': 1.3.0-alpha.0 + '@volar/language-core': 1.0.24 - '@volar/vue-language-core@1.2.0': + '@volar/vue-language-core@1.0.24': dependencies: - '@volar/language-core': 1.3.0-alpha.0 - '@volar/source-map': 1.3.0-alpha.0 + '@volar/language-core': 1.0.24 + '@volar/source-map': 1.0.24 '@vue/compiler-dom': 3.5.13 '@vue/compiler-sfc': 3.5.13 '@vue/reactivity': 3.5.13 '@vue/shared': 3.5.13 - minimatch: 6.2.0 - muggle-string: 0.2.2 + minimatch: 5.1.6 vue-template-compiler: 2.7.16 - '@volar/vue-typescript@1.2.0': + '@volar/vue-typescript@1.0.24': dependencies: - '@volar/typescript': 1.3.0-alpha.0 - '@volar/vue-language-core': 1.2.0 + '@volar/typescript': 1.0.24 + '@volar/vue-language-core': 1.0.24 '@vue/babel-helper-vue-transform-on@1.4.0': {} - '@vue/babel-plugin-jsx@1.4.0(@babel/core@7.26.9)': + '@vue/babel-plugin-jsx@1.4.0(@babel/core@7.29.0)': dependencies: '@babel/helper-module-imports': 7.25.9 '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.9) - '@babel/template': 7.26.9 - '@babel/traverse': 7.26.9 - '@babel/types': 7.26.9 + '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.29.0) + '@babel/template': 7.27.0 + '@babel/traverse': 7.27.0 + '@babel/types': 7.27.0 '@vue/babel-helper-vue-transform-on': 1.4.0 - '@vue/babel-plugin-resolve-type': 1.4.0(@babel/core@7.26.9) + '@vue/babel-plugin-resolve-type': 1.4.0(@babel/core@7.29.0) '@vue/shared': 3.5.13 optionalDependencies: - '@babel/core': 7.26.9 + '@babel/core': 7.29.0 transitivePeerDependencies: - supports-color - '@vue/babel-plugin-resolve-type@1.4.0(@babel/core@7.26.9)': + '@vue/babel-plugin-resolve-type@1.4.0(@babel/core@7.29.0)': dependencies: '@babel/code-frame': 7.26.2 - '@babel/core': 7.26.9 + '@babel/core': 7.29.0 '@babel/helper-module-imports': 7.25.9 '@babel/helper-plugin-utils': 7.26.5 '@babel/parser': 7.27.0 @@ -9082,11 +9958,11 @@ snapshots: '@vue/shared': 3.5.13 csstype: 3.1.3 - '@vue/server-renderer@3.5.13(vue@3.5.13(typescript@5.5.4))': + '@vue/server-renderer@3.5.13(vue@3.5.13(typescript@4.9.5))': dependencies: '@vue/compiler-ssr': 3.5.13 '@vue/shared': 3.5.13 - vue: 3.5.13(typescript@5.5.4) + vue: 3.5.13(typescript@4.9.5) '@vue/shared@3.5.13': {} @@ -9095,28 +9971,24 @@ snapshots: js-beautify: 1.15.1 vue-component-type-helpers: 2.2.10 - '@vue/tsconfig@0.1.3(@types/node@20.12.2)': - optionalDependencies: - '@types/node': 20.12.2 - - '@vue/tsconfig@0.1.3(@types/node@22.13.5)': + '@vue/tsconfig@0.1.3(@types/node@24.10.0)': optionalDependencies: - '@types/node': 22.13.5 + '@types/node': 24.10.0 - '@vueuse/core@12.7.0(typescript@5.5.4)': + '@vueuse/core@12.7.0(typescript@4.9.5)': dependencies: '@types/web-bluetooth': 0.0.20 '@vueuse/metadata': 12.7.0 - '@vueuse/shared': 12.7.0(typescript@5.5.4) - vue: 3.5.13(typescript@5.5.4) + '@vueuse/shared': 12.7.0(typescript@4.9.5) + vue: 3.5.13(typescript@4.9.5) transitivePeerDependencies: - typescript '@vueuse/metadata@12.7.0': {} - '@vueuse/shared@12.7.0(typescript@5.5.4)': + '@vueuse/shared@12.7.0(typescript@4.9.5)': dependencies: - vue: 3.5.13(typescript@5.5.4) + vue: 3.5.13(typescript@4.9.5) transitivePeerDependencies: - typescript @@ -9137,11 +10009,11 @@ snapshots: abstract-logging@2.0.1: {} - acorn-jsx@5.3.2(acorn@8.14.0): + acorn-jsx@5.3.2(acorn@8.15.0): dependencies: - acorn: 8.14.0 + acorn: 8.15.0 - acorn@8.14.0: {} + acorn@8.15.0: {} add-stream@1.0.0: {} @@ -9205,11 +10077,18 @@ snapshots: argparse@2.0.1: {} + aria-query@5.3.2: {} + array-buffer-byte-length@1.0.1: dependencies: call-bind: 1.0.8 is-array-buffer: 3.0.4 + array-buffer-byte-length@1.0.2: + dependencies: + call-bound: 1.0.4 + is-array-buffer: 3.0.5 + array-ify@1.0.0: {} array-includes@3.1.8: @@ -9221,9 +10100,20 @@ snapshots: get-intrinsic: 1.2.4 is-string: 1.0.7 + array-includes@3.1.9: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-abstract: 1.24.1 + es-object-atoms: 1.1.1 + get-intrinsic: 1.3.0 + is-string: 1.1.1 + math-intrinsics: 1.1.0 + array-union@2.1.0: {} - array.prototype.findlastindex@1.2.5: + array.prototype.findlast@1.2.5: dependencies: call-bind: 1.0.8 define-properties: 1.2.1 @@ -9232,6 +10122,16 @@ snapshots: es-object-atoms: 1.0.0 es-shim-unscopables: 1.0.2 + array.prototype.findlastindex@1.2.6: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-abstract: 1.24.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + es-shim-unscopables: 1.1.0 + array.prototype.flat@1.3.2: dependencies: call-bind: 1.0.8 @@ -9239,6 +10139,13 @@ snapshots: es-abstract: 1.23.5 es-shim-unscopables: 1.0.2 + array.prototype.flat@1.3.3: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.23.5 + es-shim-unscopables: 1.0.2 + array.prototype.flatmap@1.3.2: dependencies: call-bind: 1.0.8 @@ -9246,6 +10153,21 @@ snapshots: es-abstract: 1.23.5 es-shim-unscopables: 1.0.2 + array.prototype.flatmap@1.3.3: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.23.5 + es-shim-unscopables: 1.0.2 + + array.prototype.tosorted@1.1.4: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.23.5 + es-errors: 1.3.0 + es-shim-unscopables: 1.0.2 + arraybuffer.prototype.slice@1.0.3: dependencies: array-buffer-byte-length: 1.0.1 @@ -9257,10 +10179,34 @@ snapshots: is-array-buffer: 3.0.4 is-shared-array-buffer: 1.0.3 + arraybuffer.prototype.slice@1.0.4: + dependencies: + array-buffer-byte-length: 1.0.2 + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.1 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + is-array-buffer: 3.0.5 + arrify@1.0.1: {} + as-table@1.0.55: + dependencies: + printable-characters: 1.0.42 + assertion-error@2.0.1: {} + ast-types-flow@0.0.8: {} + + ast-v8-to-istanbul@0.3.11: + dependencies: + '@jridgewell/trace-mapping': 0.3.31 + estree-walker: 3.0.3 + js-tokens: 10.0.0 + + async-function@1.0.0: {} + async@3.2.5: {} asynckit@0.4.0: {} @@ -9278,24 +10224,30 @@ snapshots: '@fastify/error': 4.1.0 fastq: 1.17.1 + axe-core@4.11.1: {} + axios@0.21.4: dependencies: - follow-redirects: 1.15.6(debug@4.3.6) + follow-redirects: 1.15.6(debug@4.4.0) transitivePeerDependencies: - debug - axios@1.7.9(debug@4.3.6): + axios@1.12.0(debug@4.4.0): dependencies: - follow-redirects: 1.15.6(debug@4.3.6) - form-data: 4.0.0 + follow-redirects: 1.15.6(debug@4.4.0) + form-data: 4.0.5 proxy-from-env: 1.1.0 transitivePeerDependencies: - debug + axobject-query@4.1.0: {} + balanced-match@1.0.2: {} base64-js@1.5.1: {} + baseline-browser-mapping@2.9.19: {} + before-after-hook@2.2.3: {} binary-extensions@2.3.0: {} @@ -9339,6 +10291,14 @@ snapshots: node-releases: 2.0.18 update-browserslist-db: 1.1.1(browserslist@4.24.2) + browserslist@4.28.1: + dependencies: + baseline-browser-mapping: 2.9.19 + caniuse-lite: 1.0.30001769 + electron-to-chromium: 1.5.286 + node-releases: 2.0.27 + update-browserslist-db: 1.2.3(browserslist@4.28.1) + buffer-equal-constant-time@1.0.1: {} buffer@5.6.0: @@ -9351,7 +10311,7 @@ snapshots: base64-js: 1.5.1 ieee754: 1.2.1 - builtin-modules@3.3.0: {} + builtin-modules@5.0.0: {} busboy@1.6.0: dependencies: @@ -9366,6 +10326,11 @@ snapshots: es-errors: 1.3.0 function-bind: 1.1.2 + call-bind-apply-helpers@1.0.2: + dependencies: + es-errors: 1.3.0 + function-bind: 1.1.2 + call-bind@1.0.7: dependencies: es-define-property: 1.0.0 @@ -9381,6 +10346,11 @@ snapshots: get-intrinsic: 1.2.4 set-function-length: 1.2.2 + call-bound@1.0.4: + dependencies: + call-bind-apply-helpers: 1.0.2 + get-intrinsic: 1.3.0 + callsites@3.1.0: {} camel-case@3.0.0: @@ -9391,7 +10361,7 @@ snapshots: camel-case@4.1.2: dependencies: pascal-case: 3.1.2 - tslib: 2.6.3 + tslib: 2.8.1 camelcase-keys@6.2.2: dependencies: @@ -9405,10 +10375,12 @@ snapshots: caniuse-lite@1.0.30001687: {} + caniuse-lite@1.0.30001769: {} + capital-case@1.0.4: dependencies: no-case: 3.0.4 - tslib: 2.6.3 + tslib: 2.8.1 upper-case-first: 2.0.2 chai@5.2.0: @@ -9416,7 +10388,7 @@ snapshots: assertion-error: 2.0.1 check-error: 2.1.1 deep-eql: 5.0.2 - loupe: 3.1.1 + loupe: 3.1.3 pathval: 2.0.0 chalk@2.4.2: @@ -9457,6 +10429,8 @@ snapshots: snake-case: 3.0.4 tslib: 1.14.1 + change-case@5.4.4: {} + chardet@0.7.0: {} check-error@2.1.1: {} @@ -9492,7 +10466,7 @@ snapshots: optionalDependencies: fsevents: 2.3.3 - ci-info@4.1.0: {} + ci-info@4.4.0: {} clean-css@4.2.4: dependencies: @@ -9561,7 +10535,7 @@ snapshots: constant-case@3.0.4: dependencies: no-case: 3.0.4 - tslib: 2.6.3 + tslib: 2.8.1 upper-case: 2.0.2 content-disposition@0.5.4: @@ -9645,9 +10619,9 @@ snapshots: dependencies: is-what: 4.1.16 - core-js-compat@3.39.0: + core-js-compat@3.48.0: dependencies: - browserslist: 4.24.2 + browserslist: 4.28.1 core-util-is@1.0.3: {} @@ -9693,6 +10667,12 @@ snapshots: shebang-command: 2.0.0 which: 2.0.2 + cross-spawn@7.0.6: + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + css-select@5.1.0: dependencies: boolbase: 1.0.0 @@ -9711,10 +10691,14 @@ snapshots: csstype@3.1.3: {} + damerau-levenshtein@1.0.8: {} + dargs@7.0.0: {} dargs@8.1.0: {} + data-uri-to-buffer@2.0.2: {} + data-urls@5.0.0: dependencies: whatwg-mimetype: 4.0.0 @@ -9726,18 +10710,36 @@ snapshots: es-errors: 1.3.0 is-data-view: 1.0.1 + data-view-buffer@1.0.2: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-data-view: 1.0.2 + data-view-byte-length@1.0.1: dependencies: call-bind: 1.0.8 es-errors: 1.3.0 is-data-view: 1.0.1 + data-view-byte-length@1.0.2: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-data-view: 1.0.2 + data-view-byte-offset@1.0.0: dependencies: call-bind: 1.0.8 es-errors: 1.3.0 is-data-view: 1.0.1 + data-view-byte-offset@1.0.1: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-data-view: 1.0.2 + dateformat@3.0.3: {} dayjs@1.11.13: {} @@ -9756,6 +10758,10 @@ snapshots: dependencies: ms: 2.1.3 + debug@4.4.3: + dependencies: + ms: 2.1.3 + decamelize-keys@1.1.1: dependencies: decamelize: 1.2.0 @@ -9803,10 +10809,6 @@ snapshots: dependencies: esutils: 2.0.3 - doctrine@3.0.0: - dependencies: - esutils: 2.0.3 - dom-helpers@5.2.1: dependencies: '@babel/runtime': 7.25.0 @@ -9853,7 +10855,7 @@ snapshots: dot-case@3.0.4: dependencies: no-case: 3.0.4 - tslib: 2.6.3 + tslib: 2.8.1 dot-prop@5.3.0: dependencies: @@ -9863,6 +10865,12 @@ snapshots: dset@3.1.4: {} + dunder-proto@1.0.1: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-errors: 1.3.0 + gopd: 1.2.0 + duplexify@4.1.3: dependencies: end-of-stream: 1.4.4 @@ -9887,6 +10895,8 @@ snapshots: dependencies: jake: 10.9.2 + electron-to-chromium@1.5.286: {} + electron-to-chromium@1.5.6: {} electron-to-chromium@1.5.71: {} @@ -9963,61 +10973,161 @@ snapshots: unbox-primitive: 1.0.2 which-typed-array: 1.1.15 + es-abstract@1.24.1: + dependencies: + array-buffer-byte-length: 1.0.2 + arraybuffer.prototype.slice: 1.0.4 + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.4 + data-view-buffer: 1.0.2 + data-view-byte-length: 1.0.2 + data-view-byte-offset: 1.0.1 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + es-set-tostringtag: 2.1.0 + es-to-primitive: 1.3.0 + function.prototype.name: 1.1.8 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + get-symbol-description: 1.1.0 + globalthis: 1.0.4 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + has-proto: 1.2.0 + has-symbols: 1.1.0 + hasown: 2.0.2 + internal-slot: 1.1.0 + is-array-buffer: 3.0.5 + is-callable: 1.2.7 + is-data-view: 1.0.2 + is-negative-zero: 2.0.3 + is-regex: 1.2.1 + is-set: 2.0.3 + is-shared-array-buffer: 1.0.4 + is-string: 1.1.1 + is-typed-array: 1.1.15 + is-weakref: 1.1.1 + math-intrinsics: 1.1.0 + object-inspect: 1.13.4 + object-keys: 1.1.1 + object.assign: 4.1.7 + own-keys: 1.0.1 + regexp.prototype.flags: 1.5.4 + safe-array-concat: 1.1.3 + safe-push-apply: 1.0.0 + safe-regex-test: 1.1.0 + set-proto: 1.0.0 + stop-iteration-iterator: 1.1.0 + string.prototype.trim: 1.2.10 + string.prototype.trimend: 1.0.9 + string.prototype.trimstart: 1.0.8 + typed-array-buffer: 1.0.3 + typed-array-byte-length: 1.0.3 + typed-array-byte-offset: 1.0.4 + typed-array-length: 1.0.7 + unbox-primitive: 1.1.0 + which-typed-array: 1.1.20 + es-define-property@1.0.0: dependencies: get-intrinsic: 1.2.4 + es-define-property@1.0.1: {} + es-errors@1.3.0: {} - es-module-lexer@1.6.0: {} + es-iterator-helpers@1.2.2: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-abstract: 1.24.1 + es-errors: 1.3.0 + es-set-tostringtag: 2.1.0 + function-bind: 1.1.2 + get-intrinsic: 1.3.0 + globalthis: 1.0.4 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + has-proto: 1.2.0 + has-symbols: 1.1.0 + internal-slot: 1.1.0 + iterator.prototype: 1.1.5 + safe-array-concat: 1.1.3 + + es-module-lexer@1.7.0: {} es-object-atoms@1.0.0: dependencies: es-errors: 1.3.0 + es-object-atoms@1.1.1: + dependencies: + es-errors: 1.3.0 + es-set-tostringtag@2.0.3: dependencies: get-intrinsic: 1.2.4 has-tostringtag: 1.0.2 hasown: 2.0.2 + es-set-tostringtag@2.1.0: + dependencies: + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + has-tostringtag: 1.0.2 + hasown: 2.0.2 + es-shim-unscopables@1.0.2: dependencies: hasown: 2.0.2 + es-shim-unscopables@1.1.0: + dependencies: + hasown: 2.0.2 + es-to-primitive@1.2.1: dependencies: is-callable: 1.2.7 is-date-object: 1.0.5 is-symbol: 1.0.4 - esbuild@0.24.2: + es-to-primitive@1.3.0: + dependencies: + is-callable: 1.2.7 + is-date-object: 1.0.5 + is-symbol: 1.0.4 + + esbuild@0.25.12: optionalDependencies: - '@esbuild/aix-ppc64': 0.24.2 - '@esbuild/android-arm': 0.24.2 - '@esbuild/android-arm64': 0.24.2 - '@esbuild/android-x64': 0.24.2 - '@esbuild/darwin-arm64': 0.24.2 - '@esbuild/darwin-x64': 0.24.2 - '@esbuild/freebsd-arm64': 0.24.2 - '@esbuild/freebsd-x64': 0.24.2 - '@esbuild/linux-arm': 0.24.2 - '@esbuild/linux-arm64': 0.24.2 - '@esbuild/linux-ia32': 0.24.2 - '@esbuild/linux-loong64': 0.24.2 - '@esbuild/linux-mips64el': 0.24.2 - '@esbuild/linux-ppc64': 0.24.2 - '@esbuild/linux-riscv64': 0.24.2 - '@esbuild/linux-s390x': 0.24.2 - '@esbuild/linux-x64': 0.24.2 - '@esbuild/netbsd-arm64': 0.24.2 - '@esbuild/netbsd-x64': 0.24.2 - '@esbuild/openbsd-arm64': 0.24.2 - '@esbuild/openbsd-x64': 0.24.2 - '@esbuild/sunos-x64': 0.24.2 - '@esbuild/win32-arm64': 0.24.2 - '@esbuild/win32-ia32': 0.24.2 - '@esbuild/win32-x64': 0.24.2 + '@esbuild/aix-ppc64': 0.25.12 + '@esbuild/android-arm': 0.25.12 + '@esbuild/android-arm64': 0.25.12 + '@esbuild/android-x64': 0.25.12 + '@esbuild/darwin-arm64': 0.25.12 + '@esbuild/darwin-x64': 0.25.12 + '@esbuild/freebsd-arm64': 0.25.12 + '@esbuild/freebsd-x64': 0.25.12 + '@esbuild/linux-arm': 0.25.12 + '@esbuild/linux-arm64': 0.25.12 + '@esbuild/linux-ia32': 0.25.12 + '@esbuild/linux-loong64': 0.25.12 + '@esbuild/linux-mips64el': 0.25.12 + '@esbuild/linux-ppc64': 0.25.12 + '@esbuild/linux-riscv64': 0.25.12 + '@esbuild/linux-s390x': 0.25.12 + '@esbuild/linux-x64': 0.25.12 + '@esbuild/netbsd-arm64': 0.25.12 + '@esbuild/netbsd-x64': 0.25.12 + '@esbuild/openbsd-arm64': 0.25.12 + '@esbuild/openbsd-x64': 0.25.12 + '@esbuild/openharmony-arm64': 0.25.12 + '@esbuild/sunos-x64': 0.25.12 + '@esbuild/win32-arm64': 0.25.12 + '@esbuild/win32-ia32': 0.25.12 + '@esbuild/win32-x64': 0.25.12 escalade@3.1.2: {} @@ -10031,13 +11141,25 @@ snapshots: escape-string-regexp@4.0.0: {} - eslint-config-prettier@9.1.0(eslint@8.57.1): + eslint-compat-utils@0.5.1(eslint@9.39.2(jiti@1.21.6)): + dependencies: + eslint: 9.39.2(jiti@1.21.6) + semver: 7.6.3 + + eslint-config-prettier@10.1.8(eslint@9.39.2(jiti@1.21.6)): dependencies: - eslint: 8.57.1 + eslint: 9.39.2(jiti@1.21.6) - eslint-import-resolver-alias@1.1.2(eslint-plugin-import@2.31.0): + eslint-import-context@0.1.9(unrs-resolver@1.11.1): dependencies: - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) + get-tsconfig: 4.13.6 + stable-hash-x: 0.2.0 + optionalDependencies: + unrs-resolver: 1.11.1 + + eslint-import-resolver-alias@1.1.2(eslint-plugin-import@2.32.0): + dependencies: + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.2(jiti@1.21.6)) eslint-import-resolver-node@0.3.9: dependencies: @@ -10047,324 +11169,315 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.4.5))(eslint-plugin-import@2.31.0)(eslint@8.57.1): + eslint-import-resolver-typescript@4.4.4(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@1.21.6)): dependencies: - '@nolyfill/is-core-module': 1.0.39 - debug: 4.3.6 - enhanced-resolve: 5.17.1 - eslint: 8.57.1 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) - fast-glob: 3.3.2 - get-tsconfig: 4.7.6 - is-bun-module: 1.3.0 - is-glob: 4.0.3 + debug: 4.4.3 + eslint: 9.39.2(jiti@1.21.6) + eslint-import-context: 0.1.9(unrs-resolver@1.11.1) + get-tsconfig: 4.13.6 + is-bun-module: 2.0.0 + stable-hash-x: 0.2.0 + tinyglobby: 0.2.15 + unrs-resolver: 1.11.1 optionalDependencies: - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.2(jiti@1.21.6)) transitivePeerDependencies: - - '@typescript-eslint/parser' - - eslint-import-resolver-node - - eslint-import-resolver-webpack - supports-color - eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.5.4))(eslint-plugin-import@2.31.0)(eslint@8.57.1): - dependencies: - '@nolyfill/is-core-module': 1.0.39 - debug: 4.3.6 - enhanced-resolve: 5.17.1 - eslint: 8.57.1 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) - fast-glob: 3.3.2 - get-tsconfig: 4.7.6 - is-bun-module: 1.3.0 - is-glob: 4.0.3 - optionalDependencies: - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) - transitivePeerDependencies: - - '@typescript-eslint/parser' - - eslint-import-resolver-node - - eslint-import-resolver-webpack - - supports-color - - eslint-import-resolver-typescript@3.8.3(eslint-plugin-import@2.31.0)(eslint@8.57.1): - dependencies: - '@nolyfill/is-core-module': 1.0.39 - debug: 4.4.0 - enhanced-resolve: 5.17.1 - eslint: 8.57.1 - get-tsconfig: 4.10.0 - is-bun-module: 1.3.0 - stable-hash: 0.0.4 - tinyglobby: 0.2.13 - optionalDependencies: - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.24.1(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-typescript@3.8.3)(eslint@8.57.1) - transitivePeerDependencies: - - supports-color - - eslint-module-utils@2.12.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1): - dependencies: - debug: 3.2.7 - optionalDependencies: - '@typescript-eslint/parser': 8.14.0(eslint@8.57.1)(typescript@5.4.5) - eslint: 8.57.1 - eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.4.5))(eslint-plugin-import@2.31.0)(eslint@8.57.1) - transitivePeerDependencies: - - supports-color - - eslint-module-utils@2.12.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1): + eslint-module-utils@2.12.1(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.2(jiti@1.21.6)): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 8.14.0(eslint@8.57.1)(typescript@5.5.4) - eslint: 8.57.1 + '@typescript-eslint/parser': 8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5) + eslint: 9.39.2(jiti@1.21.6) eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.5.4))(eslint-plugin-import@2.31.0)(eslint@8.57.1) + eslint-import-resolver-typescript: 4.4.4(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@1.21.6)) transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.0(@typescript-eslint/parser@8.24.1(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.8.3)(eslint@8.57.1): + eslint-module-utils@2.12.1(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.2(jiti@1.21.6)): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 8.24.1(eslint@8.57.1)(typescript@5.5.4) - eslint: 8.57.1 + '@typescript-eslint/parser': 8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3) + eslint: 9.39.2(jiti@1.21.6) eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.8.3(eslint-plugin-import@2.31.0)(eslint@8.57.1) + eslint-import-resolver-typescript: 4.4.4(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@1.21.6)) transitivePeerDependencies: - supports-color - eslint-plugin-es@4.1.0(eslint@8.57.1): + eslint-plugin-es-x@7.8.0(eslint@9.39.2(jiti@1.21.6)): dependencies: - eslint: 8.57.1 - eslint-utils: 2.1.0 - regexpp: 3.2.0 + '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@1.21.6)) + '@eslint-community/regexpp': 4.11.0 + eslint: 9.39.2(jiti@1.21.6) + eslint-compat-utils: 0.5.1(eslint@9.39.2(jiti@1.21.6)) - eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1): + eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5))(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.2(jiti@1.21.6)): dependencies: '@rtsao/scc': 1.1.0 - array-includes: 3.1.8 - array.prototype.findlastindex: 1.2.5 - array.prototype.flat: 1.3.2 - array.prototype.flatmap: 1.3.2 + array-includes: 3.1.9 + array.prototype.findlastindex: 1.2.6 + array.prototype.flat: 1.3.3 + array.prototype.flatmap: 1.3.3 debug: 3.2.7 doctrine: 2.1.0 - eslint: 8.57.1 + eslint: 9.39.2(jiti@1.21.6) eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) + eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.2(jiti@1.21.6)) hasown: 2.0.2 - is-core-module: 2.15.1 + is-core-module: 2.16.1 is-glob: 4.0.3 minimatch: 3.1.2 object.fromentries: 2.0.8 object.groupby: 1.0.3 - object.values: 1.2.0 + object.values: 1.2.1 semver: 6.3.1 - string.prototype.trimend: 1.0.8 + string.prototype.trimend: 1.0.9 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 8.14.0(eslint@8.57.1)(typescript@5.4.5) + '@typescript-eslint/parser': 8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1): + eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.2(jiti@1.21.6)): dependencies: '@rtsao/scc': 1.1.0 - array-includes: 3.1.8 - array.prototype.findlastindex: 1.2.5 - array.prototype.flat: 1.3.2 - array.prototype.flatmap: 1.3.2 + array-includes: 3.1.9 + array.prototype.findlastindex: 1.2.6 + array.prototype.flat: 1.3.3 + array.prototype.flatmap: 1.3.3 debug: 3.2.7 doctrine: 2.1.0 - eslint: 8.57.1 + eslint: 9.39.2(jiti@1.21.6) eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) + eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.2(jiti@1.21.6)) hasown: 2.0.2 - is-core-module: 2.15.1 + is-core-module: 2.16.1 is-glob: 4.0.3 minimatch: 3.1.2 object.fromentries: 2.0.8 object.groupby: 1.0.3 - object.values: 1.2.0 + object.values: 1.2.1 semver: 6.3.1 - string.prototype.trimend: 1.0.8 + string.prototype.trimend: 1.0.9 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 8.14.0(eslint@8.57.1)(typescript@5.5.4) + '@typescript-eslint/parser': 8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.24.1(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-typescript@3.8.3)(eslint@8.57.1): + eslint-plugin-jsx-a11y@6.10.2(eslint@9.39.2(jiti@1.21.6)): dependencies: - '@rtsao/scc': 1.1.0 + aria-query: 5.3.2 array-includes: 3.1.8 - array.prototype.findlastindex: 1.2.5 - array.prototype.flat: 1.3.2 array.prototype.flatmap: 1.3.2 - debug: 3.2.7 - doctrine: 2.1.0 - eslint: 8.57.1 - eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.24.1(eslint@8.57.1)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.8.3)(eslint@8.57.1) + ast-types-flow: 0.0.8 + axe-core: 4.11.1 + axobject-query: 4.1.0 + damerau-levenshtein: 1.0.8 + emoji-regex: 9.2.2 + eslint: 9.39.2(jiti@1.21.6) hasown: 2.0.2 - is-core-module: 2.15.1 - is-glob: 4.0.3 + jsx-ast-utils: 3.3.5 + language-tags: 1.0.9 minimatch: 3.1.2 object.fromentries: 2.0.8 - object.groupby: 1.0.3 - object.values: 1.2.0 - semver: 6.3.1 - string.prototype.trimend: 1.0.8 - tsconfig-paths: 3.15.0 - optionalDependencies: - '@typescript-eslint/parser': 8.24.1(eslint@8.57.1)(typescript@5.5.4) + safe-regex-test: 1.0.3 + string.prototype.includes: 2.0.1 + + eslint-plugin-n@17.20.0(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5): + dependencies: + '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@1.21.6)) + '@typescript-eslint/utils': 8.55.0(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5) + enhanced-resolve: 5.17.1 + eslint: 9.39.2(jiti@1.21.6) + eslint-plugin-es-x: 7.8.0(eslint@9.39.2(jiti@1.21.6)) + get-tsconfig: 4.10.0 + globals: 15.13.0 + ignore: 5.3.2 + minimatch: 9.0.5 + semver: 7.6.3 + ts-declaration-location: 1.0.7(typescript@4.9.5) transitivePeerDependencies: - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - supports-color + - typescript - eslint-plugin-n@14.0.0(eslint@8.57.1): + eslint-plugin-n@17.20.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3): dependencies: - eslint: 8.57.1 - eslint-plugin-es: 4.1.0(eslint@8.57.1) - eslint-utils: 3.0.0(eslint@8.57.1) - ignore: 5.3.1 - is-core-module: 2.15.0 - minimatch: 3.1.2 - resolve: 1.22.8 - semver: 6.3.1 + '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@1.21.6)) + '@typescript-eslint/utils': 8.55.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3) + enhanced-resolve: 5.17.1 + eslint: 9.39.2(jiti@1.21.6) + eslint-plugin-es-x: 7.8.0(eslint@9.39.2(jiti@1.21.6)) + get-tsconfig: 4.10.0 + globals: 15.13.0 + ignore: 5.3.2 + minimatch: 9.0.5 + semver: 7.6.3 + ts-declaration-location: 1.0.7(typescript@5.7.3) + transitivePeerDependencies: + - supports-color + - typescript - eslint-plugin-prettier@5.2.1(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3): + eslint-plugin-prettier@5.5.5(eslint-config-prettier@10.1.8(eslint@9.39.2(jiti@1.21.6)))(eslint@9.39.2(jiti@1.21.6))(prettier@3.8.1): dependencies: - eslint: 8.57.1 - prettier: 3.3.3 - prettier-linter-helpers: 1.0.0 - synckit: 0.9.2 + eslint: 9.39.2(jiti@1.21.6) + prettier: 3.8.1 + prettier-linter-helpers: 1.0.1 + synckit: 0.11.12 optionalDependencies: - eslint-config-prettier: 9.1.0(eslint@8.57.1) + eslint-config-prettier: 10.1.8(eslint@9.39.2(jiti@1.21.6)) - eslint-plugin-prettier@5.2.3(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.5.2): + eslint-plugin-promise@7.2.1(eslint@9.39.2(jiti@1.21.6)): dependencies: - eslint: 8.57.1 - prettier: 3.5.2 - prettier-linter-helpers: 1.0.0 - synckit: 0.9.2 - optionalDependencies: - eslint-config-prettier: 9.1.0(eslint@8.57.1) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.39.2(jiti@1.21.6)) + eslint: 9.39.2(jiti@1.21.6) - eslint-plugin-promise@7.1.0(eslint@8.57.1): + eslint-plugin-react-hooks@7.0.1(eslint@9.39.2(jiti@1.21.6)): dependencies: - eslint: 8.57.1 + '@babel/core': 7.26.9 + '@babel/parser': 7.27.0 + eslint: 9.39.2(jiti@1.21.6) + hermes-parser: 0.25.1 + zod: 3.25.76 + zod-validation-error: 4.0.2(zod@3.25.76) + transitivePeerDependencies: + - supports-color - eslint-plugin-unicorn@56.0.1(eslint@8.57.1): + eslint-plugin-react@7.37.5(eslint@9.39.2(jiti@1.21.6)): dependencies: - '@babel/helper-validator-identifier': 7.25.9 - '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1) - ci-info: 4.1.0 + array-includes: 3.1.8 + array.prototype.findlast: 1.2.5 + array.prototype.flatmap: 1.3.3 + array.prototype.tosorted: 1.1.4 + doctrine: 2.1.0 + es-iterator-helpers: 1.2.2 + eslint: 9.39.2(jiti@1.21.6) + estraverse: 5.3.0 + hasown: 2.0.2 + jsx-ast-utils: 3.3.5 + minimatch: 3.1.2 + object.entries: 1.1.9 + object.fromentries: 2.0.8 + object.values: 1.2.1 + prop-types: 15.8.1 + resolve: 2.0.0-next.5 + semver: 6.3.1 + string.prototype.matchall: 4.0.12 + string.prototype.repeat: 1.0.0 + + eslint-plugin-unicorn@62.0.0(eslint@9.39.2(jiti@1.21.6)): + dependencies: + '@babel/helper-validator-identifier': 7.28.5 + '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@1.21.6)) + '@eslint/plugin-kit': 0.4.1 + change-case: 5.4.4 + ci-info: 4.4.0 clean-regexp: 1.0.0 - core-js-compat: 3.39.0 - eslint: 8.57.1 + core-js-compat: 3.48.0 + eslint: 9.39.2(jiti@1.21.6) esquery: 1.6.0 - globals: 15.13.0 - indent-string: 4.0.0 - is-builtin-module: 3.2.1 - jsesc: 3.0.2 + find-up-simple: 1.0.1 + globals: 16.5.0 + indent-string: 5.0.0 + is-builtin-module: 5.0.0 + jsesc: 3.1.0 pluralize: 8.0.0 - read-pkg-up: 7.0.1 regexp-tree: 0.1.27 - regjsparser: 0.10.0 + regjsparser: 0.13.0 + semver: 7.7.4 + strip-indent: 4.1.1 + + eslint-plugin-vue@10.7.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5))(eslint@9.39.2(jiti@1.21.6))(vue-eslint-parser@10.2.0(eslint@9.39.2(jiti@1.21.6))): + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@9.39.2(jiti@1.21.6)) + eslint: 9.39.2(jiti@1.21.6) + natural-compare: 1.4.0 + nth-check: 2.1.1 + postcss-selector-parser: 7.1.1 semver: 7.6.3 - strip-indent: 3.0.0 + vue-eslint-parser: 10.2.0(eslint@9.39.2(jiti@1.21.6)) + xml-name-validator: 4.0.0 + optionalDependencies: + '@typescript-eslint/parser': 8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5) - eslint-plugin-vue@9.32.0(eslint@8.57.1): + eslint-plugin-vue@10.7.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3))(eslint@9.39.2(jiti@1.21.6))(vue-eslint-parser@10.2.0(eslint@9.39.2(jiti@1.21.6))): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1) - eslint: 8.57.1 - globals: 13.24.0 + '@eslint-community/eslint-utils': 4.4.0(eslint@9.39.2(jiti@1.21.6)) + eslint: 9.39.2(jiti@1.21.6) natural-compare: 1.4.0 nth-check: 2.1.1 - postcss-selector-parser: 6.1.2 + postcss-selector-parser: 7.1.1 semver: 7.6.3 - vue-eslint-parser: 9.4.3(eslint@8.57.1) + vue-eslint-parser: 10.2.0(eslint@9.39.2(jiti@1.21.6)) xml-name-validator: 4.0.0 - transitivePeerDependencies: - - supports-color + optionalDependencies: + '@typescript-eslint/parser': 8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3) - eslint-scope@7.2.2: + eslint-scope@8.4.0: dependencies: esrecurse: 4.3.0 estraverse: 5.3.0 - eslint-utils@2.1.0: - dependencies: - eslint-visitor-keys: 1.3.0 - - eslint-utils@3.0.0(eslint@8.57.1): - dependencies: - eslint: 8.57.1 - eslint-visitor-keys: 2.1.0 - - eslint-visitor-keys@1.3.0: {} - - eslint-visitor-keys@2.1.0: {} - eslint-visitor-keys@3.4.3: {} eslint-visitor-keys@4.2.0: {} - eslint@8.57.1: + eslint-visitor-keys@4.2.1: {} + + eslint@9.39.2(jiti@1.21.6): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1) - '@eslint-community/regexpp': 4.11.0 - '@eslint/eslintrc': 2.1.4 - '@eslint/js': 8.57.1 - '@humanwhocodes/config-array': 0.13.0 + '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@1.21.6)) + '@eslint-community/regexpp': 4.12.2 + '@eslint/config-array': 0.21.1 + '@eslint/config-helpers': 0.4.2 + '@eslint/core': 0.17.0 + '@eslint/eslintrc': 3.3.3 + '@eslint/js': 9.39.2 + '@eslint/plugin-kit': 0.4.1 + '@humanfs/node': 0.16.7 '@humanwhocodes/module-importer': 1.0.1 - '@nodelib/fs.walk': 1.2.8 - '@ungap/structured-clone': 1.2.0 + '@humanwhocodes/retry': 0.4.3 + '@types/estree': 1.0.8 ajv: 6.12.6 chalk: 4.1.2 - cross-spawn: 7.0.3 - debug: 4.3.6 - doctrine: 3.0.0 + cross-spawn: 7.0.6 + debug: 4.4.3 escape-string-regexp: 4.0.0 - eslint-scope: 7.2.2 - eslint-visitor-keys: 3.4.3 - espree: 9.6.1 + eslint-scope: 8.4.0 + eslint-visitor-keys: 4.2.1 + espree: 10.4.0 esquery: 1.6.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 - file-entry-cache: 6.0.1 + file-entry-cache: 8.0.0 find-up: 5.0.0 glob-parent: 6.0.2 - globals: 13.24.0 - graphemer: 1.4.0 - ignore: 5.3.1 + ignore: 5.3.2 imurmurhash: 0.1.4 is-glob: 4.0.3 - is-path-inside: 3.0.3 - js-yaml: 4.1.0 json-stable-stringify-without-jsonify: 1.0.1 - levn: 0.4.1 lodash.merge: 4.6.2 minimatch: 3.1.2 natural-compare: 1.4.0 optionator: 0.9.4 - strip-ansi: 6.0.1 - text-table: 0.2.0 + optionalDependencies: + jiti: 1.21.6 transitivePeerDependencies: - supports-color esm@3.2.25: {} - espree@9.6.1: + espree@10.4.0: dependencies: - acorn: 8.14.0 - acorn-jsx: 5.3.2(acorn@8.14.0) - eslint-visitor-keys: 3.4.3 + acorn: 8.15.0 + acorn-jsx: 5.3.2(acorn@8.15.0) + eslint-visitor-keys: 4.2.1 esquery@1.6.0: dependencies: @@ -10380,7 +11493,7 @@ snapshots: estree-walker@3.0.3: dependencies: - '@types/estree': 1.0.5 + '@types/estree': 1.0.6 esutils@2.0.3: {} @@ -10410,7 +11523,7 @@ snapshots: signal-exit: 4.1.0 strip-final-newline: 3.0.0 - expect-type@1.1.0: {} + expect-type@1.3.0: {} external-editor@3.1.0: dependencies: @@ -10475,7 +11588,7 @@ snapshots: fastify-plugin@5.0.1: {} - fastify@5.2.1: + fastify@5.6.0: dependencies: '@fastify/ajv-compiler': 4.0.2 '@fastify/error': 4.1.0 @@ -10487,9 +11600,9 @@ snapshots: find-my-way: 9.3.0 light-my-request: 6.6.0 pino: 9.6.0 - process-warning: 4.0.1 + process-warning: 5.0.0 rfdc: 1.4.1 - secure-json-parse: 3.0.2 + secure-json-parse: 4.1.0 semver: 7.6.3 toad-cache: 3.7.0 @@ -10506,13 +11619,17 @@ snapshots: optionalDependencies: picomatch: 4.0.2 + fdir@6.5.0(picomatch@4.0.3): + optionalDependencies: + picomatch: 4.0.3 + figures@3.2.0: dependencies: escape-string-regexp: 1.0.5 - file-entry-cache@6.0.1: + file-entry-cache@8.0.0: dependencies: - flat-cache: 3.2.0 + flat-cache: 4.0.1 file-saver@2.0.5: {} @@ -10534,6 +11651,8 @@ snapshots: fast-querystring: 1.1.2 safe-regex2: 5.0.0 + find-up-simple@1.0.1: {} + find-up@2.1.0: dependencies: locate-path: 2.0.0 @@ -10554,22 +11673,25 @@ snapshots: path-exists: 5.0.0 unicorn-magic: 0.1.0 - flat-cache@3.2.0: + flat-cache@4.0.1: dependencies: flatted: 3.3.1 keyv: 4.5.4 - rimraf: 3.0.2 flatted@3.3.1: {} - follow-redirects@1.15.6(debug@4.3.6): + follow-redirects@1.15.6(debug@4.4.0): optionalDependencies: - debug: 4.3.6 + debug: 4.4.0 for-each@0.3.3: dependencies: is-callable: 1.2.7 + for-each@0.3.5: + dependencies: + is-callable: 1.2.7 + foreground-child@3.3.0: dependencies: cross-spawn: 7.0.3 @@ -10581,6 +11703,16 @@ snapshots: combined-stream: 1.0.8 mime-types: 2.1.35 + form-data@4.0.5: + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + es-set-tostringtag: 2.1.0 + hasown: 2.0.2 + mime-types: 2.1.35 + + forwarded@0.2.0: {} + fs.realpath@1.0.0: {} fsevents@2.3.3: @@ -10595,6 +11727,15 @@ snapshots: es-abstract: 1.23.5 functions-have-names: 1.2.3 + function.prototype.name@1.1.8: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + functions-have-names: 1.2.3 + hasown: 2.0.2 + is-callable: 1.2.7 + functional-red-black-tree@1.0.1: {} functions-have-names@1.2.3: {} @@ -10603,12 +11744,12 @@ snapshots: dependencies: is-property: 1.0.2 + generator-function@2.0.1: {} + gensync@1.0.0-beta.2: {} get-caller-file@2.0.5: {} - get-func-name@2.0.2: {} - get-intrinsic@1.2.4: dependencies: es-errors: 1.3.0 @@ -10617,6 +11758,19 @@ snapshots: has-symbols: 1.0.3 hasown: 2.0.2 + get-intrinsic@1.3.0: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + function-bind: 1.1.2 + get-proto: 1.0.1 + gopd: 1.2.0 + has-symbols: 1.1.0 + hasown: 2.0.2 + math-intrinsics: 1.1.0 + get-pkg-repo@4.2.1: dependencies: '@hutson/parse-repository-url': 3.0.2 @@ -10624,6 +11778,16 @@ snapshots: through2: 2.0.5 yargs: 16.2.0 + get-proto@1.0.1: + dependencies: + dunder-proto: 1.0.1 + es-object-atoms: 1.1.1 + + get-source@2.0.12: + dependencies: + data-uri-to-buffer: 2.0.2 + source-map: 0.6.1 + get-stack-trace@3.1.1: dependencies: stacktrace-parser: 0.1.10 @@ -10640,11 +11804,17 @@ snapshots: es-errors: 1.3.0 get-intrinsic: 1.2.4 + get-symbol-description@1.1.0: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + get-tsconfig@4.10.0: dependencies: resolve-pkg-maps: 1.0.0 - get-tsconfig@4.7.6: + get-tsconfig@4.13.6: dependencies: resolve-pkg-maps: 1.0.0 @@ -10717,12 +11887,14 @@ snapshots: globals@11.12.0: {} - globals@13.24.0: - dependencies: - type-fest: 0.20.2 + globals@14.0.0: {} globals@15.13.0: {} + globals@16.5.0: {} + + globals@17.3.0: {} + globalthis@1.0.4: dependencies: define-properties: 1.2.1 @@ -10747,29 +11919,27 @@ snapshots: graceful-fs@4.2.11: {} - graphemer@1.4.0: {} - - graphql-jit@0.8.7(graphql@16.10.0): + graphql-jit@0.8.7(graphql@16.11.0): dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.10.0) + '@graphql-typed-document-node/core': 3.2.0(graphql@16.11.0) fast-json-stringify: 5.16.1 generate-function: 2.3.1 - graphql: 16.10.0 + graphql: 16.11.0 lodash.memoize: 4.1.2 lodash.merge: 4.6.2 lodash.mergewith: 4.6.2 - graphql-tag@2.12.6(graphql@16.10.0): + graphql-tag@2.12.6(graphql@16.11.0): dependencies: - graphql: 16.10.0 + graphql: 16.11.0 tslib: 2.6.3 - graphql-upload-minimal@1.6.1(graphql@16.10.0): + graphql-upload-minimal@1.6.4(graphql@16.11.0): dependencies: busboy: 1.6.0 - graphql: 16.10.0 + graphql: 16.11.0 - graphql@16.10.0: {} + graphql@16.11.0: {} handlebars@4.7.8: dependencies: @@ -10794,8 +11964,14 @@ snapshots: has-proto@1.0.3: {} + has-proto@1.2.0: + dependencies: + dunder-proto: 1.0.1 + has-symbols@1.0.3: {} + has-symbols@1.1.0: {} + has-tostringtag@1.0.2: dependencies: has-symbols: 1.0.3 @@ -10809,7 +11985,13 @@ snapshots: header-case@2.0.4: dependencies: capital-case: 1.0.4 - tslib: 2.6.3 + tslib: 2.8.1 + + hermes-estree@0.25.1: {} + + hermes-parser@0.25.1: + dependencies: + hermes-estree: 0.25.1 hookable@5.5.3: {} @@ -10919,21 +12101,21 @@ snapshots: i18next-browser-languagedetector@8.0.5: dependencies: - '@babel/runtime': 7.25.0 + '@babel/runtime': 7.28.2 i18next-chained-backend@4.6.2: dependencies: - '@babel/runtime': 7.25.0 + '@babel/runtime': 7.28.2 i18next-resources-to-backend@1.2.1: dependencies: - '@babel/runtime': 7.25.0 + '@babel/runtime': 7.28.2 - i18next@24.2.3(typescript@5.4.5): + i18next@24.2.3(typescript@5.7.3): dependencies: '@babel/runtime': 7.28.2 optionalDependencies: - typescript: 5.4.5 + typescript: 5.7.3 iconv-lite@0.4.24: dependencies: @@ -10947,6 +12129,10 @@ snapshots: ignore@5.3.1: {} + ignore@5.3.2: {} + + ignore@7.0.5: {} + immutable@4.3.7: {} import-fresh@3.3.0: @@ -10960,6 +12146,8 @@ snapshots: indent-string@4.0.0: {} + indent-string@5.0.0: {} + inflation@2.1.0: {} inflight@1.0.6: @@ -10995,6 +12183,12 @@ snapshots: hasown: 2.0.2 side-channel: 1.0.6 + internal-slot@1.1.0: + dependencies: + es-errors: 1.3.0 + hasown: 2.0.2 + side-channel: 1.1.0 + interpret@1.4.0: {} ipaddr.js@2.2.0: {} @@ -11004,12 +12198,30 @@ snapshots: call-bind: 1.0.8 get-intrinsic: 1.2.4 + is-array-buffer@3.0.5: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + is-arrayish@0.2.1: {} + is-async-function@2.1.1: + dependencies: + async-function: 1.0.0 + call-bound: 1.0.4 + get-proto: 1.0.1 + has-tostringtag: 1.0.2 + safe-regex-test: 1.1.0 + is-bigint@1.0.4: dependencies: has-bigints: 1.0.2 + is-bigint@1.1.0: + dependencies: + has-bigints: 1.0.2 + is-binary-path@2.1.0: dependencies: binary-extensions: 2.3.0 @@ -11019,13 +12231,18 @@ snapshots: call-bind: 1.0.8 has-tostringtag: 1.0.2 - is-builtin-module@3.2.1: + is-boolean-object@1.2.2: dependencies: - builtin-modules: 3.3.0 + call-bound: 1.0.4 + has-tostringtag: 1.0.2 - is-bun-module@1.3.0: + is-builtin-module@5.0.0: dependencies: - semver: 7.6.3 + builtin-modules: 5.0.0 + + is-bun-module@2.0.0: + dependencies: + semver: 7.7.4 is-callable@1.2.7: {} @@ -11037,36 +12254,68 @@ snapshots: dependencies: hasown: 2.0.2 + is-core-module@2.16.1: + dependencies: + hasown: 2.0.2 + is-data-view@1.0.1: dependencies: is-typed-array: 1.1.13 + is-data-view@1.0.2: + dependencies: + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + is-typed-array: 1.1.15 + is-date-object@1.0.5: dependencies: has-tostringtag: 1.0.2 + is-date-object@1.1.0: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + is-docker@2.2.1: {} is-extglob@2.1.1: {} + is-finalizationregistry@1.1.1: + dependencies: + call-bound: 1.0.4 + is-fullwidth-code-point@3.0.0: {} + is-generator-function@1.1.2: + dependencies: + call-bound: 1.0.4 + generator-function: 2.0.1 + get-proto: 1.0.1 + has-tostringtag: 1.0.2 + safe-regex-test: 1.1.0 + is-glob@4.0.3: dependencies: is-extglob: 2.1.1 + is-map@2.0.3: {} + is-negative-zero@2.0.3: {} is-number-object@1.0.7: dependencies: has-tostringtag: 1.0.2 + is-number-object@1.1.1: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + is-number@7.0.0: {} is-obj@2.0.0: {} - is-path-inside@3.0.3: {} - is-plain-obj@1.1.0: {} is-plain-object@5.0.0: {} @@ -11080,10 +12329,23 @@ snapshots: call-bind: 1.0.8 has-tostringtag: 1.0.2 + is-regex@1.2.1: + dependencies: + call-bound: 1.0.4 + gopd: 1.2.0 + has-tostringtag: 1.0.2 + hasown: 2.0.2 + + is-set@2.0.3: {} + is-shared-array-buffer@1.0.3: dependencies: call-bind: 1.0.8 + is-shared-array-buffer@1.0.4: + dependencies: + call-bound: 1.0.4 + is-stream@1.1.0: {} is-stream@2.0.1: {} @@ -11094,10 +12356,21 @@ snapshots: dependencies: has-tostringtag: 1.0.2 + is-string@1.1.1: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + is-symbol@1.0.4: dependencies: has-symbols: 1.0.3 + is-symbol@1.1.1: + dependencies: + call-bound: 1.0.4 + has-symbols: 1.1.0 + safe-regex-test: 1.1.0 + is-text-path@1.0.1: dependencies: text-extensions: 1.9.0 @@ -11110,10 +12383,25 @@ snapshots: dependencies: which-typed-array: 1.1.15 + is-typed-array@1.1.15: + dependencies: + which-typed-array: 1.1.20 + + is-weakmap@2.0.2: {} + is-weakref@1.0.2: dependencies: call-bind: 1.0.8 + is-weakref@1.1.1: + dependencies: + call-bound: 1.0.4 + + is-weakset@2.0.4: + dependencies: + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + is-what@4.1.16: {} is-wsl@2.2.0: @@ -11159,6 +12447,15 @@ snapshots: html-escaper: 2.0.2 istanbul-lib-report: 3.0.1 + iterator.prototype@1.1.5: + dependencies: + define-data-property: 1.1.4 + es-object-atoms: 1.0.0 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + has-symbols: 1.1.0 + set-function-name: 2.0.2 + jackspeak@3.4.3: dependencies: '@isaacs/cliui': 8.0.2 @@ -11190,13 +12487,21 @@ snapshots: js-cookie@3.0.5: {} + js-tokens@10.0.0: {} + js-tokens@4.0.0: {} + js-tokens@9.0.1: {} + js-yaml@4.1.0: dependencies: argparse: 2.0.1 - jsdom@24.0.0: + js-yaml@4.1.1: + dependencies: + argparse: 2.0.1 + + jsdom@25.0.1: dependencies: cssstyle: 4.1.0 data-urls: 5.0.0 @@ -11208,10 +12513,10 @@ snapshots: is-potential-custom-element-name: 1.0.1 nwsapi: 2.2.16 parse5: 7.2.1 - rrweb-cssom: 0.6.0 + rrweb-cssom: 0.7.1 saxes: 6.0.0 symbol-tree: 3.2.4 - tough-cookie: 4.1.4 + tough-cookie: 5.1.2 w3c-xmlserializer: 5.0.0 webidl-conversions: 7.0.0 whatwg-encoding: 3.1.1 @@ -11224,12 +12529,12 @@ snapshots: - supports-color - utf-8-validate - jsesc@0.5.0: {} - jsesc@2.5.2: {} jsesc@3.0.2: {} + jsesc@3.1.0: {} + json-buffer@3.0.1: {} json-parse-better-errors@1.0.2: {} @@ -11279,12 +12584,19 @@ snapshots: lodash.isplainobject: 4.0.6 lodash.isstring: 4.0.1 lodash.once: 4.1.1 - ms: 2.1.2 + ms: 2.1.3 semver: 7.6.3 - juice@10.0.1: + jsx-ast-utils@3.3.5: dependencies: - cheerio: 1.0.0-rc.12 + array-includes: 3.1.8 + array.prototype.flat: 1.3.2 + object.assign: 4.1.5 + object.values: 1.2.1 + + juice@10.0.1: + dependencies: + cheerio: 1.0.0-rc.12 commander: 6.2.1 mensch: 0.3.4 slick: 1.12.2 @@ -11309,6 +12621,12 @@ snapshots: kind-of@6.0.3: {} + language-subtag-registry@0.3.23: {} + + language-tags@1.0.9: + dependencies: + language-subtag-registry: 0.3.23 + leac@0.6.0: {} levn@0.4.1: @@ -11392,12 +12710,10 @@ snapshots: dependencies: js-tokens: 4.0.0 - loupe@3.1.1: - dependencies: - get-func-name: 2.0.2 - loupe@3.1.3: {} + loupe@3.2.1: {} + lower-case@1.1.4: {} lower-case@2.0.2: @@ -11440,6 +12756,10 @@ snapshots: map-obj@4.3.0: {} + math-intrinsics@1.1.0: {} + + media-typer@1.1.0: {} + mensch@0.3.4: {} meow@12.1.1: {} @@ -11462,23 +12782,23 @@ snapshots: dependencies: '@fastify/error': 4.1.0 fastify-plugin: 5.0.1 - graphql: 16.10.0 + graphql: 16.11.0 - mercurius@16.1.0(graphql@16.10.0): + mercurius@16.2.0(graphql@16.11.0): dependencies: '@fastify/error': 4.1.0 '@fastify/static': 8.1.1 '@fastify/websocket': 11.0.2 fastify-plugin: 5.0.1 - graphql: 16.10.0 - graphql-jit: 0.8.7(graphql@16.10.0) - mqemitter: 6.0.2 + graphql: 16.11.0 + graphql-jit: 0.8.7(graphql@16.11.0) + mqemitter: 7.1.0 p-map: 4.0.0 quick-lru: 7.0.0 readable-stream: 4.5.2 safe-stable-stringify: 2.4.3 secure-json-parse: 3.0.2 - single-user-cache: 1.0.1 + single-user-cache: 2.1.0 tiny-lru: 11.2.11 ws: 8.18.0 transitivePeerDependencies: @@ -11496,10 +12816,16 @@ snapshots: mime-db@1.52.0: {} + mime-db@1.54.0: {} + mime-types@2.1.35: dependencies: mime-db: 1.52.0 + mime-types@3.0.2: + dependencies: + mime-db: 1.54.0 + mime@2.6.0: {} mime@3.0.0: {} @@ -11522,10 +12848,6 @@ snapshots: dependencies: brace-expansion: 2.0.1 - minimatch@6.2.0: - dependencies: - brace-expansion: 2.0.1 - minimatch@9.0.1: dependencies: brace-expansion: 2.0.1 @@ -11851,7 +13173,7 @@ snapshots: moo@0.5.2: {} - mqemitter@6.0.2: + mqemitter@7.1.0: dependencies: fastparallel: 2.4.1 qlobber: 8.0.1 @@ -11860,14 +13182,18 @@ snapshots: ms@2.1.3: {} - muggle-string@0.2.2: {} + muggle-string@0.1.0: {} mustache@4.2.0: {} mute-stream@0.0.8: {} + nanoid@3.3.11: {} + nanoid@3.3.8: {} + napi-postinstall@0.3.4: {} + natural-compare@1.4.0: {} nearley@2.20.1: @@ -11888,7 +13214,7 @@ snapshots: no-case@3.0.4: dependencies: lower-case: 2.0.2 - tslib: 2.6.3 + tslib: 2.8.1 node-fetch@2.7.0: dependencies: @@ -11896,6 +13222,8 @@ snapshots: node-releases@2.0.18: {} + node-releases@2.0.27: {} + node-xlsx@0.24.0: dependencies: xlsx: https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz @@ -11904,17 +13232,17 @@ snapshots: dependencies: html-to-text: 7.1.1 - nodemailer-mjml@1.6.0(nodemailer@6.10.1): + nodemailer-mjml@1.6.0(nodemailer@7.0.13): dependencies: mjml: 4.15.3 mustache: 4.2.0 - nodemailer: 6.10.1 + nodemailer: 7.0.13 transitivePeerDependencies: - encoding nodemailer@6.10.1: {} - nodemailer@6.9.14: {} + nodemailer@7.0.13: {} nopt@7.2.1: dependencies: @@ -11958,6 +13286,8 @@ snapshots: object-inspect@1.13.3: {} + object-inspect@1.13.4: {} + object-keys@1.1.1: {} object.assign@4.1.5: @@ -11967,6 +13297,22 @@ snapshots: has-symbols: 1.0.3 object-keys: 1.1.1 + object.assign@4.1.7: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 + has-symbols: 1.1.0 + object-keys: 1.1.1 + + object.entries@1.1.9: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 + object.fromentries@2.0.8: dependencies: call-bind: 1.0.8 @@ -11980,9 +13326,10 @@ snapshots: define-properties: 1.2.1 es-abstract: 1.23.5 - object.values@1.2.0: + object.values@1.2.1: dependencies: call-bind: 1.0.8 + call-bound: 1.0.4 define-properties: 1.2.1 es-object-atoms: 1.0.0 @@ -12023,6 +13370,12 @@ snapshots: os-tmpdir@1.0.2: {} + own-keys@1.0.1: + dependencies: + get-intrinsic: 1.3.0 + object-keys: 1.1.1 + safe-push-apply: 1.0.0 + p-finally@1.0.0: {} p-limit@1.3.0: @@ -12074,7 +13427,7 @@ snapshots: param-case@3.0.4: dependencies: dot-case: 3.0.4 - tslib: 2.6.3 + tslib: 2.8.1 parent-module@1.0.1: dependencies: @@ -12113,12 +13466,12 @@ snapshots: pascal-case@3.1.2: dependencies: no-case: 3.0.4 - tslib: 2.6.3 + tslib: 2.8.1 path-case@3.0.4: dependencies: dot-case: 3.0.4 - tslib: 2.6.3 + tslib: 2.8.1 path-exists@3.0.0: {} @@ -12170,13 +13523,13 @@ snapshots: pg-connection-string@2.9.1: {} - pg-cursor@2.12.1(pg@8.13.3): + pg-cursor@2.17.0(pg@8.13.3): dependencies: pg: 8.13.3 pg-int8@1.0.1: {} - pg-mem@3.0.4(slonik@46.1.0(zod@3.23.8)): + pg-mem@3.0.4(slonik@46.8.0(zod@3.23.8)): dependencies: functional-red-black-tree: 1.0.1 immutable: 4.3.7 @@ -12186,7 +13539,7 @@ snapshots: object-hash: 2.2.0 pgsql-ast-parser: 12.0.1 optionalDependencies: - slonik: 46.1.0(zod@3.23.8) + slonik: 46.8.0(zod@3.23.8) pg-numeric@1.0.2: {} @@ -12204,10 +13557,10 @@ snapshots: pg-protocol@1.7.1: {} - pg-query-stream@4.7.1(pg@8.13.3): + pg-query-stream@4.12.0(pg@8.13.3): dependencies: pg: 8.13.3 - pg-cursor: 2.12.1(pg@8.13.3) + pg-cursor: 2.17.0(pg@8.13.3) pg-types@2.2.0: dependencies: @@ -12262,16 +13615,18 @@ snapshots: picomatch@4.0.2: {} + picomatch@4.0.3: {} + pify@2.3.0: {} pify@3.0.0: {} - pinia@3.0.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4)): + pinia@3.0.1(typescript@4.9.5)(vue@3.5.13(typescript@4.9.5)): dependencies: '@vue/devtools-api': 7.7.5 - vue: 3.5.13(typescript@5.5.4) + vue: 3.5.13(typescript@4.9.5) optionalDependencies: - typescript: 5.5.4 + typescript: 4.9.5 pino-abstract-transport@2.0.0: dependencies: @@ -12297,7 +13652,7 @@ snapshots: possible-typed-array-names@1.0.0: {} - postcss-selector-parser@6.1.2: + postcss-selector-parser@7.1.1: dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 @@ -12308,10 +13663,18 @@ snapshots: picocolors: 1.1.1 source-map-js: 1.2.1 + postcss@8.5.6: + dependencies: + nanoid: 3.3.11 + picocolors: 1.1.1 + source-map-js: 1.2.1 + postgres-array@2.0.0: {} postgres-array@3.0.2: {} + postgres-array@3.0.4: {} + postgres-bytea@1.0.0: {} postgres-bytea@3.0.0: @@ -12334,33 +13697,35 @@ snapshots: prelude-ls@1.2.1: {} - prettier-linter-helpers@1.0.0: + prettier-linter-helpers@1.0.1: dependencies: fast-diff: 1.3.0 prettier@2.8.8: {} - prettier@3.3.3: {} - - prettier@3.5.2: {} + prettier@3.8.1: {} pretty-ms@7.0.1: dependencies: parse-ms: 2.1.0 - primereact@9.6.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + primereact@9.6.1(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@types/react-transition-group': 4.4.11 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) optionalDependencies: - '@types/react': 18.3.3 + '@types/react': 18.3.4 + + printable-characters@1.0.42: {} process-nextick-args@2.0.1: {} process-warning@4.0.1: {} + process-warning@5.0.0: {} + process@0.11.10: {} prop-types@15.8.1: @@ -12443,11 +13808,11 @@ snapshots: dependencies: react: 18.3.1 - react-i18next@15.4.1(i18next@24.2.3(typescript@5.4.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + react-i18next@15.4.1(i18next@24.2.3(typescript@5.7.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - '@babel/runtime': 7.25.0 + '@babel/runtime': 7.28.2 html-parse-stringify: 3.0.1 - i18next: 24.2.3(typescript@5.4.5) + i18next: 24.2.3(typescript@5.7.3) react: 18.3.1 optionalDependencies: react-dom: 18.3.1(react@18.3.1) @@ -12462,21 +13827,21 @@ snapshots: react-fast-compare: 3.2.2 warning: 4.0.3 - react-refresh@0.14.2: {} + react-refresh@0.17.0: {} - react-router-dom@6.26.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + react-router-dom@6.28.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - '@remix-run/router': 1.19.1 + '@remix-run/router': 1.21.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-router: 6.26.1(react@18.3.1) + react-router: 6.28.0(react@18.3.1) - react-router@6.26.1(react@18.3.1): + react-router@6.28.0(react@18.3.1): dependencies: - '@remix-run/router': 1.19.1 + '@remix-run/router': 1.21.0 react: 18.3.1 - react-toastify@10.0.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + react-toastify@10.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: clsx: 2.1.1 react: 18.3.1 @@ -12558,6 +13923,17 @@ snapshots: indent-string: 4.0.0 strip-indent: 3.0.0 + reflect.getprototypeof@1.0.10: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + which-builtin-type: 1.2.1 + regenerator-runtime@0.14.1: {} regexp-tree@0.1.27: {} @@ -12569,11 +13945,18 @@ snapshots: es-errors: 1.3.0 set-function-name: 2.0.2 - regexpp@3.2.0: {} + regexp.prototype.flags@1.5.4: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-errors: 1.3.0 + get-proto: 1.0.1 + gopd: 1.2.0 + set-function-name: 2.0.2 - regjsparser@0.10.0: + regjsparser@0.13.0: dependencies: - jsesc: 0.5.0 + jsesc: 3.1.0 relateurl@0.2.7: {} @@ -12595,6 +13978,12 @@ snapshots: path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 + resolve@2.0.0-next.5: + dependencies: + is-core-module: 2.15.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + restore-cursor@3.1.0: dependencies: onetime: 5.1.2 @@ -12608,43 +13997,43 @@ snapshots: rfdc@1.4.1: {} - rimraf@3.0.2: - dependencies: - glob: 7.2.3 - roarr@7.21.1: dependencies: fast-printf: 1.6.9 safe-stable-stringify: 2.4.3 semver-compare: 1.0.0 - rollup@4.34.8: + rollup@4.57.1: dependencies: - '@types/estree': 1.0.6 + '@types/estree': 1.0.8 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.34.8 - '@rollup/rollup-android-arm64': 4.34.8 - '@rollup/rollup-darwin-arm64': 4.34.8 - '@rollup/rollup-darwin-x64': 4.34.8 - '@rollup/rollup-freebsd-arm64': 4.34.8 - '@rollup/rollup-freebsd-x64': 4.34.8 - '@rollup/rollup-linux-arm-gnueabihf': 4.34.8 - '@rollup/rollup-linux-arm-musleabihf': 4.34.8 - '@rollup/rollup-linux-arm64-gnu': 4.34.8 - '@rollup/rollup-linux-arm64-musl': 4.34.8 - '@rollup/rollup-linux-loongarch64-gnu': 4.34.8 - '@rollup/rollup-linux-powerpc64le-gnu': 4.34.8 - '@rollup/rollup-linux-riscv64-gnu': 4.34.8 - '@rollup/rollup-linux-s390x-gnu': 4.34.8 - '@rollup/rollup-linux-x64-gnu': 4.34.8 - '@rollup/rollup-linux-x64-musl': 4.34.8 - '@rollup/rollup-win32-arm64-msvc': 4.34.8 - '@rollup/rollup-win32-ia32-msvc': 4.34.8 - '@rollup/rollup-win32-x64-msvc': 4.34.8 + '@rollup/rollup-android-arm-eabi': 4.57.1 + '@rollup/rollup-android-arm64': 4.57.1 + '@rollup/rollup-darwin-arm64': 4.57.1 + '@rollup/rollup-darwin-x64': 4.57.1 + '@rollup/rollup-freebsd-arm64': 4.57.1 + '@rollup/rollup-freebsd-x64': 4.57.1 + '@rollup/rollup-linux-arm-gnueabihf': 4.57.1 + '@rollup/rollup-linux-arm-musleabihf': 4.57.1 + '@rollup/rollup-linux-arm64-gnu': 4.57.1 + '@rollup/rollup-linux-arm64-musl': 4.57.1 + '@rollup/rollup-linux-loong64-gnu': 4.57.1 + '@rollup/rollup-linux-loong64-musl': 4.57.1 + '@rollup/rollup-linux-ppc64-gnu': 4.57.1 + '@rollup/rollup-linux-ppc64-musl': 4.57.1 + '@rollup/rollup-linux-riscv64-gnu': 4.57.1 + '@rollup/rollup-linux-riscv64-musl': 4.57.1 + '@rollup/rollup-linux-s390x-gnu': 4.57.1 + '@rollup/rollup-linux-x64-gnu': 4.57.1 + '@rollup/rollup-linux-x64-musl': 4.57.1 + '@rollup/rollup-openbsd-x64': 4.57.1 + '@rollup/rollup-openharmony-arm64': 4.57.1 + '@rollup/rollup-win32-arm64-msvc': 4.57.1 + '@rollup/rollup-win32-ia32-msvc': 4.57.1 + '@rollup/rollup-win32-x64-gnu': 4.57.1 + '@rollup/rollup-win32-x64-msvc': 4.57.1 fsevents: 2.3.3 - rrweb-cssom@0.6.0: {} - rrweb-cssom@0.7.1: {} run-async@2.4.1: {} @@ -12664,22 +14053,43 @@ snapshots: has-symbols: 1.0.3 isarray: 2.0.5 + safe-array-concat@1.1.3: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + has-symbols: 1.1.0 + isarray: 2.0.5 + safe-buffer@5.1.2: {} safe-buffer@5.2.1: {} + safe-push-apply@1.0.0: + dependencies: + es-errors: 1.3.0 + isarray: 2.0.5 + safe-regex-test@1.0.3: dependencies: call-bind: 1.0.8 es-errors: 1.3.0 is-regex: 1.1.4 + safe-regex-test@1.1.0: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-regex: 1.2.1 + safe-regex2@5.0.0: dependencies: ret: 0.5.0 safe-stable-stringify@2.4.3: {} + safe-stable-stringify@2.5.0: {} + safer-buffer@2.1.2: {} saxes@6.0.0: @@ -12694,6 +14104,8 @@ snapshots: secure-json-parse@3.0.2: {} + secure-json-parse@4.1.0: {} + selderee@0.11.0: dependencies: parseley: 0.12.1 @@ -12708,10 +14120,12 @@ snapshots: semver@7.6.3: {} + semver@7.7.4: {} + sentence-case@3.0.4: dependencies: no-case: 3.0.4 - tslib: 2.6.3 + tslib: 2.8.1 upper-case-first: 2.0.2 serialize-error@8.1.0: @@ -12740,6 +14154,12 @@ snapshots: functions-have-names: 1.2.3 has-property-descriptors: 1.0.2 + set-proto@1.0.0: + dependencies: + dunder-proto: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + setprototypeof@1.2.0: {} shebang-command@1.2.0: @@ -12800,6 +14220,26 @@ snapshots: - debug - encoding + side-channel-list@1.0.0: + dependencies: + es-errors: 1.3.0 + object-inspect: 1.13.3 + + side-channel-map@1.0.1: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + object-inspect: 1.13.3 + + side-channel-weakmap@1.0.2: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + object-inspect: 1.13.3 + side-channel-map: 1.0.1 + side-channel@1.0.6: dependencies: call-bind: 1.0.7 @@ -12807,13 +14247,21 @@ snapshots: get-intrinsic: 1.2.4 object-inspect: 1.13.2 + side-channel@1.1.0: + dependencies: + es-errors: 1.3.0 + object-inspect: 1.13.3 + side-channel-list: 1.0.0 + side-channel-map: 1.0.1 + side-channel-weakmap: 1.0.2 + siginfo@2.0.0: {} signal-exit@3.0.7: {} signal-exit@4.1.0: {} - single-user-cache@1.0.1: + single-user-cache@2.1.0: dependencies: safe-stable-stringify: 2.4.3 @@ -12821,25 +14269,27 @@ snapshots: slick@1.12.2: {} - slonik-interceptor-query-logging@46.8.0(slonik@46.1.0(zod@3.23.8)): + slonik-interceptor-query-logging@46.8.0(slonik@46.8.0(zod@3.23.8)): dependencies: crack-json: 1.3.0 pretty-ms: 7.0.1 serialize-error: 8.1.0 - slonik: 46.1.0(zod@3.23.8) + slonik: 46.8.0(zod@3.23.8) - slonik@46.1.0(zod@3.23.8): + slonik@46.8.0(zod@3.23.8): dependencies: - '@slonik/driver': 46.2.0(zod@3.23.8) - '@slonik/errors': 46.2.0(zod@3.23.8) - '@slonik/pg-driver': 46.2.0(zod@3.23.8) - '@slonik/sql-tag': 46.2.0(zod@3.23.8) - '@slonik/utilities': 46.2.0(zod@3.23.8) + '@opentelemetry/api': 1.9.0 + '@slonik/driver': 46.8.0(zod@3.23.8) + '@slonik/errors': 46.8.0(zod@3.23.8) + '@slonik/pg-driver': 46.8.0(zod@3.23.8) + '@slonik/sql-tag': 46.8.0(zod@3.23.8) + '@slonik/utilities': 46.8.0(zod@3.23.8) get-stack-trace: 3.1.1 iso8601-duration: 1.3.0 postgres-interval: 4.0.2 roarr: 7.21.1 serialize-error: 8.1.0 + strict-event-emitter-types: 2.0.0 zod: 3.23.8 transitivePeerDependencies: - pg-native @@ -12847,7 +14297,7 @@ snapshots: snake-case@3.0.4: dependencies: dot-case: 3.0.4 - tslib: 2.6.3 + tslib: 2.8.1 sonic-boom@4.2.0: dependencies: @@ -12887,7 +14337,7 @@ snapshots: sql-template-strings@2.2.2: {} - stable-hash@0.0.4: {} + stable-hash-x@0.2.0: {} stackback@0.0.2: {} @@ -12895,9 +14345,19 @@ snapshots: dependencies: type-fest: 0.7.1 + stacktracey@2.1.8: + dependencies: + as-table: 1.0.55 + get-source: 2.0.12 + statuses@2.0.1: {} - std-env@3.8.0: {} + std-env@3.10.0: {} + + stop-iteration-iterator@1.1.0: + dependencies: + es-errors: 1.3.0 + internal-slot: 1.1.0 stream-browserify@3.0.0: dependencies: @@ -12922,6 +14382,43 @@ snapshots: emoji-regex: 9.2.2 strip-ansi: 7.1.0 + string.prototype.includes@2.0.1: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.23.5 + + string.prototype.matchall@4.0.12: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-abstract: 1.24.1 + es-errors: 1.3.0 + es-object-atoms: 1.0.0 + get-intrinsic: 1.3.0 + gopd: 1.2.0 + has-symbols: 1.1.0 + internal-slot: 1.1.0 + regexp.prototype.flags: 1.5.3 + set-function-name: 2.0.2 + side-channel: 1.1.0 + + string.prototype.repeat@1.0.0: + dependencies: + define-properties: 1.2.1 + es-abstract: 1.23.5 + + string.prototype.trim@1.2.10: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-data-property: 1.1.4 + define-properties: 1.2.1 + es-abstract: 1.24.1 + es-object-atoms: 1.1.1 + has-property-descriptors: 1.0.2 + string.prototype.trim@1.2.9: dependencies: call-bind: 1.0.8 @@ -12935,6 +14432,13 @@ snapshots: define-properties: 1.2.1 es-object-atoms: 1.0.0 + string.prototype.trimend@1.0.9: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.0.0 + string.prototype.trimstart@1.0.8: dependencies: call-bind: 1.0.8 @@ -12967,8 +14471,14 @@ snapshots: dependencies: min-indent: 1.0.1 + strip-indent@4.1.1: {} + strip-json-comments@3.1.1: {} + strip-literal@3.1.0: + dependencies: + js-tokens: 9.0.1 + strnum@2.1.1: {} superjson@2.2.2: @@ -12977,20 +14487,20 @@ snapshots: supertokens-js-override@0.0.4: {} - supertokens-node@14.1.3: + supertokens-node@14.1.4: dependencies: content-type: 1.0.5 cookie: 0.4.0 cross-fetch: 3.1.8 - debug: 4.3.6 + debug: 4.4.0 inflation: 2.1.0 jose: 4.15.9 libphonenumber-js: 1.11.7 - nodemailer: 6.9.14 + nodemailer: 6.10.1 psl: 1.8.0 raw-body: 2.5.2 supertokens-js-override: 0.0.4 - twilio: 4.23.0(debug@4.3.6) + twilio: 4.23.0(debug@4.4.0) transitivePeerDependencies: - encoding - supports-color @@ -13017,10 +14527,9 @@ snapshots: symbol-tree@3.2.4: {} - synckit@0.9.2: + synckit@0.11.12: dependencies: - '@pkgr/core': 0.1.1 - tslib: 2.8.1 + '@pkgr/core': 0.2.9 tapable@2.2.1: {} @@ -13051,8 +14560,6 @@ snapshots: text-extensions@2.4.0: {} - text-table@0.2.0: {} - thread-stream@3.1.0: dependencies: real-require: 0.2.0 @@ -13079,11 +14586,22 @@ snapshots: fdir: 6.4.4(picomatch@4.0.2) picomatch: 4.0.2 - tinypool@1.0.2: {} + tinyglobby@0.2.15: + dependencies: + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 + + tinypool@1.1.1: {} tinyrainbow@2.0.0: {} - tinyspy@3.0.2: {} + tinyspy@4.0.4: {} + + tldts-core@6.1.86: {} + + tldts@6.1.86: + dependencies: + tldts-core: 6.1.86 tmp@0.0.33: dependencies: @@ -13099,12 +14617,9 @@ snapshots: toidentifier@1.0.1: {} - tough-cookie@4.1.4: + tough-cookie@5.1.2: dependencies: - psl: 1.8.0 - punycode: 2.3.1 - universalify: 0.2.0 - url-parse: 1.5.10 + tldts: 6.1.86 tr46@0.0.3: {} @@ -13114,17 +14629,23 @@ snapshots: trim-newlines@3.0.1: {} - ts-api-utils@1.4.3(typescript@5.4.5): + ts-api-utils@2.4.0(typescript@4.9.5): dependencies: - typescript: 5.4.5 + typescript: 4.9.5 - ts-api-utils@1.4.3(typescript@5.5.4): + ts-api-utils@2.4.0(typescript@5.7.3): dependencies: - typescript: 5.5.4 + typescript: 5.7.3 - ts-api-utils@2.1.0(typescript@5.5.4): + ts-declaration-location@1.0.7(typescript@4.9.5): dependencies: - typescript: 5.5.4 + picomatch: 4.0.2 + typescript: 4.9.5 + + ts-declaration-location@1.0.7(typescript@5.7.3): + dependencies: + picomatch: 4.0.2 + typescript: 5.7.3 tsconfig-paths@3.15.0: dependencies: @@ -13166,9 +14687,9 @@ snapshots: turbo-windows-64: 2.4.2 turbo-windows-arm64: 2.4.2 - twilio@4.23.0(debug@4.3.6): + twilio@4.23.0(debug@4.4.0): dependencies: - axios: 1.7.9(debug@4.3.6) + axios: 1.12.0(debug@4.4.0) dayjs: 1.11.13 https-proxy-agent: 5.0.1 jsonwebtoken: 9.0.2 @@ -13198,12 +14719,24 @@ snapshots: type-fest@4.40.0: {} + type-is@2.0.1: + dependencies: + content-type: 1.0.5 + media-typer: 1.1.0 + mime-types: 3.0.2 + typed-array-buffer@1.0.2: dependencies: call-bind: 1.0.8 es-errors: 1.3.0 is-typed-array: 1.1.13 + typed-array-buffer@1.0.3: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-typed-array: 1.1.15 + typed-array-byte-length@1.0.1: dependencies: call-bind: 1.0.8 @@ -13212,6 +14745,14 @@ snapshots: has-proto: 1.0.3 is-typed-array: 1.1.13 + typed-array-byte-length@1.0.3: + dependencies: + call-bind: 1.0.8 + for-each: 0.3.3 + gopd: 1.2.0 + has-proto: 1.2.0 + is-typed-array: 1.1.15 + typed-array-byte-offset@1.0.2: dependencies: available-typed-arrays: 1.0.7 @@ -13221,6 +14762,16 @@ snapshots: has-proto: 1.0.3 is-typed-array: 1.1.13 + typed-array-byte-offset@1.0.4: + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + for-each: 0.3.3 + gopd: 1.2.0 + has-proto: 1.2.0 + is-typed-array: 1.1.15 + reflect.getprototypeof: 1.0.10 + typed-array-length@1.0.6: dependencies: call-bind: 1.0.8 @@ -13230,10 +14781,43 @@ snapshots: is-typed-array: 1.1.13 possible-typed-array-names: 1.0.0 - typescript@5.4.5: {} + typed-array-length@1.0.7: + dependencies: + call-bind: 1.0.8 + for-each: 0.3.3 + gopd: 1.2.0 + is-typed-array: 1.1.15 + possible-typed-array-names: 1.0.0 + reflect.getprototypeof: 1.0.10 + + typescript-eslint@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5): + dependencies: + '@typescript-eslint/eslint-plugin': 8.54.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5))(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5) + '@typescript-eslint/parser': 8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5) + '@typescript-eslint/typescript-estree': 8.54.0(typescript@4.9.5) + '@typescript-eslint/utils': 8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@4.9.5) + eslint: 9.39.2(jiti@1.21.6) + typescript: 4.9.5 + transitivePeerDependencies: + - supports-color + + typescript-eslint@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3): + dependencies: + '@typescript-eslint/eslint-plugin': 8.54.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3))(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3) + '@typescript-eslint/parser': 8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3) + '@typescript-eslint/typescript-estree': 8.54.0(typescript@5.7.3) + '@typescript-eslint/utils': 8.54.0(eslint@9.39.2(jiti@1.21.6))(typescript@5.7.3) + eslint: 9.39.2(jiti@1.21.6) + typescript: 5.7.3 + transitivePeerDependencies: + - supports-color + + typescript@4.9.5: {} typescript@5.5.4: {} + typescript@5.7.3: {} + uglify-js@3.19.2: {} unbox-primitive@1.0.2: @@ -13243,11 +14827,16 @@ snapshots: has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 - undici-types@5.26.5: {} + unbox-primitive@1.1.0: + dependencies: + call-bound: 1.0.4 + has-bigints: 1.0.2 + has-symbols: 1.1.0 + which-boxed-primitive: 1.1.1 undici-types@6.19.8: {} - undici-types@6.20.0: {} + undici-types@7.16.0: {} unicorn-magic@0.1.0: {} @@ -13257,10 +14846,32 @@ snapshots: universal-user-agent@6.0.1: {} - universalify@0.2.0: {} - unpipe@1.0.0: {} + unrs-resolver@1.11.1: + dependencies: + napi-postinstall: 0.3.4 + 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 + update-browserslist-db@1.1.0(browserslist@4.23.3): dependencies: browserslist: 4.23.3 @@ -13273,6 +14884,12 @@ snapshots: escalade: 3.2.0 picocolors: 1.1.1 + update-browserslist-db@1.2.3(browserslist@4.28.1): + dependencies: + browserslist: 4.28.1 + escalade: 3.2.0 + picocolors: 1.1.1 + upper-case-first@2.0.2: dependencies: tslib: 2.8.1 @@ -13305,23 +14922,25 @@ snapshots: spdx-correct: 3.2.0 spdx-expression-parse: 3.0.1 - validator@13.12.0: {} + validator@13.15.22: {} + + validator@13.15.26: {} - validator@13.15.15: {} + vary@1.1.2: {} - vee-validate@4.15.0(vue@3.5.13(typescript@5.5.4)): + vee-validate@4.15.0(vue@3.5.13(typescript@4.9.5)): dependencies: '@vue/devtools-api': 7.7.5 type-fest: 4.40.0 - vue: 3.5.13(typescript@5.5.4) + vue: 3.5.13(typescript@4.9.5) - vite-node@3.0.5(@types/node@20.12.2)(jiti@1.21.6): + vite-node@3.2.4(@types/node@24.10.0)(jiti@1.21.6): dependencies: cac: 6.7.14 - debug: 4.4.0 - es-module-lexer: 1.6.0 + debug: 4.4.3 + es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 6.1.1(@types/node@20.12.2)(jiti@1.21.6) + vite: 6.3.5(@types/node@24.10.0)(jiti@1.21.6) transitivePeerDependencies: - '@types/node' - jiti @@ -13336,191 +14955,47 @@ snapshots: - tsx - yaml - vite-node@3.0.6(@types/node@20.14.14)(jiti@1.21.6): + vite@6.3.5(@types/node@24.10.0)(jiti@1.21.6): dependencies: - cac: 6.7.14 - debug: 4.4.0 - es-module-lexer: 1.6.0 - pathe: 2.0.3 - vite: 6.1.1(@types/node@20.14.14)(jiti@1.21.6) - transitivePeerDependencies: - - '@types/node' - - jiti - - less - - lightningcss - - sass - - sass-embedded - - stylus - - sugarss - - supports-color - - terser - - tsx - - yaml - - vite-node@3.0.6(@types/node@22.13.5)(jiti@1.21.6): - dependencies: - cac: 6.7.14 - debug: 4.4.0 - es-module-lexer: 1.6.0 - pathe: 2.0.3 - vite: 6.1.1(@types/node@22.13.5)(jiti@1.21.6) - transitivePeerDependencies: - - '@types/node' - - jiti - - less - - lightningcss - - sass - - sass-embedded - - stylus - - sugarss - - supports-color - - terser - - tsx - - yaml - - vite@6.1.0(@types/node@20.12.2)(jiti@1.21.6): - dependencies: - esbuild: 0.24.2 - postcss: 8.5.2 - rollup: 4.34.8 - optionalDependencies: - '@types/node': 20.12.2 - fsevents: 2.3.3 - jiti: 1.21.6 - - vite@6.1.1(@types/node@20.12.2)(jiti@1.21.6): - dependencies: - esbuild: 0.24.2 - postcss: 8.5.2 - rollup: 4.34.8 - optionalDependencies: - '@types/node': 20.12.2 - fsevents: 2.3.3 - jiti: 1.21.6 - - vite@6.1.1(@types/node@20.14.14)(jiti@1.21.6): - dependencies: - esbuild: 0.24.2 - postcss: 8.5.2 - rollup: 4.34.8 - optionalDependencies: - '@types/node': 20.14.14 - fsevents: 2.3.3 - jiti: 1.21.6 - - vite@6.1.1(@types/node@22.13.5)(jiti@1.21.6): - dependencies: - esbuild: 0.24.2 - postcss: 8.5.2 - rollup: 4.34.8 + esbuild: 0.25.12 + fdir: 6.4.4(picomatch@4.0.2) + picomatch: 4.0.2 + postcss: 8.5.6 + rollup: 4.57.1 + tinyglobby: 0.2.13 optionalDependencies: - '@types/node': 22.13.5 + '@types/node': 24.10.0 fsevents: 2.3.3 jiti: 1.21.6 - vitest@3.0.5(@types/node@20.12.2)(jiti@1.21.6)(jsdom@24.0.0): - dependencies: - '@vitest/expect': 3.0.5 - '@vitest/mocker': 3.0.5(vite@6.1.0(@types/node@20.12.2)(jiti@1.21.6)) - '@vitest/pretty-format': 3.0.5 - '@vitest/runner': 3.0.5 - '@vitest/snapshot': 3.0.5 - '@vitest/spy': 3.0.5 - '@vitest/utils': 3.0.5 - chai: 5.2.0 - debug: 4.4.0 - expect-type: 1.1.0 - magic-string: 0.30.17 - pathe: 2.0.3 - std-env: 3.8.0 - tinybench: 2.9.0 - tinyexec: 0.3.2 - tinypool: 1.0.2 - tinyrainbow: 2.0.0 - vite: 6.1.0(@types/node@20.12.2)(jiti@1.21.6) - vite-node: 3.0.5(@types/node@20.12.2)(jiti@1.21.6) - why-is-node-running: 2.3.0 - optionalDependencies: - '@types/node': 20.12.2 - jsdom: 24.0.0 - transitivePeerDependencies: - - jiti - - less - - lightningcss - - msw - - sass - - sass-embedded - - stylus - - sugarss - - supports-color - - terser - - tsx - - yaml - - vitest@3.0.6(@types/node@20.14.14)(jiti@1.21.6)(jsdom@24.0.0): - dependencies: - '@vitest/expect': 3.0.6 - '@vitest/mocker': 3.0.6(vite@6.1.1(@types/node@20.14.14)(jiti@1.21.6)) - '@vitest/pretty-format': 3.0.6 - '@vitest/runner': 3.0.6 - '@vitest/snapshot': 3.0.6 - '@vitest/spy': 3.0.6 - '@vitest/utils': 3.0.6 - chai: 5.2.0 - debug: 4.4.0 - expect-type: 1.1.0 - magic-string: 0.30.17 - pathe: 2.0.3 - std-env: 3.8.0 - tinybench: 2.9.0 - tinyexec: 0.3.2 - tinypool: 1.0.2 - tinyrainbow: 2.0.0 - vite: 6.1.1(@types/node@20.14.14)(jiti@1.21.6) - vite-node: 3.0.6(@types/node@20.14.14)(jiti@1.21.6) - why-is-node-running: 2.3.0 - optionalDependencies: - '@types/node': 20.14.14 - jsdom: 24.0.0 - transitivePeerDependencies: - - jiti - - less - - lightningcss - - msw - - sass - - sass-embedded - - stylus - - sugarss - - supports-color - - terser - - tsx - - yaml - - vitest@3.0.6(@types/node@22.13.5)(jiti@1.21.6)(jsdom@24.0.0): + vitest@3.2.4(@types/node@24.10.0)(jiti@1.21.6)(jsdom@25.0.1): dependencies: - '@vitest/expect': 3.0.6 - '@vitest/mocker': 3.0.6(vite@6.1.1(@types/node@22.13.5)(jiti@1.21.6)) - '@vitest/pretty-format': 3.0.6 - '@vitest/runner': 3.0.6 - '@vitest/snapshot': 3.0.6 - '@vitest/spy': 3.0.6 - '@vitest/utils': 3.0.6 + '@types/chai': 5.2.3 + '@vitest/expect': 3.2.4 + '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@24.10.0)(jiti@1.21.6)) + '@vitest/pretty-format': 3.2.4 + '@vitest/runner': 3.2.4 + '@vitest/snapshot': 3.2.4 + '@vitest/spy': 3.2.4 + '@vitest/utils': 3.2.4 chai: 5.2.0 - debug: 4.4.0 - expect-type: 1.1.0 + debug: 4.4.3 + expect-type: 1.3.0 magic-string: 0.30.17 pathe: 2.0.3 - std-env: 3.8.0 + picomatch: 4.0.2 + std-env: 3.10.0 tinybench: 2.9.0 tinyexec: 0.3.2 - tinypool: 1.0.2 + tinyglobby: 0.2.15 + tinypool: 1.1.1 tinyrainbow: 2.0.0 - vite: 6.1.1(@types/node@22.13.5)(jiti@1.21.6) - vite-node: 3.0.6(@types/node@22.13.5)(jiti@1.21.6) + vite: 6.3.5(@types/node@24.10.0)(jiti@1.21.6) + vite-node: 3.2.4(@types/node@24.10.0)(jiti@1.21.6) why-is-node-running: 2.3.0 optionalDependencies: - '@types/node': 22.13.5 - jsdom: 24.0.0 + '@types/node': 24.10.0 + jsdom: 25.0.1 transitivePeerDependencies: - jiti - less @@ -13539,52 +15014,51 @@ snapshots: vue-component-type-helpers@2.2.10: {} - vue-eslint-parser@9.4.3(eslint@8.57.1): + vue-eslint-parser@10.2.0(eslint@9.39.2(jiti@1.21.6)): dependencies: debug: 4.4.0 - eslint: 8.57.1 - eslint-scope: 7.2.2 - eslint-visitor-keys: 3.4.3 - espree: 9.6.1 + eslint: 9.39.2(jiti@1.21.6) + eslint-scope: 8.4.0 + eslint-visitor-keys: 4.2.0 + espree: 10.4.0 esquery: 1.6.0 - lodash: 4.17.21 semver: 7.6.3 transitivePeerDependencies: - supports-color - vue-i18n@9.1.10(vue@3.5.13(typescript@5.5.4)): + vue-i18n@9.1.10(vue@3.5.13(typescript@4.9.5)): dependencies: '@intlify/core-base': 9.1.10 '@intlify/shared': 9.1.10 '@intlify/vue-devtools': 9.1.10 '@vue/devtools-api': 6.6.4 - vue: 3.5.13(typescript@5.5.4) + vue: 3.5.13(typescript@4.9.5) - vue-router@4.5.0(vue@3.5.13(typescript@5.5.4)): + vue-router@4.5.0(vue@3.5.13(typescript@4.9.5)): dependencies: '@vue/devtools-api': 6.6.4 - vue: 3.5.13(typescript@5.5.4) + vue: 3.5.13(typescript@4.9.5) vue-template-compiler@2.7.16: dependencies: de-indent: 1.0.2 he: 1.2.0 - vue-tsc@1.2.0(typescript@5.5.4): + vue-tsc@1.0.24(typescript@4.9.5): dependencies: - '@volar/vue-language-core': 1.2.0 - '@volar/vue-typescript': 1.2.0 - typescript: 5.5.4 + '@volar/vue-language-core': 1.0.24 + '@volar/vue-typescript': 1.0.24 + typescript: 4.9.5 - vue@3.5.13(typescript@5.5.4): + vue@3.5.13(typescript@4.9.5): dependencies: '@vue/compiler-dom': 3.5.13 '@vue/compiler-sfc': 3.5.13 '@vue/runtime-dom': 3.5.13 - '@vue/server-renderer': 3.5.13(vue@3.5.13(typescript@5.5.4)) + '@vue/server-renderer': 3.5.13(vue@3.5.13(typescript@4.9.5)) '@vue/shared': 3.5.13 optionalDependencies: - typescript: 5.5.4 + typescript: 4.9.5 w3c-xmlserializer@5.0.0: dependencies: @@ -13633,6 +15107,37 @@ snapshots: is-string: 1.0.7 is-symbol: 1.0.4 + which-boxed-primitive@1.1.1: + dependencies: + is-bigint: 1.1.0 + is-boolean-object: 1.2.2 + is-number-object: 1.1.1 + is-string: 1.1.1 + is-symbol: 1.1.1 + + which-builtin-type@1.2.1: + dependencies: + call-bound: 1.0.4 + function.prototype.name: 1.1.8 + has-tostringtag: 1.0.2 + is-async-function: 2.1.1 + is-date-object: 1.1.0 + is-finalizationregistry: 1.1.1 + is-generator-function: 1.1.2 + is-regex: 1.2.1 + is-weakref: 1.1.1 + isarray: 2.0.5 + which-boxed-primitive: 1.1.1 + which-collection: 1.0.2 + which-typed-array: 1.1.20 + + which-collection@1.0.2: + dependencies: + is-map: 2.0.3 + is-set: 2.0.3 + is-weakmap: 2.0.2 + is-weakset: 2.0.4 + which-typed-array@1.1.15: dependencies: available-typed-arrays: 1.0.7 @@ -13641,6 +15146,16 @@ snapshots: gopd: 1.2.0 has-tostringtag: 1.0.2 + which-typed-array@1.1.20: + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.4 + for-each: 0.3.5 + get-proto: 1.0.1 + gopd: 1.2.0 + has-tostringtag: 1.0.2 + which@1.3.1: dependencies: isexe: 2.0.0 @@ -13724,6 +15239,12 @@ snapshots: yocto-queue@1.1.1: {} + zod-validation-error@4.0.2(zod@3.25.76): + dependencies: + zod: 3.25.76 + zod@3.23.8: {} zod@3.24.2: {} + + zod@3.25.76: {}