From c94ef9e71b21d075c788353de42b60436c138a7b Mon Sep 17 00:00:00 2001 From: Nick DeGroot <1966472+nickthegroot@users.noreply.github.com> Date: Thu, 3 Oct 2024 16:39:05 -0700 Subject: [PATCH 001/133] :bug: Fix #599: add lazy support for potential self-referential types also include unit tests --- example/myzod/schemas.ts | 2 +- example/valibot/schemas.ts | 2 +- example/yup/schemas.ts | 2 +- example/zod/schemas.ts | 2 +- src/myzod/index.ts | 22 +++++++++++++--------- src/valibot/index.ts | 19 +++++++++++-------- src/yup/index.ts | 23 +++++++++++++---------- src/zod/index.ts | 22 +++++++++++++--------- tests/myzod.spec.ts | 20 ++++++++++---------- tests/valibot.spec.ts | 18 +++++++++--------- tests/yup.spec.ts | 24 ++++++++++++------------ tests/zod.spec.ts | 20 ++++++++++---------- 12 files changed, 95 insertions(+), 81 deletions(-) diff --git a/example/myzod/schemas.ts b/example/myzod/schemas.ts index 68c8623d..3a47f823 100644 --- a/example/myzod/schemas.ts +++ b/example/myzod/schemas.ts @@ -120,7 +120,7 @@ export function UserSchema(): myzod.Type { createdAt: definedNonNullAnySchema.optional().nullable(), email: myzod.string().optional().nullable(), id: myzod.string().optional().nullable(), - kind: UserKindSchema().optional().nullable(), + kind: myzod.lazy(() => UserKindSchema().optional().nullable()), name: myzod.string().optional().nullable(), password: myzod.string().optional().nullable(), updatedAt: definedNonNullAnySchema.optional().nullable() diff --git a/example/valibot/schemas.ts b/example/valibot/schemas.ts index 14c8bac1..dbc09340 100644 --- a/example/valibot/schemas.ts +++ b/example/valibot/schemas.ts @@ -118,7 +118,7 @@ export function UserSchema(): v.GenericSchema { createdAt: v.nullish(v.any()), email: v.nullish(v.string()), id: v.nullish(v.string()), - kind: v.nullish(UserKindSchema()), + kind: v.lazy(() => v.nullish(UserKindSchema())), name: v.nullish(v.string()), password: v.nullish(v.string()), updatedAt: v.nullish(v.any()) diff --git a/example/yup/schemas.ts b/example/yup/schemas.ts index abc049aa..d78a3abd 100644 --- a/example/yup/schemas.ts +++ b/example/yup/schemas.ts @@ -124,7 +124,7 @@ export function UserSchema(): yup.ObjectSchema { createdAt: yup.mixed().nullable().optional(), email: yup.string().defined().nullable().optional(), id: yup.string().defined().nullable().optional(), - kind: UserKindSchema().nullable().optional(), + kind: yup.lazy(() => UserKindSchema().nullable()).optional(), name: yup.string().defined().nullable().optional(), password: yup.string().defined().nullable().optional(), updatedAt: yup.mixed().nullable().optional() diff --git a/example/zod/schemas.ts b/example/zod/schemas.ts index 407e3895..7bd0aef7 100644 --- a/example/zod/schemas.ts +++ b/example/zod/schemas.ts @@ -128,7 +128,7 @@ export function UserSchema(): z.ZodObject> { createdAt: definedNonNullAnySchema.nullish(), email: z.string().nullish(), id: z.string().nullish(), - kind: UserKindSchema().nullish(), + kind: z.lazy(() => UserKindSchema().nullish()), name: z.string().nullish(), password: z.string().nullish(), updatedAt: definedNonNullAnySchema.nullish() diff --git a/src/myzod/index.ts b/src/myzod/index.ts index 4a9e5778..bfbb706a 100644 --- a/src/myzod/index.ts +++ b/src/myzod/index.ts @@ -16,13 +16,14 @@ import type { Visitor } from '../visitor.js'; import { resolveExternalModuleAndFn } from '@graphql-codegen/plugin-helpers'; import { convertNameParts, DeclarationBlock, indent } from '@graphql-codegen/visitor-plugin-common'; import { + isEnumType, + isScalarType, Kind, } from 'graphql'; import { buildApi, formatDirectiveConfig } from '../directive.js'; import { escapeGraphQLCharacters, InterfaceTypeDefinitionBuilder, - isInput, isListType, isNamedType, isNonNullType, @@ -262,22 +263,22 @@ export class MyZodSchemaVisitor extends BaseSchemaVisitor { function generateFieldMyZodSchema(config: ValidationSchemaPluginConfig, visitor: Visitor, field: InputValueDefinitionNode | FieldDefinitionNode, indentCount: number): string { const gen = generateFieldTypeMyZodSchema(config, visitor, field, field.type); - return indent(`${field.name.value}: ${maybeLazy(field.type, gen)}`, indentCount); + return indent(`${field.name.value}: ${maybeLazy(visitor, field.type, gen)}`, indentCount); } function generateFieldTypeMyZodSchema(config: ValidationSchemaPluginConfig, visitor: Visitor, field: InputValueDefinitionNode | FieldDefinitionNode, type: TypeNode, parentType?: TypeNode): string { if (isListType(type)) { const gen = generateFieldTypeMyZodSchema(config, visitor, field, type.type, type); if (!isNonNullType(parentType)) { - const arrayGen = `myzod.array(${maybeLazy(type.type, gen)})`; + const arrayGen = `myzod.array(${maybeLazy(visitor, type.type, gen)})`; const maybeLazyGen = applyDirectives(config, field, arrayGen); return `${maybeLazyGen}.optional().nullable()`; } - return `myzod.array(${maybeLazy(type.type, gen)})`; + return `myzod.array(${maybeLazy(visitor, type.type, gen)})`; } if (isNonNullType(type)) { const gen = generateFieldTypeMyZodSchema(config, visitor, field, type.type, type); - return maybeLazy(type.type, gen); + return maybeLazy(visitor, type.type, gen); } if (isNamedType(type)) { const gen = generateNameNodeMyZodSchema(config, visitor, type.name); @@ -358,11 +359,14 @@ function generateNameNodeMyZodSchema(config: ValidationSchemaPluginConfig, visit } } -function maybeLazy(type: TypeNode, schema: string): string { - if (isNamedType(type) && isInput(type.name.value)) - return `myzod.lazy(() => ${schema})`; +function maybeLazy(visitor: Visitor, type: TypeNode, schema: string): string { + if (!isNamedType(type)) { + return schema; + } - return schema; + const schemaType = visitor.getType(type.name.value); + const isComplexType = !isScalarType(schemaType) && !isEnumType(schemaType); + return isComplexType ? `myzod.lazy(() => ${schema})` : schema; } function myzod4Scalar(config: ValidationSchemaPluginConfig, visitor: Visitor, scalarName: string): string { diff --git a/src/valibot/index.ts b/src/valibot/index.ts index 7b9671ba..76408d17 100644 --- a/src/valibot/index.ts +++ b/src/valibot/index.ts @@ -10,6 +10,7 @@ import type { TypeNode, UnionTypeDefinitionNode, } from 'graphql'; +import { isEnumType, isScalarType } from 'graphql'; import type { ValidationSchemaPluginConfig } from '../config.js'; import type { Visitor } from '../visitor.js'; @@ -17,7 +18,6 @@ import { DeclarationBlock, indent } from '@graphql-codegen/visitor-plugin-common import { buildApiForValibot, formatDirectiveConfig } from '../directive.js'; import { InterfaceTypeDefinitionBuilder, - isInput, isListType, isNamedType, isNonNullType, @@ -205,13 +205,13 @@ export class ValibotSchemaVisitor extends BaseSchemaVisitor { function generateFieldValibotSchema(config: ValidationSchemaPluginConfig, visitor: Visitor, field: InputValueDefinitionNode | FieldDefinitionNode, indentCount: number): string { const gen = generateFieldTypeValibotSchema(config, visitor, field, field.type); - return indent(`${field.name.value}: ${maybeLazy(field.type, gen)}`, indentCount); + return indent(`${field.name.value}: ${maybeLazy(visitor, field.type, gen)}`, indentCount); } function generateFieldTypeValibotSchema(config: ValidationSchemaPluginConfig, visitor: Visitor, field: InputValueDefinitionNode | FieldDefinitionNode, type: TypeNode, parentType?: TypeNode): string { if (isListType(type)) { const gen = generateFieldTypeValibotSchema(config, visitor, field, type.type, type); - const arrayGen = `v.array(${maybeLazy(type.type, gen)})`; + const arrayGen = `v.array(${maybeLazy(visitor, type.type, gen)})`; if (!isNonNullType(parentType)) return `v.nullish(${arrayGen})`; @@ -219,7 +219,7 @@ function generateFieldTypeValibotSchema(config: ValidationSchemaPluginConfig, vi } if (isNonNullType(type)) { const gen = generateFieldTypeValibotSchema(config, visitor, field, type.type, type); - return maybeLazy(type.type, gen); + return maybeLazy(visitor, type.type, gen); } if (isNamedType(type)) { const gen = generateNameNodeValibotSchema(config, visitor, type.name); @@ -283,11 +283,14 @@ function generateNameNodeValibotSchema(config: ValidationSchemaPluginConfig, vis } } -function maybeLazy(type: TypeNode, schema: string): string { - if (isNamedType(type) && isInput(type.name.value)) - return `v.lazy(() => ${schema})`; +function maybeLazy(visitor: Visitor, type: TypeNode, schema: string): string { + if (!isNamedType(type)) { + return schema; + } - return schema; + const schemaType = visitor.getType(type.name.value); + const isComplexType = !isScalarType(schemaType) && !isEnumType(schemaType); + return isComplexType ? `v.lazy(() => ${schema})` : schema; } function valibot4Scalar(config: ValidationSchemaPluginConfig, visitor: Visitor, scalarName: string): string { diff --git a/src/yup/index.ts b/src/yup/index.ts index 7370e9ea..46aa9482 100644 --- a/src/yup/index.ts +++ b/src/yup/index.ts @@ -16,13 +16,14 @@ import type { Visitor } from '../visitor.js'; import { resolveExternalModuleAndFn } from '@graphql-codegen/plugin-helpers'; import { convertNameParts, DeclarationBlock, indent } from '@graphql-codegen/visitor-plugin-common'; import { + isEnumType, + isScalarType, Kind, } from 'graphql'; import { buildApi, formatDirectiveConfig } from '../directive.js'; import { escapeGraphQLCharacters, InterfaceTypeDefinitionBuilder, - isInput, isListType, isNamedType, isNonNullType, @@ -324,20 +325,20 @@ function generateFieldYupSchema(config: ValidationSchemaPluginConfig, visitor: V const formatted = formatDirectiveConfig(config.directives); gen += buildApi(formatted, field.directives); } - return indent(`${field.name.value}: ${maybeLazy(field.type, gen)}`, indentCount); + return indent(`${field.name.value}: ${maybeLazy(visitor, field.type, gen)}`, indentCount); } function generateFieldTypeYupSchema(config: ValidationSchemaPluginConfig, visitor: Visitor, type: TypeNode, parentType?: TypeNode): string { if (isListType(type)) { const gen = generateFieldTypeYupSchema(config, visitor, type.type, type); if (!isNonNullType(parentType)) - return `yup.array(${maybeLazy(type.type, gen)}).defined().nullable()`; + return `yup.array(${maybeLazy(visitor, type.type, gen)}).defined().nullable()`; - return `yup.array(${maybeLazy(type.type, gen)}).defined()`; + return `yup.array(${maybeLazy(visitor, type.type, gen)}).defined()`; } if (isNonNullType(type)) { const gen = generateFieldTypeYupSchema(config, visitor, type.type, type); - return maybeLazy(type.type, gen); + return maybeLazy(visitor, type.type, gen); } if (isNamedType(type)) { const gen = generateNameNodeYupSchema(config, visitor, type.name); @@ -380,12 +381,14 @@ function generateNameNodeYupSchema(config: ValidationSchemaPluginConfig, visitor } } -function maybeLazy(type: TypeNode, schema: string): string { - if (isNamedType(type) && isInput(type.name.value)) { - // https://github.com/jquense/yup/issues/1283#issuecomment-786559444 - return `yup.lazy(() => ${schema})`; +function maybeLazy(visitor: Visitor, type: TypeNode, schema: string): string { + if (!isNamedType(type)) { + return schema; } - return schema; + + const schemaType = visitor.getType(type.name.value); + const isComplexType = !isScalarType(schemaType) && !isEnumType(schemaType); + return isComplexType ? `yup.lazy(() => ${schema})` : schema; } function yup4Scalar(config: ValidationSchemaPluginConfig, visitor: Visitor, scalarName: string): string { diff --git a/src/zod/index.ts b/src/zod/index.ts index fc77e16d..ecc85eb8 100644 --- a/src/zod/index.ts +++ b/src/zod/index.ts @@ -16,13 +16,14 @@ import type { Visitor } from '../visitor.js'; import { resolveExternalModuleAndFn } from '@graphql-codegen/plugin-helpers'; import { convertNameParts, DeclarationBlock, indent } from '@graphql-codegen/visitor-plugin-common'; import { + isEnumType, + isScalarType, Kind, } from 'graphql'; import { buildApi, formatDirectiveConfig } from '../directive.js'; import { escapeGraphQLCharacters, InterfaceTypeDefinitionBuilder, - isInput, isListType, isNamedType, isNonNullType, @@ -278,22 +279,22 @@ export class ZodSchemaVisitor extends BaseSchemaVisitor { function generateFieldZodSchema(config: ValidationSchemaPluginConfig, visitor: Visitor, field: InputValueDefinitionNode | FieldDefinitionNode, indentCount: number): string { const gen = generateFieldTypeZodSchema(config, visitor, field, field.type); - return indent(`${field.name.value}: ${maybeLazy(field.type, gen)}`, indentCount); + return indent(`${field.name.value}: ${maybeLazy(visitor, field.type, gen)}`, indentCount); } function generateFieldTypeZodSchema(config: ValidationSchemaPluginConfig, visitor: Visitor, field: InputValueDefinitionNode | FieldDefinitionNode, type: TypeNode, parentType?: TypeNode): string { if (isListType(type)) { const gen = generateFieldTypeZodSchema(config, visitor, field, type.type, type); if (!isNonNullType(parentType)) { - const arrayGen = `z.array(${maybeLazy(type.type, gen)})`; + const arrayGen = `z.array(${maybeLazy(visitor, type.type, gen)})`; const maybeLazyGen = applyDirectives(config, field, arrayGen); return `${maybeLazyGen}.nullish()`; } - return `z.array(${maybeLazy(type.type, gen)})`; + return `z.array(${maybeLazy(visitor, type.type, gen)})`; } if (isNonNullType(type)) { const gen = generateFieldTypeZodSchema(config, visitor, field, type.type, type); - return maybeLazy(type.type, gen); + return maybeLazy(visitor, type.type, gen); } if (isNamedType(type)) { const gen = generateNameNodeZodSchema(config, visitor, type.name); @@ -374,11 +375,14 @@ function generateNameNodeZodSchema(config: ValidationSchemaPluginConfig, visitor } } -function maybeLazy(type: TypeNode, schema: string): string { - if (isNamedType(type) && isInput(type.name.value)) - return `z.lazy(() => ${schema})`; +function maybeLazy(visitor: Visitor, type: TypeNode, schema: string): string { + if (!isNamedType(type)) { + return schema; + } - return schema; + const schemaType = visitor.getType(type.name.value); + const isComplexType = !isScalarType(schemaType) && !isEnumType(schemaType); + return isComplexType ? `z.lazy(() => ${schema})` : schema; } function zod4Scalar(config: ValidationSchemaPluginConfig, visitor: Visitor, scalarName: string): string { diff --git a/tests/myzod.spec.ts b/tests/myzod.spec.ts index 56b003e2..c3cae26e 100644 --- a/tests/myzod.spec.ts +++ b/tests/myzod.spec.ts @@ -830,7 +830,7 @@ describe('myzod', () => { export function BookSchema(): myzod.Type { return myzod.object({ __typename: myzod.literal('Book').optional(), - author: AuthorSchema().optional().nullable(), + author: myzod.lazy(() => AuthorSchema().optional().nullable()), title: myzod.string().optional().nullable() }) } @@ -838,7 +838,7 @@ describe('myzod', () => { export function AuthorSchema(): myzod.Type { return myzod.object({ __typename: myzod.literal('Author').optional(), - books: myzod.array(BookSchema().nullable()).optional().nullable(), + books: myzod.array(myzod.lazy(() => BookSchema().nullable())).optional().nullable(), name: myzod.string().optional().nullable() }) } @@ -1075,7 +1075,7 @@ describe('myzod', () => { export function GeometrySchema(): myzod.Type { return myzod.object({ __typename: myzod.literal('Geometry').optional(), - shape: ShapeSchema().optional().nullable() + shape: myzod.lazy(() => ShapeSchema().optional().nullable()) }) } " @@ -1196,7 +1196,7 @@ describe('myzod', () => { export const GeometrySchema: myzod.Type = myzod.object({ __typename: myzod.literal('Geometry').optional(), - shape: ShapeSchema.optional().nullable() + shape: myzod.lazy(() => ShapeSchema.optional().nullable()) }); " `) @@ -1317,14 +1317,14 @@ describe('myzod', () => { " export function BookSchema(): myzod.Type { return myzod.object({ - author: AuthorSchema().optional().nullable(), + author: myzod.lazy(() => AuthorSchema().optional().nullable()), title: myzod.string().optional().nullable() }) } export function AuthorSchema(): myzod.Type { return myzod.object({ - books: myzod.array(BookSchema().nullable()).optional().nullable(), + books: myzod.array(myzod.lazy(() => BookSchema().nullable())).optional().nullable(), name: myzod.string().optional().nullable() }) } @@ -1369,7 +1369,7 @@ describe('myzod', () => { export function BookSchema(): myzod.Type { return myzod.object({ title: myzod.string(), - author: AuthorSchema() + author: myzod.lazy(() => AuthorSchema()) }) } @@ -1377,7 +1377,7 @@ describe('myzod', () => { return myzod.object({ __typename: myzod.literal('Textbook').optional(), title: myzod.string(), - author: AuthorSchema(), + author: myzod.lazy(() => AuthorSchema()), courses: myzod.array(myzod.string()) }) } @@ -1386,7 +1386,7 @@ describe('myzod', () => { return myzod.object({ __typename: myzod.literal('ColoringBook').optional(), title: myzod.string(), - author: AuthorSchema(), + author: myzod.lazy(() => AuthorSchema()), colors: myzod.array(myzod.string()) }) } @@ -1394,7 +1394,7 @@ describe('myzod', () => { export function AuthorSchema(): myzod.Type { return myzod.object({ __typename: myzod.literal('Author').optional(), - books: myzod.array(BookSchema()).optional().nullable(), + books: myzod.array(myzod.lazy(() => BookSchema())).optional().nullable(), name: myzod.string().optional().nullable() }) } diff --git a/tests/valibot.spec.ts b/tests/valibot.spec.ts index 3a7eadaa..70f3af3e 100644 --- a/tests/valibot.spec.ts +++ b/tests/valibot.spec.ts @@ -772,7 +772,7 @@ describe('valibot', () => { export function BookSchema(): v.GenericSchema { return v.object({ __typename: v.optional(v.literal('Book')), - author: v.nullish(AuthorSchema()), + author: v.lazy(() => v.nullish(AuthorSchema())), title: v.nullish(v.string()) }) } @@ -780,7 +780,7 @@ describe('valibot', () => { export function AuthorSchema(): v.GenericSchema { return v.object({ __typename: v.optional(v.literal('Author')), - books: v.nullish(v.array(v.nullable(BookSchema()))), + books: v.nullish(v.array(v.lazy(() => v.nullable(BookSchema())))), name: v.nullish(v.string()) }) } @@ -1019,7 +1019,7 @@ describe('valibot', () => { export function GeometrySchema(): v.GenericSchema { return v.object({ __typename: v.optional(v.literal('Geometry')), - shape: v.nullish(ShapeSchema()) + shape: v.lazy(() => v.nullish(ShapeSchema())) }) } " @@ -1209,14 +1209,14 @@ describe('valibot', () => { export function BookSchema(): v.GenericSchema { return v.object({ - author: v.nullish(AuthorSchema()), + author: v.lazy(() => v.nullish(AuthorSchema())), title: v.nullish(v.string()) }) } export function AuthorSchema(): v.GenericSchema { return v.object({ - books: v.nullish(v.array(v.nullable(BookSchema()))), + books: v.nullish(v.array(v.lazy(() => v.nullable(BookSchema())))), name: v.nullish(v.string()) }) } @@ -1262,7 +1262,7 @@ describe('valibot', () => { export function BookSchema(): v.GenericSchema { return v.object({ title: v.string(), - author: AuthorSchema() + author: v.lazy(() => AuthorSchema()) }) } @@ -1270,7 +1270,7 @@ describe('valibot', () => { return v.object({ __typename: v.optional(v.literal('Textbook')), title: v.string(), - author: AuthorSchema(), + author: v.lazy(() => AuthorSchema()), courses: v.array(v.string()) }) } @@ -1279,7 +1279,7 @@ describe('valibot', () => { return v.object({ __typename: v.optional(v.literal('ColoringBook')), title: v.string(), - author: AuthorSchema(), + author: v.lazy(() => AuthorSchema()), colors: v.array(v.string()) }) } @@ -1287,7 +1287,7 @@ describe('valibot', () => { export function AuthorSchema(): v.GenericSchema { return v.object({ __typename: v.optional(v.literal('Author')), - books: v.nullish(v.array(BookSchema())), + books: v.nullish(v.array(v.lazy(() => BookSchema()))), name: v.nullish(v.string()) }) } diff --git a/tests/yup.spec.ts b/tests/yup.spec.ts index 982d7407..38aea731 100644 --- a/tests/yup.spec.ts +++ b/tests/yup.spec.ts @@ -760,7 +760,7 @@ describe('yup', () => { export function BookSchema(): yup.ObjectSchema { return yup.object({ __typename: yup.string<'Book'>().optional(), - author: AuthorSchema().nullable().optional(), + author: yup.lazy(() => AuthorSchema().nullable()).optional(), title: yup.string().defined().nullable().optional() }) } @@ -768,7 +768,7 @@ describe('yup', () => { export function Book2Schema(): yup.ObjectSchema { return yup.object({ __typename: yup.string<'Book2'>().optional(), - author: AuthorSchema().nonNullable(), + author: yup.lazy(() => AuthorSchema().nonNullable()), title: yup.string().defined().nonNullable() }) } @@ -776,7 +776,7 @@ describe('yup', () => { export function AuthorSchema(): yup.ObjectSchema { return yup.object({ __typename: yup.string<'Author'>().optional(), - books: yup.array(BookSchema().nullable()).defined().nullable().optional(), + books: yup.array(yup.lazy(() => BookSchema().nullable())).defined().nullable().optional(), name: yup.string().defined().nullable().optional() }) } @@ -991,7 +991,7 @@ describe('yup', () => { export function GeometrySchema(): yup.ObjectSchema { return yup.object({ __typename: yup.string<'Geometry'>().optional(), - shape: ShapeSchema().nullable().optional() + shape: yup.lazy(() => ShapeSchema().nullable()).optional() }) } " @@ -1132,7 +1132,7 @@ describe('yup', () => { export const GeometrySchema: yup.ObjectSchema = yup.object({ __typename: yup.string<'Geometry'>().optional(), - shape: ShapeSchema.nullable().optional() + shape: yup.lazy(() => ShapeSchema.nullable()).optional() }); " `) @@ -1280,21 +1280,21 @@ describe('yup', () => { export function BookSchema(): yup.ObjectSchema { return yup.object({ - author: AuthorSchema().nullable().optional(), + author: yup.lazy(() => AuthorSchema().nullable()).optional(), title: yup.string().defined().nullable().optional() }) } export function Book2Schema(): yup.ObjectSchema { return yup.object({ - author: AuthorSchema().nonNullable(), + author: yup.lazy(() => AuthorSchema().nonNullable()), title: yup.string().defined().nonNullable() }) } export function AuthorSchema(): yup.ObjectSchema { return yup.object({ - books: yup.array(BookSchema().nullable()).defined().nullable().optional(), + books: yup.array(yup.lazy(() => BookSchema().nullable())).defined().nullable().optional(), name: yup.string().defined().nullable().optional() }) } @@ -1349,7 +1349,7 @@ describe('yup', () => { export function BookSchema(): yup.ObjectSchema { return yup.object({ title: yup.string().defined().nonNullable(), - author: AuthorSchema().nonNullable() + author: yup.lazy(() => AuthorSchema().nonNullable()) }) } @@ -1357,7 +1357,7 @@ describe('yup', () => { return yup.object({ __typename: yup.string<'Textbook'>().optional(), title: yup.string().defined().nonNullable(), - author: AuthorSchema().nonNullable(), + author: yup.lazy(() => AuthorSchema().nonNullable()), courses: yup.array(yup.string().defined().nonNullable()).defined() }) } @@ -1366,7 +1366,7 @@ describe('yup', () => { return yup.object({ __typename: yup.string<'ColoringBook'>().optional(), title: yup.string().defined().nonNullable(), - author: AuthorSchema().nonNullable(), + author: yup.lazy(() => AuthorSchema().nonNullable()), colors: yup.array(yup.string().defined().nonNullable()).defined() }) } @@ -1374,7 +1374,7 @@ describe('yup', () => { export function AuthorSchema(): yup.ObjectSchema { return yup.object({ __typename: yup.string<'Author'>().optional(), - books: yup.array(BookSchema().nonNullable()).defined().nullable().optional(), + books: yup.array(yup.lazy(() => BookSchema().nonNullable())).defined().nullable().optional(), name: yup.string().defined().nullable().optional() }) } diff --git a/tests/zod.spec.ts b/tests/zod.spec.ts index 53e451ed..cb75e13a 100644 --- a/tests/zod.spec.ts +++ b/tests/zod.spec.ts @@ -1056,7 +1056,7 @@ describe('zod', () => { export function BookSchema(): z.ZodObject> { return z.object({ __typename: z.literal('Book').optional(), - author: AuthorSchema().nullish(), + author: z.lazy(() => AuthorSchema().nullish()), title: z.string().nullish() }) } @@ -1064,7 +1064,7 @@ describe('zod', () => { export function AuthorSchema(): z.ZodObject> { return z.object({ __typename: z.literal('Author').optional(), - books: z.array(BookSchema().nullable()).nullish(), + books: z.array(z.lazy(() => BookSchema().nullable())).nullish(), name: z.string().nullish() }) } @@ -1301,7 +1301,7 @@ describe('zod', () => { export function GeometrySchema(): z.ZodObject> { return z.object({ __typename: z.literal('Geometry').optional(), - shape: ShapeSchema().nullish() + shape: z.lazy(() => ShapeSchema().nullish()) }) } " @@ -1422,7 +1422,7 @@ describe('zod', () => { export const GeometrySchema: z.ZodObject> = z.object({ __typename: z.literal('Geometry').optional(), - shape: ShapeSchema.nullish() + shape: z.lazy(() => ShapeSchema.nullish()) }); " `) @@ -1544,14 +1544,14 @@ describe('zod', () => { " export function BookSchema(): z.ZodObject> { return z.object({ - author: AuthorSchema().nullish(), + author: z.lazy(() => AuthorSchema().nullish()), title: z.string().nullish() }) } export function AuthorSchema(): z.ZodObject> { return z.object({ - books: z.array(BookSchema().nullable()).nullish(), + books: z.array(z.lazy(() => BookSchema().nullable())).nullish(), name: z.string().nullish() }) } @@ -1597,7 +1597,7 @@ describe('zod', () => { export function BookSchema(): z.ZodObject> { return z.object({ title: z.string(), - author: AuthorSchema() + author: z.lazy(() => AuthorSchema()) }) } @@ -1605,7 +1605,7 @@ describe('zod', () => { return z.object({ __typename: z.literal('Textbook').optional(), title: z.string(), - author: AuthorSchema(), + author: z.lazy(() => AuthorSchema()), courses: z.array(z.string()) }) } @@ -1614,7 +1614,7 @@ describe('zod', () => { return z.object({ __typename: z.literal('ColoringBook').optional(), title: z.string(), - author: AuthorSchema(), + author: z.lazy(() => AuthorSchema()), colors: z.array(z.string()) }) } @@ -1622,7 +1622,7 @@ describe('zod', () => { export function AuthorSchema(): z.ZodObject> { return z.object({ __typename: z.literal('Author').optional(), - books: z.array(BookSchema()).nullish(), + books: z.array(z.lazy(() => BookSchema())).nullish(), name: z.string().nullish() }) } From 8709b698722a54357fbe4d83b741599a4bbf93c2 Mon Sep 17 00:00:00 2001 From: Yoshiharu KAMATA Date: Mon, 21 Jul 2025 11:17:08 +0900 Subject: [PATCH 002/133] Support for Zod 4 --- README.md | 72 +- codegen.yml | 24 + example/zod/README.md | 2 +- example/zod/schemas.ts | 2 +- example/zodv4/README.md | 158 +++ example/zodv4/schemas.ts | 140 +++ package.json | 4 +- src/config.ts | 21 +- src/index.ts | 3 + src/yup/index.ts | 6 +- src/zod/index.ts | 3 +- src/zodv4/index.ts | 401 +++++++ tests/zod.spec.ts | 64 ++ tests/zodv4.spec.ts | 2230 ++++++++++++++++++++++++++++++++++++++ 14 files changed, 3123 insertions(+), 7 deletions(-) create mode 100644 example/zodv4/README.md create mode 100644 example/zodv4/schemas.ts create mode 100644 src/zodv4/index.ts create mode 100644 tests/zodv4.spec.ts diff --git a/README.md b/README.md index 6225d43a..f07ab5f3 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,7 @@ - [x] support [yup](https://github.com/jquense/yup) - [x] support [zod](https://github.com/colinhacks/zod) +- [x] support [zod v4](https://github.com/colinhacks/zod) (zodv4) - [x] support [myzod](https://github.com/davidmdm/myzod) - [x] support [valibot](https://valibot.dev/) @@ -49,7 +50,7 @@ type: `ValidationSchema` default: `'yup'` Specify generete validation schema you want. -You can specify `yup` or `zod` or `myzod`. +You can specify `yup` or `zod` or `zodv4` or `myzod` or `valibot`. ```yml generates: @@ -61,6 +62,26 @@ generates: schema: yup ``` +### `zodImportPath` + +type: `string` default: `'zod'` + +Specifies a custom import path for the zod package. This is useful when you want to use a specific +version or subpath of zod, such as the v3 compatibility layer in zod v4 ('zod/v3'). +Only applies when schema is set to 'zod'. + +```yml +generates: + path/to/schemas.ts: + plugins: + - typescript + - typescript-validation-schema + config: + schema: zod + # Use zod v3 compatibility layer when using zod v4 + zodImportPath: zod/v3 +``` + ### `importFrom` type: `string` @@ -215,6 +236,16 @@ config: Email: z.string().email() ``` +#### zodv4 schema + +```yml +config: + schema: zodv4 + scalarSchemas: + Date: z.date() + Email: z.string().email() +``` + ### `defaultScalarTypeSchema` type: `string` @@ -235,6 +266,13 @@ config: defaultScalarSchema: z.unknown() ``` +#### zodv4 schema +```yml +config: + schema: zodv4 + defaultScalarSchema: z.unknown() +``` + ### `withObjectType` type: `boolean` default: `false` @@ -360,6 +398,38 @@ export function ExampleInputSchema(): z.ZodSchema { } ``` +#### zodv4 schema + +```yml +generates: + path/to/graphql.ts: + plugins: + - typescript + - typescript-validation-schema + config: + schema: zodv4 + directives: + constraint: + minLength: min + # Replace $1 with specified `startsWith` argument value of the constraint directive + startsWith: [regex, /^$1/, message] + format: + # This example means `validation-schema: directive-arg` + # directive-arg is supported String and Enum. + email: email +``` + +Then generates zodv4 validation schema like below. + +```ts +export function ExampleInputSchema(): z.ZodObject> { + return z.object({ + email: z.string().min(50).email(), + message: z.string().regex(/^Hello/, 'message') + }) +} +``` + #### other schema Please see [example](https://github.com/Code-Hex/graphql-codegen-typescript-validation-schema/tree/main/example) directory. diff --git a/codegen.yml b/codegen.yml index a0d3949f..7d98d7a8 100644 --- a/codegen.yml +++ b/codegen.yml @@ -47,6 +47,30 @@ generates: plugins: - ./dist/cjs/index.js: schema: zod + zodImportPath: zod/v3 + importFrom: ../types + withObjectType: true + directives: + # Write directives like + # + # directive: + # arg1: schemaApi + # arg2: ["schemaApi2", "Hello $1"] + # + # See more examples in `./tests/directive.spec.ts` + # https://github.com/Code-Hex/graphql-codegen-typescript-validation-schema/blob/main/tests/directive.spec.ts + constraint: + minLength: min + # Replace $1 with specified `startsWith` argument value of the constraint directive + startsWith: [regex, /^$1/, message] + format: + email: email + scalars: + ID: string + example/zodv4/schemas.ts: + plugins: + - ./dist/cjs/index.js: + schema: zodv4 importFrom: ../types withObjectType: true directives: diff --git a/example/zod/README.md b/example/zod/README.md index 53916fa5..b5f4e369 100644 --- a/example/zod/README.md +++ b/example/zod/README.md @@ -2,7 +2,7 @@ ## How to overwrite generated schema? -You can use zod [extend API](https://github.com/colinhacks/zod#extend). +You can use zod [extend API](https://v3.zod.dev/?id=extend). ```ts const AttributeInputSchemaWithCUID = AttributeInputSchema().extend({ diff --git a/example/zod/schemas.ts b/example/zod/schemas.ts index 407e3895..c1bea2b2 100644 --- a/example/zod/schemas.ts +++ b/example/zod/schemas.ts @@ -1,4 +1,4 @@ -import { z } from 'zod' +import { z } from 'zod/v3' import { Admin, AttributeInput, ButtonComponentType, ComponentInput, DropDownComponentInput, EventArgumentInput, EventInput, EventOptionType, Guest, HttpInput, HttpMethod, LayoutInput, MyType, MyTypeFooArgs, Namer, PageInput, PageType, User } from '../types' type Properties = Required<{ diff --git a/example/zodv4/README.md b/example/zodv4/README.md new file mode 100644 index 00000000..fed7d7d0 --- /dev/null +++ b/example/zodv4/README.md @@ -0,0 +1,158 @@ +# Tips for zod v4 schema + +## Overview + +The `zodv4` schema type is designed to work with Zod v4, which introduces significant changes to the type system and API. This implementation uses the updated type definitions and APIs that are compatible with Zod v4. + +## Key Differences from Zod v3 + +### Type System Changes + +Zod v4 introduces changes to the `ZodType` generic parameters: + +```ts +// Zod v3 +z.ZodType + +// Zod v4 +z.ZodType +``` + +The `Properties` type definition has been updated accordingly: + +```ts +// Updated for Zod v4 +type Properties = Required<{ + [K in keyof T]: z.ZodType; +}>; +``` + +### Enum Handling + +Zod v4 changes how enums are handled: + +```ts +// Zod v3 +z.nativeEnum(ButtonComponentType) + +// Zod v4 +z.enum(ButtonComponentType) +``` + +## How to overwrite generated schema? + +You can use zod [extend API](https://zod.dev/api#extend), same as with Zod v3: + +```ts +const AttributeInputSchemaWithCUID = AttributeInputSchema().extend({ + key: z.string().cuid(), +}); +``` + +## Apply input validator via ts decorator + +Validate the input object via typescript decorators when implementing resolvers. The implementation is compatible with Zod v4's type system: + +### Usage + +```ts +class Mutation { + @validateInput(SignupInputSchema) + async signup( + _root: Record, + { input: { email, password } }: MutationSignupArgs, + context: Context + ): Promise { + // The input here is automatically valid to adhere to SignupInputSchema + } +} +``` + +### Implementation: + +```ts +type ZodResolver> = ResolverFn< + any, + any, + any, + { input: TypeOf } +> + +/** + * Method decorator that validates the argument of the target function against the given schema. + * Updated for Zod v4 type system. + * + * @export + * @template T The type of the zod schema. + * @param {T} arg The zod schema used for the validation. + * @return {MethodDecorator} A {@link MethodDecorator}. + */ +export function validateInput( + arg: T | (() => T) +): MethodDecorator> { + return function (_target, _propertyKey, descriptor) { + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const originalMethod = descriptor.value! + // @ts-expect-error: should be fine + descriptor.value = function (root, { input }, context, info) { + const schema = typeof arg === 'function' ? arg() : arg + const result = schema.safeParse(input) + + if (result.success) { + // eslint-disable-next-line @typescript-eslint/no-unsafe-return + return originalMethod.call( + this, + root, + { input: result.data }, + context, + info + ) + } else { + return { problems: result.error.issues } + } + } + return descriptor + } +} +``` + +## Migration from Zod v3 + +If you're migrating from Zod v3 to v4, consider the following: + +### 1. Using Zod v4 with v3 compatibility layer + +You can use the `zodImportPath` option to import from Zod v4's v3 compatibility layer: + +```yml +generates: + path/to/schemas.ts: + plugins: + - graphql-codegen-validation-schema + config: + schema: zod + zodImportPath: zod/v3 # Use v3 compatibility layer +``` + +### 2. Using zodv4 schema type + +Alternatively, use the `zodv4` schema type for full Zod v4 compatibility: + +```yml +generates: + path/to/schemas.ts: + plugins: + - graphql-codegen-validation-schema + config: + schema: zodv4 # Use zodv4 schema type +``` + +## Performance and Type Safety + +Zod v4 provides improvements in: + +1. **Stricter Type Checking**: Enhanced type safety with simplified generic parameters +2. **Better API Design**: More intuitive and consistent API +3. **Internal Optimizations**: Performance improvements in validation logic + +These changes result in more reliable and maintainable validation code. diff --git a/example/zodv4/schemas.ts b/example/zodv4/schemas.ts new file mode 100644 index 00000000..237ae4d0 --- /dev/null +++ b/example/zodv4/schemas.ts @@ -0,0 +1,140 @@ +import * as z from 'zod' +import { Admin, AttributeInput, ButtonComponentType, ComponentInput, DropDownComponentInput, EventArgumentInput, EventInput, EventOptionType, Guest, HttpInput, HttpMethod, LayoutInput, MyType, MyTypeFooArgs, Namer, PageInput, PageType, User } from '../types' + +type Properties = Required<{ + [K in keyof T]: z.ZodType; +}>; + +type definedNonNullAny = {}; + +export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + +export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + +export const ButtonComponentTypeSchema = z.enum(ButtonComponentType); + +export const EventOptionTypeSchema = z.enum(EventOptionType); + +export const HttpMethodSchema = z.enum(HttpMethod); + +export const PageTypeSchema = z.enum(PageType); + +export function AdminSchema(): z.ZodObject> { + return z.object({ + __typename: z.literal('Admin').optional(), + lastModifiedAt: definedNonNullAnySchema.nullish() + }) +} + +export function AttributeInputSchema(): z.ZodObject> { + return z.object({ + key: z.string().nullish(), + val: z.string().nullish() + }) +} + +export function ComponentInputSchema(): z.ZodObject> { + return z.object({ + child: z.lazy(() => ComponentInputSchema().nullish()), + childrens: z.array(z.lazy(() => ComponentInputSchema().nullable())).nullish(), + event: z.lazy(() => EventInputSchema().nullish()), + name: z.string(), + type: ButtonComponentTypeSchema + }) +} + +export function DropDownComponentInputSchema(): z.ZodObject> { + return z.object({ + dropdownComponent: z.lazy(() => ComponentInputSchema().nullish()), + getEvent: z.lazy(() => EventInputSchema()) + }) +} + +export function EventArgumentInputSchema(): z.ZodObject> { + return z.object({ + name: z.string().min(5), + value: z.string().regex(/^foo/, "message") + }) +} + +export function EventInputSchema(): z.ZodObject> { + return z.object({ + arguments: z.array(z.lazy(() => EventArgumentInputSchema())), + options: z.array(EventOptionTypeSchema).nullish() + }) +} + +export function GuestSchema(): z.ZodObject> { + return z.object({ + __typename: z.literal('Guest').optional(), + lastLoggedIn: definedNonNullAnySchema.nullish() + }) +} + +export function HttpInputSchema(): z.ZodObject> { + return z.object({ + method: HttpMethodSchema.nullish(), + url: definedNonNullAnySchema + }) +} + +export function LayoutInputSchema(): z.ZodObject> { + return z.object({ + dropdown: z.lazy(() => DropDownComponentInputSchema().nullish()) + }) +} + +export function MyTypeSchema(): z.ZodObject> { + return z.object({ + __typename: z.literal('MyType').optional(), + foo: z.string().nullish() + }) +} + +export function MyTypeFooArgsSchema(): z.ZodObject> { + return z.object({ + a: z.string().nullish(), + b: z.number(), + c: z.boolean().nullish(), + d: z.number() + }) +} + +export function NamerSchema(): z.ZodObject> { + return z.object({ + name: z.string().nullish() + }) +} + +export function PageInputSchema(): z.ZodObject> { + return z.object({ + attributes: z.array(z.lazy(() => AttributeInputSchema())).nullish(), + date: definedNonNullAnySchema.nullish(), + height: z.number(), + id: z.string(), + layout: z.lazy(() => LayoutInputSchema()), + pageType: PageTypeSchema, + postIDs: z.array(z.string()).nullish(), + show: z.boolean(), + tags: z.array(z.string().nullable()).nullish(), + title: z.string(), + width: z.number() + }) +} + +export function UserSchema(): z.ZodObject> { + return z.object({ + __typename: z.literal('User').optional(), + createdAt: definedNonNullAnySchema.nullish(), + email: z.string().nullish(), + id: z.string().nullish(), + kind: UserKindSchema().nullish(), + name: z.string().nullish(), + password: z.string().nullish(), + updatedAt: definedNonNullAnySchema.nullish() + }) +} + +export function UserKindSchema() { + return z.union([AdminSchema(), GuestSchema()]) +} diff --git a/package.json b/package.json index 27efcd56..1012f942 100644 --- a/package.json +++ b/package.json @@ -60,6 +60,7 @@ "type-check": "tsc --noEmit", "type-check:yup": "tsc --strict --skipLibCheck --noEmit example/yup/schemas.ts", "type-check:zod": "tsc --strict --skipLibCheck --noEmit example/zod/schemas.ts", + "type-check:zodv4": "tsc --strict --skipLibCheck --noEmit example/zodv4/schemas.ts", "type-check:myzod": "tsc --strict --skipLibCheck --noEmit example/myzod/schemas.ts", "type-check:valibot": "tsc --strict --skipLibCheck --noEmit example/valibot/schemas.ts", "test": "vitest run", @@ -74,7 +75,8 @@ "prepublish": "run-p build:*" }, "peerDependencies": { - "graphql": "^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + "graphql": "^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0", + "zod": "^3.25.0 || ^4.0.0" }, "dependencies": { "@graphql-codegen/plugin-helpers": "^5.0.0", diff --git a/src/config.ts b/src/config.ts index d6ec9f2b..f75ab40f 100644 --- a/src/config.ts +++ b/src/config.ts @@ -1,7 +1,7 @@ import type { TypeScriptPluginConfig } from '@graphql-codegen/typescript'; import type { NamingConventionMap } from '@graphql-codegen/visitor-plugin-common'; -export type ValidationSchema = 'yup' | 'zod' | 'myzod' | 'valibot'; +export type ValidationSchema = 'yup' | 'zod' | 'zodv4' | 'myzod' | 'valibot'; export type ValidationSchemaExportType = 'function' | 'const'; export interface DirectiveConfig { @@ -19,6 +19,25 @@ interface ScalarSchemas { } export interface ValidationSchemaPluginConfig extends TypeScriptPluginConfig { + /** + * @description Specifies a custom import path for the zod package. This is useful when you want to use a specific + * version or subpath of zod, such as the v3 compatibility layer in zod v4 ('zod/v3'). + * Only applies when schema is set to 'zod'. + * @default 'zod' + * + * @exampleMarkdown + * ```yml + * generates: + * path/to/schemas.ts: + * plugins: + * - graphql-codegen-validation-schema + * config: + * schema: zod + * # Use zod v3 compatibility layer when using zod v4 + * zodImportPath: zod/v3 + * ``` + */ + zodImportPath?: string /** * @description specify generate schema * @default yup diff --git a/src/index.ts b/src/index.ts index 39dd1e8a..7a37065e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -10,6 +10,7 @@ import { MyZodSchemaVisitor } from './myzod/index.js'; import { ValibotSchemaVisitor } from './valibot/index.js'; import { YupSchemaVisitor } from './yup/index.js'; import { ZodSchemaVisitor } from './zod/index.js'; +import { ZodV4SchemaVisitor } from './zodv4/index.js'; export const plugin: PluginFunction = ( schema: GraphQLSchema, @@ -32,6 +33,8 @@ export const plugin: PluginFunction') + .withContent(['Required<{', ' [K in keyof T]: z.ZodType;', '}>'].join('\n')) + .string, + // Unfortunately, zod doesn’t provide non-null defined any schema. + // This is a temporary hack until it is fixed. + // see: https://github.com/colinhacks/zod/issues/884 + new DeclarationBlock({}).asKind('type').withName('definedNonNullAny').withContent('{}').string, + new DeclarationBlock({}) + .export() + .asKind('const') + .withName(`isDefinedNonNullAny`) + .withContent(`(v: any): v is definedNonNullAny => v !== undefined && v !== null`) + .string, + new DeclarationBlock({}) + .export() + .asKind('const') + .withName(`${anySchema}`) + .withContent(`z.any().refine((v) => isDefinedNonNullAny(v))`) + .string, + ...this.enumDeclarations, + ].join('\n')}` + ); + } + + get InputObjectTypeDefinition() { + return { + leave: (node: InputObjectTypeDefinitionNode) => { + const visitor = this.createVisitor('input'); + const name = visitor.convertName(node.name.value); + this.importTypes.push(name); + return this.buildInputFields(node.fields ?? [], visitor, name); + }, + }; + } + + get InterfaceTypeDefinition() { + return { + leave: InterfaceTypeDefinitionBuilder(this.config.withObjectType, (node: InterfaceTypeDefinitionNode) => { + const visitor = this.createVisitor('output'); + const name = visitor.convertName(node.name.value); + const typeName = visitor.prefixTypeNamespace(name); + this.importTypes.push(name); + + // Building schema for field arguments. + const argumentBlocks = this.buildTypeDefinitionArguments(node, visitor); + const appendArguments = argumentBlocks ? `\n${argumentBlocks}` : ''; + + // Building schema for fields. + const shape = node.fields?.map(field => generateFieldZodSchema(this.config, visitor, field, 2)).join(',\n'); + + switch (this.config.validationSchemaExportType) { + case 'const': + return ( + new DeclarationBlock({}) + .export() + .asKind('const') + .withName(`${name}Schema: z.ZodObject>`) + .withContent([`z.object({`, shape, '})'].join('\n')) + .string + appendArguments + ); + + case 'function': + default: + return ( + new DeclarationBlock({}) + .export() + .asKind('function') + .withName(`${name}Schema(): z.ZodObject>`) + .withBlock([indent(`return z.object({`), shape, indent('})')].join('\n')) + .string + appendArguments + ); + } + }), + }; + } + + get ObjectTypeDefinition() { + return { + leave: ObjectTypeDefinitionBuilder(this.config.withObjectType, (node: ObjectTypeDefinitionNode) => { + const visitor = this.createVisitor('output'); + const name = visitor.convertName(node.name.value); + const typeName = visitor.prefixTypeNamespace(name); + this.importTypes.push(name); + + // Building schema for field arguments. + const argumentBlocks = this.buildTypeDefinitionArguments(node, visitor); + const appendArguments = argumentBlocks ? `\n${argumentBlocks}` : ''; + + // Building schema for fields. + const shape = node.fields?.map(field => generateFieldZodSchema(this.config, visitor, field, 2)).join(',\n'); + + switch (this.config.validationSchemaExportType) { + case 'const': + return ( + new DeclarationBlock({}) + .export() + .asKind('const') + .withName(`${name}Schema: z.ZodObject>`) + .withContent( + [ + `z.object({`, + indent(`__typename: z.literal('${node.name.value}').optional(),`, 2), + shape, + '})', + ].join('\n'), + ) + .string + appendArguments + ); + + case 'function': + default: + return ( + new DeclarationBlock({}) + .export() + .asKind('function') + .withName(`${name}Schema(): z.ZodObject>`) + .withBlock( + [ + indent(`return z.object({`), + indent(`__typename: z.literal('${node.name.value}').optional(),`, 2), + shape, + indent('})'), + ].join('\n'), + ) + .string + appendArguments + ); + } + }), + }; + } + + get EnumTypeDefinition() { + return { + leave: (node: EnumTypeDefinitionNode) => { + const visitor = this.createVisitor('both'); + const enumname = visitor.convertName(node.name.value); + const enumTypeName = visitor.prefixTypeNamespace(enumname); + this.importTypes.push(enumname); + + // hoist enum declarations + this.enumDeclarations.push( + new DeclarationBlock({}) + .export() + .asKind('const') + .withName(`${enumname}Schema`) + .withContent( + this.config.enumsAsTypes + ? `z.enum([${node.values?.map(enumOption => `'${enumOption.name.value}'`).join(', ')}])` + : `z.enum(${enumTypeName})`, + ) + .string, + ); + }, + }; + } + + get UnionTypeDefinition() { + return { + leave: (node: UnionTypeDefinitionNode) => { + if (!node.types || !this.config.withObjectType) + return; + const visitor = this.createVisitor('output'); + const unionName = visitor.convertName(node.name.value); + const unionElements = node.types.map((t) => { + const element = visitor.convertName(t.name.value); + const typ = visitor.getType(t.name.value); + if (typ?.astNode?.kind === 'EnumTypeDefinition') + return `${element}Schema`; + + switch (this.config.validationSchemaExportType) { + case 'const': + return `${element}Schema`; + case 'function': + default: + return `${element}Schema()`; + } + }).join(', '); + const unionElementsCount = node.types.length ?? 0; + + const union = unionElementsCount > 1 ? `z.union([${unionElements}])` : unionElements; + + switch (this.config.validationSchemaExportType) { + case 'const': + return new DeclarationBlock({}).export().asKind('const').withName(`${unionName}Schema`).withContent(union).string; + case 'function': + default: + return new DeclarationBlock({}) + .export() + .asKind('function') + .withName(`${unionName}Schema()`) + .withBlock(indent(`return ${union}`)) + .string; + } + }, + }; + } + + protected buildInputFields( + fields: readonly (FieldDefinitionNode | InputValueDefinitionNode)[], + visitor: Visitor, + name: string, + ) { + const typeName = visitor.prefixTypeNamespace(name); + const shape = fields.map(field => generateFieldZodSchema(this.config, visitor, field, 2)).join(',\n'); + + switch (this.config.validationSchemaExportType) { + case 'const': + return new DeclarationBlock({}) + .export() + .asKind('const') + .withName(`${name}Schema: z.ZodObject>`) + .withContent(['z.object({', shape, '})'].join('\n')) + .string; + + case 'function': + default: + return new DeclarationBlock({}) + .export() + .asKind('function') + .withName(`${name}Schema(): z.ZodObject>`) + .withBlock([indent(`return z.object({`), shape, indent('})')].join('\n')) + .string; + } + } +} + +function generateFieldZodSchema(config: ValidationSchemaPluginConfig, visitor: Visitor, field: InputValueDefinitionNode | FieldDefinitionNode, indentCount: number): string { + const gen = generateFieldTypeZodSchema(config, visitor, field, field.type); + return indent(`${field.name.value}: ${maybeLazy(field.type, gen)}`, indentCount); +} + +function generateFieldTypeZodSchema(config: ValidationSchemaPluginConfig, visitor: Visitor, field: InputValueDefinitionNode | FieldDefinitionNode, type: TypeNode, parentType?: TypeNode): string { + if (isListType(type)) { + const gen = generateFieldTypeZodSchema(config, visitor, field, type.type, type); + if (!isNonNullType(parentType)) { + const arrayGen = `z.array(${maybeLazy(type.type, gen)})`; + const maybeLazyGen = applyDirectives(config, field, arrayGen); + return `${maybeLazyGen}.nullish()`; + } + return `z.array(${maybeLazy(type.type, gen)})`; + } + if (isNonNullType(type)) { + const gen = generateFieldTypeZodSchema(config, visitor, field, type.type, type); + return maybeLazy(type.type, gen); + } + if (isNamedType(type)) { + const gen = generateNameNodeZodSchema(config, visitor, type.name); + if (isListType(parentType)) + return `${gen}.nullable()`; + + let appliedDirectivesGen = applyDirectives(config, field, gen); + + if (field.kind === Kind.INPUT_VALUE_DEFINITION) { + const { defaultValue } = field; + + if (defaultValue?.kind === Kind.INT || defaultValue?.kind === Kind.FLOAT || defaultValue?.kind === Kind.BOOLEAN) + appliedDirectivesGen = `${appliedDirectivesGen}.default(${defaultValue.value})`; + + if (defaultValue?.kind === Kind.STRING || defaultValue?.kind === Kind.ENUM) { + if (config.useEnumTypeAsDefaultValue && defaultValue?.kind !== Kind.STRING) { + let value = convertNameParts(defaultValue.value, resolveExternalModuleAndFn('change-case-all#pascalCase'), config.namingConvention?.transformUnderscore); + + if (config.namingConvention?.enumValues) + value = convertNameParts(defaultValue.value, resolveExternalModuleAndFn(config.namingConvention?.enumValues), config.namingConvention?.transformUnderscore); + + appliedDirectivesGen = `${appliedDirectivesGen}.default(${type.name.value}.${value})`; + } + else { + appliedDirectivesGen = `${appliedDirectivesGen}.default("${escapeGraphQLCharacters(defaultValue.value)}")`; + } + } + } + + if (isNonNullType(parentType)) { + if (visitor.shouldEmitAsNotAllowEmptyString(type.name.value)) + return `${appliedDirectivesGen}.min(1)`; + + return appliedDirectivesGen; + } + if (isListType(parentType)) + return `${appliedDirectivesGen}.nullable()`; + + return `${appliedDirectivesGen}.nullish()`; + } + console.warn('unhandled type:', type); + return ''; +} + +function applyDirectives(config: ValidationSchemaPluginConfig, field: InputValueDefinitionNode | FieldDefinitionNode, gen: string): string { + if (config.directives && field.directives) { + const formatted = formatDirectiveConfig(config.directives); + return gen + buildApi(formatted, field.directives); + } + return gen; +} + +function generateNameNodeZodSchema(config: ValidationSchemaPluginConfig, visitor: Visitor, node: NameNode): string { + const converter = visitor.getNameNodeConverter(node); + + switch (converter?.targetKind) { + case 'InterfaceTypeDefinition': + case 'InputObjectTypeDefinition': + case 'ObjectTypeDefinition': + case 'UnionTypeDefinition': + // using switch-case rather than if-else to allow for future expansion + switch (config.validationSchemaExportType) { + case 'const': + return `${converter.convertName()}Schema`; + case 'function': + default: + return `${converter.convertName()}Schema()`; + } + case 'EnumTypeDefinition': + return `${converter.convertName()}Schema`; + case 'ScalarTypeDefinition': + return zod4Scalar(config, visitor, node.value); + default: + if (converter?.targetKind) + console.warn('Unknown targetKind', converter?.targetKind); + + return zod4Scalar(config, visitor, node.value); + } +} + +function maybeLazy(type: TypeNode, schema: string): string { + if (isNamedType(type) && isInput(type.name.value)) + return `z.lazy(() => ${schema})`; + + return schema; +} + +function zod4Scalar(config: ValidationSchemaPluginConfig, visitor: Visitor, scalarName: string): string { + if (config.scalarSchemas?.[scalarName]) + return config.scalarSchemas[scalarName]; + + const tsType = visitor.getScalarType(scalarName); + switch (tsType) { + case 'string': + return `z.string()`; + case 'number': + return `z.number()`; + case 'boolean': + return `z.boolean()`; + } + + if (config.defaultScalarTypeSchema) { + return config.defaultScalarTypeSchema; + } + + console.warn('unhandled scalar name:', scalarName); + return anySchema; +} diff --git a/tests/zod.spec.ts b/tests/zod.spec.ts index b025ae04..9d76346e 100644 --- a/tests/zod.spec.ts +++ b/tests/zod.spec.ts @@ -1797,4 +1797,68 @@ describe('zod', () => { " `) }); + + it('with zodImportPath', async () => { + const schema = buildSchema(/* GraphQL */ ` + input Say { + phrase: String! + } + `); + const result = await plugin( + schema, + [], + { + schema: 'zod', + zodImportPath: 'zod/v3', + }, + {}, + ); + expect(result.prepend).toMatchInlineSnapshot(` + [ + "import { z } from 'zod/v3'", + ] + `); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + export function SaySchema(): z.ZodObject> { + return z.object({ + phrase: z.string() + }) + } + " + `); + }); + + it('with zodImportPath and importFrom', async () => { + const schema = buildSchema(/* GraphQL */ ` + input Say { + phrase: String! + } + `); + const result = await plugin( + schema, + [], + { + schema: 'zod', + zodImportPath: 'zod/v3', + importFrom: './types', + }, + {}, + ); + expect(result.prepend).toMatchInlineSnapshot(` + [ + "import { z } from 'zod/v3'", + "import { Say } from './types'", + ] + `); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + export function SaySchema(): z.ZodObject> { + return z.object({ + phrase: z.string() + }) + } + " + `); + }); }); diff --git a/tests/zodv4.spec.ts b/tests/zodv4.spec.ts new file mode 100644 index 00000000..2cc2a0c4 --- /dev/null +++ b/tests/zodv4.spec.ts @@ -0,0 +1,2230 @@ +import { buildClientSchema, buildSchema, introspectionFromSchema } from 'graphql'; +import { dedent } from 'ts-dedent'; + +import { plugin } from '../src/index'; + +const initialEmitValue = dedent(` + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + + `) + +function removedInitialEmitValue(content: string) { + return content.replace(initialEmitValue, ''); +} + +describe('zodv4', () => { + it('non-null and defined', async () => { + const schema = buildSchema(/* GraphQL */ ` + input PrimitiveInput { + a: ID! + b: String! + c: Boolean! + d: Int! + e: Float! + } + `); + const scalars = { + ID: 'string', + } + const result = await plugin(schema, [], { schema: 'zodv4', scalars }, {}); + expect(result.prepend).toMatchInlineSnapshot(` + [ + "import * as z from 'zod'", + ] + `); + + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function PrimitiveInputSchema(): z.ZodObject> { + return z.object({ + a: z.string(), + b: z.string(), + c: z.boolean(), + d: z.number(), + e: z.number() + }) + } + " + `); + }) + + it('nullish', async () => { + const schema = buildSchema(/* GraphQL */ ` + input PrimitiveInput { + a: ID + b: String + c: Boolean + d: Int + e: Float + z: String! # no defined check + } + `); + const scalars = { + ID: 'string', + } + const result = await plugin(schema, [], { schema: 'zodv4', scalars }, {}); + + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function PrimitiveInputSchema(): z.ZodObject> { + return z.object({ + a: z.string().nullish(), + b: z.string().nullish(), + c: z.boolean().nullish(), + d: z.number().nullish(), + e: z.number().nullish(), + z: z.string() + }) + } + " + `) + }) + + it('array', async () => { + const schema = buildSchema(/* GraphQL */ ` + input ArrayInput { + a: [String] + b: [String!] + c: [String!]! + d: [[String]] + e: [[String]!] + f: [[String]!]! + } + `); + const scalars = undefined + const result = await plugin(schema, [], { schema: 'zodv4', scalars }, {}); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function ArrayInputSchema(): z.ZodObject> { + return z.object({ + a: z.array(z.string().nullable()).nullish(), + b: z.array(z.string()).nullish(), + c: z.array(z.string()), + d: z.array(z.array(z.string().nullable()).nullish()).nullish(), + e: z.array(z.array(z.string().nullable())).nullish(), + f: z.array(z.array(z.string().nullable())) + }) + } + " + `) + }) + + it('ref input object', async () => { + const schema = buildSchema(/* GraphQL */ ` + input AInput { + b: BInput! + } + input BInput { + c: CInput! + } + input CInput { + a: AInput! + } + `); + const scalars = undefined + const result = await plugin(schema, [], { schema: 'zodv4', scalars }, {}); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function AInputSchema(): z.ZodObject> { + return z.object({ + b: z.lazy(() => BInputSchema()) + }) + } + + export function BInputSchema(): z.ZodObject> { + return z.object({ + c: z.lazy(() => CInputSchema()) + }) + } + + export function CInputSchema(): z.ZodObject> { + return z.object({ + a: z.lazy(() => AInputSchema()) + }) + } + " + `) + }) + + it('ref input object w/ schemaNamespacedImportName', async () => { + const schema = buildSchema(/* GraphQL */ ` + input AInput { + b: BInput! + } + input BInput { + c: CInput! + } + input CInput { + a: AInput! + } + `); + const scalars = undefined + const result = await plugin(schema, [], { schema: 'zodv4', scalars, importFrom: './types', schemaNamespacedImportName: 't' }, {}); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function AInputSchema(): z.ZodObject> { + return z.object({ + b: z.lazy(() => BInputSchema()) + }) + } + + export function BInputSchema(): z.ZodObject> { + return z.object({ + c: z.lazy(() => CInputSchema()) + }) + } + + export function CInputSchema(): z.ZodObject> { + return z.object({ + a: z.lazy(() => AInputSchema()) + }) + } + " + `) + }) + + it('nested input object', async () => { + const schema = buildSchema(/* GraphQL */ ` + input NestedInput { + child: NestedInput + childrens: [NestedInput] + } + `); + const scalars = undefined + const result = await plugin(schema, [], { schema: 'zodv4', scalars }, {}); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function NestedInputSchema(): z.ZodObject> { + return z.object({ + child: z.lazy(() => NestedInputSchema().nullish()), + childrens: z.array(z.lazy(() => NestedInputSchema().nullable())).nullish() + }) + } + " + `) + }) + + it('enum', async () => { + const schema = buildSchema(/* GraphQL */ ` + enum PageType { + PUBLIC + BASIC_AUTH + } + input PageInput { + pageType: PageType! + } + `); + const scalars = undefined + const result = await plugin(schema, [], { schema: 'zodv4', scalars }, {}); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export const PageTypeSchema = z.enum(PageType); + + export function PageInputSchema(): z.ZodObject> { + return z.object({ + pageType: PageTypeSchema + }) + } + " + `) + }) + + it('enum w/ schemaNamespacedImportName', async () => { + const schema = buildSchema(/* GraphQL */ ` + enum PageType { + PUBLIC + BASIC_AUTH + } + input PageInput { + pageType: PageType! + } + `); + const scalars = undefined + const result = await plugin(schema, [], { schema: 'zodv4', scalars, importFrom: './', schemaNamespacedImportName: 't' }, {}); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export const PageTypeSchema = z.enum(t.PageType); + + export function PageInputSchema(): z.ZodObject> { + return z.object({ + pageType: PageTypeSchema + }) + } + " + `) + }) + + it('camelcase', async () => { + const schema = buildSchema(/* GraphQL */ ` + input HTTPInput { + method: HTTPMethod + url: URL! + } + + enum HTTPMethod { + GET + POST + } + + scalar URL # unknown scalar, should be any (definedNonNullAnySchema) + `); + const scalars = undefined + const result = await plugin(schema, [], { schema: 'zodv4', scalars }, {}); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export const HttpMethodSchema = z.enum(HttpMethod); + + export function HttpInputSchema(): z.ZodObject> { + return z.object({ + method: HttpMethodSchema.nullish(), + url: definedNonNullAnySchema + }) + } + " + `) + }) + + it('with scalars', async () => { + const schema = buildSchema(/* GraphQL */ ` + input Say { + phrase: Text! + times: Count! + } + + scalar Count + scalar Text + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + scalars: { + Text: 'string', + Count: 'number', + }, + }, + {}, + ); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function SaySchema(): z.ZodObject> { + return z.object({ + phrase: z.string(), + times: z.number() + }) + } + " + `) + }); + + it('with importFrom', async () => { + const schema = buildSchema(/* GraphQL */ ` + input Say { + phrase: String! + } + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + importFrom: './types', + }, + {}, + ); + expect(result.prepend).toMatchInlineSnapshot(` + [ + "import * as z from 'zod'", + "import { Say } from './types'", + ] + `); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function SaySchema(): z.ZodObject> { + return z.object({ + phrase: z.string() + }) + } + " + `) + }); + + it('with importFrom & useTypeImports', async () => { + const schema = buildSchema(/* GraphQL */ ` + input Say { + phrase: String! + } + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + importFrom: './types', + useTypeImports: true, + }, + {}, + ); + expect(result.prepend).toMatchInlineSnapshot(` + [ + "import * as z from 'zod'", + "import type { Say } from './types'", + ] + `); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function SaySchema(): z.ZodObject> { + return z.object({ + phrase: z.string() + }) + } + " + `) + }); + + it('with importFrom & schemaNamespacedImportName', async () => { + const schema = buildSchema(/* GraphQL */ ` + input Say { + phrase: String! + } + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + importFrom: './types', + schemaNamespacedImportName: 't', + }, + {}, + ); + expect(result.prepend).toMatchInlineSnapshot(` + [ + "import * as z from 'zod'", + "import * as t from './types'", + ] + `); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function SaySchema(): z.ZodObject> { + return z.object({ + phrase: z.string() + }) + } + " + `) + }); + + it('with enumsAsTypes', async () => { + const schema = buildSchema(/* GraphQL */ ` + enum PageType { + PUBLIC + BASIC_AUTH + } + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + enumsAsTypes: true, + }, + {}, + ); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export const PageTypeSchema = z.enum(['PUBLIC', 'BASIC_AUTH']); + " + `) + }); + + it('with enumsAsTypes + schemaNamespacedImportName', async () => { + const schema = buildSchema(/* GraphQL */ ` + enum PageType { + PUBLIC + BASIC_AUTH + } + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + enumsAsTypes: true, + importFrom: './types', + schemaNamespacedImportName: 't', + }, + {}, + ); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export const PageTypeSchema = z.enum(['PUBLIC', 'BASIC_AUTH']); + " + `) + }); + + it('with notAllowEmptyString', async () => { + const schema = buildSchema(/* GraphQL */ ` + input PrimitiveInput { + a: ID! + b: String! + c: Boolean! + d: Int! + e: Float! + } + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + notAllowEmptyString: true, + scalars: { + ID: 'string', + }, + }, + {}, + ); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function PrimitiveInputSchema(): z.ZodObject> { + return z.object({ + a: z.string().min(1), + b: z.string().min(1), + c: z.boolean(), + d: z.number(), + e: z.number() + }) + } + " + `) + }); + + it('with notAllowEmptyString issue #386', async () => { + const schema = buildSchema(/* GraphQL */ ` + input InputOne { + field: InputNested! + } + + input InputNested { + field: String! + } + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + notAllowEmptyString: true, + scalars: { + ID: 'string', + }, + }, + {}, + ); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function InputOneSchema(): z.ZodObject> { + return z.object({ + field: z.lazy(() => InputNestedSchema()) + }) + } + + export function InputNestedSchema(): z.ZodObject> { + return z.object({ + field: z.string().min(1) + }) + } + " + `) + }); + + it('with scalarSchemas', async () => { + const schema = buildSchema(/* GraphQL */ ` + input ScalarsInput { + date: Date! + email: Email + str: String! + } + scalar Date + scalar Email + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + scalarSchemas: { + Date: 'z.date()', + Email: 'z.string().email()', + }, + }, + {}, + ); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function ScalarsInputSchema(): z.ZodObject> { + return z.object({ + date: z.date(), + email: z.string().email().nullish(), + str: z.string() + }) + } + " + `) + }); + + it('with defaultScalarTypeSchema', async () => { + const schema = buildSchema(/* GraphQL */ ` + input ScalarsInput { + date: Date! + email: Email + str: String! + } + scalar Date + scalar Email + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + scalarSchemas: { + Email: 'z.string().email()', + }, + defaultScalarTypeSchema: 'z.string()', + }, + {}, + ); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function ScalarsInputSchema(): z.ZodObject> { + return z.object({ + date: z.string(), + email: z.string().email().nullish(), + str: z.string() + }) + } + " + `) + }); + + it('with typesPrefix', async () => { + const schema = buildSchema(/* GraphQL */ ` + input Say { + phrase: String! + } + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + typesPrefix: 'I', + importFrom: './types', + }, + {}, + ); + expect(result.prepend).toMatchInlineSnapshot(` + [ + "import * as z from 'zod'", + "import { ISay } from './types'", + ] + `); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function ISaySchema(): z.ZodObject> { + return z.object({ + phrase: z.string() + }) + } + " + `) + }); + + it('with typesSuffix', async () => { + const schema = buildSchema(/* GraphQL */ ` + input Say { + phrase: String! + } + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + typesSuffix: 'I', + importFrom: './types', + }, + {}, + ); + expect(result.prepend).toMatchInlineSnapshot(` + [ + "import * as z from 'zod'", + "import { SayI } from './types'", + ] + `); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function SayISchema(): z.ZodObject> { + return z.object({ + phrase: z.string() + }) + } + " + `) + }); + + it('with default input values as enum types', async () => { + const schema = buildSchema(/* GraphQL */ ` + enum PageType { + PUBLIC + BASIC_AUTH + } + input PageInput { + pageType: PageType! = PUBLIC + greeting: String = "Hello" + score: Int = 100 + ratio: Float = 0.5 + isMember: Boolean = true + } + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + importFrom: './types', + useEnumTypeAsDefaultValue: true, + }, + { + }, + ); + + expect(result.content).toContain('export const PageTypeSchema = z.enum(PageType)'); + expect(result.content).toContain('export function PageInputSchema(): z.ZodObject>'); + + expect(result.content).toContain('pageType: PageTypeSchema.default(PageType.Public)'); + expect(result.content).toContain('greeting: z.string().default("Hello").nullish()'); + expect(result.content).toContain('score: z.number().default(100).nullish()'); + expect(result.content).toContain('ratio: z.number().default(0.5).nullish()'); + expect(result.content).toContain('isMember: z.boolean().default(true).nullish()'); + }); + + it('with default input values as enum types with underscores', async () => { + const schema = buildSchema(/* GraphQL */ ` + enum PageType { + BASIC_AUTH + PUBLIC + } + input PageInput { + pageType: PageType! = BASIC_AUTH + greeting: String = "Hello" + score: Int = 100 + ratio: Float = 0.5 + isMember: Boolean = true + } + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + importFrom: './types', + useEnumTypeAsDefaultValue: true, + }, + { + }, + ); + + expect(result.content).toContain('export const PageTypeSchema = z.enum(PageType)'); + expect(result.content).toContain('export function PageInputSchema(): z.ZodObject>'); + + expect(result.content).toContain('pageType: PageTypeSchema.default(PageType.Basic_Auth)'); + expect(result.content).toContain('greeting: z.string().default("Hello").nullish()'); + expect(result.content).toContain('score: z.number().default(100).nullish()'); + expect(result.content).toContain('ratio: z.number().default(0.5).nullish()'); + expect(result.content).toContain('isMember: z.boolean().default(true).nullish()'); + }); + + it('with default input values as enum types with no underscores', async () => { + const schema = buildSchema(/* GraphQL */ ` + enum PageType { + BASIC_AUTH + PUBLIC + } + input PageInput { + pageType: PageType! = BASIC_AUTH + greeting: String = "Hello" + score: Int = 100 + ratio: Float = 0.5 + isMember: Boolean = true + } + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + importFrom: './types', + useEnumTypeAsDefaultValue: true, + namingConvention: { + transformUnderscore: true, + }, + }, + { + }, + ); + + expect(result.content).toContain('export const PageTypeSchema = z.enum(PageType)'); + expect(result.content).toContain('export function PageInputSchema(): z.ZodObject>'); + + expect(result.content).toContain('pageType: PageTypeSchema.default(PageType.BasicAuth)'); + expect(result.content).toContain('greeting: z.string().default("Hello").nullish()'); + expect(result.content).toContain('score: z.number().default(100).nullish()'); + expect(result.content).toContain('ratio: z.number().default(0.5).nullish()'); + expect(result.content).toContain('isMember: z.boolean().default(true).nullish()'); + }); + + it('with default input values', async () => { + const schema = buildSchema(/* GraphQL */ ` + enum PageType { + PUBLIC + BASIC_AUTH + } + input PageInput { + pageType: PageType! = PUBLIC + greeting: String = "Hello" + newline: String = "Hello\\nWorld" + score: Int = 100 + ratio: Float = 0.5 + isMember: Boolean = true + } + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + importFrom: './types', + }, + {}, + ); + + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export const PageTypeSchema = z.enum(PageType); + + export function PageInputSchema(): z.ZodObject> { + return z.object({ + pageType: PageTypeSchema.default("PUBLIC"), + greeting: z.string().default("Hello").nullish(), + newline: z.string().default("Hello\\nWorld").nullish(), + score: z.number().default(100).nullish(), + ratio: z.number().default(0.5).nullish(), + isMember: z.boolean().default(true).nullish() + }) + } + " + `) + }); + + describe('issues #19', () => { + it('string field', async () => { + const schema = buildSchema(/* GraphQL */ ` + input UserCreateInput { + profile: String @constraint(minLength: 1, maxLength: 5000) + } + + directive @constraint(minLength: Int!, maxLength: Int!) on INPUT_FIELD_DEFINITION + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + directives: { + constraint: { + minLength: ['min', '$1', 'Please input more than $1'], + maxLength: ['max', '$1', 'Please input less than $1'], + }, + }, + }, + {}, + ); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function UserCreateInputSchema(): z.ZodObject> { + return z.object({ + profile: z.string().min(1, "Please input more than 1").max(5000, "Please input less than 5000").nullish() + }) + } + " + `) + }); + + it('not null field', async () => { + const schema = buildSchema(/* GraphQL */ ` + input UserCreateInput { + profile: String! @constraint(minLength: 1, maxLength: 5000) + } + + directive @constraint(minLength: Int!, maxLength: Int!) on INPUT_FIELD_DEFINITION + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + directives: { + constraint: { + minLength: ['min', '$1', 'Please input more than $1'], + maxLength: ['max', '$1', 'Please input less than $1'], + }, + }, + }, + {}, + ); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function UserCreateInputSchema(): z.ZodObject> { + return z.object({ + profile: z.string().min(1, "Please input more than 1").max(5000, "Please input less than 5000") + }) + } + " + `) + }); + + it('list field', async () => { + const schema = buildSchema(/* GraphQL */ ` + input UserCreateInput { + profile: [String] @constraint(minLength: 1, maxLength: 5000) + } + + directive @constraint(minLength: Int!, maxLength: Int!) on INPUT_FIELD_DEFINITION + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + directives: { + constraint: { + minLength: ['min', '$1', 'Please input more than $1'], + maxLength: ['max', '$1', 'Please input less than $1'], + }, + }, + }, + {}, + ); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function UserCreateInputSchema(): z.ZodObject> { + return z.object({ + profile: z.array(z.string().nullable()).min(1, "Please input more than 1").max(5000, "Please input less than 5000").nullish() + }) + } + " + `) + }); + }); + + describe('pR #112', () => { + it('with notAllowEmptyString', async () => { + const schema = buildSchema(/* GraphQL */ ` + input UserCreateInput { + profile: String! @constraint(maxLength: 5000) + age: Int! + } + + directive @constraint(maxLength: Int!) on INPUT_FIELD_DEFINITION + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + notAllowEmptyString: true, + directives: { + constraint: { + maxLength: ['max', '$1', 'Please input less than $1'], + }, + }, + }, + {}, + ); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function UserCreateInputSchema(): z.ZodObject> { + return z.object({ + profile: z.string().max(5000, "Please input less than 5000").min(1), + age: z.number() + }) + } + " + `) + }); + + it('without notAllowEmptyString', async () => { + const schema = buildSchema(/* GraphQL */ ` + input UserCreateInput { + profile: String! @constraint(maxLength: 5000) + age: Int! + } + + directive @constraint(maxLength: Int!) on INPUT_FIELD_DEFINITION + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + directives: { + constraint: { + maxLength: ['max', '$1', 'Please input less than $1'], + }, + }, + }, + {}, + ); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function UserCreateInputSchema(): z.ZodObject> { + return z.object({ + profile: z.string().max(5000, "Please input less than 5000"), + age: z.number() + }) + } + " + `) + }); + }); + + describe('with withObjectType', () => { + it('not generate if withObjectType false', async () => { + const schema = buildSchema(/* GraphQL */ ` + type User { + id: ID! + name: String + } + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + }, + {}, + ); + expect(result.content).not.toContain('export function UserSchema(): z.ZodObject>'); + }); + + it('generate object type contains object type', async () => { + const schema = buildSchema(/* GraphQL */ ` + type Book { + author: Author + title: String + } + + type Author { + books: [Book] + name: String + } + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + withObjectType: true, + }, + {}, + ); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function BookSchema(): z.ZodObject> { + return z.object({ + __typename: z.literal('Book').optional(), + author: AuthorSchema().nullish(), + title: z.string().nullish() + }) + } + + export function AuthorSchema(): z.ZodObject> { + return z.object({ + __typename: z.literal('Author').optional(), + books: z.array(BookSchema().nullable()).nullish(), + name: z.string().nullish() + }) + } + " + `) + + for (const wantNotContain of ['Query', 'Mutation', 'Subscription']) + expect(result.content).not.toContain(wantNotContain); + }); + + it('generate both input & type', async () => { + const schema = buildSchema(/* GraphQL */ ` + scalar Date + scalar Email + input UserCreateInput { + name: String! + date: Date! + email: Email! + } + input UsernameUpdateInput { + updateInputId: ID! + updateName: String! + } + type User { + id: ID! + name: String + age: Int + email: Email + isMember: Boolean + createdAt: Date! + } + + type Mutation { + _empty: String + } + + type Query { + _empty: String + } + + type Subscription { + _empty: String + } + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + withObjectType: true, + scalarSchemas: { + Date: 'z.date()', + Email: 'z.string().email()', + }, + scalars: { + ID: { + input: 'number', + output: 'string', + }, + }, + }, + {}, + ); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function UserCreateInputSchema(): z.ZodObject> { + return z.object({ + name: z.string(), + date: z.date(), + email: z.string().email() + }) + } + + export function UsernameUpdateInputSchema(): z.ZodObject> { + return z.object({ + updateInputId: z.number(), + updateName: z.string() + }) + } + + export function UserSchema(): z.ZodObject> { + return z.object({ + __typename: z.literal('User').optional(), + id: z.string(), + name: z.string().nullish(), + age: z.number().nullish(), + email: z.string().email().nullish(), + isMember: z.boolean().nullish(), + createdAt: z.date() + }) + } + " + `) + + for (const wantNotContain of ['Query', 'Mutation', 'Subscription']) + expect(result.content).not.toContain(wantNotContain); + }); + + it('generate union types', async () => { + const schema = buildSchema(/* GraphQL */ ` + type Square { + size: Int + } + type Circle { + radius: Int + } + union Shape = Circle | Square + `); + + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + withObjectType: true, + }, + {}, + ); + + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function SquareSchema(): z.ZodObject> { + return z.object({ + __typename: z.literal('Square').optional(), + size: z.number().nullish() + }) + } + + export function CircleSchema(): z.ZodObject> { + return z.object({ + __typename: z.literal('Circle').optional(), + radius: z.number().nullish() + }) + } + + export function ShapeSchema() { + return z.union([CircleSchema(), SquareSchema()]) + } + " + `) + }); + + it('generate union types + schemaNamespacedImportName', async () => { + const schema = buildSchema(/* GraphQL */ ` + type Square { + size: Int + } + type Circle { + radius: Int + } + union Shape = Circle | Square + `); + + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + withObjectType: true, + importFrom: './types', + schemaNamespacedImportName: 't', + }, + {}, + ); + + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function SquareSchema(): z.ZodObject> { + return z.object({ + __typename: z.literal('Square').optional(), + size: z.number().nullish() + }) + } + + export function CircleSchema(): z.ZodObject> { + return z.object({ + __typename: z.literal('Circle').optional(), + radius: z.number().nullish() + }) + } + + export function ShapeSchema() { + return z.union([CircleSchema(), SquareSchema()]) + } + " + `) + }); + + it('generate union types with single element', async () => { + const schema = buildSchema(/* GraphQL */ ` + type Square { + size: Int + } + type Circle { + radius: Int + } + union Shape = Circle | Square + + type Geometry { + shape: Shape + } + `); + + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + withObjectType: true, + }, + {}, + ); + + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function SquareSchema(): z.ZodObject> { + return z.object({ + __typename: z.literal('Square').optional(), + size: z.number().nullish() + }) + } + + export function CircleSchema(): z.ZodObject> { + return z.object({ + __typename: z.literal('Circle').optional(), + radius: z.number().nullish() + }) + } + + export function ShapeSchema() { + return z.union([CircleSchema(), SquareSchema()]) + } + + export function GeometrySchema(): z.ZodObject> { + return z.object({ + __typename: z.literal('Geometry').optional(), + shape: ShapeSchema().nullish() + }) + } + " + `) + }); + + it('correctly reference generated union types', async () => { + const schema = buildSchema(/* GraphQL */ ` + type Circle { + radius: Int + } + union Shape = Circle + `); + + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + withObjectType: true, + }, + {}, + ); + + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function CircleSchema(): z.ZodObject> { + return z.object({ + __typename: z.literal('Circle').optional(), + radius: z.number().nullish() + }) + } + + export function ShapeSchema() { + return CircleSchema() + } + " + `) + }); + + it('generate enum union types', async () => { + const schema = buildSchema(/* GraphQL */ ` + enum PageType { + PUBLIC + BASIC_AUTH + } + + enum MethodType { + GET + POST + } + + union AnyType = PageType | MethodType + `); + + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + withObjectType: true, + }, + {}, + ); + + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export const PageTypeSchema = z.enum(PageType); + + export const MethodTypeSchema = z.enum(MethodType); + + export function AnyTypeSchema() { + return z.union([PageTypeSchema, MethodTypeSchema]) + } + " + `) + }); + + it('generate union types with single element, export as const', async () => { + const schema = buildSchema(/* GraphQL */ ` + type Square { + size: Int + } + type Circle { + radius: Int + } + union Shape = Circle | Square + + type Geometry { + shape: Shape + } + `); + + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + withObjectType: true, + validationSchemaExportType: 'const', + }, + {}, + ); + + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export const CircleSchema: z.ZodObject> = z.object({ + __typename: z.literal('Circle').optional(), + radius: z.number().nullish() + }); + + export const SquareSchema: z.ZodObject> = z.object({ + __typename: z.literal('Square').optional(), + size: z.number().nullish() + }); + + export const ShapeSchema = z.union([CircleSchema, SquareSchema]); + + export const GeometrySchema: z.ZodObject> = z.object({ + __typename: z.literal('Geometry').optional(), + shape: ShapeSchema.nullish() + }); + " + `) + }); + + it('with object arguments', async () => { + const schema = buildSchema(/* GraphQL */ ` + type MyType { + foo(a: String, b: Int!, c: Boolean, d: Float!, e: Text): String + } + scalar Text + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + withObjectType: true, + scalars: { + Text: 'string', + }, + }, + {}, + ); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function MyTypeSchema(): z.ZodObject> { + return z.object({ + __typename: z.literal('MyType').optional(), + foo: z.string().nullish() + }) + } + + export function MyTypeFooArgsSchema(): z.ZodObject> { + return z.object({ + a: z.string().nullish(), + b: z.number(), + c: z.boolean().nullish(), + d: z.number(), + e: z.string().nullish() + }) + } + " + `) + }); + + describe('with InterfaceType', () => { + it('not generate if withObjectType false', async () => { + const schema = buildSchema(/* GraphQL */ ` + interface User { + id: ID! + name: String + } + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + withObjectType: false, + }, + {}, + ); + expect(result.content).not.toContain('export function UserSchema(): z.ZodObject>'); + }); + + it('generate if withObjectType true', async () => { + const schema = buildSchema(/* GraphQL */ ` + interface Book { + title: String + } + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + withObjectType: true, + }, + {}, + ); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function BookSchema(): z.ZodObject> { + return z.object({ + title: z.string().nullish() + }) + } + " + `) + const wantNotContains = ['__typename: z.literal(\'Book\')']; + + for (const wantNotContain of wantNotContains) + expect(result.content).not.toContain(wantNotContain); + }); + + it('generate interface type contains interface type', async () => { + const schema = buildSchema(/* GraphQL */ ` + interface Book { + author: Author + title: String + } + + interface Author { + books: [Book] + name: String + } + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + withObjectType: true, + }, + {}, + ); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function BookSchema(): z.ZodObject> { + return z.object({ + author: AuthorSchema().nullish(), + title: z.string().nullish() + }) + } + + export function AuthorSchema(): z.ZodObject> { + return z.object({ + books: z.array(BookSchema().nullable()).nullish(), + name: z.string().nullish() + }) + } + " + `) + }); + + it('generate object type contains interface type', async () => { + const schema = buildSchema(/* GraphQL */ ` + interface Book { + title: String! + author: Author! + } + + type Textbook implements Book { + title: String! + author: Author! + courses: [String!]! + } + + type ColoringBook implements Book { + title: String! + author: Author! + colors: [String!]! + } + + type Author { + books: [Book!] + name: String + } + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + withObjectType: true, + }, + {}, + ); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function BookSchema(): z.ZodObject> { + return z.object({ + title: z.string(), + author: AuthorSchema() + }) + } + + export function TextbookSchema(): z.ZodObject> { + return z.object({ + __typename: z.literal('Textbook').optional(), + title: z.string(), + author: AuthorSchema(), + courses: z.array(z.string()) + }) + } + + export function ColoringBookSchema(): z.ZodObject> { + return z.object({ + __typename: z.literal('ColoringBook').optional(), + title: z.string(), + author: AuthorSchema(), + colors: z.array(z.string()) + }) + } + + export function AuthorSchema(): z.ZodObject> { + return z.object({ + __typename: z.literal('Author').optional(), + books: z.array(BookSchema()).nullish(), + name: z.string().nullish() + }) + } + " + `) + }); + }); + }); + + it('properly generates custom directive values', async () => { + const schema = buildSchema(/* GraphQL */ ` + input UserCreateInput { + name: String! @constraint(startsWith: "Sir") + age: Int! @constraint(min: 0, max: 100) + } + directive @constraint(startsWith: String, min: Int, max: Int) on INPUT_FIELD_DEFINITION + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + directives: { + constraint: { + min: 'min', + max: 'max', + startsWith: ['regex', '/^$1/'], + }, + }, + }, + {}, + ); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export function UserCreateInputSchema(): z.ZodObject> { + return z.object({ + name: z.string().regex(/^Sir/), + age: z.number().min(0).max(100) + }) + } + " + `) + }); + + it('exports as const instead of func', async () => { + const schema = buildSchema(/* GraphQL */ ` + input Say { + phrase: String! + } + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + validationSchemaExportType: 'const', + }, + {}, + ); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export const SaySchema: z.ZodObject> = z.object({ + phrase: z.string() + }); + " + `) + }); + + it('generate both input & type, export as const', async () => { + const schema = buildSchema(/* GraphQL */ ` + scalar Date + scalar Email + input UserCreateInput { + name: String! + date: Date! + email: Email! + } + type User { + id: ID! + name: String + age: Int + email: Email + isMember: Boolean + createdAt: Date! + } + type Mutation { + _empty: String + } + type Query { + _empty: String + } + type Subscription { + _empty: String + } + `); + const result = await plugin( + schema, + [], + { + schema: 'zodv4', + withObjectType: true, + scalarSchemas: { + Date: 'z.date()', + Email: 'z.string().email()', + }, + validationSchemaExportType: 'const', + }, + {}, + ); + + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export const UserSchema: z.ZodObject> = z.object({ + __typename: z.literal('User').optional(), + id: z.string(), + name: z.string().nullish(), + age: z.number().nullish(), + email: z.string().email().nullish(), + isMember: z.boolean().nullish(), + createdAt: z.date() + }); + + export const UserCreateInputSchema: z.ZodObject> = z.object({ + name: z.string(), + date: z.date(), + email: z.string().email() + }); + " + `) + + for (const wantNotContain of ['Query', 'Mutation', 'Subscription']) + expect(result.content).not.toContain(wantNotContain); + }); + + it('issue #394', async () => { + const schema = buildSchema(/* GraphQL */ ` + enum Test { + A + B + } + + type Query { + _dummy: Test + } + + input QueryInput { + _dummy: Test + } + `); + const query = introspectionFromSchema(schema); + const clientSchema = buildClientSchema(query); + const result = await plugin( + clientSchema, + [], + { + schema: 'zodv4', + scalars: { + ID: 'string', + }, + }, + {}, + ); + expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(` + " + type Properties = Required<{ + [K in keyof T]: z.ZodType; + }>; + + type definedNonNullAny = {}; + + export const isDefinedNonNullAny = (v: any): v is definedNonNullAny => v !== undefined && v !== null; + + export const definedNonNullAnySchema = z.any().refine((v) => isDefinedNonNullAny(v)); + + export const TestSchema = z.enum(Test); + + export function QueryInputSchema(): z.ZodObject> { + return z.object({ + _dummy: TestSchema.nullish() + }) + } + " + `) + }); +}); From 01f7e49de25cb9fa7ec6090ec4ae70109d9098ff Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 21 Jul 2025 04:50:16 +0000 Subject: [PATCH 003/133] fix(deps): update dependency @graphql-tools/utils to v10.9.1 (#1185) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 66 +++++++++++++++++++++++++------------------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3e575eb1..6ba03ff8 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -19,7 +19,7 @@ importers: version: 5.8.0(graphql@16.11.0) '@graphql-tools/utils': specifier: ^10.0.0 - version: 10.9.0(graphql@16.11.0) + version: 10.9.1(graphql@16.11.0) graphlib: specifier: ^2.1.8 version: 2.1.8 @@ -794,8 +794,8 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/utils@10.9.0': - resolution: {integrity: sha512-LzFlJHNajdohRM+0pHTwcF9tZ0q7z5iZW0lwnTNJp7O6GYFcSvCQE5ijTQcXVQ/5WQf3SHn+Gpr56TR5XHmPtg==} + '@graphql-tools/utils@10.9.1': + resolution: {integrity: sha512-B1wwkXk9UvU7LCBkPs8513WxOQ2H8Fo5p8HR1+Id9WmYE5+bd51vqN+MbrqvWczHCH2gwkREgHJN88tE0n1FCw==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -4344,7 +4344,7 @@ snapshots: '@graphql-tools/load': 8.1.0(graphql@16.11.0) '@graphql-tools/prisma-loader': 8.0.17(@types/node@22.16.5)(graphql@16.11.0) '@graphql-tools/url-loader': 8.0.15(@types/node@22.16.5)(graphql@16.11.0) - '@graphql-tools/utils': 10.9.0(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@whatwg-node/fetch': 0.10.1 chalk: 4.1.2 cosmiconfig: 8.3.6(typescript@5.8.3) @@ -4388,7 +4388,7 @@ snapshots: '@graphql-codegen/typescript-operations': 4.6.1(graphql@16.11.0) '@graphql-codegen/visitor-plugin-common': 5.8.0(graphql@16.11.0) '@graphql-tools/documents': 1.0.1(graphql@16.11.0) - '@graphql-tools/utils': 10.9.0(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@graphql-typed-document-node/core': 3.2.0(graphql@16.11.0) graphql: 16.11.0 tslib: 2.6.3 @@ -4399,7 +4399,7 @@ snapshots: dependencies: '@graphql-codegen/plugin-helpers': 5.1.1(graphql@16.11.0) '@graphql-tools/schema': 10.0.23(graphql@16.11.0) - '@graphql-tools/utils': 10.9.0(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) graphql: 16.11.0 tslib: 2.6.3 @@ -4407,7 +4407,7 @@ snapshots: dependencies: '@graphql-codegen/plugin-helpers': 5.1.1(graphql@16.11.0) '@graphql-codegen/visitor-plugin-common': 5.8.0(graphql@16.11.0) - '@graphql-tools/utils': 10.9.0(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) auto-bind: 4.0.0 graphql: 16.11.0 tslib: 2.6.3 @@ -4416,7 +4416,7 @@ snapshots: '@graphql-codegen/plugin-helpers@5.1.1(graphql@16.11.0)': dependencies: - '@graphql-tools/utils': 10.9.0(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) change-case-all: 1.0.15 common-tags: 1.8.2 graphql: 16.11.0 @@ -4427,7 +4427,7 @@ snapshots: '@graphql-codegen/schema-ast@4.1.0(graphql@16.11.0)': dependencies: '@graphql-codegen/plugin-helpers': 5.1.1(graphql@16.11.0) - '@graphql-tools/utils': 10.9.0(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) graphql: 16.11.0 tslib: 2.6.3 @@ -4469,7 +4469,7 @@ snapshots: '@graphql-codegen/plugin-helpers': 5.1.1(graphql@16.11.0) '@graphql-tools/optimize': 2.0.0(graphql@16.11.0) '@graphql-tools/relay-operation-optimizer': 7.0.19(graphql@16.11.0) - '@graphql-tools/utils': 10.9.0(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) auto-bind: 4.0.0 change-case-all: 1.0.15 dependency-graph: 0.11.0 @@ -4483,7 +4483,7 @@ snapshots: '@graphql-tools/apollo-engine-loader@8.0.4(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/utils': 10.9.0(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@whatwg-node/fetch': 0.10.1 graphql: 16.11.0 tslib: 2.8.1 @@ -4492,7 +4492,7 @@ snapshots: '@graphql-tools/batch-execute@9.0.6(graphql@16.11.0)': dependencies: - '@graphql-tools/utils': 10.9.0(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) dataloader: 2.2.2 graphql: 16.11.0 tslib: 2.8.1 @@ -4501,7 +4501,7 @@ snapshots: '@graphql-tools/code-file-loader@8.1.5(graphql@16.11.0)': dependencies: '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.11.0) - '@graphql-tools/utils': 10.9.0(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) globby: 11.1.0 graphql: 16.11.0 tslib: 2.8.1 @@ -4514,7 +4514,7 @@ snapshots: '@graphql-tools/batch-execute': 9.0.6(graphql@16.11.0) '@graphql-tools/executor': 1.3.3(graphql@16.11.0) '@graphql-tools/schema': 10.0.23(graphql@16.11.0) - '@graphql-tools/utils': 10.9.0(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@repeaterjs/repeater': 3.0.6 dataloader: 2.2.2 dset: 3.1.4 @@ -4529,7 +4529,7 @@ snapshots: '@graphql-tools/executor-graphql-ws@1.3.2(graphql@16.11.0)': dependencies: - '@graphql-tools/utils': 10.9.0(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@types/ws': 8.5.13 graphql: 16.11.0 graphql-ws: 5.16.0(graphql@16.11.0) @@ -4542,7 +4542,7 @@ snapshots: '@graphql-tools/executor-http@1.1.9(@types/node@22.16.5)(graphql@16.11.0)': dependencies: - '@graphql-tools/utils': 10.9.0(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/fetch': 0.10.1 extract-files: 11.0.0 @@ -4555,7 +4555,7 @@ snapshots: '@graphql-tools/executor-legacy-ws@1.1.2(graphql@16.11.0)': dependencies: - '@graphql-tools/utils': 10.9.0(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@types/ws': 8.5.13 graphql: 16.11.0 isomorphic-ws: 5.0.0(ws@8.18.0) @@ -4567,7 +4567,7 @@ snapshots: '@graphql-tools/executor@1.3.3(graphql@16.11.0)': dependencies: - '@graphql-tools/utils': 10.9.0(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@graphql-typed-document-node/core': 3.2.0(graphql@16.11.0) '@repeaterjs/repeater': 3.0.6 graphql: 16.11.0 @@ -4577,7 +4577,7 @@ snapshots: '@graphql-tools/git-loader@8.0.9(graphql@16.11.0)': dependencies: '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.11.0) - '@graphql-tools/utils': 10.9.0(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) graphql: 16.11.0 is-glob: 4.0.3 micromatch: 4.0.8 @@ -4591,7 +4591,7 @@ snapshots: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/executor-http': 1.1.9(@types/node@22.16.5)(graphql@16.11.0) '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.11.0) - '@graphql-tools/utils': 10.9.0(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@whatwg-node/fetch': 0.10.1 graphql: 16.11.0 tslib: 2.8.1 @@ -4604,7 +4604,7 @@ snapshots: '@graphql-tools/graphql-file-loader@8.0.3(graphql@16.11.0)': dependencies: '@graphql-tools/import': 7.0.3(graphql@16.11.0) - '@graphql-tools/utils': 10.9.0(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) globby: 11.1.0 graphql: 16.11.0 tslib: 2.8.1 @@ -4617,7 +4617,7 @@ snapshots: '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.27.4) '@babel/traverse': 7.27.4 '@babel/types': 7.27.7 - '@graphql-tools/utils': 10.9.0(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) graphql: 16.11.0 tslib: 2.8.1 transitivePeerDependencies: @@ -4625,14 +4625,14 @@ snapshots: '@graphql-tools/import@7.0.3(graphql@16.11.0)': dependencies: - '@graphql-tools/utils': 10.9.0(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) graphql: 16.11.0 resolve-from: 5.0.0 tslib: 2.8.1 '@graphql-tools/json-file-loader@8.0.3(graphql@16.11.0)': dependencies: - '@graphql-tools/utils': 10.9.0(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) globby: 11.1.0 graphql: 16.11.0 tslib: 2.8.1 @@ -4641,14 +4641,14 @@ snapshots: '@graphql-tools/load@8.1.0(graphql@16.11.0)': dependencies: '@graphql-tools/schema': 10.0.23(graphql@16.11.0) - '@graphql-tools/utils': 10.9.0(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) graphql: 16.11.0 p-limit: 3.1.0 tslib: 2.8.1 '@graphql-tools/merge@9.0.24(graphql@16.11.0)': dependencies: - '@graphql-tools/utils': 10.9.0(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) graphql: 16.11.0 tslib: 2.8.1 @@ -4660,7 +4660,7 @@ snapshots: '@graphql-tools/prisma-loader@8.0.17(@types/node@22.16.5)(graphql@16.11.0)': dependencies: '@graphql-tools/url-loader': 8.0.15(@types/node@22.16.5)(graphql@16.11.0) - '@graphql-tools/utils': 10.9.0(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@types/js-yaml': 4.0.9 '@whatwg-node/fetch': 0.10.1 chalk: 4.1.2 @@ -4686,7 +4686,7 @@ snapshots: '@graphql-tools/relay-operation-optimizer@7.0.19(graphql@16.11.0)': dependencies: '@ardatan/relay-compiler': 12.0.3(graphql@16.11.0) - '@graphql-tools/utils': 10.9.0(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) graphql: 16.11.0 tslib: 2.6.3 transitivePeerDependencies: @@ -4695,7 +4695,7 @@ snapshots: '@graphql-tools/schema@10.0.23(graphql@16.11.0)': dependencies: '@graphql-tools/merge': 9.0.24(graphql@16.11.0) - '@graphql-tools/utils': 10.9.0(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) graphql: 16.11.0 tslib: 2.8.1 @@ -4705,7 +4705,7 @@ snapshots: '@graphql-tools/executor-graphql-ws': 1.3.2(graphql@16.11.0) '@graphql-tools/executor-http': 1.1.9(@types/node@22.16.5)(graphql@16.11.0) '@graphql-tools/executor-legacy-ws': 1.1.2(graphql@16.11.0) - '@graphql-tools/utils': 10.9.0(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@graphql-tools/wrap': 10.0.16(graphql@16.11.0) '@types/ws': 8.5.13 '@whatwg-node/fetch': 0.10.1 @@ -4720,7 +4720,7 @@ snapshots: - encoding - utf-8-validate - '@graphql-tools/utils@10.9.0(graphql@16.11.0)': + '@graphql-tools/utils@10.9.1(graphql@16.11.0)': dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.11.0) '@whatwg-node/promise-helpers': 1.3.2 @@ -4733,7 +4733,7 @@ snapshots: dependencies: '@graphql-tools/delegate': 10.1.2(graphql@16.11.0) '@graphql-tools/schema': 10.0.23(graphql@16.11.0) - '@graphql-tools/utils': 10.9.0(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) graphql: 16.11.0 tslib: 2.8.1 value-or-promise: 1.0.12 @@ -6346,7 +6346,7 @@ snapshots: '@graphql-tools/load': 8.1.0(graphql@16.11.0) '@graphql-tools/merge': 9.0.24(graphql@16.11.0) '@graphql-tools/url-loader': 8.0.15(@types/node@22.16.5)(graphql@16.11.0) - '@graphql-tools/utils': 10.9.0(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) cosmiconfig: 8.3.6(typescript@5.8.3) graphql: 16.11.0 jiti: 2.4.0 From 30cfaa6d66a50dc320f4103780113f667537bade Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 22 Jul 2025 03:11:09 +0000 Subject: [PATCH 004/133] chore(deps): update dependency jest to v30.0.5 (#1186) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 650 ++++++++++++++++++++++++------------------------- 2 files changed, 314 insertions(+), 338 deletions(-) diff --git a/package.json b/package.json index 27efcd56..0b21a6cc 100644 --- a/package.json +++ b/package.json @@ -92,7 +92,7 @@ "@types/graphlib": "^2.1.8", "@types/node": "^22.0.0", "eslint": "9.31.0", - "jest": "30.0.4", + "jest": "30.0.5", "myzod": "1.12.1", "npm-run-all2": "8.0.4", "ts-dedent": "^2.2.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6ba03ff8..2758b377 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -49,8 +49,8 @@ importers: specifier: 9.31.0 version: 9.31.0(jiti@2.4.0) jest: - specifier: 30.0.4 - version: 30.0.4(@types/node@22.16.5) + specifier: 30.0.5 + version: 30.0.5(@types/node@22.16.5) myzod: specifier: 1.12.1 version: 1.12.1 @@ -62,7 +62,7 @@ importers: version: 2.2.0 ts-jest: specifier: 29.4.0 - version: 29.4.0(@babel/core@7.27.4)(@jest/transform@30.0.4)(@jest/types@30.0.1)(babel-jest@30.0.4(@babel/core@7.27.4))(jest-util@30.0.2)(jest@30.0.4(@types/node@22.16.5))(typescript@5.8.3) + version: 29.4.0(@babel/core@7.27.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.0.5(@types/node@22.16.5))(typescript@5.8.3) typescript: specifier: 5.8.3 version: 5.8.3 @@ -206,11 +206,6 @@ packages: engines: {node: '>=6.0.0'} hasBin: true - '@babel/parser@7.27.7': - resolution: {integrity: sha512-qnzXzDXdr/po3bOTbTIQZ7+TxNKxpkN5IifVLXS+r7qwynkZfPyjZfE7hCXbo7IoO9TNcSyibgONsf2HauUd3Q==} - engines: {node: '>=6.0.0'} - hasBin: true - '@babel/parser@7.28.0': resolution: {integrity: sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==} engines: {node: '>=6.0.0'} @@ -333,10 +328,6 @@ packages: resolution: {integrity: sha512-ETyHEk2VHHvl9b9jZP5IHPavHYk57EhanlRRuae9XCpb/j5bDCbPPMOBfCWhnl/7EDJz0jEMCi/RhccCE8r1+Q==} engines: {node: '>=6.9.0'} - '@babel/types@7.27.7': - resolution: {integrity: sha512-8OLQgDScAOHXnAz2cV+RfzzNMipuLVBz2biuAJFMV9bfkNf393je3VM8CLkjQodW5+iWsSJdSgSWT6rsZoXHPw==} - engines: {node: '>=6.9.0'} - '@babel/types@7.28.1': resolution: {integrity: sha512-x0LvFTekgSX+83TI28Y9wYPUfzrnl2aT5+5QLnO6v7mSJYtEEevuDRN0F0uSHRk1G1IWZC43o00Y0xDDrpBGPQ==} engines: {node: '>=6.9.0'} @@ -843,12 +834,12 @@ packages: resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} engines: {node: '>=8'} - '@jest/console@30.0.4': - resolution: {integrity: sha512-tMLCDvBJBwPqMm4OAiuKm2uF5y5Qe26KgcMn+nrDSWpEW+eeFmqA0iO4zJfL16GP7gE3bUUQ3hIuUJ22AqVRnw==} + '@jest/console@30.0.5': + resolution: {integrity: sha512-xY6b0XiL0Nav3ReresUarwl2oIz1gTnxGbGpho9/rbUWsLH0f1OD/VT84xs8c7VmH7MChnLb0pag6PhZhAdDiA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/core@30.0.4': - resolution: {integrity: sha512-MWScSO9GuU5/HoWjpXAOBs6F/iobvK1XlioelgOM9St7S0Z5WTI9kjCQLPeo4eQRRYusyLW25/J7J5lbFkrYXw==} + '@jest/core@30.0.5': + resolution: {integrity: sha512-fKD0OulvRsXF1hmaFgHhVJzczWzA1RXMMo9LTPuFXo9q/alDbME3JIyWYqovWsUBWSoBcsHaGPSLF9rz4l9Qeg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -860,36 +851,36 @@ packages: resolution: {integrity: sha512-n5H8QLDJ47QqbCNn5SuFjCRDrOLEZ0h8vAHCK5RL9Ls7Xa8AQLa/YxAc9UjFqoEDM48muwtBGjtMY5cr0PLDCw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/environment@30.0.4': - resolution: {integrity: sha512-5NT+sr7ZOb8wW7C4r7wOKnRQ8zmRWQT2gW4j73IXAKp5/PX1Z8MCStBLQDYfIG3n1Sw0NRfYGdp0iIPVooBAFQ==} + '@jest/environment@30.0.5': + resolution: {integrity: sha512-aRX7WoaWx1oaOkDQvCWImVQ8XNtdv5sEWgk4gxR6NXb7WBUnL5sRak4WRzIQRZ1VTWPvV4VI4mgGjNL9TeKMYA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/expect-utils@30.0.4': - resolution: {integrity: sha512-EgXecHDNfANeqOkcak0DxsoVI4qkDUsR7n/Lr2vtmTBjwLPBnnPOF71S11Q8IObWzxm2QgQoY6f9hzrRD3gHRA==} + '@jest/expect-utils@30.0.5': + resolution: {integrity: sha512-F3lmTT7CXWYywoVUGTCmom0vXq3HTTkaZyTAzIy+bXSBizB7o5qzlC9VCtq0arOa8GqmNsbg/cE9C6HLn7Szew==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/expect@30.0.4': - resolution: {integrity: sha512-Z/DL7t67LBHSX4UzDyeYKqOxE/n7lbrrgEwWM3dGiH5Dgn35nk+YtgzKudmfIrBI8DRRrKYY5BCo3317HZV1Fw==} + '@jest/expect@30.0.5': + resolution: {integrity: sha512-6udac8KKrtTtC+AXZ2iUN/R7dp7Ydry+Fo6FPFnDG54wjVMnb6vW/XNlf7Xj8UDjAE3aAVAsR4KFyKk3TCXmTA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/fake-timers@30.0.4': - resolution: {integrity: sha512-qZ7nxOcL5+gwBO6LErvwVy5k06VsX/deqo2XnVUSTV0TNC9lrg8FC3dARbi+5lmrr5VyX5drragK+xLcOjvjYw==} + '@jest/fake-timers@30.0.5': + resolution: {integrity: sha512-ZO5DHfNV+kgEAeP3gK3XlpJLL4U3Sz6ebl/n68Uwt64qFFs5bv4bfEEjyRGK5uM0C90ewooNgFuKMdkbEoMEXw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} '@jest/get-type@30.0.1': resolution: {integrity: sha512-AyYdemXCptSRFirI5EPazNxyPwAL0jXt3zceFjaj8NFiKP9pOi0bfXonf6qkf82z2t3QWPeLCWWw4stPBzctLw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/globals@30.0.4': - resolution: {integrity: sha512-avyZuxEHF2EUhFF6NEWVdxkRRV6iXXcIES66DLhuLlU7lXhtFG/ySq/a8SRZmEJSsLkNAFX6z6mm8KWyXe9OEA==} + '@jest/globals@30.0.5': + resolution: {integrity: sha512-7oEJT19WW4oe6HR7oLRvHxwlJk2gev0U9px3ufs8sX9PoD1Eza68KF0/tlN7X0dq/WVsBScXQGgCldA1V9Y/jA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} '@jest/pattern@30.0.1': resolution: {integrity: sha512-gWp7NfQW27LaBQz3TITS8L7ZCQ0TLvtmI//4OwlQRx4rnWxcPNIYjxZpDcN4+UlGxgm3jS5QPz8IPTCkb59wZA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/reporters@30.0.4': - resolution: {integrity: sha512-6ycNmP0JSJEEys1FbIzHtjl9BP0tOZ/KN6iMeAKrdvGmUsa1qfRdlQRUDKJ4P84hJ3xHw1yTqJt4fvPNHhyE+g==} + '@jest/reporters@30.0.5': + resolution: {integrity: sha512-mafft7VBX4jzED1FwGC1o/9QUM2xebzavImZMeqnsklgcyxBto8mV4HzNSzUrryJ+8R9MFOM3HgYuDradWR+4g==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -897,32 +888,32 @@ packages: node-notifier: optional: true - '@jest/schemas@30.0.1': - resolution: {integrity: sha512-+g/1TKjFuGrf1Hh0QPCv0gISwBxJ+MQSNXmG9zjHy7BmFhtoJ9fdNhWJp3qUKRi93AOZHXtdxZgJ1vAtz6z65w==} + '@jest/schemas@30.0.5': + resolution: {integrity: sha512-DmdYgtezMkh3cpU8/1uyXakv3tJRcmcXxBOcO0tbaozPwpmh4YMsnWrQm9ZmZMfa5ocbxzbFk6O4bDPEc/iAnA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/snapshot-utils@30.0.4': - resolution: {integrity: sha512-BEpX8M/Y5lG7MI3fmiO+xCnacOrVsnbqVrcDZIT8aSGkKV1w2WwvRQxSWw5SIS8ozg7+h8tSj5EO1Riqqxcdag==} + '@jest/snapshot-utils@30.0.5': + resolution: {integrity: sha512-XcCQ5qWHLvi29UUrowgDFvV4t7ETxX91CbDczMnoqXPOIcZOxyNdSjm6kV5XMc8+HkxfRegU/MUmnTbJRzGrUQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} '@jest/source-map@30.0.1': resolution: {integrity: sha512-MIRWMUUR3sdbP36oyNyhbThLHyJ2eEDClPCiHVbrYAe5g3CHRArIVpBw7cdSB5fr+ofSfIb2Tnsw8iEHL0PYQg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/test-result@30.0.4': - resolution: {integrity: sha512-Mfpv8kjyKTHqsuu9YugB6z1gcdB3TSSOaKlehtVaiNlClMkEHY+5ZqCY2CrEE3ntpBMlstX/ShDAf84HKWsyIw==} + '@jest/test-result@30.0.5': + resolution: {integrity: sha512-wPyztnK0gbDMQAJZ43tdMro+qblDHH1Ru/ylzUo21TBKqt88ZqnKKK2m30LKmLLoKtR2lxdpCC/P3g1vfKcawQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/test-sequencer@30.0.4': - resolution: {integrity: sha512-bj6ePmqi4uxAE8EHE0Slmk5uBYd9Vd/PcVt06CsBxzH4bbA8nGsI1YbXl/NH+eii4XRtyrRx+Cikub0x8H4vDg==} + '@jest/test-sequencer@30.0.5': + resolution: {integrity: sha512-Aea/G1egWoIIozmDD7PBXUOxkekXl7ueGzrsGGi1SbeKgQqCYCIf+wfbflEbf2LiPxL8j2JZGLyrzZagjvW4YQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/transform@30.0.4': - resolution: {integrity: sha512-atvy4hRph/UxdCIBp+UB2jhEA/jJiUeGZ7QPgBi9jUUKNgi3WEoMXGNG7zbbELG2+88PMabUNCDchmqgJy3ELg==} + '@jest/transform@30.0.5': + resolution: {integrity: sha512-Vk8amLQCmuZyy6GbBht1Jfo9RSdBtg7Lks+B0PecnjI8J+PCLQPGh7uI8Q/2wwpW2gLdiAfiHNsmekKlywULqg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/types@30.0.1': - resolution: {integrity: sha512-HGwoYRVF0QSKJu1ZQX0o5ZrUrrhj0aOOFA8hXrumD7SIzjouevhawbTjmXdwOmURdGluU9DM/XvGm3NyFoiQjw==} + '@jest/types@30.0.5': + resolution: {integrity: sha512-aREYa3aku9SSnea4aX6bhKn4bgv3AXkgijoQgbYV3yvbiGt6z+MQ85+6mIhx9DsKW2BuB/cLR/A+tcMThx+KLQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} '@jridgewell/gen-mapping@0.3.8': @@ -1462,8 +1453,8 @@ packages: resolution: {integrity: sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==} engines: {node: '>=8'} - babel-jest@30.0.4: - resolution: {integrity: sha512-UjG2j7sAOqsp2Xua1mS/e+ekddkSu3wpf4nZUSvXNHuVWdaOUXQ77+uyjJLDE9i0atm5x4kds8K9yb5lRsRtcA==} + babel-jest@30.0.5: + resolution: {integrity: sha512-mRijnKimhGDMsizTvBTWotwNpzrkHr+VvZUQBof2AufXKB8NXrL1W69TG20EvOz7aevx6FTJIaBuBkYxS8zolg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} peerDependencies: '@babel/core': ^7.11.0 @@ -1591,10 +1582,6 @@ packages: resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} engines: {node: '>= 16'} - ci-info@4.2.0: - resolution: {integrity: sha512-cYY9mypksY8NRqgDB1XD1RiJL338v/551niynFTGkZOO2LHuB2OmOYxDIe/ttN9AHwrqdum1360G3ald0W9kCg==} - engines: {node: '>=8'} - ci-info@4.3.0: resolution: {integrity: sha512-l+2bNRMiQgcfILUi33labAZYIWlH1kWDp+ecNo5iisRKrbm0xcRyCww71/YU0Fkw0mAFpz9bJayXPjey6vkmaQ==} engines: {node: '>=8'} @@ -2050,8 +2037,8 @@ packages: resolution: {integrity: sha512-/kP8CAwxzLVEeFrMm4kMmy4CCDlpipyA7MYLVrdJIkV0fYF0UaigQHRsxHiuY/GEea+bh4KSv3TIlgr+2UL6bw==} engines: {node: '>=12.0.0'} - expect@30.0.4: - resolution: {integrity: sha512-dDLGjnP2cKbEppxVICxI/Uf4YemmGMPNy0QytCbfafbpYk9AFQsxb8Uyrxii0RPK7FWgLGlSem+07WirwS3cFQ==} + expect@30.0.5: + resolution: {integrity: sha512-P0te2pt+hHI5qLJkIR+iMvS+lYUZml8rKKsohVHAGY+uClp9XVbdyYNJOIjSRpHVp8s8YqxJCiHUkSYZGr8rtQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} exsolve@1.0.7: @@ -2436,16 +2423,16 @@ packages: engines: {node: '>=10'} hasBin: true - jest-changed-files@30.0.2: - resolution: {integrity: sha512-Ius/iRST9FKfJI+I+kpiDh8JuUlAISnRszF9ixZDIqJF17FckH5sOzKC8a0wd0+D+8em5ADRHA5V5MnfeDk2WA==} + jest-changed-files@30.0.5: + resolution: {integrity: sha512-bGl2Ntdx0eAwXuGpdLdVYVr5YQHnSZlQ0y9HVDu565lCUAe9sj6JOtBbMmBBikGIegne9piDDIOeiLVoqTkz4A==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-circus@30.0.4: - resolution: {integrity: sha512-o6UNVfbXbmzjYgmVPtSQrr5xFZCtkDZGdTlptYvGFSN80RuOOlTe73djvMrs+QAuSERZWcHBNIOMH+OEqvjWuw==} + jest-circus@30.0.5: + resolution: {integrity: sha512-h/sjXEs4GS+NFFfqBDYT7y5Msfxh04EwWLhQi0F8kuWpe+J/7tICSlswU8qvBqumR3kFgHbfu7vU6qruWWBPug==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-cli@30.0.4: - resolution: {integrity: sha512-3dOrP3zqCWBkjoVG1zjYJpD9143N9GUCbwaF2pFF5brnIgRLHmKcCIw+83BvF1LxggfMWBA0gxkn6RuQVuRhIQ==} + jest-cli@30.0.5: + resolution: {integrity: sha512-Sa45PGMkBZzF94HMrlX4kUyPOwUpdZasaliKN3mifvDmkhLYqLLg8HQTzn6gq7vJGahFYMQjXgyJWfYImKZzOw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: @@ -2454,8 +2441,8 @@ packages: node-notifier: optional: true - jest-config@30.0.4: - resolution: {integrity: sha512-3dzbO6sh34thAGEjJIW0fgT0GA0EVlkski6ZzMcbW6dzhenylXAE/Mj2MI4HonroWbkKc6wU6bLVQ8dvBSZ9lA==} + jest-config@30.0.5: + resolution: {integrity: sha512-aIVh+JNOOpzUgzUnPn5FLtyVnqc3TQHVMupYtyeURSb//iLColiMIR8TxCIDKyx9ZgjKnXGucuW68hCxgbrwmA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} peerDependencies: '@types/node': '*' @@ -2469,40 +2456,40 @@ packages: ts-node: optional: true - jest-diff@30.0.4: - resolution: {integrity: sha512-TSjceIf6797jyd+R64NXqicttROD+Qf98fex7CowmlSn7f8+En0da1Dglwr1AXxDtVizoxXYZBlUQwNhoOXkNw==} + jest-diff@30.0.5: + resolution: {integrity: sha512-1UIqE9PoEKaHcIKvq2vbibrCog4Y8G0zmOxgQUVEiTqwR5hJVMCoDsN1vFvI5JvwD37hjueZ1C4l2FyGnfpE0A==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} jest-docblock@30.0.1: resolution: {integrity: sha512-/vF78qn3DYphAaIc3jy4gA7XSAz167n9Bm/wn/1XhTLW7tTBIzXtCJpb/vcmc73NIIeeohCbdL94JasyXUZsGA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-each@30.0.2: - resolution: {integrity: sha512-ZFRsTpe5FUWFQ9cWTMguCaiA6kkW5whccPy9JjD1ezxh+mJeqmz8naL8Fl/oSbNJv3rgB0x87WBIkA5CObIUZQ==} + jest-each@30.0.5: + resolution: {integrity: sha512-dKjRsx1uZ96TVyejD3/aAWcNKy6ajMaN531CwWIsrazIqIoXI9TnnpPlkrEYku/8rkS3dh2rbH+kMOyiEIv0xQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-environment-node@30.0.4: - resolution: {integrity: sha512-p+rLEzC2eThXqiNh9GHHTC0OW5Ca4ZfcURp7scPjYBcmgpR9HG6750716GuUipYf2AcThU3k20B31USuiaaIEg==} + jest-environment-node@30.0.5: + resolution: {integrity: sha512-ppYizXdLMSvciGsRsMEnv/5EFpvOdXBaXRBzFUDPWrsfmog4kYrOGWXarLllz6AXan6ZAA/kYokgDWuos1IKDA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-haste-map@30.0.2: - resolution: {integrity: sha512-telJBKpNLeCb4MaX+I5k496556Y2FiKR/QLZc0+MGBYl4k3OO0472drlV2LUe7c1Glng5HuAu+5GLYp//GpdOQ==} + jest-haste-map@30.0.5: + resolution: {integrity: sha512-dkmlWNlsTSR0nH3nRfW5BKbqHefLZv0/6LCccG0xFCTWcJu8TuEwG+5Cm75iBfjVoockmO6J35o5gxtFSn5xeg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-leak-detector@30.0.2: - resolution: {integrity: sha512-U66sRrAYdALq+2qtKffBLDWsQ/XoNNs2Lcr83sc9lvE/hEpNafJlq2lXCPUBMNqamMECNxSIekLfe69qg4KMIQ==} + jest-leak-detector@30.0.5: + resolution: {integrity: sha512-3Uxr5uP8jmHMcsOtYMRB/zf1gXN3yUIc+iPorhNETG54gErFIiUhLvyY/OggYpSMOEYqsmRxmuU4ZOoX5jpRFg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-matcher-utils@30.0.4: - resolution: {integrity: sha512-ubCewJ54YzeAZ2JeHHGVoU+eDIpQFsfPQs0xURPWoNiO42LGJ+QGgfSf+hFIRplkZDkhH5MOvuxHKXRTUU3dUQ==} + jest-matcher-utils@30.0.5: + resolution: {integrity: sha512-uQgGWt7GOrRLP1P7IwNWwK1WAQbq+m//ZY0yXygyfWp0rJlksMSLQAA4wYQC3b6wl3zfnchyTx+k3HZ5aPtCbQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-message-util@30.0.2: - resolution: {integrity: sha512-vXywcxmr0SsKXF/bAD7t7nMamRvPuJkras00gqYeB1V0WllxZrbZ0paRr3XqpFU2sYYjD0qAaG2fRyn/CGZ0aw==} + jest-message-util@30.0.5: + resolution: {integrity: sha512-NAiDOhsK3V7RU0Aa/HnrQo+E4JlbarbmI3q6Pi4KcxicdtjV82gcIUrejOtczChtVQR4kddu1E1EJlW6EN9IyA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-mock@30.0.2: - resolution: {integrity: sha512-PnZOHmqup/9cT/y+pXIVbbi8ID6U1XHRmbvR7MvUy4SLqhCbwpkmXhLbsWbGewHrV5x/1bF7YDjs+x24/QSvFA==} + jest-mock@30.0.5: + resolution: {integrity: sha512-Od7TyasAAQX/6S+QCbN6vZoWOMwlTtzzGuxJku1GhGanAjz9y+QsQkpScDmETvdc9aSXyJ/Op4rhpMYBWW91wQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} jest-pnp-resolver@1.2.3: @@ -2518,44 +2505,44 @@ packages: resolution: {integrity: sha512-jHEQgBXAgc+Gh4g0p3bCevgRCVRkB4VB70zhoAE48gxeSr1hfUOsM/C2WoJgVL7Eyg//hudYENbm3Ne+/dRVVA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-resolve-dependencies@30.0.4: - resolution: {integrity: sha512-EQBYow19B/hKr4gUTn+l8Z+YLlP2X0IoPyp0UydOtrcPbIOYzJ8LKdFd+yrbwztPQvmlBFUwGPPEzHH1bAvFAw==} + jest-resolve-dependencies@30.0.5: + resolution: {integrity: sha512-/xMvBR4MpwkrHW4ikZIWRttBBRZgWK4d6xt3xW1iRDSKt4tXzYkMkyPfBnSCgv96cpkrctfXs6gexeqMYqdEpw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-resolve@30.0.2: - resolution: {integrity: sha512-q/XT0XQvRemykZsvRopbG6FQUT6/ra+XV6rPijyjT6D0msOyCvR2A5PlWZLd+fH0U8XWKZfDiAgrUNDNX2BkCw==} + jest-resolve@30.0.5: + resolution: {integrity: sha512-d+DjBQ1tIhdz91B79mywH5yYu76bZuE96sSbxj8MkjWVx5WNdt1deEFRONVL4UkKLSrAbMkdhb24XN691yDRHg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-runner@30.0.4: - resolution: {integrity: sha512-mxY0vTAEsowJwvFJo5pVivbCpuu6dgdXRmt3v3MXjBxFly7/lTk3Td0PaMyGOeNQUFmSuGEsGYqhbn7PA9OekQ==} + jest-runner@30.0.5: + resolution: {integrity: sha512-JcCOucZmgp+YuGgLAXHNy7ualBx4wYSgJVWrYMRBnb79j9PD0Jxh0EHvR5Cx/r0Ce+ZBC4hCdz2AzFFLl9hCiw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-runtime@30.0.4: - resolution: {integrity: sha512-tUQrZ8+IzoZYIHoPDQEB4jZoPyzBjLjq7sk0KVyd5UPRjRDOsN7o6UlvaGF8ddpGsjznl9PW+KRgWqCNO+Hn7w==} + jest-runtime@30.0.5: + resolution: {integrity: sha512-7oySNDkqpe4xpX5PPiJTe5vEa+Ak/NnNz2bGYZrA1ftG3RL3EFlHaUkA1Cjx+R8IhK0Vg43RML5mJedGTPNz3A==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-snapshot@30.0.4: - resolution: {integrity: sha512-S/8hmSkeUib8WRUq9pWEb5zMfsOjiYWDWzFzKnjX7eDyKKgimsu9hcmsUEg8a7dPAw8s/FacxsXquq71pDgPjQ==} + jest-snapshot@30.0.5: + resolution: {integrity: sha512-T00dWU/Ek3LqTp4+DcW6PraVxjk28WY5Ua/s+3zUKSERZSNyxTqhDXCWKG5p2HAJ+crVQ3WJ2P9YVHpj1tkW+g==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-util@30.0.2: - resolution: {integrity: sha512-8IyqfKS4MqprBuUpZNlFB5l+WFehc8bfCe1HSZFHzft2mOuND8Cvi9r1musli+u6F3TqanCZ/Ik4H4pXUolZIg==} + jest-util@30.0.5: + resolution: {integrity: sha512-pvyPWssDZR0FlfMxCBoc0tvM8iUEskaRFALUtGQYzVEAqisAztmy+R8LnU14KT4XA0H/a5HMVTXat1jLne010g==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-validate@30.0.2: - resolution: {integrity: sha512-noOvul+SFER4RIvNAwGn6nmV2fXqBq67j+hKGHKGFCmK4ks/Iy1FSrqQNBLGKlu4ZZIRL6Kg1U72N1nxuRCrGQ==} + jest-validate@30.0.5: + resolution: {integrity: sha512-ouTm6VFHaS2boyl+k4u+Qip4TSH7Uld5tyD8psQ8abGgt2uYYB8VwVfAHWHjHc0NWmGGbwO5h0sCPOGHHevefw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-watcher@30.0.4: - resolution: {integrity: sha512-YESbdHDs7aQOCSSKffG8jXqOKFqw4q4YqR+wHYpR5GWEQioGvL0BfbcjvKIvPEM0XGfsfJrka7jJz3Cc3gI4VQ==} + jest-watcher@30.0.5: + resolution: {integrity: sha512-z9slj/0vOwBDBjN3L4z4ZYaA+pG56d6p3kTUhFRYGvXbXMWhXmb/FIxREZCD06DYUwDKKnj2T80+Pb71CQ0KEg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-worker@30.0.2: - resolution: {integrity: sha512-RN1eQmx7qSLFA+o9pfJKlqViwL5wt+OL3Vff/A+/cPsmuw7NPwfgl33AP+/agRmHzPOFgXviRycR9kYwlcRQXg==} + jest-worker@30.0.5: + resolution: {integrity: sha512-ojRXsWzEP16NdUuBw/4H/zkZdHOa7MMYCk4E430l+8fELeLg/mqmMlRhjL7UNZvQrDmnovWZV4DxX03fZF48fQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest@30.0.4: - resolution: {integrity: sha512-9QE0RS4WwTj/TtTC4h/eFVmFAhGNVerSB9XpJh8sqaXlP73ILcPcZ7JWjjEtJJe2m8QyBLKKfPQuK+3F+Xij/g==} + jest@30.0.5: + resolution: {integrity: sha512-y2mfcJywuTUkvLm2Lp1/pFX8kTgMO5yyQGq/Sk/n2mN7XWYp4JsCZ/QXW34M8YScgk8bPZlREH04f6blPnoHnQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: @@ -3141,8 +3128,8 @@ packages: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} engines: {node: '>= 0.8.0'} - pretty-format@30.0.2: - resolution: {integrity: sha512-yC5/EBSOrTtqhCKfLHqoUIAXVRZnukHPwWBJWR7h84Q3Be1DRQZLncwcfLoPA5RPQ65qfiCMqgYwdUuQ//eVpg==} + pretty-format@30.0.5: + resolution: {integrity: sha512-D1tKtYvByrBkFLe2wHJl2bwMJIiT8rW+XA+TiataH79/FszLQMrpGEvzUVkzPau7OCO0Qnrhpe87PqtOAIB8Yw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} promise@7.3.1: @@ -3911,10 +3898,10 @@ snapshots: '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.4) '@babel/helpers': 7.27.6 - '@babel/parser': 7.27.7 + '@babel/parser': 7.28.0 '@babel/template': 7.27.2 '@babel/traverse': 7.27.4 - '@babel/types': 7.27.7 + '@babel/types': 7.28.1 convert-source-map: 2.0.0 debug: 4.4.1 gensync: 1.0.0-beta.2 @@ -3925,16 +3912,16 @@ snapshots: '@babel/generator@7.27.0': dependencies: - '@babel/parser': 7.27.7 - '@babel/types': 7.27.7 + '@babel/parser': 7.28.0 + '@babel/types': 7.28.1 '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 jsesc: 3.1.0 '@babel/generator@7.27.5': dependencies: - '@babel/parser': 7.27.7 - '@babel/types': 7.27.7 + '@babel/parser': 7.28.0 + '@babel/types': 7.28.1 '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 jsesc: 3.1.0 @@ -3950,7 +3937,7 @@ snapshots: '@babel/helper-module-imports@7.27.1': dependencies: '@babel/traverse': 7.27.4 - '@babel/types': 7.27.7 + '@babel/types': 7.28.1 transitivePeerDependencies: - supports-color @@ -3974,15 +3961,11 @@ snapshots: '@babel/helpers@7.27.6': dependencies: '@babel/template': 7.27.2 - '@babel/types': 7.27.7 + '@babel/types': 7.28.1 '@babel/parser@7.27.0': dependencies: - '@babel/types': 7.27.7 - - '@babel/parser@7.27.7': - dependencies: - '@babel/types': 7.27.7 + '@babel/types': 7.28.1 '@babel/parser@7.28.0': dependencies: @@ -4085,22 +4068,22 @@ snapshots: '@babel/template@7.25.9': dependencies: '@babel/code-frame': 7.27.1 - '@babel/parser': 7.27.7 - '@babel/types': 7.27.7 + '@babel/parser': 7.28.0 + '@babel/types': 7.28.1 '@babel/template@7.27.2': dependencies: '@babel/code-frame': 7.27.1 - '@babel/parser': 7.27.7 - '@babel/types': 7.27.7 + '@babel/parser': 7.28.0 + '@babel/types': 7.28.1 '@babel/traverse@7.27.4': dependencies: '@babel/code-frame': 7.27.1 '@babel/generator': 7.27.5 - '@babel/parser': 7.27.7 + '@babel/parser': 7.28.0 '@babel/template': 7.27.2 - '@babel/types': 7.27.7 + '@babel/types': 7.28.1 debug: 4.4.1 globals: 11.12.0 transitivePeerDependencies: @@ -4111,11 +4094,6 @@ snapshots: '@babel/helper-string-parser': 7.27.1 '@babel/helper-validator-identifier': 7.27.1 - '@babel/types@7.27.7': - dependencies: - '@babel/helper-string-parser': 7.27.1 - '@babel/helper-validator-identifier': 7.27.1 - '@babel/types@7.28.1': dependencies: '@babel/helper-string-parser': 7.27.1 @@ -4613,10 +4591,10 @@ snapshots: '@graphql-tools/graphql-tag-pluck@8.3.4(graphql@16.11.0)': dependencies: '@babel/core': 7.27.4 - '@babel/parser': 7.27.7 + '@babel/parser': 7.28.0 '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.27.4) '@babel/traverse': 7.27.4 - '@babel/types': 7.27.7 + '@babel/types': 7.28.1 '@graphql-tools/utils': 10.9.1(graphql@16.11.0) graphql: 16.11.0 tslib: 2.8.1 @@ -4774,44 +4752,44 @@ snapshots: '@istanbuljs/schema@0.1.3': {} - '@jest/console@30.0.4': + '@jest/console@30.0.5': dependencies: - '@jest/types': 30.0.1 + '@jest/types': 30.0.5 '@types/node': 22.16.5 chalk: 4.1.2 - jest-message-util: 30.0.2 - jest-util: 30.0.2 + jest-message-util: 30.0.5 + jest-util: 30.0.5 slash: 3.0.0 - '@jest/core@30.0.4': + '@jest/core@30.0.5': dependencies: - '@jest/console': 30.0.4 + '@jest/console': 30.0.5 '@jest/pattern': 30.0.1 - '@jest/reporters': 30.0.4 - '@jest/test-result': 30.0.4 - '@jest/transform': 30.0.4 - '@jest/types': 30.0.1 + '@jest/reporters': 30.0.5 + '@jest/test-result': 30.0.5 + '@jest/transform': 30.0.5 + '@jest/types': 30.0.5 '@types/node': 22.16.5 ansi-escapes: 4.3.2 chalk: 4.1.2 - ci-info: 4.2.0 + ci-info: 4.3.0 exit-x: 0.2.2 graceful-fs: 4.2.11 - jest-changed-files: 30.0.2 - jest-config: 30.0.4(@types/node@22.16.5) - jest-haste-map: 30.0.2 - jest-message-util: 30.0.2 + jest-changed-files: 30.0.5 + jest-config: 30.0.5(@types/node@22.16.5) + jest-haste-map: 30.0.5 + jest-message-util: 30.0.5 jest-regex-util: 30.0.1 - jest-resolve: 30.0.2 - jest-resolve-dependencies: 30.0.4 - jest-runner: 30.0.4 - jest-runtime: 30.0.4 - jest-snapshot: 30.0.4 - jest-util: 30.0.2 - jest-validate: 30.0.2 - jest-watcher: 30.0.4 + jest-resolve: 30.0.5 + jest-resolve-dependencies: 30.0.5 + jest-runner: 30.0.5 + jest-runtime: 30.0.5 + jest-snapshot: 30.0.5 + jest-util: 30.0.5 + jest-validate: 30.0.5 + jest-watcher: 30.0.5 micromatch: 4.0.8 - pretty-format: 30.0.2 + pretty-format: 30.0.5 slash: 3.0.0 transitivePeerDependencies: - babel-plugin-macros @@ -4821,41 +4799,41 @@ snapshots: '@jest/diff-sequences@30.0.1': {} - '@jest/environment@30.0.4': + '@jest/environment@30.0.5': dependencies: - '@jest/fake-timers': 30.0.4 - '@jest/types': 30.0.1 + '@jest/fake-timers': 30.0.5 + '@jest/types': 30.0.5 '@types/node': 22.16.5 - jest-mock: 30.0.2 + jest-mock: 30.0.5 - '@jest/expect-utils@30.0.4': + '@jest/expect-utils@30.0.5': dependencies: '@jest/get-type': 30.0.1 - '@jest/expect@30.0.4': + '@jest/expect@30.0.5': dependencies: - expect: 30.0.4 - jest-snapshot: 30.0.4 + expect: 30.0.5 + jest-snapshot: 30.0.5 transitivePeerDependencies: - supports-color - '@jest/fake-timers@30.0.4': + '@jest/fake-timers@30.0.5': dependencies: - '@jest/types': 30.0.1 + '@jest/types': 30.0.5 '@sinonjs/fake-timers': 13.0.5 '@types/node': 22.16.5 - jest-message-util: 30.0.2 - jest-mock: 30.0.2 - jest-util: 30.0.2 + jest-message-util: 30.0.5 + jest-mock: 30.0.5 + jest-util: 30.0.5 '@jest/get-type@30.0.1': {} - '@jest/globals@30.0.4': + '@jest/globals@30.0.5': dependencies: - '@jest/environment': 30.0.4 - '@jest/expect': 30.0.4 - '@jest/types': 30.0.1 - jest-mock: 30.0.2 + '@jest/environment': 30.0.5 + '@jest/expect': 30.0.5 + '@jest/types': 30.0.5 + jest-mock: 30.0.5 transitivePeerDependencies: - supports-color @@ -4864,13 +4842,13 @@ snapshots: '@types/node': 22.16.5 jest-regex-util: 30.0.1 - '@jest/reporters@30.0.4': + '@jest/reporters@30.0.5': dependencies: '@bcoe/v8-coverage': 0.2.3 - '@jest/console': 30.0.4 - '@jest/test-result': 30.0.4 - '@jest/transform': 30.0.4 - '@jest/types': 30.0.1 + '@jest/console': 30.0.5 + '@jest/test-result': 30.0.5 + '@jest/transform': 30.0.5 + '@jest/types': 30.0.5 '@jridgewell/trace-mapping': 0.3.25 '@types/node': 22.16.5 chalk: 4.1.2 @@ -4883,22 +4861,22 @@ snapshots: istanbul-lib-report: 3.0.1 istanbul-lib-source-maps: 5.0.6 istanbul-reports: 3.1.7 - jest-message-util: 30.0.2 - jest-util: 30.0.2 - jest-worker: 30.0.2 + jest-message-util: 30.0.5 + jest-util: 30.0.5 + jest-worker: 30.0.5 slash: 3.0.0 string-length: 4.0.2 v8-to-istanbul: 9.3.0 transitivePeerDependencies: - supports-color - '@jest/schemas@30.0.1': + '@jest/schemas@30.0.5': dependencies: '@sinclair/typebox': 0.34.33 - '@jest/snapshot-utils@30.0.4': + '@jest/snapshot-utils@30.0.5': dependencies: - '@jest/types': 30.0.1 + '@jest/types': 30.0.5 chalk: 4.1.2 graceful-fs: 4.2.11 natural-compare: 1.4.0 @@ -4909,33 +4887,33 @@ snapshots: callsites: 3.1.0 graceful-fs: 4.2.11 - '@jest/test-result@30.0.4': + '@jest/test-result@30.0.5': dependencies: - '@jest/console': 30.0.4 - '@jest/types': 30.0.1 + '@jest/console': 30.0.5 + '@jest/types': 30.0.5 '@types/istanbul-lib-coverage': 2.0.6 collect-v8-coverage: 1.0.2 - '@jest/test-sequencer@30.0.4': + '@jest/test-sequencer@30.0.5': dependencies: - '@jest/test-result': 30.0.4 + '@jest/test-result': 30.0.5 graceful-fs: 4.2.11 - jest-haste-map: 30.0.2 + jest-haste-map: 30.0.5 slash: 3.0.0 - '@jest/transform@30.0.4': + '@jest/transform@30.0.5': dependencies: '@babel/core': 7.27.4 - '@jest/types': 30.0.1 + '@jest/types': 30.0.5 '@jridgewell/trace-mapping': 0.3.25 babel-plugin-istanbul: 7.0.0 chalk: 4.1.2 convert-source-map: 2.0.0 fast-json-stable-stringify: 2.1.0 graceful-fs: 4.2.11 - jest-haste-map: 30.0.2 + jest-haste-map: 30.0.5 jest-regex-util: 30.0.1 - jest-util: 30.0.2 + jest-util: 30.0.5 micromatch: 4.0.8 pirates: 4.0.7 slash: 3.0.0 @@ -4943,10 +4921,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@jest/types@30.0.1': + '@jest/types@30.0.5': dependencies: '@jest/pattern': 30.0.1 - '@jest/schemas': 30.0.1 + '@jest/schemas': 30.0.5 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 '@types/node': 22.16.5 @@ -5087,24 +5065,24 @@ snapshots: '@types/babel__core@7.20.5': dependencies: - '@babel/parser': 7.27.7 - '@babel/types': 7.27.7 + '@babel/parser': 7.28.0 + '@babel/types': 7.28.1 '@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.27.7 + '@babel/types': 7.28.1 '@types/babel__template@7.4.4': dependencies: - '@babel/parser': 7.27.7 - '@babel/types': 7.27.7 + '@babel/parser': 7.28.0 + '@babel/types': 7.28.1 '@types/babel__traverse@7.20.6': dependencies: - '@babel/types': 7.27.7 + '@babel/types': 7.28.1 '@types/chai@5.2.2': dependencies: @@ -5475,10 +5453,10 @@ snapshots: auto-bind@4.0.0: {} - babel-jest@30.0.4(@babel/core@7.27.4): + babel-jest@30.0.5(@babel/core@7.27.4): dependencies: '@babel/core': 7.27.4 - '@jest/transform': 30.0.4 + '@jest/transform': 30.0.5 '@types/babel__core': 7.20.5 babel-plugin-istanbul: 7.0.0 babel-preset-jest: 30.0.1(@babel/core@7.27.4) @@ -5501,7 +5479,7 @@ snapshots: babel-plugin-jest-hoist@30.0.1: dependencies: '@babel/template': 7.27.2 - '@babel/types': 7.27.7 + '@babel/types': 7.28.1 '@types/babel__core': 7.20.5 babel-preset-current-node-syntax@1.1.0(@babel/core@7.27.4): @@ -5654,8 +5632,6 @@ snapshots: check-error@2.1.1: {} - ci-info@4.2.0: {} - ci-info@4.3.0: {} cjs-module-lexer@2.1.0: {} @@ -6158,14 +6134,14 @@ snapshots: expect-type@1.2.1: {} - expect@30.0.4: + expect@30.0.5: dependencies: - '@jest/expect-utils': 30.0.4 + '@jest/expect-utils': 30.0.5 '@jest/get-type': 30.0.1 - jest-matcher-utils: 30.0.4 - jest-message-util: 30.0.2 - jest-mock: 30.0.2 - jest-util: 30.0.2 + jest-matcher-utils: 30.0.5 + jest-message-util: 30.0.5 + jest-mock: 30.0.5 + jest-util: 30.0.5 exsolve@1.0.7: {} @@ -6523,7 +6499,7 @@ snapshots: istanbul-lib-instrument@6.0.3: dependencies: '@babel/core': 7.27.4 - '@babel/parser': 7.27.7 + '@babel/parser': 7.28.0 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 semver: 7.7.2 @@ -6562,31 +6538,31 @@ snapshots: filelist: 1.0.4 minimatch: 3.1.2 - jest-changed-files@30.0.2: + jest-changed-files@30.0.5: dependencies: execa: 5.1.1 - jest-util: 30.0.2 + jest-util: 30.0.5 p-limit: 3.1.0 - jest-circus@30.0.4: + jest-circus@30.0.5: dependencies: - '@jest/environment': 30.0.4 - '@jest/expect': 30.0.4 - '@jest/test-result': 30.0.4 - '@jest/types': 30.0.1 + '@jest/environment': 30.0.5 + '@jest/expect': 30.0.5 + '@jest/test-result': 30.0.5 + '@jest/types': 30.0.5 '@types/node': 22.16.5 chalk: 4.1.2 co: 4.6.0 dedent: 1.6.0 is-generator-fn: 2.1.0 - jest-each: 30.0.2 - jest-matcher-utils: 30.0.4 - jest-message-util: 30.0.2 - jest-runtime: 30.0.4 - jest-snapshot: 30.0.4 - jest-util: 30.0.2 + jest-each: 30.0.5 + jest-matcher-utils: 30.0.5 + jest-message-util: 30.0.5 + jest-runtime: 30.0.5 + jest-snapshot: 30.0.5 + jest-util: 30.0.5 p-limit: 3.1.0 - pretty-format: 30.0.2 + pretty-format: 30.0.5 pure-rand: 7.0.1 slash: 3.0.0 stack-utils: 2.0.6 @@ -6594,17 +6570,17 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@30.0.4(@types/node@22.16.5): + jest-cli@30.0.5(@types/node@22.16.5): dependencies: - '@jest/core': 30.0.4 - '@jest/test-result': 30.0.4 - '@jest/types': 30.0.1 + '@jest/core': 30.0.5 + '@jest/test-result': 30.0.5 + '@jest/types': 30.0.5 chalk: 4.1.2 exit-x: 0.2.2 import-local: 3.2.0 - jest-config: 30.0.4(@types/node@22.16.5) - jest-util: 30.0.2 - jest-validate: 30.0.2 + jest-config: 30.0.5(@types/node@22.16.5) + jest-util: 30.0.5 + jest-validate: 30.0.5 yargs: 17.7.2 transitivePeerDependencies: - '@types/node' @@ -6613,30 +6589,30 @@ snapshots: - supports-color - ts-node - jest-config@30.0.4(@types/node@22.16.5): + jest-config@30.0.5(@types/node@22.16.5): dependencies: '@babel/core': 7.27.4 '@jest/get-type': 30.0.1 '@jest/pattern': 30.0.1 - '@jest/test-sequencer': 30.0.4 - '@jest/types': 30.0.1 - babel-jest: 30.0.4(@babel/core@7.27.4) + '@jest/test-sequencer': 30.0.5 + '@jest/types': 30.0.5 + babel-jest: 30.0.5(@babel/core@7.27.4) chalk: 4.1.2 - ci-info: 4.2.0 + ci-info: 4.3.0 deepmerge: 4.3.1 glob: 10.4.5 graceful-fs: 4.2.11 - jest-circus: 30.0.4 + jest-circus: 30.0.5 jest-docblock: 30.0.1 - jest-environment-node: 30.0.4 + jest-environment-node: 30.0.5 jest-regex-util: 30.0.1 - jest-resolve: 30.0.2 - jest-runner: 30.0.4 - jest-util: 30.0.2 - jest-validate: 30.0.2 + jest-resolve: 30.0.5 + jest-runner: 30.0.5 + jest-util: 30.0.5 + jest-validate: 30.0.5 micromatch: 4.0.8 parse-json: 5.2.0 - pretty-format: 30.0.2 + pretty-format: 30.0.5 slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: @@ -6645,227 +6621,227 @@ snapshots: - babel-plugin-macros - supports-color - jest-diff@30.0.4: + jest-diff@30.0.5: dependencies: '@jest/diff-sequences': 30.0.1 '@jest/get-type': 30.0.1 chalk: 4.1.2 - pretty-format: 30.0.2 + pretty-format: 30.0.5 jest-docblock@30.0.1: dependencies: detect-newline: 3.1.0 - jest-each@30.0.2: + jest-each@30.0.5: dependencies: '@jest/get-type': 30.0.1 - '@jest/types': 30.0.1 + '@jest/types': 30.0.5 chalk: 4.1.2 - jest-util: 30.0.2 - pretty-format: 30.0.2 + jest-util: 30.0.5 + pretty-format: 30.0.5 - jest-environment-node@30.0.4: + jest-environment-node@30.0.5: dependencies: - '@jest/environment': 30.0.4 - '@jest/fake-timers': 30.0.4 - '@jest/types': 30.0.1 + '@jest/environment': 30.0.5 + '@jest/fake-timers': 30.0.5 + '@jest/types': 30.0.5 '@types/node': 22.16.5 - jest-mock: 30.0.2 - jest-util: 30.0.2 - jest-validate: 30.0.2 + jest-mock: 30.0.5 + jest-util: 30.0.5 + jest-validate: 30.0.5 - jest-haste-map@30.0.2: + jest-haste-map@30.0.5: dependencies: - '@jest/types': 30.0.1 + '@jest/types': 30.0.5 '@types/node': 22.16.5 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 jest-regex-util: 30.0.1 - jest-util: 30.0.2 - jest-worker: 30.0.2 + jest-util: 30.0.5 + jest-worker: 30.0.5 micromatch: 4.0.8 walker: 1.0.8 optionalDependencies: fsevents: 2.3.3 - jest-leak-detector@30.0.2: + jest-leak-detector@30.0.5: dependencies: '@jest/get-type': 30.0.1 - pretty-format: 30.0.2 + pretty-format: 30.0.5 - jest-matcher-utils@30.0.4: + jest-matcher-utils@30.0.5: dependencies: '@jest/get-type': 30.0.1 chalk: 4.1.2 - jest-diff: 30.0.4 - pretty-format: 30.0.2 + jest-diff: 30.0.5 + pretty-format: 30.0.5 - jest-message-util@30.0.2: + jest-message-util@30.0.5: dependencies: '@babel/code-frame': 7.27.1 - '@jest/types': 30.0.1 + '@jest/types': 30.0.5 '@types/stack-utils': 2.0.3 chalk: 4.1.2 graceful-fs: 4.2.11 micromatch: 4.0.8 - pretty-format: 30.0.2 + pretty-format: 30.0.5 slash: 3.0.0 stack-utils: 2.0.6 - jest-mock@30.0.2: + jest-mock@30.0.5: dependencies: - '@jest/types': 30.0.1 + '@jest/types': 30.0.5 '@types/node': 22.16.5 - jest-util: 30.0.2 + jest-util: 30.0.5 - jest-pnp-resolver@1.2.3(jest-resolve@30.0.2): + jest-pnp-resolver@1.2.3(jest-resolve@30.0.5): optionalDependencies: - jest-resolve: 30.0.2 + jest-resolve: 30.0.5 jest-regex-util@30.0.1: {} - jest-resolve-dependencies@30.0.4: + jest-resolve-dependencies@30.0.5: dependencies: jest-regex-util: 30.0.1 - jest-snapshot: 30.0.4 + jest-snapshot: 30.0.5 transitivePeerDependencies: - supports-color - jest-resolve@30.0.2: + jest-resolve@30.0.5: dependencies: chalk: 4.1.2 graceful-fs: 4.2.11 - jest-haste-map: 30.0.2 - jest-pnp-resolver: 1.2.3(jest-resolve@30.0.2) - jest-util: 30.0.2 - jest-validate: 30.0.2 + jest-haste-map: 30.0.5 + jest-pnp-resolver: 1.2.3(jest-resolve@30.0.5) + jest-util: 30.0.5 + jest-validate: 30.0.5 slash: 3.0.0 unrs-resolver: 1.7.13 - jest-runner@30.0.4: + jest-runner@30.0.5: dependencies: - '@jest/console': 30.0.4 - '@jest/environment': 30.0.4 - '@jest/test-result': 30.0.4 - '@jest/transform': 30.0.4 - '@jest/types': 30.0.1 + '@jest/console': 30.0.5 + '@jest/environment': 30.0.5 + '@jest/test-result': 30.0.5 + '@jest/transform': 30.0.5 + '@jest/types': 30.0.5 '@types/node': 22.16.5 chalk: 4.1.2 emittery: 0.13.1 exit-x: 0.2.2 graceful-fs: 4.2.11 jest-docblock: 30.0.1 - jest-environment-node: 30.0.4 - jest-haste-map: 30.0.2 - jest-leak-detector: 30.0.2 - jest-message-util: 30.0.2 - jest-resolve: 30.0.2 - jest-runtime: 30.0.4 - jest-util: 30.0.2 - jest-watcher: 30.0.4 - jest-worker: 30.0.2 + jest-environment-node: 30.0.5 + jest-haste-map: 30.0.5 + jest-leak-detector: 30.0.5 + jest-message-util: 30.0.5 + jest-resolve: 30.0.5 + jest-runtime: 30.0.5 + jest-util: 30.0.5 + jest-watcher: 30.0.5 + jest-worker: 30.0.5 p-limit: 3.1.0 source-map-support: 0.5.13 transitivePeerDependencies: - supports-color - jest-runtime@30.0.4: + jest-runtime@30.0.5: dependencies: - '@jest/environment': 30.0.4 - '@jest/fake-timers': 30.0.4 - '@jest/globals': 30.0.4 + '@jest/environment': 30.0.5 + '@jest/fake-timers': 30.0.5 + '@jest/globals': 30.0.5 '@jest/source-map': 30.0.1 - '@jest/test-result': 30.0.4 - '@jest/transform': 30.0.4 - '@jest/types': 30.0.1 + '@jest/test-result': 30.0.5 + '@jest/transform': 30.0.5 + '@jest/types': 30.0.5 '@types/node': 22.16.5 chalk: 4.1.2 cjs-module-lexer: 2.1.0 collect-v8-coverage: 1.0.2 glob: 10.4.5 graceful-fs: 4.2.11 - jest-haste-map: 30.0.2 - jest-message-util: 30.0.2 - jest-mock: 30.0.2 + jest-haste-map: 30.0.5 + jest-message-util: 30.0.5 + jest-mock: 30.0.5 jest-regex-util: 30.0.1 - jest-resolve: 30.0.2 - jest-snapshot: 30.0.4 - jest-util: 30.0.2 + jest-resolve: 30.0.5 + jest-snapshot: 30.0.5 + jest-util: 30.0.5 slash: 3.0.0 strip-bom: 4.0.0 transitivePeerDependencies: - supports-color - jest-snapshot@30.0.4: + jest-snapshot@30.0.5: dependencies: '@babel/core': 7.27.4 '@babel/generator': 7.27.5 '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.4) '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.27.4) - '@babel/types': 7.27.7 - '@jest/expect-utils': 30.0.4 + '@babel/types': 7.28.1 + '@jest/expect-utils': 30.0.5 '@jest/get-type': 30.0.1 - '@jest/snapshot-utils': 30.0.4 - '@jest/transform': 30.0.4 - '@jest/types': 30.0.1 + '@jest/snapshot-utils': 30.0.5 + '@jest/transform': 30.0.5 + '@jest/types': 30.0.5 babel-preset-current-node-syntax: 1.1.0(@babel/core@7.27.4) chalk: 4.1.2 - expect: 30.0.4 + expect: 30.0.5 graceful-fs: 4.2.11 - jest-diff: 30.0.4 - jest-matcher-utils: 30.0.4 - jest-message-util: 30.0.2 - jest-util: 30.0.2 - pretty-format: 30.0.2 + jest-diff: 30.0.5 + jest-matcher-utils: 30.0.5 + jest-message-util: 30.0.5 + jest-util: 30.0.5 + pretty-format: 30.0.5 semver: 7.7.2 synckit: 0.11.8 transitivePeerDependencies: - supports-color - jest-util@30.0.2: + jest-util@30.0.5: dependencies: - '@jest/types': 30.0.1 + '@jest/types': 30.0.5 '@types/node': 22.16.5 chalk: 4.1.2 - ci-info: 4.2.0 + ci-info: 4.3.0 graceful-fs: 4.2.11 picomatch: 4.0.2 - jest-validate@30.0.2: + jest-validate@30.0.5: dependencies: '@jest/get-type': 30.0.1 - '@jest/types': 30.0.1 + '@jest/types': 30.0.5 camelcase: 6.3.0 chalk: 4.1.2 leven: 3.1.0 - pretty-format: 30.0.2 + pretty-format: 30.0.5 - jest-watcher@30.0.4: + jest-watcher@30.0.5: dependencies: - '@jest/test-result': 30.0.4 - '@jest/types': 30.0.1 + '@jest/test-result': 30.0.5 + '@jest/types': 30.0.5 '@types/node': 22.16.5 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 - jest-util: 30.0.2 + jest-util: 30.0.5 string-length: 4.0.2 - jest-worker@30.0.2: + jest-worker@30.0.5: dependencies: '@types/node': 22.16.5 '@ungap/structured-clone': 1.3.0 - jest-util: 30.0.2 + jest-util: 30.0.5 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@30.0.4(@types/node@22.16.5): + jest@30.0.5(@types/node@22.16.5): dependencies: - '@jest/core': 30.0.4 - '@jest/types': 30.0.1 + '@jest/core': 30.0.5 + '@jest/types': 30.0.5 import-local: 3.2.0 - jest-cli: 30.0.4(@types/node@22.16.5) + jest-cli: 30.0.5(@types/node@22.16.5) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -7594,9 +7570,9 @@ snapshots: prelude-ls@1.2.1: {} - pretty-format@30.0.2: + pretty-format@30.0.5: dependencies: - '@jest/schemas': 30.0.1 + '@jest/schemas': 30.0.5 ansi-styles: 5.2.0 react-is: 18.3.1 @@ -7933,12 +7909,12 @@ snapshots: ts-dedent@2.2.0: {} - ts-jest@29.4.0(@babel/core@7.27.4)(@jest/transform@30.0.4)(@jest/types@30.0.1)(babel-jest@30.0.4(@babel/core@7.27.4))(jest-util@30.0.2)(jest@30.0.4(@types/node@22.16.5))(typescript@5.8.3): + ts-jest@29.4.0(@babel/core@7.27.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.0.5(@types/node@22.16.5))(typescript@5.8.3): dependencies: bs-logger: 0.2.6 ejs: 3.1.10 fast-json-stable-stringify: 2.1.0 - jest: 30.0.4(@types/node@22.16.5) + jest: 30.0.5(@types/node@22.16.5) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -7948,10 +7924,10 @@ snapshots: yargs-parser: 21.1.1 optionalDependencies: '@babel/core': 7.27.4 - '@jest/transform': 30.0.4 - '@jest/types': 30.0.1 - babel-jest: 30.0.4(@babel/core@7.27.4) - jest-util: 30.0.2 + '@jest/transform': 30.0.5 + '@jest/types': 30.0.5 + babel-jest: 30.0.5(@babel/core@7.27.4) + jest-util: 30.0.5 ts-log@2.2.7: {} From 06aef974f0040045b7bd845acb0ffbe5253269fc Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 23 Jul 2025 01:32:52 +0000 Subject: [PATCH 005/133] chore(deps): update dependency @antfu/eslint-config to v4.18.0 (#1189) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 276 +++++++++++++++++++++++++------------------------ 1 file changed, 143 insertions(+), 133 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2758b377..2a73a97e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^4.0.0 - version: 4.17.0(@vue/compiler-sfc@3.5.12)(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0)) + version: 4.18.0(@vue/compiler-sfc@3.5.12)(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0)) '@graphql-codegen/cli': specifier: 5.0.7 version: 5.0.7(@types/node@22.16.5)(graphql@16.11.0)(typescript@5.8.3) @@ -85,8 +85,8 @@ packages: resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - '@antfu/eslint-config@4.17.0': - resolution: {integrity: sha512-S1y0A1+0DcpV6GmjwB9gQCQc7ni9zlKa3MQRqRCEZ0E1WW+nRL1BUwnbk3DpMJAMsb3UIAt1lsAiIBnvIw2NDw==} + '@antfu/eslint-config@4.18.0': + resolution: {integrity: sha512-NjzC2VS0UU45xMPN7FJcIF/hhfYHb/ILVp8T6JdfPKel5QToC4bjC8P0v1tp+cy0/F+5jRJdaGrnH31s7Ku4jw==} hasBin: true peerDependencies: '@eslint-react/eslint-plugin': ^1.38.4 @@ -541,14 +541,6 @@ packages: resolution: {integrity: sha512-ViuymvFmcJi04qdZeDc2whTHryouGcDlaxPqarTD0ZE10ISpxGUVZGZDx4w01upyIynL3iu6IXH2bS1NhclQMw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/core@0.13.0': - resolution: {integrity: sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@eslint/core@0.14.0': - resolution: {integrity: sha512-qIbV0/JZr7iSDjqAc60IqbLdsj9GDt16xQtWD+B78d/HAlvysGdZZ6rpJHGAc2T0FQx1X6thsSPdnoiGKdNtdg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/core@0.15.1': resolution: {integrity: sha512-bkOp+iumZCCbt1K1CmWf0R9pM5yKpDv+ZXtvSyQpudrI9kuFLp+bM2WOPXImuD/ceQuaa8f5pj93Y7zyECIGNA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -561,22 +553,22 @@ packages: resolution: {integrity: sha512-LOm5OVt7D4qiKCqoiPbA7LWmI+tbw1VbTUowBcUMgQSuM6poJufkFkYDcQpo5KfgD39TnNySV26QjOh7VFpSyw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/markdown@7.0.0': - resolution: {integrity: sha512-0WNH6pSFHNlWSlNaIFQP0sLHpMUJw1FaJtyqapvGqOt0ISRgTUkTLVT0hT/zekDA1QlP2TT8pwjPkqYTu2s8yg==} + '@eslint/markdown@7.1.0': + resolution: {integrity: sha512-Y+X1B1j+/zupKDVJfkKc8uYMjQkGzfnd8lt7vK3y8x9Br6H5dBuhAfFrQ6ff7HAMm/1BwgecyEiRFkYCWPRxmA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/object-schema@2.1.6': resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/plugin-kit@0.2.8': - resolution: {integrity: sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/plugin-kit@0.3.3': resolution: {integrity: sha512-1+WqvgNMhmlAambTvT3KPtCl/Ibr68VldY2XY40SL1CE0ZXiakFR/cbTspaF5HsnpDMvcYYoJHfl4980NBjGag==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/plugin-kit@0.3.4': + resolution: {integrity: sha512-Ul5l+lHEcw3L5+k8POx6r74mxEYKG5kOb6Xpy2gCRW6zweT6TEhAf8vhxGgjhqrd/VO/Dirhsb+1hNpD1ue9hw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@graphql-codegen/add@5.0.3': resolution: {integrity: sha512-SxXPmramkth8XtBlAHu4H4jYcYXM/o3p01+psU+0NADQowA8jtYkK6MW5rV6T+CxkEaNZItfSmZRPgIuypcqnA==} peerDependencies: @@ -960,6 +952,10 @@ packages: resolution: {integrity: sha512-YLT9Zo3oNPJoBjBc4q8G2mjU4tqIbf5CEOORbUUr48dCD9q3umJ3IPlVqOqDakPfd2HuwccBaqlGhN4Gmr5OWg==} engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} + '@pkgr/core@0.2.9': + resolution: {integrity: sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==} + engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} + '@repeaterjs/repeater@3.0.6': resolution: {integrity: sha512-Javneu5lsuhwNCryN+pXH93VPQ8g0dBX7wItHFgYiwQmzE1sVdg5tWHiOgHywzL2W21XQopa7IwIEnNbmeUJYA==} @@ -1072,8 +1068,8 @@ packages: '@sinonjs/fake-timers@13.0.5': resolution: {integrity: sha512-36/hTbH2uaWuGVERyC6da9YwGWnzUZXuPro/F2LfsdOsLnCojz/iSH8MxUt/FD2S5XBSVPhmArFUXcpCQ2Hkiw==} - '@stylistic/eslint-plugin@5.1.0': - resolution: {integrity: sha512-TJRJul4u/lmry5N/kyCU+7RWWOk0wyXN+BncRlDYBqpLFnzXkd7QGVfN7KewarFIXv0IX0jSF/Ksu7aHWEDeuw==} + '@stylistic/eslint-plugin@5.2.2': + resolution: {integrity: sha512-bE2DUjruqXlHYP3Q2Gpqiuj2bHq7/88FnuaS0FjeGGLCy+X6a07bGVuwtiOYnPSLHR6jmx5Bwdv+j7l8H+G97A==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: '>=9.0.0' @@ -1153,63 +1149,63 @@ packages: '@types/yargs@17.0.33': resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==} - '@typescript-eslint/eslint-plugin@8.37.0': - resolution: {integrity: sha512-jsuVWeIkb6ggzB+wPCsR4e6loj+rM72ohW6IBn2C+5NCvfUVY8s33iFPySSVXqtm5Hu29Ne/9bnA0JmyLmgenA==} + '@typescript-eslint/eslint-plugin@8.38.0': + resolution: {integrity: sha512-CPoznzpuAnIOl4nhj4tRr4gIPj5AfKgkiJmGQDaq+fQnRJTYlcBjbX3wbciGmpoPf8DREufuPRe1tNMZnGdanA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - '@typescript-eslint/parser': ^8.37.0 + '@typescript-eslint/parser': ^8.38.0 eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <5.9.0' - '@typescript-eslint/parser@8.37.0': - resolution: {integrity: sha512-kVIaQE9vrN9RLCQMQ3iyRlVJpTiDUY6woHGb30JDkfJErqrQEmtdWH3gV0PBAfGZgQXoqzXOO0T3K6ioApbbAA==} + '@typescript-eslint/parser@8.38.0': + resolution: {integrity: sha512-Zhy8HCvBUEfBECzIl1PKqF4p11+d0aUJS1GeUiuqK9WmOug8YCmC4h4bjyBvMyAMI9sbRczmrYL5lKg/YMbrcQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <5.9.0' - '@typescript-eslint/project-service@8.37.0': - resolution: {integrity: sha512-BIUXYsbkl5A1aJDdYJCBAo8rCEbAvdquQ8AnLb6z5Lp1u3x5PNgSSx9A/zqYc++Xnr/0DVpls8iQ2cJs/izTXA==} + '@typescript-eslint/project-service@8.38.0': + resolution: {integrity: sha512-dbK7Jvqcb8c9QfH01YB6pORpqX1mn5gDZc9n63Ak/+jD67oWXn3Gs0M6vddAN+eDXBCS5EmNWzbSxsn9SzFWWg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <5.9.0' - '@typescript-eslint/scope-manager@8.37.0': - resolution: {integrity: sha512-0vGq0yiU1gbjKob2q691ybTg9JX6ShiVXAAfm2jGf3q0hdP6/BruaFjL/ManAR/lj05AvYCH+5bbVo0VtzmjOA==} + '@typescript-eslint/scope-manager@8.38.0': + resolution: {integrity: sha512-WJw3AVlFFcdT9Ri1xs/lg8LwDqgekWXWhH3iAF+1ZM+QPd7oxQ6jvtW/JPwzAScxitILUIFs0/AnQ/UWHzbATQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/tsconfig-utils@8.37.0': - resolution: {integrity: sha512-1/YHvAVTimMM9mmlPvTec9NP4bobA1RkDbMydxG8omqwJJLEW/Iy2C4adsAESIXU3WGLXFHSZUU+C9EoFWl4Zg==} + '@typescript-eslint/tsconfig-utils@8.38.0': + resolution: {integrity: sha512-Lum9RtSE3EroKk/bYns+sPOodqb2Fv50XOl/gMviMKNvanETUuUcC9ObRbzrJ4VSd2JalPqgSAavwrPiPvnAiQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <5.9.0' - '@typescript-eslint/type-utils@8.37.0': - resolution: {integrity: sha512-SPkXWIkVZxhgwSwVq9rqj/4VFo7MnWwVaRNznfQDc/xPYHjXnPfLWn+4L6FF1cAz6e7dsqBeMawgl7QjUMj4Ow==} + '@typescript-eslint/type-utils@8.38.0': + resolution: {integrity: sha512-c7jAvGEZVf0ao2z+nnz8BUaHZD09Agbh+DY7qvBQqLiz8uJzRgVPj5YvOh8I8uEiH8oIUGIfHzMwUcGVco/SJg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <5.9.0' - '@typescript-eslint/types@8.37.0': - resolution: {integrity: sha512-ax0nv7PUF9NOVPs+lmQ7yIE7IQmAf8LGcXbMvHX5Gm+YJUYNAl340XkGnrimxZ0elXyoQJuN5sbg6C4evKA4SQ==} + '@typescript-eslint/types@8.38.0': + resolution: {integrity: sha512-wzkUfX3plUqij4YwWaJyqhiPE5UCRVlFpKn1oCRn2O1bJ592XxWJj8ROQ3JD5MYXLORW84063z3tZTb/cs4Tyw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/typescript-estree@8.37.0': - resolution: {integrity: sha512-zuWDMDuzMRbQOM+bHyU4/slw27bAUEcKSKKs3hcv2aNnc/tvE/h7w60dwVw8vnal2Pub6RT1T7BI8tFZ1fE+yg==} + '@typescript-eslint/typescript-estree@8.38.0': + resolution: {integrity: sha512-fooELKcAKzxux6fA6pxOflpNS0jc+nOQEEOipXFNjSlBS6fqrJOVY/whSn70SScHrcJ2LDsxWrneFoWYSVfqhQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <5.9.0' - '@typescript-eslint/utils@8.37.0': - resolution: {integrity: sha512-TSFvkIW6gGjN2p6zbXo20FzCABbyUAuq6tBvNRGsKdsSQ6a7rnV6ADfZ7f4iI3lIiXc4F4WWvtUfDw9CJ9pO5A==} + '@typescript-eslint/utils@8.38.0': + resolution: {integrity: sha512-hHcMA86Hgt+ijJlrD8fX0j1j8w4C92zue/8LOPAFioIno+W0+L7KqE8QZKCcPGc/92Vs9x36w/4MPTJhqXdyvg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <5.9.0' - '@typescript-eslint/visitor-keys@8.37.0': - resolution: {integrity: sha512-YzfhzcTnZVPiLfP/oeKtDp2evwvHLMe0LOy7oe+hb9KKIumLNohYS9Hgp1ifwpu42YWxhZE8yieggz6JpqO/1w==} + '@typescript-eslint/visitor-keys@8.38.0': + resolution: {integrity: sha512-pWrTcoFNWuwHlA9CvlfSsGWs14JxfN1TH25zM5L7o0pRLhsoZkDnTsXfQRJBEWJoV5DL0jf+Z+sxiud+K0mq1g==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@ungap/structured-clone@1.3.0': @@ -1568,6 +1564,9 @@ packages: change-case@4.1.2: resolution: {integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==} + change-case@5.4.4: + resolution: {integrity: sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==} + char-regex@1.0.2: resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} engines: {node: '>=10'} @@ -1771,8 +1770,8 @@ packages: engines: {node: '>=0.10.0'} hasBin: true - electron-to-chromium@1.5.183: - resolution: {integrity: sha512-vCrDBYjQCAEefWGjlK3EpoSKfKbT10pR4XXPdn65q7snuNOZnthoVpBfZPykmDapOKfoD+MMIPG8ZjKyyc9oHA==} + electron-to-chromium@1.5.190: + resolution: {integrity: sha512-k4McmnB2091YIsdCgkS0fMVMPOJgxl93ltFzaryXqwip1AaxeDqKCGLxkXODDA5Ab/D+tV5EL5+aTx76RvLRxw==} emittery@0.13.1: resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} @@ -1885,8 +1884,8 @@ packages: typescript: optional: true - eslint-plugin-jsdoc@51.3.4: - resolution: {integrity: sha512-maz6qa95+sAjMr9m5oRyfejc+mnyQWsWSe9oyv9371bh4/T0kWOMryJNO4h8rEd97wo/9lbzwi3OOX4rDhnAzg==} + eslint-plugin-jsdoc@51.4.1: + resolution: {integrity: sha512-y4CA9OkachG8v5nAtrwvcvjIbdcKgSyS6U//IfQr4FZFFyeBFwZFf/tfSsMr46mWDJgidZjBTqoCRlXywfFBMg==} engines: {node: '>=20.11.0'} peerDependencies: eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 @@ -1913,8 +1912,8 @@ packages: peerDependencies: eslint: '>=8.45.0' - eslint-plugin-pnpm@1.0.0: - resolution: {integrity: sha512-tyEA10k7psB9HFCx8R4/bU4JS2tSKfXaCnrCcis+1R4FucfMIc6HgcFl4msZbwY2I0D9Vec3xAEkXV0aPechhQ==} + eslint-plugin-pnpm@1.1.0: + resolution: {integrity: sha512-sL93w0muBtjnogzk/loDsxzMbmXQOLP5Blw3swLDBXZgfb+qQI73bPcUbjVR+ZL+K62vGJdErV+43i3r5DsZPg==} peerDependencies: eslint: ^9.0.0 @@ -1930,11 +1929,11 @@ packages: peerDependencies: eslint: '>=6.0.0' - eslint-plugin-unicorn@59.0.1: - resolution: {integrity: sha512-EtNXYuWPUmkgSU2E7Ttn57LbRREQesIP1BiLn7OZLKodopKfDXfBUkC/0j6mpw2JExwf43Uf3qLSvrSvppgy8Q==} - engines: {node: ^18.20.0 || ^20.10.0 || >=21.0.0} + eslint-plugin-unicorn@60.0.0: + resolution: {integrity: sha512-QUzTefvP8stfSXsqKQ+vBQSEsXIlAiCduS/V1Em+FKgL9c21U/IIm20/e3MFy1jyCf14tHAhqC1sX8OTy6VUCg==} + engines: {node: ^20.10.0 || >=21.0.0} peerDependencies: - eslint: '>=9.22.0' + eslint: '>=9.29.0' eslint-plugin-unused-imports@4.1.4: resolution: {integrity: sha512-YptD6IzQjDardkl0POxnnRBhU1OEePMV0nd6siHaRBbd+lyh6NAhFEobiznKU7kTsSsDeSD62Pe7kAM1b7dAZQ==} @@ -3090,6 +3089,10 @@ packages: resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} engines: {node: '>=12'} + picomatch@4.0.3: + resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} + engines: {node: '>=12'} + pidtree@0.6.0: resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} engines: {node: '>=0.10'} @@ -3113,8 +3116,8 @@ packages: resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} engines: {node: '>=4'} - pnpm-workspace-yaml@1.0.0: - resolution: {integrity: sha512-2RKg3khFgX/oeKIQnxxlj+OUoKbaZjBt7EsmQiLfl8AHZKMIpLmXLRPptZ5eq2Rlumh2gILs6OWNky5dzP+f8A==} + pnpm-workspace-yaml@1.1.0: + resolution: {integrity: sha512-OWUzBxtitpyUV0fBYYwLAfWxn3mSzVbVB7cwgNaHvTTU9P0V2QHjyaY5i7f1hEiT9VeKsNH1Skfhe2E3lx/zhA==} postcss-selector-parser@6.1.2: resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} @@ -3404,6 +3407,10 @@ packages: swap-case@2.0.2: resolution: {integrity: sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw==} + synckit@0.11.11: + resolution: {integrity: sha512-MeQTA1r0litLUf0Rp/iisCaL8761lKAZHaimlbGK4j0HysC4PLfqygQj9srcs0m2RdtDYnF8UuYyKpbjHYp7Jw==} + engines: {node: ^14.18.0 || >=16.0.0} + synckit@0.11.8: resolution: {integrity: sha512-+XZ+r1XGIJGeQk3VvXhT6xx/VpbHsRzsTkGgF6E5RX9TTXD0118l87puaEBZ566FhqblC6U0d4XnubznJDm30A==} engines: {node: ^14.18.0 || >=16.0.0} @@ -3809,15 +3816,15 @@ snapshots: '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@4.17.0(@vue/compiler-sfc@3.5.12)(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0))': + '@antfu/eslint-config@4.18.0(@vue/compiler-sfc@3.5.12)(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.31.0(jiti@2.4.0)) - '@eslint/markdown': 7.0.0 - '@stylistic/eslint-plugin': 5.1.0(eslint@9.31.0(jiti@2.4.0)) - '@typescript-eslint/eslint-plugin': 8.37.0(@typescript-eslint/parser@8.37.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) - '@typescript-eslint/parser': 8.37.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) + '@eslint/markdown': 7.1.0 + '@stylistic/eslint-plugin': 5.2.2(eslint@9.31.0(jiti@2.4.0)) + '@typescript-eslint/eslint-plugin': 8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) + '@typescript-eslint/parser': 8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) '@vitest/eslint-plugin': 1.3.4(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0)) ansis: 4.1.0 cac: 6.7.14 @@ -3828,17 +3835,17 @@ snapshots: eslint-plugin-antfu: 3.1.1(eslint@9.31.0(jiti@2.4.0)) eslint-plugin-command: 3.3.1(eslint@9.31.0(jiti@2.4.0)) eslint-plugin-import-lite: 0.3.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) - eslint-plugin-jsdoc: 51.3.4(eslint@9.31.0(jiti@2.4.0)) + eslint-plugin-jsdoc: 51.4.1(eslint@9.31.0(jiti@2.4.0)) eslint-plugin-jsonc: 2.20.1(eslint@9.31.0(jiti@2.4.0)) eslint-plugin-n: 17.21.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) eslint-plugin-no-only-tests: 3.3.0 eslint-plugin-perfectionist: 4.15.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) - eslint-plugin-pnpm: 1.0.0(eslint@9.31.0(jiti@2.4.0)) + eslint-plugin-pnpm: 1.1.0(eslint@9.31.0(jiti@2.4.0)) eslint-plugin-regexp: 2.9.0(eslint@9.31.0(jiti@2.4.0)) eslint-plugin-toml: 0.12.0(eslint@9.31.0(jiti@2.4.0)) - eslint-plugin-unicorn: 59.0.1(eslint@9.31.0(jiti@2.4.0)) - eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.37.0(@typescript-eslint/parser@8.37.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.0)) - eslint-plugin-vue: 10.3.0(@typescript-eslint/parser@8.37.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.31.0(jiti@2.4.0))) + eslint-plugin-unicorn: 60.0.0(eslint@9.31.0(jiti@2.4.0)) + eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.0)) + eslint-plugin-vue: 10.3.0(@typescript-eslint/parser@8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.31.0(jiti@2.4.0))) eslint-plugin-yml: 1.18.0(eslint@9.31.0(jiti@2.4.0)) eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.31.0(jiti@2.4.0)) globals: 16.3.0 @@ -4131,7 +4138,7 @@ snapshots: '@es-joy/jsdoccomment@0.50.2': dependencies: '@types/estree': 1.0.8 - '@typescript-eslint/types': 8.37.0 + '@typescript-eslint/types': 8.38.0 comment-parser: 1.4.1 esquery: 1.6.0 jsdoc-type-pratt-parser: 4.1.0 @@ -4139,7 +4146,7 @@ snapshots: '@es-joy/jsdoccomment@0.52.0': dependencies: '@types/estree': 1.0.8 - '@typescript-eslint/types': 8.37.0 + '@typescript-eslint/types': 8.38.0 comment-parser: 1.4.1 esquery: 1.6.0 jsdoc-type-pratt-parser: 4.1.0 @@ -4246,14 +4253,6 @@ snapshots: '@eslint/config-helpers@0.3.0': {} - '@eslint/core@0.13.0': - dependencies: - '@types/json-schema': 7.0.15 - - '@eslint/core@0.14.0': - dependencies: - '@types/json-schema': 7.0.15 - '@eslint/core@0.15.1': dependencies: '@types/json-schema': 7.0.15 @@ -4274,10 +4273,10 @@ snapshots: '@eslint/js@9.31.0': {} - '@eslint/markdown@7.0.0': + '@eslint/markdown@7.1.0': dependencies: - '@eslint/core': 0.14.0 - '@eslint/plugin-kit': 0.3.3 + '@eslint/core': 0.15.1 + '@eslint/plugin-kit': 0.3.4 github-slugger: 2.0.0 mdast-util-from-markdown: 2.0.2 mdast-util-frontmatter: 2.0.1 @@ -4289,12 +4288,12 @@ snapshots: '@eslint/object-schema@2.1.6': {} - '@eslint/plugin-kit@0.2.8': + '@eslint/plugin-kit@0.3.3': dependencies: - '@eslint/core': 0.13.0 + '@eslint/core': 0.15.1 levn: 0.4.1 - '@eslint/plugin-kit@0.3.3': + '@eslint/plugin-kit@0.3.4': dependencies: '@eslint/core': 0.15.1 levn: 0.4.1 @@ -4974,6 +4973,8 @@ snapshots: '@pkgr/core@0.2.7': {} + '@pkgr/core@0.2.9': {} + '@repeaterjs/repeater@3.0.6': {} '@rollup/rollup-android-arm-eabi@4.43.0': @@ -5046,15 +5047,15 @@ snapshots: dependencies: '@sinonjs/commons': 3.0.1 - '@stylistic/eslint-plugin@5.1.0(eslint@9.31.0(jiti@2.4.0))': + '@stylistic/eslint-plugin@5.2.2(eslint@9.31.0(jiti@2.4.0))': dependencies: '@eslint-community/eslint-utils': 4.7.0(eslint@9.31.0(jiti@2.4.0)) - '@typescript-eslint/types': 8.37.0 + '@typescript-eslint/types': 8.38.0 eslint: 9.31.0(jiti@2.4.0) eslint-visitor-keys: 4.2.1 espree: 10.4.0 estraverse: 5.3.0 - picomatch: 4.0.2 + picomatch: 4.0.3 '@tsconfig/recommended@1.0.10': {} @@ -5138,14 +5139,14 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@8.37.0(@typescript-eslint/parser@8.37.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)': + '@typescript-eslint/eslint-plugin@8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.37.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) - '@typescript-eslint/scope-manager': 8.37.0 - '@typescript-eslint/type-utils': 8.37.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) - '@typescript-eslint/utils': 8.37.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) - '@typescript-eslint/visitor-keys': 8.37.0 + '@typescript-eslint/parser': 8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) + '@typescript-eslint/scope-manager': 8.38.0 + '@typescript-eslint/type-utils': 8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) + '@typescript-eslint/utils': 8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) + '@typescript-eslint/visitor-keys': 8.38.0 eslint: 9.31.0(jiti@2.4.0) graphemer: 1.4.0 ignore: 7.0.5 @@ -5155,41 +5156,41 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.37.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)': + '@typescript-eslint/parser@8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)': dependencies: - '@typescript-eslint/scope-manager': 8.37.0 - '@typescript-eslint/types': 8.37.0 - '@typescript-eslint/typescript-estree': 8.37.0(typescript@5.8.3) - '@typescript-eslint/visitor-keys': 8.37.0 + '@typescript-eslint/scope-manager': 8.38.0 + '@typescript-eslint/types': 8.38.0 + '@typescript-eslint/typescript-estree': 8.38.0(typescript@5.8.3) + '@typescript-eslint/visitor-keys': 8.38.0 debug: 4.4.1 eslint: 9.31.0(jiti@2.4.0) typescript: 5.8.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/project-service@8.37.0(typescript@5.8.3)': + '@typescript-eslint/project-service@8.38.0(typescript@5.8.3)': dependencies: - '@typescript-eslint/tsconfig-utils': 8.37.0(typescript@5.8.3) - '@typescript-eslint/types': 8.37.0 + '@typescript-eslint/tsconfig-utils': 8.38.0(typescript@5.8.3) + '@typescript-eslint/types': 8.38.0 debug: 4.4.1 typescript: 5.8.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@8.37.0': + '@typescript-eslint/scope-manager@8.38.0': dependencies: - '@typescript-eslint/types': 8.37.0 - '@typescript-eslint/visitor-keys': 8.37.0 + '@typescript-eslint/types': 8.38.0 + '@typescript-eslint/visitor-keys': 8.38.0 - '@typescript-eslint/tsconfig-utils@8.37.0(typescript@5.8.3)': + '@typescript-eslint/tsconfig-utils@8.38.0(typescript@5.8.3)': dependencies: typescript: 5.8.3 - '@typescript-eslint/type-utils@8.37.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)': + '@typescript-eslint/type-utils@8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)': dependencies: - '@typescript-eslint/types': 8.37.0 - '@typescript-eslint/typescript-estree': 8.37.0(typescript@5.8.3) - '@typescript-eslint/utils': 8.37.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) + '@typescript-eslint/types': 8.38.0 + '@typescript-eslint/typescript-estree': 8.38.0(typescript@5.8.3) + '@typescript-eslint/utils': 8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) debug: 4.4.1 eslint: 9.31.0(jiti@2.4.0) ts-api-utils: 2.1.0(typescript@5.8.3) @@ -5197,14 +5198,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/types@8.37.0': {} + '@typescript-eslint/types@8.38.0': {} - '@typescript-eslint/typescript-estree@8.37.0(typescript@5.8.3)': + '@typescript-eslint/typescript-estree@8.38.0(typescript@5.8.3)': dependencies: - '@typescript-eslint/project-service': 8.37.0(typescript@5.8.3) - '@typescript-eslint/tsconfig-utils': 8.37.0(typescript@5.8.3) - '@typescript-eslint/types': 8.37.0 - '@typescript-eslint/visitor-keys': 8.37.0 + '@typescript-eslint/project-service': 8.38.0(typescript@5.8.3) + '@typescript-eslint/tsconfig-utils': 8.38.0(typescript@5.8.3) + '@typescript-eslint/types': 8.38.0 + '@typescript-eslint/visitor-keys': 8.38.0 debug: 4.4.1 fast-glob: 3.3.3 is-glob: 4.0.3 @@ -5215,20 +5216,20 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.37.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)': + '@typescript-eslint/utils@8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)': dependencies: '@eslint-community/eslint-utils': 4.7.0(eslint@9.31.0(jiti@2.4.0)) - '@typescript-eslint/scope-manager': 8.37.0 - '@typescript-eslint/types': 8.37.0 - '@typescript-eslint/typescript-estree': 8.37.0(typescript@5.8.3) + '@typescript-eslint/scope-manager': 8.38.0 + '@typescript-eslint/types': 8.38.0 + '@typescript-eslint/typescript-estree': 8.38.0(typescript@5.8.3) eslint: 9.31.0(jiti@2.4.0) typescript: 5.8.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/visitor-keys@8.37.0': + '@typescript-eslint/visitor-keys@8.38.0': dependencies: - '@typescript-eslint/types': 8.37.0 + '@typescript-eslint/types': 8.38.0 eslint-visitor-keys: 4.2.1 '@ungap/structured-clone@1.3.0': {} @@ -5288,7 +5289,7 @@ snapshots: '@vitest/eslint-plugin@1.3.4(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0))': dependencies: - '@typescript-eslint/utils': 8.37.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) + '@typescript-eslint/utils': 8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) eslint: 9.31.0(jiti@2.4.0) optionalDependencies: typescript: 5.8.3 @@ -5535,7 +5536,7 @@ snapshots: browserslist@4.25.1: dependencies: caniuse-lite: 1.0.30001727 - electron-to-chromium: 1.5.183 + electron-to-chromium: 1.5.190 node-releases: 2.0.19 update-browserslist-db: 1.1.3(browserslist@4.25.1) @@ -5624,6 +5625,8 @@ snapshots: snake-case: 3.0.4 tslib: 2.6.3 + change-case@5.4.4: {} + char-regex@1.0.2: {} character-entities@2.0.2: {} @@ -5779,7 +5782,7 @@ snapshots: dependencies: jake: 10.9.2 - electron-to-chromium@1.5.183: {} + electron-to-chromium@1.5.190: {} emittery@0.13.1: {} @@ -5886,12 +5889,12 @@ snapshots: eslint-plugin-import-lite@0.3.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3): dependencies: '@eslint-community/eslint-utils': 4.7.0(eslint@9.31.0(jiti@2.4.0)) - '@typescript-eslint/types': 8.37.0 + '@typescript-eslint/types': 8.38.0 eslint: 9.31.0(jiti@2.4.0) optionalDependencies: typescript: 5.8.3 - eslint-plugin-jsdoc@51.3.4(eslint@9.31.0(jiti@2.4.0)): + eslint-plugin-jsdoc@51.4.1(eslint@9.31.0(jiti@2.4.0)): dependencies: '@es-joy/jsdoccomment': 0.52.0 are-docs-informative: 0.0.2 @@ -5917,7 +5920,7 @@ snapshots: graphemer: 1.4.0 jsonc-eslint-parser: 2.4.0 natural-compare: 1.4.0 - synckit: 0.11.8 + synckit: 0.11.11 transitivePeerDependencies: - '@eslint/json' @@ -5940,21 +5943,21 @@ snapshots: eslint-plugin-perfectionist@4.15.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3): dependencies: - '@typescript-eslint/types': 8.37.0 - '@typescript-eslint/utils': 8.37.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) + '@typescript-eslint/types': 8.38.0 + '@typescript-eslint/utils': 8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) eslint: 9.31.0(jiti@2.4.0) natural-orderby: 5.0.0 transitivePeerDependencies: - supports-color - typescript - eslint-plugin-pnpm@1.0.0(eslint@9.31.0(jiti@2.4.0)): + eslint-plugin-pnpm@1.1.0(eslint@9.31.0(jiti@2.4.0)): dependencies: eslint: 9.31.0(jiti@2.4.0) find-up-simple: 1.0.1 jsonc-eslint-parser: 2.4.0 pathe: 2.0.3 - pnpm-workspace-yaml: 1.0.0 + pnpm-workspace-yaml: 1.1.0 tinyglobby: 0.2.14 yaml-eslint-parser: 1.3.0 @@ -5979,11 +5982,12 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-unicorn@59.0.1(eslint@9.31.0(jiti@2.4.0)): + eslint-plugin-unicorn@60.0.0(eslint@9.31.0(jiti@2.4.0)): dependencies: '@babel/helper-validator-identifier': 7.27.1 '@eslint-community/eslint-utils': 4.7.0(eslint@9.31.0(jiti@2.4.0)) - '@eslint/plugin-kit': 0.2.8 + '@eslint/plugin-kit': 0.3.4 + change-case: 5.4.4 ci-info: 4.3.0 clean-regexp: 1.0.0 core-js-compat: 3.44.0 @@ -6000,13 +6004,13 @@ snapshots: semver: 7.7.2 strip-indent: 4.0.0 - eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.37.0(@typescript-eslint/parser@8.37.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.0)): + eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.0)): dependencies: eslint: 9.31.0(jiti@2.4.0) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.37.0(@typescript-eslint/parser@8.37.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) + '@typescript-eslint/eslint-plugin': 8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) - eslint-plugin-vue@10.3.0(@typescript-eslint/parser@8.37.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.31.0(jiti@2.4.0))): + eslint-plugin-vue@10.3.0(@typescript-eslint/parser@8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.31.0(jiti@2.4.0))): dependencies: '@eslint-community/eslint-utils': 4.7.0(eslint@9.31.0(jiti@2.4.0)) eslint: 9.31.0(jiti@2.4.0) @@ -6017,7 +6021,7 @@ snapshots: vue-eslint-parser: 10.2.0(eslint@9.31.0(jiti@2.4.0)) xml-name-validator: 4.0.0 optionalDependencies: - '@typescript-eslint/parser': 8.37.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) + '@typescript-eslint/parser': 8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) eslint-plugin-yml@1.18.0(eslint@9.31.0(jiti@2.4.0)): dependencies: @@ -7531,6 +7535,8 @@ snapshots: picomatch@4.0.2: {} + picomatch@4.0.3: {} + pidtree@0.6.0: {} pirates@4.0.7: {} @@ -7553,7 +7559,7 @@ snapshots: pluralize@8.0.0: {} - pnpm-workspace-yaml@1.0.0: + pnpm-workspace-yaml@1.1.0: dependencies: yaml: 2.8.0 @@ -7843,6 +7849,10 @@ snapshots: dependencies: tslib: 2.6.3 + synckit@0.11.11: + dependencies: + '@pkgr/core': 0.2.9 + synckit@0.11.8: dependencies: '@pkgr/core': 0.2.7 @@ -7904,7 +7914,7 @@ snapshots: ts-declaration-location@1.0.7(typescript@5.8.3): dependencies: - picomatch: 4.0.2 + picomatch: 4.0.3 typescript: 5.8.3 ts-dedent@2.2.0: {} From 220aeb420c3fad50b0d2a273a76f189905af5412 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 24 Jul 2025 02:43:16 +0000 Subject: [PATCH 006/133] chore(deps): update dependency zod to v4.0.8 (#1190) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 0b21a6cc..2db1041b 100644 --- a/package.json +++ b/package.json @@ -101,6 +101,6 @@ "valibot": "1.1.0", "vitest": "^3.0.0", "yup": "1.6.1", - "zod": "4.0.5" + "zod": "4.0.8" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2a73a97e..8ffdc67c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -76,8 +76,8 @@ importers: specifier: 1.6.1 version: 1.6.1 zod: - specifier: 4.0.5 - version: 4.0.5 + specifier: 4.0.8 + version: 4.0.8 packages: @@ -3803,8 +3803,8 @@ packages: yup@1.6.1: resolution: {integrity: sha512-JED8pB50qbA4FOkDol0bYF/p60qSEDQqBD0/qeIrUCG1KbPBIQ776fCUNb9ldbPcSTxA69g/47XTo4TqWiuXOA==} - zod@4.0.5: - resolution: {integrity: sha512-/5UuuRPStvHXu7RS+gmvRf4NXrNxpSllGwDnCBcJZtQsKrviYXm54yDGV2KYNLT5kq0lHGcl7lqWJLgSaG+tgA==} + zod@4.0.8: + resolution: {integrity: sha512-+MSh9cZU9r3QKlHqrgHMTSr3QwMGv4PLfR0M4N/sYWV5/x67HgXEhIGObdBkpnX8G78pTgWnIrBL2lZcNJOtfg==} zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} @@ -8228,6 +8228,6 @@ snapshots: toposort: 2.0.2 type-fest: 2.19.0 - zod@4.0.5: {} + zod@4.0.8: {} zwitch@2.0.4: {} From 54b77762cfb861fc5f43d515fa469f5e048bc4d4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 24 Jul 2025 08:12:15 +0000 Subject: [PATCH 007/133] chore(deps): update dependency @antfu/eslint-config to v4.19.0 (#1191) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8ffdc67c..442ababb 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^4.0.0 - version: 4.18.0(@vue/compiler-sfc@3.5.12)(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0)) + version: 4.19.0(@vue/compiler-sfc@3.5.12)(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0)) '@graphql-codegen/cli': specifier: 5.0.7 version: 5.0.7(@types/node@22.16.5)(graphql@16.11.0)(typescript@5.8.3) @@ -85,11 +85,12 @@ packages: resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - '@antfu/eslint-config@4.18.0': - resolution: {integrity: sha512-NjzC2VS0UU45xMPN7FJcIF/hhfYHb/ILVp8T6JdfPKel5QToC4bjC8P0v1tp+cy0/F+5jRJdaGrnH31s7Ku4jw==} + '@antfu/eslint-config@4.19.0': + resolution: {integrity: sha512-IQlML0cc7qNA1Uk55raMRZjOmh26rkX3bi2MFYjhO+VOtTQt8Mz2ngxBlIwpTgZFgfuYjle6JPuOuALnEZHDFw==} hasBin: true peerDependencies: '@eslint-react/eslint-plugin': ^1.38.4 + '@next/eslint-plugin-next': ^15.4.0-canary.115 '@prettier/plugin-xml': ^3.4.1 '@unocss/eslint-plugin': '>=0.50.0' astro-eslint-parser: ^1.0.2 @@ -107,6 +108,8 @@ packages: peerDependenciesMeta: '@eslint-react/eslint-plugin': optional: true + '@next/eslint-plugin-next': + optional: true '@prettier/plugin-xml': optional: true '@unocss/eslint-plugin': @@ -3816,7 +3819,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@4.18.0(@vue/compiler-sfc@3.5.12)(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0))': + '@antfu/eslint-config@4.19.0(@vue/compiler-sfc@3.5.12)(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 From 466416816862eb742f5ec238e3d07e28d418e078 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 25 Jul 2025 00:35:44 +0000 Subject: [PATCH 008/133] chore(deps): update dependency zod to v4.0.9 (#1192) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 2db1041b..81454a69 100644 --- a/package.json +++ b/package.json @@ -101,6 +101,6 @@ "valibot": "1.1.0", "vitest": "^3.0.0", "yup": "1.6.1", - "zod": "4.0.8" + "zod": "4.0.9" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 442ababb..697518b0 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -76,8 +76,8 @@ importers: specifier: 1.6.1 version: 1.6.1 zod: - specifier: 4.0.8 - version: 4.0.8 + specifier: 4.0.9 + version: 4.0.9 packages: @@ -3806,8 +3806,8 @@ packages: yup@1.6.1: resolution: {integrity: sha512-JED8pB50qbA4FOkDol0bYF/p60qSEDQqBD0/qeIrUCG1KbPBIQ776fCUNb9ldbPcSTxA69g/47XTo4TqWiuXOA==} - zod@4.0.8: - resolution: {integrity: sha512-+MSh9cZU9r3QKlHqrgHMTSr3QwMGv4PLfR0M4N/sYWV5/x67HgXEhIGObdBkpnX8G78pTgWnIrBL2lZcNJOtfg==} + zod@4.0.9: + resolution: {integrity: sha512-PAqUh1FW4Irxcs6/sWfnhJGV/8F0eLNd1FryydBfbA9Qvz1LaJk0TDrSC+hIKlArS/xVISuX/yjlS1bzg2D3Zw==} zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} @@ -8231,6 +8231,6 @@ snapshots: toposort: 2.0.2 type-fest: 2.19.0 - zod@4.0.8: {} + zod@4.0.9: {} zwitch@2.0.4: {} From 9dcbe970438b85a738f72f1848a4fdae5b295c76 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 25 Jul 2025 00:36:02 +0000 Subject: [PATCH 009/133] chore(deps): update dependency @antfu/eslint-config to v5 (#1193) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 81454a69..985ed201 100644 --- a/package.json +++ b/package.json @@ -85,7 +85,7 @@ "graphql": "^16.6.0" }, "devDependencies": { - "@antfu/eslint-config": "^4.0.0", + "@antfu/eslint-config": "^5.0.0", "@graphql-codegen/cli": "5.0.7", "@graphql-codegen/typescript": "^4.0.0", "@tsconfig/recommended": "1.0.10", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 697518b0..ea18be8d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -28,8 +28,8 @@ importers: version: 16.11.0 devDependencies: '@antfu/eslint-config': - specifier: ^4.0.0 - version: 4.19.0(@vue/compiler-sfc@3.5.12)(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0)) + specifier: ^5.0.0 + version: 5.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0)) '@graphql-codegen/cli': specifier: 5.0.7 version: 5.0.7(@types/node@22.16.5)(graphql@16.11.0)(typescript@5.8.3) @@ -85,8 +85,8 @@ packages: resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - '@antfu/eslint-config@4.19.0': - resolution: {integrity: sha512-IQlML0cc7qNA1Uk55raMRZjOmh26rkX3bi2MFYjhO+VOtTQt8Mz2ngxBlIwpTgZFgfuYjle6JPuOuALnEZHDFw==} + '@antfu/eslint-config@5.0.0': + resolution: {integrity: sha512-uAMv8PiW9BOAGmIyTDtWXGnNfv6PFV4DmpqmlUpST5k4bue38VRdIfnM4jvgPuny1xnjYX3flN3kB9++6LknMw==} hasBin: true peerDependencies: '@eslint-react/eslint-plugin': ^1.38.4 @@ -3819,7 +3819,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@4.19.0(@vue/compiler-sfc@3.5.12)(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0))': + '@antfu/eslint-config@5.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 From f214c268505af2bc69d7ea856bdc05d7137c6c42 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 25 Jul 2025 05:55:05 +0000 Subject: [PATCH 010/133] chore(deps): update dependency zod to v4.0.10 (#1194) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 985ed201..1accf24c 100644 --- a/package.json +++ b/package.json @@ -101,6 +101,6 @@ "valibot": "1.1.0", "vitest": "^3.0.0", "yup": "1.6.1", - "zod": "4.0.9" + "zod": "4.0.10" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ea18be8d..c0f89bd0 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -76,8 +76,8 @@ importers: specifier: 1.6.1 version: 1.6.1 zod: - specifier: 4.0.9 - version: 4.0.9 + specifier: 4.0.10 + version: 4.0.10 packages: @@ -3806,8 +3806,8 @@ packages: yup@1.6.1: resolution: {integrity: sha512-JED8pB50qbA4FOkDol0bYF/p60qSEDQqBD0/qeIrUCG1KbPBIQ776fCUNb9ldbPcSTxA69g/47XTo4TqWiuXOA==} - zod@4.0.9: - resolution: {integrity: sha512-PAqUh1FW4Irxcs6/sWfnhJGV/8F0eLNd1FryydBfbA9Qvz1LaJk0TDrSC+hIKlArS/xVISuX/yjlS1bzg2D3Zw==} + zod@4.0.10: + resolution: {integrity: sha512-3vB+UU3/VmLL2lvwcY/4RV2i9z/YU0DTV/tDuYjrwmx5WeJ7hwy+rGEEx8glHp6Yxw7ibRbKSaIFBgReRPe5KA==} zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} @@ -8231,6 +8231,6 @@ snapshots: toposort: 2.0.2 type-fest: 2.19.0 - zod@4.0.9: {} + zod@4.0.10: {} zwitch@2.0.4: {} From 1b14ad84220772aefa86260dbe97d3751fd58189 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 25 Jul 2025 15:45:18 +0000 Subject: [PATCH 011/133] chore(deps): update dependency eslint to v9.32.0 (#1195) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 257 ++++++++++++++++++++++++------------------------- 2 files changed, 125 insertions(+), 134 deletions(-) diff --git a/package.json b/package.json index 1accf24c..03c0e9aa 100644 --- a/package.json +++ b/package.json @@ -91,7 +91,7 @@ "@tsconfig/recommended": "1.0.10", "@types/graphlib": "^2.1.8", "@types/node": "^22.0.0", - "eslint": "9.31.0", + "eslint": "9.32.0", "jest": "30.0.5", "myzod": "1.12.1", "npm-run-all2": "8.0.4", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c0f89bd0..3d628e8a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^5.0.0 - version: 5.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0)) + version: 5.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0)) '@graphql-codegen/cli': specifier: 5.0.7 version: 5.0.7(@types/node@22.16.5)(graphql@16.11.0)(typescript@5.8.3) @@ -46,8 +46,8 @@ importers: specifier: ^22.0.0 version: 22.16.5 eslint: - specifier: 9.31.0 - version: 9.31.0(jiti@2.4.0) + specifier: 9.32.0 + version: 9.32.0(jiti@2.4.0) jest: specifier: 30.0.5 version: 30.0.5(@types/node@22.16.5) @@ -552,8 +552,8 @@ packages: resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/js@9.31.0': - resolution: {integrity: sha512-LOm5OVt7D4qiKCqoiPbA7LWmI+tbw1VbTUowBcUMgQSuM6poJufkFkYDcQpo5KfgD39TnNySV26QjOh7VFpSyw==} + '@eslint/js@9.32.0': + resolution: {integrity: sha512-BBpRFZK3eX6uMLKz8WxFOBIFFcGFJ/g8XuwjTHCqHROSIsopI+ddn/d5Cfh36+7+e5edVS8dbSHnBNhrLEX0zg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/markdown@7.1.0': @@ -564,10 +564,6 @@ packages: resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/plugin-kit@0.3.3': - resolution: {integrity: sha512-1+WqvgNMhmlAambTvT3KPtCl/Ibr68VldY2XY40SL1CE0ZXiakFR/cbTspaF5HsnpDMvcYYoJHfl4980NBjGag==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/plugin-kit@0.3.4': resolution: {integrity: sha512-Ul5l+lHEcw3L5+k8POx6r74mxEYKG5kOb6Xpy2gCRW6zweT6TEhAf8vhxGgjhqrd/VO/Dirhsb+1hNpD1ue9hw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -1982,8 +1978,8 @@ packages: resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - eslint@9.31.0: - resolution: {integrity: sha512-QldCVh/ztyKJJZLr4jXNUByx3gR+TDYZCRXEktiZoUR3PGy4qCmSbkxcIle8GEwGpb5JBZazlaJ/CxLidXdEbQ==} + eslint@9.32.0: + resolution: {integrity: sha512-LSehfdpgMeWcTZkWZVIJl+tkZ2nuSkyyB9C27MZqFWXuph7DvaowgcTvKqxvpLW1JZIk8PN7hFY3Rj9LQ7m7lg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true peerDependencies: @@ -3819,44 +3815,44 @@ snapshots: '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@5.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0))': + '@antfu/eslint-config@5.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 - '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.31.0(jiti@2.4.0)) + '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.32.0(jiti@2.4.0)) '@eslint/markdown': 7.1.0 - '@stylistic/eslint-plugin': 5.2.2(eslint@9.31.0(jiti@2.4.0)) - '@typescript-eslint/eslint-plugin': 8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) - '@typescript-eslint/parser': 8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) - '@vitest/eslint-plugin': 1.3.4(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0)) + '@stylistic/eslint-plugin': 5.2.2(eslint@9.32.0(jiti@2.4.0)) + '@typescript-eslint/eslint-plugin': 8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3) + '@typescript-eslint/parser': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3) + '@vitest/eslint-plugin': 1.3.4(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0)) ansis: 4.1.0 cac: 6.7.14 - eslint: 9.31.0(jiti@2.4.0) - eslint-config-flat-gitignore: 2.1.0(eslint@9.31.0(jiti@2.4.0)) + eslint: 9.32.0(jiti@2.4.0) + eslint-config-flat-gitignore: 2.1.0(eslint@9.32.0(jiti@2.4.0)) eslint-flat-config-utils: 2.1.0 - eslint-merge-processors: 2.0.0(eslint@9.31.0(jiti@2.4.0)) - eslint-plugin-antfu: 3.1.1(eslint@9.31.0(jiti@2.4.0)) - eslint-plugin-command: 3.3.1(eslint@9.31.0(jiti@2.4.0)) - eslint-plugin-import-lite: 0.3.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) - eslint-plugin-jsdoc: 51.4.1(eslint@9.31.0(jiti@2.4.0)) - eslint-plugin-jsonc: 2.20.1(eslint@9.31.0(jiti@2.4.0)) - eslint-plugin-n: 17.21.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) + eslint-merge-processors: 2.0.0(eslint@9.32.0(jiti@2.4.0)) + eslint-plugin-antfu: 3.1.1(eslint@9.32.0(jiti@2.4.0)) + eslint-plugin-command: 3.3.1(eslint@9.32.0(jiti@2.4.0)) + eslint-plugin-import-lite: 0.3.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3) + eslint-plugin-jsdoc: 51.4.1(eslint@9.32.0(jiti@2.4.0)) + eslint-plugin-jsonc: 2.20.1(eslint@9.32.0(jiti@2.4.0)) + eslint-plugin-n: 17.21.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3) eslint-plugin-no-only-tests: 3.3.0 - eslint-plugin-perfectionist: 4.15.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) - eslint-plugin-pnpm: 1.1.0(eslint@9.31.0(jiti@2.4.0)) - eslint-plugin-regexp: 2.9.0(eslint@9.31.0(jiti@2.4.0)) - eslint-plugin-toml: 0.12.0(eslint@9.31.0(jiti@2.4.0)) - eslint-plugin-unicorn: 60.0.0(eslint@9.31.0(jiti@2.4.0)) - eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.0)) - eslint-plugin-vue: 10.3.0(@typescript-eslint/parser@8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.31.0(jiti@2.4.0))) - eslint-plugin-yml: 1.18.0(eslint@9.31.0(jiti@2.4.0)) - eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.31.0(jiti@2.4.0)) + eslint-plugin-perfectionist: 4.15.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3) + eslint-plugin-pnpm: 1.1.0(eslint@9.32.0(jiti@2.4.0)) + eslint-plugin-regexp: 2.9.0(eslint@9.32.0(jiti@2.4.0)) + eslint-plugin-toml: 0.12.0(eslint@9.32.0(jiti@2.4.0)) + eslint-plugin-unicorn: 60.0.0(eslint@9.32.0(jiti@2.4.0)) + eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.32.0(jiti@2.4.0)) + eslint-plugin-vue: 10.3.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.32.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.32.0(jiti@2.4.0))) + eslint-plugin-yml: 1.18.0(eslint@9.32.0(jiti@2.4.0)) + eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0)) globals: 16.3.0 jsonc-eslint-parser: 2.4.0 local-pkg: 1.1.1 parse-gitignore: 2.0.0 toml-eslint-parser: 0.10.0 - vue-eslint-parser: 10.2.0(eslint@9.31.0(jiti@2.4.0)) + vue-eslint-parser: 10.2.0(eslint@9.32.0(jiti@2.4.0)) yaml-eslint-parser: 1.3.0 transitivePeerDependencies: - '@eslint/json' @@ -4229,22 +4225,22 @@ snapshots: '@esbuild/win32-x64@0.25.5': optional: true - '@eslint-community/eslint-plugin-eslint-comments@4.5.0(eslint@9.31.0(jiti@2.4.0))': + '@eslint-community/eslint-plugin-eslint-comments@4.5.0(eslint@9.32.0(jiti@2.4.0))': dependencies: escape-string-regexp: 4.0.0 - eslint: 9.31.0(jiti@2.4.0) + eslint: 9.32.0(jiti@2.4.0) ignore: 5.3.2 - '@eslint-community/eslint-utils@4.7.0(eslint@9.31.0(jiti@2.4.0))': + '@eslint-community/eslint-utils@4.7.0(eslint@9.32.0(jiti@2.4.0))': dependencies: - eslint: 9.31.0(jiti@2.4.0) + eslint: 9.32.0(jiti@2.4.0) eslint-visitor-keys: 3.4.3 '@eslint-community/regexpp@4.12.1': {} - '@eslint/compat@1.3.1(eslint@9.31.0(jiti@2.4.0))': + '@eslint/compat@1.3.1(eslint@9.32.0(jiti@2.4.0))': optionalDependencies: - eslint: 9.31.0(jiti@2.4.0) + eslint: 9.32.0(jiti@2.4.0) '@eslint/config-array@0.21.0': dependencies: @@ -4274,7 +4270,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/js@9.31.0': {} + '@eslint/js@9.32.0': {} '@eslint/markdown@7.1.0': dependencies: @@ -4291,11 +4287,6 @@ snapshots: '@eslint/object-schema@2.1.6': {} - '@eslint/plugin-kit@0.3.3': - dependencies: - '@eslint/core': 0.15.1 - levn: 0.4.1 - '@eslint/plugin-kit@0.3.4': dependencies: '@eslint/core': 0.15.1 @@ -5050,11 +5041,11 @@ snapshots: dependencies: '@sinonjs/commons': 3.0.1 - '@stylistic/eslint-plugin@5.2.2(eslint@9.31.0(jiti@2.4.0))': + '@stylistic/eslint-plugin@5.2.2(eslint@9.32.0(jiti@2.4.0))': dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.31.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) '@typescript-eslint/types': 8.38.0 - eslint: 9.31.0(jiti@2.4.0) + eslint: 9.32.0(jiti@2.4.0) eslint-visitor-keys: 4.2.1 espree: 10.4.0 estraverse: 5.3.0 @@ -5142,15 +5133,15 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)': + '@typescript-eslint/eslint-plugin@8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) + '@typescript-eslint/parser': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3) '@typescript-eslint/scope-manager': 8.38.0 - '@typescript-eslint/type-utils': 8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) - '@typescript-eslint/utils': 8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) + '@typescript-eslint/type-utils': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3) + '@typescript-eslint/utils': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3) '@typescript-eslint/visitor-keys': 8.38.0 - eslint: 9.31.0(jiti@2.4.0) + eslint: 9.32.0(jiti@2.4.0) graphemer: 1.4.0 ignore: 7.0.5 natural-compare: 1.4.0 @@ -5159,14 +5150,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)': + '@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3)': dependencies: '@typescript-eslint/scope-manager': 8.38.0 '@typescript-eslint/types': 8.38.0 '@typescript-eslint/typescript-estree': 8.38.0(typescript@5.8.3) '@typescript-eslint/visitor-keys': 8.38.0 debug: 4.4.1 - eslint: 9.31.0(jiti@2.4.0) + eslint: 9.32.0(jiti@2.4.0) typescript: 5.8.3 transitivePeerDependencies: - supports-color @@ -5189,13 +5180,13 @@ snapshots: dependencies: typescript: 5.8.3 - '@typescript-eslint/type-utils@8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)': + '@typescript-eslint/type-utils@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3)': dependencies: '@typescript-eslint/types': 8.38.0 '@typescript-eslint/typescript-estree': 8.38.0(typescript@5.8.3) - '@typescript-eslint/utils': 8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) + '@typescript-eslint/utils': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3) debug: 4.4.1 - eslint: 9.31.0(jiti@2.4.0) + eslint: 9.32.0(jiti@2.4.0) ts-api-utils: 2.1.0(typescript@5.8.3) typescript: 5.8.3 transitivePeerDependencies: @@ -5219,13 +5210,13 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)': + '@typescript-eslint/utils@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3)': dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.31.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) '@typescript-eslint/scope-manager': 8.38.0 '@typescript-eslint/types': 8.38.0 '@typescript-eslint/typescript-estree': 8.38.0(typescript@5.8.3) - eslint: 9.31.0(jiti@2.4.0) + eslint: 9.32.0(jiti@2.4.0) typescript: 5.8.3 transitivePeerDependencies: - supports-color @@ -5290,10 +5281,10 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.4(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0))': + '@vitest/eslint-plugin@1.3.4(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0))': dependencies: - '@typescript-eslint/utils': 8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) - eslint: 9.31.0(jiti@2.4.0) + '@typescript-eslint/utils': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3) + eslint: 9.32.0(jiti@2.4.0) optionalDependencies: typescript: 5.8.3 vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0) @@ -5844,67 +5835,67 @@ snapshots: escape-string-regexp@5.0.0: {} - eslint-compat-utils@0.5.1(eslint@9.31.0(jiti@2.4.0)): + eslint-compat-utils@0.5.1(eslint@9.32.0(jiti@2.4.0)): dependencies: - eslint: 9.31.0(jiti@2.4.0) + eslint: 9.32.0(jiti@2.4.0) semver: 7.7.2 - eslint-compat-utils@0.6.5(eslint@9.31.0(jiti@2.4.0)): + eslint-compat-utils@0.6.5(eslint@9.32.0(jiti@2.4.0)): dependencies: - eslint: 9.31.0(jiti@2.4.0) + eslint: 9.32.0(jiti@2.4.0) semver: 7.7.2 - eslint-config-flat-gitignore@2.1.0(eslint@9.31.0(jiti@2.4.0)): + eslint-config-flat-gitignore@2.1.0(eslint@9.32.0(jiti@2.4.0)): dependencies: - '@eslint/compat': 1.3.1(eslint@9.31.0(jiti@2.4.0)) - eslint: 9.31.0(jiti@2.4.0) + '@eslint/compat': 1.3.1(eslint@9.32.0(jiti@2.4.0)) + eslint: 9.32.0(jiti@2.4.0) eslint-flat-config-utils@2.1.0: dependencies: pathe: 2.0.3 - eslint-json-compat-utils@0.2.1(eslint@9.31.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0): + eslint-json-compat-utils@0.2.1(eslint@9.32.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0): dependencies: - eslint: 9.31.0(jiti@2.4.0) + eslint: 9.32.0(jiti@2.4.0) esquery: 1.6.0 jsonc-eslint-parser: 2.4.0 - eslint-merge-processors@2.0.0(eslint@9.31.0(jiti@2.4.0)): + eslint-merge-processors@2.0.0(eslint@9.32.0(jiti@2.4.0)): dependencies: - eslint: 9.31.0(jiti@2.4.0) + eslint: 9.32.0(jiti@2.4.0) - eslint-plugin-antfu@3.1.1(eslint@9.31.0(jiti@2.4.0)): + eslint-plugin-antfu@3.1.1(eslint@9.32.0(jiti@2.4.0)): dependencies: - eslint: 9.31.0(jiti@2.4.0) + eslint: 9.32.0(jiti@2.4.0) - eslint-plugin-command@3.3.1(eslint@9.31.0(jiti@2.4.0)): + eslint-plugin-command@3.3.1(eslint@9.32.0(jiti@2.4.0)): dependencies: '@es-joy/jsdoccomment': 0.50.2 - eslint: 9.31.0(jiti@2.4.0) + eslint: 9.32.0(jiti@2.4.0) - eslint-plugin-es-x@7.8.0(eslint@9.31.0(jiti@2.4.0)): + eslint-plugin-es-x@7.8.0(eslint@9.32.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.31.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.1 - eslint: 9.31.0(jiti@2.4.0) - eslint-compat-utils: 0.5.1(eslint@9.31.0(jiti@2.4.0)) + eslint: 9.32.0(jiti@2.4.0) + eslint-compat-utils: 0.5.1(eslint@9.32.0(jiti@2.4.0)) - eslint-plugin-import-lite@0.3.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3): + eslint-plugin-import-lite@0.3.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.31.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) '@typescript-eslint/types': 8.38.0 - eslint: 9.31.0(jiti@2.4.0) + eslint: 9.32.0(jiti@2.4.0) optionalDependencies: typescript: 5.8.3 - eslint-plugin-jsdoc@51.4.1(eslint@9.31.0(jiti@2.4.0)): + eslint-plugin-jsdoc@51.4.1(eslint@9.32.0(jiti@2.4.0)): dependencies: '@es-joy/jsdoccomment': 0.52.0 are-docs-informative: 0.0.2 comment-parser: 1.4.1 debug: 4.4.1 escape-string-regexp: 4.0.0 - eslint: 9.31.0(jiti@2.4.0) + eslint: 9.32.0(jiti@2.4.0) espree: 10.4.0 esquery: 1.6.0 parse-imports-exports: 0.2.4 @@ -5913,12 +5904,12 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-jsonc@2.20.1(eslint@9.31.0(jiti@2.4.0)): + eslint-plugin-jsonc@2.20.1(eslint@9.32.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.31.0(jiti@2.4.0)) - eslint: 9.31.0(jiti@2.4.0) - eslint-compat-utils: 0.6.5(eslint@9.31.0(jiti@2.4.0)) - eslint-json-compat-utils: 0.2.1(eslint@9.31.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) + eslint: 9.32.0(jiti@2.4.0) + eslint-compat-utils: 0.6.5(eslint@9.32.0(jiti@2.4.0)) + eslint-json-compat-utils: 0.2.1(eslint@9.32.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0) espree: 10.4.0 graphemer: 1.4.0 jsonc-eslint-parser: 2.4.0 @@ -5927,12 +5918,12 @@ snapshots: transitivePeerDependencies: - '@eslint/json' - eslint-plugin-n@17.21.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3): + eslint-plugin-n@17.21.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.31.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) enhanced-resolve: 5.18.2 - eslint: 9.31.0(jiti@2.4.0) - eslint-plugin-es-x: 7.8.0(eslint@9.31.0(jiti@2.4.0)) + eslint: 9.32.0(jiti@2.4.0) + eslint-plugin-es-x: 7.8.0(eslint@9.32.0(jiti@2.4.0)) get-tsconfig: 4.10.1 globals: 15.15.0 ignore: 5.3.2 @@ -5944,19 +5935,19 @@ snapshots: eslint-plugin-no-only-tests@3.3.0: {} - eslint-plugin-perfectionist@4.15.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3): + eslint-plugin-perfectionist@4.15.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3): dependencies: '@typescript-eslint/types': 8.38.0 - '@typescript-eslint/utils': 8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) - eslint: 9.31.0(jiti@2.4.0) + '@typescript-eslint/utils': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3) + eslint: 9.32.0(jiti@2.4.0) natural-orderby: 5.0.0 transitivePeerDependencies: - supports-color - typescript - eslint-plugin-pnpm@1.1.0(eslint@9.31.0(jiti@2.4.0)): + eslint-plugin-pnpm@1.1.0(eslint@9.32.0(jiti@2.4.0)): dependencies: - eslint: 9.31.0(jiti@2.4.0) + eslint: 9.32.0(jiti@2.4.0) find-up-simple: 1.0.1 jsonc-eslint-parser: 2.4.0 pathe: 2.0.3 @@ -5964,37 +5955,37 @@ snapshots: tinyglobby: 0.2.14 yaml-eslint-parser: 1.3.0 - eslint-plugin-regexp@2.9.0(eslint@9.31.0(jiti@2.4.0)): + eslint-plugin-regexp@2.9.0(eslint@9.32.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.31.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.1 comment-parser: 1.4.1 - eslint: 9.31.0(jiti@2.4.0) + eslint: 9.32.0(jiti@2.4.0) jsdoc-type-pratt-parser: 4.1.0 refa: 0.12.1 regexp-ast-analysis: 0.7.1 scslre: 0.3.0 - eslint-plugin-toml@0.12.0(eslint@9.31.0(jiti@2.4.0)): + eslint-plugin-toml@0.12.0(eslint@9.32.0(jiti@2.4.0)): dependencies: debug: 4.4.1 - eslint: 9.31.0(jiti@2.4.0) - eslint-compat-utils: 0.6.5(eslint@9.31.0(jiti@2.4.0)) + eslint: 9.32.0(jiti@2.4.0) + eslint-compat-utils: 0.6.5(eslint@9.32.0(jiti@2.4.0)) lodash: 4.17.21 toml-eslint-parser: 0.10.0 transitivePeerDependencies: - supports-color - eslint-plugin-unicorn@60.0.0(eslint@9.31.0(jiti@2.4.0)): + eslint-plugin-unicorn@60.0.0(eslint@9.32.0(jiti@2.4.0)): dependencies: '@babel/helper-validator-identifier': 7.27.1 - '@eslint-community/eslint-utils': 4.7.0(eslint@9.31.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) '@eslint/plugin-kit': 0.3.4 change-case: 5.4.4 ci-info: 4.3.0 clean-regexp: 1.0.0 core-js-compat: 3.44.0 - eslint: 9.31.0(jiti@2.4.0) + eslint: 9.32.0(jiti@2.4.0) esquery: 1.6.0 find-up-simple: 1.0.1 globals: 16.3.0 @@ -6007,40 +5998,40 @@ snapshots: semver: 7.7.2 strip-indent: 4.0.0 - eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.0)): + eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.32.0(jiti@2.4.0)): dependencies: - eslint: 9.31.0(jiti@2.4.0) + eslint: 9.32.0(jiti@2.4.0) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) + '@typescript-eslint/eslint-plugin': 8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3) - eslint-plugin-vue@10.3.0(@typescript-eslint/parser@8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.31.0(jiti@2.4.0))): + eslint-plugin-vue@10.3.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.32.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.32.0(jiti@2.4.0))): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.31.0(jiti@2.4.0)) - eslint: 9.31.0(jiti@2.4.0) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) + eslint: 9.32.0(jiti@2.4.0) natural-compare: 1.4.0 nth-check: 2.1.1 postcss-selector-parser: 6.1.2 semver: 7.7.2 - vue-eslint-parser: 10.2.0(eslint@9.31.0(jiti@2.4.0)) + vue-eslint-parser: 10.2.0(eslint@9.32.0(jiti@2.4.0)) xml-name-validator: 4.0.0 optionalDependencies: - '@typescript-eslint/parser': 8.38.0(eslint@9.31.0(jiti@2.4.0))(typescript@5.8.3) + '@typescript-eslint/parser': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3) - eslint-plugin-yml@1.18.0(eslint@9.31.0(jiti@2.4.0)): + eslint-plugin-yml@1.18.0(eslint@9.32.0(jiti@2.4.0)): dependencies: debug: 4.4.1 escape-string-regexp: 4.0.0 - eslint: 9.31.0(jiti@2.4.0) - eslint-compat-utils: 0.6.5(eslint@9.31.0(jiti@2.4.0)) + eslint: 9.32.0(jiti@2.4.0) + eslint-compat-utils: 0.6.5(eslint@9.32.0(jiti@2.4.0)) natural-compare: 1.4.0 yaml-eslint-parser: 1.3.0 transitivePeerDependencies: - supports-color - eslint-processor-vue-blocks@2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.31.0(jiti@2.4.0)): + eslint-processor-vue-blocks@2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0)): dependencies: '@vue/compiler-sfc': 3.5.12 - eslint: 9.31.0(jiti@2.4.0) + eslint: 9.32.0(jiti@2.4.0) eslint-scope@8.4.0: dependencies: @@ -6051,16 +6042,16 @@ snapshots: eslint-visitor-keys@4.2.1: {} - eslint@9.31.0(jiti@2.4.0): + eslint@9.32.0(jiti@2.4.0): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.31.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.1 '@eslint/config-array': 0.21.0 '@eslint/config-helpers': 0.3.0 '@eslint/core': 0.15.1 '@eslint/eslintrc': 3.3.1 - '@eslint/js': 9.31.0 - '@eslint/plugin-kit': 0.3.3 + '@eslint/js': 9.32.0 + '@eslint/plugin-kit': 0.3.4 '@humanfs/node': 0.16.6 '@humanwhocodes/module-importer': 1.0.1 '@humanwhocodes/retry': 0.4.2 @@ -8126,10 +8117,10 @@ snapshots: - tsx - yaml - vue-eslint-parser@10.2.0(eslint@9.31.0(jiti@2.4.0)): + vue-eslint-parser@10.2.0(eslint@9.32.0(jiti@2.4.0)): dependencies: debug: 4.4.1 - eslint: 9.31.0(jiti@2.4.0) + eslint: 9.32.0(jiti@2.4.0) eslint-scope: 8.4.0 eslint-visitor-keys: 4.2.1 espree: 10.4.0 From 978f12a4fb076d072265443b9b0d83509d1546db Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 29 Jul 2025 02:06:20 +0000 Subject: [PATCH 012/133] chore(deps): update dependency zod to v4.0.11 (#1196) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 03c0e9aa..be03fa1b 100644 --- a/package.json +++ b/package.json @@ -101,6 +101,6 @@ "valibot": "1.1.0", "vitest": "^3.0.0", "yup": "1.6.1", - "zod": "4.0.10" + "zod": "4.0.11" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3d628e8a..11ce2c0f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -76,8 +76,8 @@ importers: specifier: 1.6.1 version: 1.6.1 zod: - specifier: 4.0.10 - version: 4.0.10 + specifier: 4.0.11 + version: 4.0.11 packages: @@ -3802,8 +3802,8 @@ packages: yup@1.6.1: resolution: {integrity: sha512-JED8pB50qbA4FOkDol0bYF/p60qSEDQqBD0/qeIrUCG1KbPBIQ776fCUNb9ldbPcSTxA69g/47XTo4TqWiuXOA==} - zod@4.0.10: - resolution: {integrity: sha512-3vB+UU3/VmLL2lvwcY/4RV2i9z/YU0DTV/tDuYjrwmx5WeJ7hwy+rGEEx8glHp6Yxw7ibRbKSaIFBgReRPe5KA==} + zod@4.0.11: + resolution: {integrity: sha512-LVrgstTaQJek72n6ZGxhAhH/Q24PhGx4lIAcgBmjtvjRq0qYjiH9U0o3hfuC2vfExsnpoHElc4XOJjMKQjUQxg==} zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} @@ -8222,6 +8222,6 @@ snapshots: toposort: 2.0.2 type-fest: 2.19.0 - zod@4.0.10: {} + zod@4.0.11: {} zwitch@2.0.4: {} From de725cb827113ad627a1a6aa160e3eeedf3c255e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 29 Jul 2025 11:51:21 +0000 Subject: [PATCH 013/133] chore(deps): update dependency zod to v4.0.13 (#1197) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index be03fa1b..dae4d348 100644 --- a/package.json +++ b/package.json @@ -101,6 +101,6 @@ "valibot": "1.1.0", "vitest": "^3.0.0", "yup": "1.6.1", - "zod": "4.0.11" + "zod": "4.0.13" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 11ce2c0f..a9f9f110 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -76,8 +76,8 @@ importers: specifier: 1.6.1 version: 1.6.1 zod: - specifier: 4.0.11 - version: 4.0.11 + specifier: 4.0.13 + version: 4.0.13 packages: @@ -3802,8 +3802,8 @@ packages: yup@1.6.1: resolution: {integrity: sha512-JED8pB50qbA4FOkDol0bYF/p60qSEDQqBD0/qeIrUCG1KbPBIQ776fCUNb9ldbPcSTxA69g/47XTo4TqWiuXOA==} - zod@4.0.11: - resolution: {integrity: sha512-LVrgstTaQJek72n6ZGxhAhH/Q24PhGx4lIAcgBmjtvjRq0qYjiH9U0o3hfuC2vfExsnpoHElc4XOJjMKQjUQxg==} + zod@4.0.13: + resolution: {integrity: sha512-jv+zRxuZQxTrFHzxZ46ezL2FtnE+M4HIJHJEwLsZ7UjrXHltdG6HrxvqM0twoVCWxJiYf8WqKjAcjztegpkB+Q==} zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} @@ -8222,6 +8222,6 @@ snapshots: toposort: 2.0.2 type-fest: 2.19.0 - zod@4.0.11: {} + zod@4.0.13: {} zwitch@2.0.4: {} From 953121b5e298635be52592e5e241f382f6a2c5b9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 29 Jul 2025 15:48:41 +0000 Subject: [PATCH 014/133] chore(deps): update dependency @types/node to v22.17.0 (#1198) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 134 ++++++++++++++++++++++++------------------------- 1 file changed, 67 insertions(+), 67 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a9f9f110..387bd5d9 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,10 +29,10 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^5.0.0 - version: 5.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0)) + version: 5.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0)) '@graphql-codegen/cli': specifier: 5.0.7 - version: 5.0.7(@types/node@22.16.5)(graphql@16.11.0)(typescript@5.8.3) + version: 5.0.7(@types/node@22.17.0)(graphql@16.11.0)(typescript@5.8.3) '@graphql-codegen/typescript': specifier: ^4.0.0 version: 4.1.6(graphql@16.11.0) @@ -44,13 +44,13 @@ importers: version: 2.1.12 '@types/node': specifier: ^22.0.0 - version: 22.16.5 + version: 22.17.0 eslint: specifier: 9.32.0 version: 9.32.0(jiti@2.4.0) jest: specifier: 30.0.5 - version: 30.0.5(@types/node@22.16.5) + version: 30.0.5(@types/node@22.17.0) myzod: specifier: 1.12.1 version: 1.12.1 @@ -62,7 +62,7 @@ importers: version: 2.2.0 ts-jest: specifier: 29.4.0 - version: 29.4.0(@babel/core@7.27.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.0.5(@types/node@22.16.5))(typescript@5.8.3) + version: 29.4.0(@babel/core@7.27.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.0.5(@types/node@22.17.0))(typescript@5.8.3) typescript: specifier: 5.8.3 version: 5.8.3 @@ -71,7 +71,7 @@ importers: version: 1.1.0(typescript@5.8.3) vitest: specifier: ^3.0.0 - version: 3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0) yup: specifier: 1.6.1 version: 1.6.1 @@ -1130,8 +1130,8 @@ packages: '@types/ms@2.1.0': resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} - '@types/node@22.16.5': - resolution: {integrity: sha512-bJFoMATwIGaxxx8VJPeM8TonI8t579oRvgAuT8zFugJsJZgzqv0Fu8Mhp68iecjzG7cnN3mO2dJQ5uUM2EFrgQ==} + '@types/node@22.17.0': + resolution: {integrity: sha512-bbAKTCqX5aNVryi7qXVMi+OkB3w/OyblodicMbvE38blyAz7GxXf6XYhklokijuPwwVg9sDLKRxt0ZHXQwZVfQ==} '@types/stack-utils@2.0.3': resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} @@ -3815,7 +3815,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@5.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0))': + '@antfu/eslint-config@5.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -3824,7 +3824,7 @@ snapshots: '@stylistic/eslint-plugin': 5.2.2(eslint@9.32.0(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3) '@typescript-eslint/parser': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3) - '@vitest/eslint-plugin': 1.3.4(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0)) + '@vitest/eslint-plugin': 1.3.4(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0)) ansis: 4.1.0 cac: 6.7.14 eslint: 9.32.0(jiti@2.4.0) @@ -4298,7 +4298,7 @@ snapshots: graphql: 16.11.0 tslib: 2.6.3 - '@graphql-codegen/cli@5.0.7(@types/node@22.16.5)(graphql@16.11.0)(typescript@5.8.3)': + '@graphql-codegen/cli@5.0.7(@types/node@22.17.0)(graphql@16.11.0)(typescript@5.8.3)': dependencies: '@babel/generator': 7.27.0 '@babel/template': 7.25.9 @@ -4309,12 +4309,12 @@ snapshots: '@graphql-tools/apollo-engine-loader': 8.0.4(graphql@16.11.0) '@graphql-tools/code-file-loader': 8.1.5(graphql@16.11.0) '@graphql-tools/git-loader': 8.0.9(graphql@16.11.0) - '@graphql-tools/github-loader': 8.0.4(@types/node@22.16.5)(graphql@16.11.0) + '@graphql-tools/github-loader': 8.0.4(@types/node@22.17.0)(graphql@16.11.0) '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) - '@graphql-tools/prisma-loader': 8.0.17(@types/node@22.16.5)(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@22.16.5)(graphql@16.11.0) + '@graphql-tools/prisma-loader': 8.0.17(@types/node@22.17.0)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@22.17.0)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@whatwg-node/fetch': 0.10.1 chalk: 4.1.2 @@ -4322,7 +4322,7 @@ snapshots: debounce: 1.2.1 detect-indent: 6.1.0 graphql: 16.11.0 - graphql-config: 5.1.3(@types/node@22.16.5)(graphql@16.11.0)(typescript@5.8.3) + graphql-config: 5.1.3(@types/node@22.17.0)(graphql@16.11.0)(typescript@5.8.3) inquirer: 8.2.6 is-glob: 4.0.3 jiti: 1.21.6 @@ -4511,14 +4511,14 @@ snapshots: - bufferutil - utf-8-validate - '@graphql-tools/executor-http@1.1.9(@types/node@22.16.5)(graphql@16.11.0)': + '@graphql-tools/executor-http@1.1.9(@types/node@22.17.0)(graphql@16.11.0)': dependencies: '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/fetch': 0.10.1 extract-files: 11.0.0 graphql: 16.11.0 - meros: 1.3.0(@types/node@22.16.5) + meros: 1.3.0(@types/node@22.17.0) tslib: 2.8.1 value-or-promise: 1.0.12 transitivePeerDependencies: @@ -4557,10 +4557,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@graphql-tools/github-loader@8.0.4(@types/node@22.16.5)(graphql@16.11.0)': + '@graphql-tools/github-loader@8.0.4(@types/node@22.17.0)(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/executor-http': 1.1.9(@types/node@22.16.5)(graphql@16.11.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@22.17.0)(graphql@16.11.0) '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@whatwg-node/fetch': 0.10.1 @@ -4628,9 +4628,9 @@ snapshots: graphql: 16.11.0 tslib: 2.6.3 - '@graphql-tools/prisma-loader@8.0.17(@types/node@22.16.5)(graphql@16.11.0)': + '@graphql-tools/prisma-loader@8.0.17(@types/node@22.17.0)(graphql@16.11.0)': dependencies: - '@graphql-tools/url-loader': 8.0.15(@types/node@22.16.5)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@22.17.0)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@types/js-yaml': 4.0.9 '@whatwg-node/fetch': 0.10.1 @@ -4670,11 +4670,11 @@ snapshots: graphql: 16.11.0 tslib: 2.8.1 - '@graphql-tools/url-loader@8.0.15(@types/node@22.16.5)(graphql@16.11.0)': + '@graphql-tools/url-loader@8.0.15(@types/node@22.17.0)(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/executor-graphql-ws': 1.3.2(graphql@16.11.0) - '@graphql-tools/executor-http': 1.1.9(@types/node@22.16.5)(graphql@16.11.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@22.17.0)(graphql@16.11.0) '@graphql-tools/executor-legacy-ws': 1.1.2(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@graphql-tools/wrap': 10.0.16(graphql@16.11.0) @@ -4748,7 +4748,7 @@ snapshots: '@jest/console@30.0.5': dependencies: '@jest/types': 30.0.5 - '@types/node': 22.16.5 + '@types/node': 22.17.0 chalk: 4.1.2 jest-message-util: 30.0.5 jest-util: 30.0.5 @@ -4762,14 +4762,14 @@ snapshots: '@jest/test-result': 30.0.5 '@jest/transform': 30.0.5 '@jest/types': 30.0.5 - '@types/node': 22.16.5 + '@types/node': 22.17.0 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 4.3.0 exit-x: 0.2.2 graceful-fs: 4.2.11 jest-changed-files: 30.0.5 - jest-config: 30.0.5(@types/node@22.16.5) + jest-config: 30.0.5(@types/node@22.17.0) jest-haste-map: 30.0.5 jest-message-util: 30.0.5 jest-regex-util: 30.0.1 @@ -4796,7 +4796,7 @@ snapshots: dependencies: '@jest/fake-timers': 30.0.5 '@jest/types': 30.0.5 - '@types/node': 22.16.5 + '@types/node': 22.17.0 jest-mock: 30.0.5 '@jest/expect-utils@30.0.5': @@ -4814,7 +4814,7 @@ snapshots: dependencies: '@jest/types': 30.0.5 '@sinonjs/fake-timers': 13.0.5 - '@types/node': 22.16.5 + '@types/node': 22.17.0 jest-message-util: 30.0.5 jest-mock: 30.0.5 jest-util: 30.0.5 @@ -4832,7 +4832,7 @@ snapshots: '@jest/pattern@30.0.1': dependencies: - '@types/node': 22.16.5 + '@types/node': 22.17.0 jest-regex-util: 30.0.1 '@jest/reporters@30.0.5': @@ -4843,7 +4843,7 @@ snapshots: '@jest/transform': 30.0.5 '@jest/types': 30.0.5 '@jridgewell/trace-mapping': 0.3.25 - '@types/node': 22.16.5 + '@types/node': 22.17.0 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit-x: 0.2.2 @@ -4920,7 +4920,7 @@ snapshots: '@jest/schemas': 30.0.5 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 22.16.5 + '@types/node': 22.17.0 '@types/yargs': 17.0.33 chalk: 4.1.2 @@ -5115,7 +5115,7 @@ snapshots: '@types/ms@2.1.0': {} - '@types/node@22.16.5': + '@types/node@22.17.0': dependencies: undici-types: 6.21.0 @@ -5125,7 +5125,7 @@ snapshots: '@types/ws@8.5.13': dependencies: - '@types/node': 22.16.5 + '@types/node': 22.17.0 '@types/yargs-parser@21.0.3': {} @@ -5281,13 +5281,13 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.4(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0))': + '@vitest/eslint-plugin@1.3.4(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0))': dependencies: '@typescript-eslint/utils': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3) eslint: 9.32.0(jiti@2.4.0) optionalDependencies: typescript: 5.8.3 - vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0) + vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0) transitivePeerDependencies: - supports-color @@ -5299,13 +5299,13 @@ snapshots: chai: 5.2.0 tinyrainbow: 2.0.0 - '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0))': + '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0))': dependencies: '@vitest/spy': 3.2.4 estree-walker: 3.0.3 magic-string: 0.30.17 optionalDependencies: - vite: 6.3.5(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0) + vite: 6.3.5(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0) '@vitest/pretty-format@3.2.4': dependencies: @@ -6313,13 +6313,13 @@ snapshots: dependencies: lodash: 4.17.21 - graphql-config@5.1.3(@types/node@22.16.5)(graphql@16.11.0)(typescript@5.8.3): + graphql-config@5.1.3(@types/node@22.17.0)(graphql@16.11.0)(typescript@5.8.3): dependencies: '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) '@graphql-tools/merge': 9.0.24(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@22.16.5)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@22.17.0)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) cosmiconfig: 8.3.6(typescript@5.8.3) graphql: 16.11.0 @@ -6548,7 +6548,7 @@ snapshots: '@jest/expect': 30.0.5 '@jest/test-result': 30.0.5 '@jest/types': 30.0.5 - '@types/node': 22.16.5 + '@types/node': 22.17.0 chalk: 4.1.2 co: 4.6.0 dedent: 1.6.0 @@ -6568,7 +6568,7 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@30.0.5(@types/node@22.16.5): + jest-cli@30.0.5(@types/node@22.17.0): dependencies: '@jest/core': 30.0.5 '@jest/test-result': 30.0.5 @@ -6576,7 +6576,7 @@ snapshots: chalk: 4.1.2 exit-x: 0.2.2 import-local: 3.2.0 - jest-config: 30.0.5(@types/node@22.16.5) + jest-config: 30.0.5(@types/node@22.17.0) jest-util: 30.0.5 jest-validate: 30.0.5 yargs: 17.7.2 @@ -6587,7 +6587,7 @@ snapshots: - supports-color - ts-node - jest-config@30.0.5(@types/node@22.16.5): + jest-config@30.0.5(@types/node@22.17.0): dependencies: '@babel/core': 7.27.4 '@jest/get-type': 30.0.1 @@ -6614,7 +6614,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 22.16.5 + '@types/node': 22.17.0 transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -6643,7 +6643,7 @@ snapshots: '@jest/environment': 30.0.5 '@jest/fake-timers': 30.0.5 '@jest/types': 30.0.5 - '@types/node': 22.16.5 + '@types/node': 22.17.0 jest-mock: 30.0.5 jest-util: 30.0.5 jest-validate: 30.0.5 @@ -6651,7 +6651,7 @@ snapshots: jest-haste-map@30.0.5: dependencies: '@jest/types': 30.0.5 - '@types/node': 22.16.5 + '@types/node': 22.17.0 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -6690,7 +6690,7 @@ snapshots: jest-mock@30.0.5: dependencies: '@jest/types': 30.0.5 - '@types/node': 22.16.5 + '@types/node': 22.17.0 jest-util: 30.0.5 jest-pnp-resolver@1.2.3(jest-resolve@30.0.5): @@ -6724,7 +6724,7 @@ snapshots: '@jest/test-result': 30.0.5 '@jest/transform': 30.0.5 '@jest/types': 30.0.5 - '@types/node': 22.16.5 + '@types/node': 22.17.0 chalk: 4.1.2 emittery: 0.13.1 exit-x: 0.2.2 @@ -6753,7 +6753,7 @@ snapshots: '@jest/test-result': 30.0.5 '@jest/transform': 30.0.5 '@jest/types': 30.0.5 - '@types/node': 22.16.5 + '@types/node': 22.17.0 chalk: 4.1.2 cjs-module-lexer: 2.1.0 collect-v8-coverage: 1.0.2 @@ -6800,7 +6800,7 @@ snapshots: jest-util@30.0.5: dependencies: '@jest/types': 30.0.5 - '@types/node': 22.16.5 + '@types/node': 22.17.0 chalk: 4.1.2 ci-info: 4.3.0 graceful-fs: 4.2.11 @@ -6819,7 +6819,7 @@ snapshots: dependencies: '@jest/test-result': 30.0.5 '@jest/types': 30.0.5 - '@types/node': 22.16.5 + '@types/node': 22.17.0 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -6828,18 +6828,18 @@ snapshots: jest-worker@30.0.5: dependencies: - '@types/node': 22.16.5 + '@types/node': 22.17.0 '@ungap/structured-clone': 1.3.0 jest-util: 30.0.5 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@30.0.5(@types/node@22.16.5): + jest@30.0.5(@types/node@22.17.0): dependencies: '@jest/core': 30.0.5 '@jest/types': 30.0.5 import-local: 3.2.0 - jest-cli: 30.0.5(@types/node@22.16.5) + jest-cli: 30.0.5(@types/node@22.17.0) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -7113,9 +7113,9 @@ snapshots: merge2@1.4.1: {} - meros@1.3.0(@types/node@22.16.5): + meros@1.3.0(@types/node@22.17.0): optionalDependencies: - '@types/node': 22.16.5 + '@types/node': 22.17.0 micromark-core-commonmark@2.0.3: dependencies: @@ -7913,12 +7913,12 @@ snapshots: ts-dedent@2.2.0: {} - ts-jest@29.4.0(@babel/core@7.27.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.0.5(@types/node@22.16.5))(typescript@5.8.3): + ts-jest@29.4.0(@babel/core@7.27.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.0.5(@types/node@22.17.0))(typescript@5.8.3): dependencies: bs-logger: 0.2.6 ejs: 3.1.10 fast-json-stable-stringify: 2.1.0 - jest: 30.0.5(@types/node@22.16.5) + jest: 30.0.5(@types/node@22.17.0) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -8040,13 +8040,13 @@ snapshots: value-or-promise@1.0.12: {} - vite-node@3.2.4(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0): + vite-node@3.2.4(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0): dependencies: cac: 6.7.14 debug: 4.4.1 es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 6.3.5(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0) + vite: 6.3.5(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0) transitivePeerDependencies: - '@types/node' - jiti @@ -8061,7 +8061,7 @@ snapshots: - tsx - yaml - vite@6.3.5(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0): + vite@6.3.5(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0): dependencies: esbuild: 0.25.5 fdir: 6.4.6(picomatch@4.0.2) @@ -8070,16 +8070,16 @@ snapshots: rollup: 4.43.0 tinyglobby: 0.2.14 optionalDependencies: - '@types/node': 22.16.5 + '@types/node': 22.17.0 fsevents: 2.3.3 jiti: 2.4.0 yaml: 2.8.0 - vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0): + vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0): dependencies: '@types/chai': 5.2.2 '@vitest/expect': 3.2.4 - '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0)) + '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0)) '@vitest/pretty-format': 3.2.4 '@vitest/runner': 3.2.4 '@vitest/snapshot': 3.2.4 @@ -8097,12 +8097,12 @@ snapshots: tinyglobby: 0.2.14 tinypool: 1.1.1 tinyrainbow: 2.0.0 - vite: 6.3.5(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0) - vite-node: 3.2.4(@types/node@22.16.5)(jiti@2.4.0)(yaml@2.8.0) + vite: 6.3.5(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0) + vite-node: 3.2.4(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0) why-is-node-running: 2.3.0 optionalDependencies: '@types/debug': 4.1.12 - '@types/node': 22.16.5 + '@types/node': 22.17.0 transitivePeerDependencies: - jiti - less From 6b4f7e005fa5c3be80ff4ca6f3e29e6b576be8b7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 30 Jul 2025 10:48:41 +0000 Subject: [PATCH 015/133] chore(deps): update dependency zod to v4.0.14 (#1199) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index dae4d348..32f3cf28 100644 --- a/package.json +++ b/package.json @@ -101,6 +101,6 @@ "valibot": "1.1.0", "vitest": "^3.0.0", "yup": "1.6.1", - "zod": "4.0.13" + "zod": "4.0.14" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 387bd5d9..233e6caf 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -76,8 +76,8 @@ importers: specifier: 1.6.1 version: 1.6.1 zod: - specifier: 4.0.13 - version: 4.0.13 + specifier: 4.0.14 + version: 4.0.14 packages: @@ -3802,8 +3802,8 @@ packages: yup@1.6.1: resolution: {integrity: sha512-JED8pB50qbA4FOkDol0bYF/p60qSEDQqBD0/qeIrUCG1KbPBIQ776fCUNb9ldbPcSTxA69g/47XTo4TqWiuXOA==} - zod@4.0.13: - resolution: {integrity: sha512-jv+zRxuZQxTrFHzxZ46ezL2FtnE+M4HIJHJEwLsZ7UjrXHltdG6HrxvqM0twoVCWxJiYf8WqKjAcjztegpkB+Q==} + zod@4.0.14: + resolution: {integrity: sha512-nGFJTnJN6cM2v9kXL+SOBq3AtjQby3Mv5ySGFof5UGRHrRioSJ5iG680cYNjE/yWk671nROcpPj4hAS8nyLhSw==} zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} @@ -8222,6 +8222,6 @@ snapshots: toposort: 2.0.2 type-fest: 2.19.0 - zod@4.0.13: {} + zod@4.0.14: {} zwitch@2.0.4: {} From 2fb901317802610038ae76ac72570cded9258007 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 31 Jul 2025 15:10:42 +0000 Subject: [PATCH 016/133] chore(deps): update pnpm to v10.14.0 (#1200) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 32f3cf28..d2c3b19d 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "graphql-codegen-typescript-validation-schema", "type": "module", "version": "0.17.1", - "packageManager": "pnpm@10.13.1", + "packageManager": "pnpm@10.14.0", "description": "GraphQL Code Generator plugin to generate form validation schema from your GraphQL schema", "respository": { "type": "git", From d2d90b5d84882f177692718dbe8ad5ea085fa364 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 31 Jul 2025 22:31:19 +0000 Subject: [PATCH 017/133] chore(deps): update dependency typescript to v5.9.2 (#1201) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 146 ++++++++++++++++++++++++------------------------- 2 files changed, 74 insertions(+), 74 deletions(-) diff --git a/package.json b/package.json index d2c3b19d..c39c400a 100644 --- a/package.json +++ b/package.json @@ -97,7 +97,7 @@ "npm-run-all2": "8.0.4", "ts-dedent": "^2.2.0", "ts-jest": "29.4.0", - "typescript": "5.8.3", + "typescript": "5.9.2", "valibot": "1.1.0", "vitest": "^3.0.0", "yup": "1.6.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 233e6caf..ecdb88f4 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,10 +29,10 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^5.0.0 - version: 5.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0)) + version: 5.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0)) '@graphql-codegen/cli': specifier: 5.0.7 - version: 5.0.7(@types/node@22.17.0)(graphql@16.11.0)(typescript@5.8.3) + version: 5.0.7(@types/node@22.17.0)(graphql@16.11.0)(typescript@5.9.2) '@graphql-codegen/typescript': specifier: ^4.0.0 version: 4.1.6(graphql@16.11.0) @@ -62,13 +62,13 @@ importers: version: 2.2.0 ts-jest: specifier: 29.4.0 - version: 29.4.0(@babel/core@7.27.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.0.5(@types/node@22.17.0))(typescript@5.8.3) + version: 29.4.0(@babel/core@7.27.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.0.5(@types/node@22.17.0))(typescript@5.9.2) typescript: - specifier: 5.8.3 - version: 5.8.3 + specifier: 5.9.2 + version: 5.9.2 valibot: specifier: 1.1.0 - version: 1.1.0(typescript@5.8.3) + version: 1.1.0(typescript@5.9.2) vitest: specifier: ^3.0.0 version: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0) @@ -3548,8 +3548,8 @@ packages: resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==} engines: {node: '>=16'} - typescript@5.8.3: - resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==} + typescript@5.9.2: + resolution: {integrity: sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==} engines: {node: '>=14.17'} hasBin: true @@ -3815,16 +3815,16 @@ snapshots: '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@5.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0))': + '@antfu/eslint-config@5.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.32.0(jiti@2.4.0)) '@eslint/markdown': 7.1.0 '@stylistic/eslint-plugin': 5.2.2(eslint@9.32.0(jiti@2.4.0)) - '@typescript-eslint/eslint-plugin': 8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3) - '@typescript-eslint/parser': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3) - '@vitest/eslint-plugin': 1.3.4(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0)) + '@typescript-eslint/eslint-plugin': 8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/parser': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) + '@vitest/eslint-plugin': 1.3.4(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0)) ansis: 4.1.0 cac: 6.7.14 eslint: 9.32.0(jiti@2.4.0) @@ -3833,18 +3833,18 @@ snapshots: eslint-merge-processors: 2.0.0(eslint@9.32.0(jiti@2.4.0)) eslint-plugin-antfu: 3.1.1(eslint@9.32.0(jiti@2.4.0)) eslint-plugin-command: 3.3.1(eslint@9.32.0(jiti@2.4.0)) - eslint-plugin-import-lite: 0.3.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3) + eslint-plugin-import-lite: 0.3.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) eslint-plugin-jsdoc: 51.4.1(eslint@9.32.0(jiti@2.4.0)) eslint-plugin-jsonc: 2.20.1(eslint@9.32.0(jiti@2.4.0)) - eslint-plugin-n: 17.21.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3) + eslint-plugin-n: 17.21.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) eslint-plugin-no-only-tests: 3.3.0 - eslint-plugin-perfectionist: 4.15.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3) + eslint-plugin-perfectionist: 4.15.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) eslint-plugin-pnpm: 1.1.0(eslint@9.32.0(jiti@2.4.0)) eslint-plugin-regexp: 2.9.0(eslint@9.32.0(jiti@2.4.0)) eslint-plugin-toml: 0.12.0(eslint@9.32.0(jiti@2.4.0)) eslint-plugin-unicorn: 60.0.0(eslint@9.32.0(jiti@2.4.0)) - eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.32.0(jiti@2.4.0)) - eslint-plugin-vue: 10.3.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.32.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.32.0(jiti@2.4.0))) + eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0)) + eslint-plugin-vue: 10.3.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.32.0(jiti@2.4.0))) eslint-plugin-yml: 1.18.0(eslint@9.32.0(jiti@2.4.0)) eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0)) globals: 16.3.0 @@ -4298,7 +4298,7 @@ snapshots: graphql: 16.11.0 tslib: 2.6.3 - '@graphql-codegen/cli@5.0.7(@types/node@22.17.0)(graphql@16.11.0)(typescript@5.8.3)': + '@graphql-codegen/cli@5.0.7(@types/node@22.17.0)(graphql@16.11.0)(typescript@5.9.2)': dependencies: '@babel/generator': 7.27.0 '@babel/template': 7.25.9 @@ -4318,11 +4318,11 @@ snapshots: '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@whatwg-node/fetch': 0.10.1 chalk: 4.1.2 - cosmiconfig: 8.3.6(typescript@5.8.3) + cosmiconfig: 8.3.6(typescript@5.9.2) debounce: 1.2.1 detect-indent: 6.1.0 graphql: 16.11.0 - graphql-config: 5.1.3(@types/node@22.17.0)(graphql@16.11.0)(typescript@5.8.3) + graphql-config: 5.1.3(@types/node@22.17.0)(graphql@16.11.0)(typescript@5.9.2) inquirer: 8.2.6 is-glob: 4.0.3 jiti: 1.21.6 @@ -5133,41 +5133,41 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3)': + '@typescript-eslint/eslint-plugin@8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3) + '@typescript-eslint/parser': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) '@typescript-eslint/scope-manager': 8.38.0 - '@typescript-eslint/type-utils': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3) - '@typescript-eslint/utils': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3) + '@typescript-eslint/type-utils': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/utils': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) '@typescript-eslint/visitor-keys': 8.38.0 eslint: 9.32.0(jiti@2.4.0) graphemer: 1.4.0 ignore: 7.0.5 natural-compare: 1.4.0 - ts-api-utils: 2.1.0(typescript@5.8.3) - typescript: 5.8.3 + ts-api-utils: 2.1.0(typescript@5.9.2) + typescript: 5.9.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3)': + '@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: '@typescript-eslint/scope-manager': 8.38.0 '@typescript-eslint/types': 8.38.0 - '@typescript-eslint/typescript-estree': 8.38.0(typescript@5.8.3) + '@typescript-eslint/typescript-estree': 8.38.0(typescript@5.9.2) '@typescript-eslint/visitor-keys': 8.38.0 debug: 4.4.1 eslint: 9.32.0(jiti@2.4.0) - typescript: 5.8.3 + typescript: 5.9.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/project-service@8.38.0(typescript@5.8.3)': + '@typescript-eslint/project-service@8.38.0(typescript@5.9.2)': dependencies: - '@typescript-eslint/tsconfig-utils': 8.38.0(typescript@5.8.3) + '@typescript-eslint/tsconfig-utils': 8.38.0(typescript@5.9.2) '@typescript-eslint/types': 8.38.0 debug: 4.4.1 - typescript: 5.8.3 + typescript: 5.9.2 transitivePeerDependencies: - supports-color @@ -5176,28 +5176,28 @@ snapshots: '@typescript-eslint/types': 8.38.0 '@typescript-eslint/visitor-keys': 8.38.0 - '@typescript-eslint/tsconfig-utils@8.38.0(typescript@5.8.3)': + '@typescript-eslint/tsconfig-utils@8.38.0(typescript@5.9.2)': dependencies: - typescript: 5.8.3 + typescript: 5.9.2 - '@typescript-eslint/type-utils@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3)': + '@typescript-eslint/type-utils@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: '@typescript-eslint/types': 8.38.0 - '@typescript-eslint/typescript-estree': 8.38.0(typescript@5.8.3) - '@typescript-eslint/utils': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3) + '@typescript-eslint/typescript-estree': 8.38.0(typescript@5.9.2) + '@typescript-eslint/utils': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) debug: 4.4.1 eslint: 9.32.0(jiti@2.4.0) - ts-api-utils: 2.1.0(typescript@5.8.3) - typescript: 5.8.3 + ts-api-utils: 2.1.0(typescript@5.9.2) + typescript: 5.9.2 transitivePeerDependencies: - supports-color '@typescript-eslint/types@8.38.0': {} - '@typescript-eslint/typescript-estree@8.38.0(typescript@5.8.3)': + '@typescript-eslint/typescript-estree@8.38.0(typescript@5.9.2)': dependencies: - '@typescript-eslint/project-service': 8.38.0(typescript@5.8.3) - '@typescript-eslint/tsconfig-utils': 8.38.0(typescript@5.8.3) + '@typescript-eslint/project-service': 8.38.0(typescript@5.9.2) + '@typescript-eslint/tsconfig-utils': 8.38.0(typescript@5.9.2) '@typescript-eslint/types': 8.38.0 '@typescript-eslint/visitor-keys': 8.38.0 debug: 4.4.1 @@ -5205,19 +5205,19 @@ snapshots: is-glob: 4.0.3 minimatch: 9.0.5 semver: 7.7.2 - ts-api-utils: 2.1.0(typescript@5.8.3) - typescript: 5.8.3 + ts-api-utils: 2.1.0(typescript@5.9.2) + typescript: 5.9.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3)': + '@typescript-eslint/utils@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) '@typescript-eslint/scope-manager': 8.38.0 '@typescript-eslint/types': 8.38.0 - '@typescript-eslint/typescript-estree': 8.38.0(typescript@5.8.3) + '@typescript-eslint/typescript-estree': 8.38.0(typescript@5.9.2) eslint: 9.32.0(jiti@2.4.0) - typescript: 5.8.3 + typescript: 5.9.2 transitivePeerDependencies: - supports-color @@ -5281,12 +5281,12 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.4(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0))': + '@vitest/eslint-plugin@1.3.4(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0))': dependencies: - '@typescript-eslint/utils': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3) + '@typescript-eslint/utils': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) eslint: 9.32.0(jiti@2.4.0) optionalDependencies: - typescript: 5.8.3 + typescript: 5.9.2 vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0) transitivePeerDependencies: - supports-color @@ -5694,14 +5694,14 @@ snapshots: dependencies: browserslist: 4.25.1 - cosmiconfig@8.3.6(typescript@5.8.3): + cosmiconfig@8.3.6(typescript@5.9.2): dependencies: import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 path-type: 4.0.0 optionalDependencies: - typescript: 5.8.3 + typescript: 5.9.2 cross-fetch@3.2.0: dependencies: @@ -5880,13 +5880,13 @@ snapshots: eslint: 9.32.0(jiti@2.4.0) eslint-compat-utils: 0.5.1(eslint@9.32.0(jiti@2.4.0)) - eslint-plugin-import-lite@0.3.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3): + eslint-plugin-import-lite@0.3.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2): dependencies: '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) '@typescript-eslint/types': 8.38.0 eslint: 9.32.0(jiti@2.4.0) optionalDependencies: - typescript: 5.8.3 + typescript: 5.9.2 eslint-plugin-jsdoc@51.4.1(eslint@9.32.0(jiti@2.4.0)): dependencies: @@ -5918,7 +5918,7 @@ snapshots: transitivePeerDependencies: - '@eslint/json' - eslint-plugin-n@17.21.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3): + eslint-plugin-n@17.21.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2): dependencies: '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) enhanced-resolve: 5.18.2 @@ -5929,16 +5929,16 @@ snapshots: ignore: 5.3.2 minimatch: 9.0.5 semver: 7.7.2 - ts-declaration-location: 1.0.7(typescript@5.8.3) + ts-declaration-location: 1.0.7(typescript@5.9.2) transitivePeerDependencies: - typescript eslint-plugin-no-only-tests@3.3.0: {} - eslint-plugin-perfectionist@4.15.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3): + eslint-plugin-perfectionist@4.15.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2): dependencies: '@typescript-eslint/types': 8.38.0 - '@typescript-eslint/utils': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3) + '@typescript-eslint/utils': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) eslint: 9.32.0(jiti@2.4.0) natural-orderby: 5.0.0 transitivePeerDependencies: @@ -5998,13 +5998,13 @@ snapshots: semver: 7.7.2 strip-indent: 4.0.0 - eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.32.0(jiti@2.4.0)): + eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0)): dependencies: eslint: 9.32.0(jiti@2.4.0) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3) + '@typescript-eslint/eslint-plugin': 8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) - eslint-plugin-vue@10.3.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3))(eslint@9.32.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.32.0(jiti@2.4.0))): + eslint-plugin-vue@10.3.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.32.0(jiti@2.4.0))): dependencies: '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) eslint: 9.32.0(jiti@2.4.0) @@ -6015,7 +6015,7 @@ snapshots: vue-eslint-parser: 10.2.0(eslint@9.32.0(jiti@2.4.0)) xml-name-validator: 4.0.0 optionalDependencies: - '@typescript-eslint/parser': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.8.3) + '@typescript-eslint/parser': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) eslint-plugin-yml@1.18.0(eslint@9.32.0(jiti@2.4.0)): dependencies: @@ -6313,7 +6313,7 @@ snapshots: dependencies: lodash: 4.17.21 - graphql-config@5.1.3(@types/node@22.17.0)(graphql@16.11.0)(typescript@5.8.3): + graphql-config@5.1.3(@types/node@22.17.0)(graphql@16.11.0)(typescript@5.9.2): dependencies: '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) @@ -6321,7 +6321,7 @@ snapshots: '@graphql-tools/merge': 9.0.24(graphql@16.11.0) '@graphql-tools/url-loader': 8.0.15(@types/node@22.17.0)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) - cosmiconfig: 8.3.6(typescript@5.8.3) + cosmiconfig: 8.3.6(typescript@5.9.2) graphql: 16.11.0 jiti: 2.4.0 minimatch: 9.0.5 @@ -7902,18 +7902,18 @@ snapshots: tr46@0.0.3: {} - ts-api-utils@2.1.0(typescript@5.8.3): + ts-api-utils@2.1.0(typescript@5.9.2): dependencies: - typescript: 5.8.3 + typescript: 5.9.2 - ts-declaration-location@1.0.7(typescript@5.8.3): + ts-declaration-location@1.0.7(typescript@5.9.2): dependencies: picomatch: 4.0.3 - typescript: 5.8.3 + typescript: 5.9.2 ts-dedent@2.2.0: {} - ts-jest@29.4.0(@babel/core@7.27.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.0.5(@types/node@22.17.0))(typescript@5.8.3): + ts-jest@29.4.0(@babel/core@7.27.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.0.5(@types/node@22.17.0))(typescript@5.9.2): dependencies: bs-logger: 0.2.6 ejs: 3.1.10 @@ -7924,7 +7924,7 @@ snapshots: make-error: 1.3.6 semver: 7.7.2 type-fest: 4.41.0 - typescript: 5.8.3 + typescript: 5.9.2 yargs-parser: 21.1.1 optionalDependencies: '@babel/core': 7.27.4 @@ -7951,7 +7951,7 @@ snapshots: type-fest@4.41.0: {} - typescript@5.8.3: {} + typescript@5.9.2: {} ua-parser-js@1.0.40: {} @@ -8034,9 +8034,9 @@ snapshots: '@types/istanbul-lib-coverage': 2.0.6 convert-source-map: 2.0.0 - valibot@1.1.0(typescript@5.8.3): + valibot@1.1.0(typescript@5.9.2): optionalDependencies: - typescript: 5.8.3 + typescript: 5.9.2 value-or-promise@1.0.12: {} From c576b67585200d9472073ee3a7e000f93ffd64f3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 1 Aug 2025 18:00:33 +0000 Subject: [PATCH 018/133] chore(deps): update dependency yup to v1.7.0 (#1202) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index c39c400a..6592c233 100644 --- a/package.json +++ b/package.json @@ -100,7 +100,7 @@ "typescript": "5.9.2", "valibot": "1.1.0", "vitest": "^3.0.0", - "yup": "1.6.1", + "yup": "1.7.0", "zod": "4.0.14" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ecdb88f4..8fabd24f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -73,8 +73,8 @@ importers: specifier: ^3.0.0 version: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0) yup: - specifier: 1.6.1 - version: 1.6.1 + specifier: 1.7.0 + version: 1.7.0 zod: specifier: 4.0.14 version: 4.0.14 @@ -3799,8 +3799,8 @@ packages: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} - yup@1.6.1: - resolution: {integrity: sha512-JED8pB50qbA4FOkDol0bYF/p60qSEDQqBD0/qeIrUCG1KbPBIQ776fCUNb9ldbPcSTxA69g/47XTo4TqWiuXOA==} + yup@1.7.0: + resolution: {integrity: sha512-VJce62dBd+JQvoc+fCVq+KZfPHr+hXaxCcVgotfwWvlR0Ja3ffYKaJBT8rptPOSKOGJDCUnW2C2JWpud7aRP6Q==} zod@4.0.14: resolution: {integrity: sha512-nGFJTnJN6cM2v9kXL+SOBq3AtjQby3Mv5ySGFof5UGRHrRioSJ5iG680cYNjE/yWk671nROcpPj4hAS8nyLhSw==} @@ -8215,7 +8215,7 @@ snapshots: yocto-queue@0.1.0: {} - yup@1.6.1: + yup@1.7.0: dependencies: property-expr: 2.0.6 tiny-case: 1.0.3 From 024ad9ab700200acd50c24b48c78d1fb086347c0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 2 Aug 2025 01:41:32 +0000 Subject: [PATCH 019/133] chore(deps): update dependency @antfu/eslint-config to v5.1.0 (#1203) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 66 ++++++++++++++++++++++++++++---------------------- 1 file changed, 37 insertions(+), 29 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8fabd24f..47a10fc4 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^5.0.0 - version: 5.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0)) + version: 5.1.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0)) '@graphql-codegen/cli': specifier: 5.0.7 version: 5.0.7(@types/node@22.17.0)(graphql@16.11.0)(typescript@5.9.2) @@ -85,8 +85,8 @@ packages: resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - '@antfu/eslint-config@5.0.0': - resolution: {integrity: sha512-uAMv8PiW9BOAGmIyTDtWXGnNfv6PFV4DmpqmlUpST5k4bue38VRdIfnM4jvgPuny1xnjYX3flN3kB9++6LknMw==} + '@antfu/eslint-config@5.1.0': + resolution: {integrity: sha512-JirdCHnt2frnUf7kmXBxvFfdca1UnC19AP89/nKgZIV71PXxhH6pX/jqF13OKpbOo4hxJQfs6yuS1Kl5LoW4Yw==} hasBin: true peerDependencies: '@eslint-react/eslint-plugin': ^1.38.4 @@ -97,6 +97,7 @@ packages: eslint: ^9.10.0 eslint-plugin-astro: ^1.2.0 eslint-plugin-format: '>=0.1.0' + eslint-plugin-jsx-a11y: '>=6.10.2' eslint-plugin-react-hooks: ^5.2.0 eslint-plugin-react-refresh: ^0.4.19 eslint-plugin-solid: ^0.14.3 @@ -120,6 +121,8 @@ packages: optional: true eslint-plugin-format: optional: true + eslint-plugin-jsx-a11y: + optional: true eslint-plugin-react-hooks: optional: true eslint-plugin-react-refresh: @@ -1540,8 +1543,8 @@ packages: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} - caniuse-lite@1.0.30001727: - resolution: {integrity: sha512-pB68nIHmbN6L/4C6MH1DokyR3bYqFwjaSs/sWDHGj4CTcFtQUQMuJftVwWkXq7mNWOybD3KhUv3oWHoGxgP14Q==} + caniuse-lite@1.0.30001731: + resolution: {integrity: sha512-lDdp2/wrOmTRWuoB5DpfNkC0rJDU8DqRa6nYL6HK6sytw70QMopt/NIc/9SM7ylItlBWfACXk0tEn37UWM/+mg==} capital-case@1.0.4: resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} @@ -1769,8 +1772,8 @@ packages: engines: {node: '>=0.10.0'} hasBin: true - electron-to-chromium@1.5.190: - resolution: {integrity: sha512-k4McmnB2091YIsdCgkS0fMVMPOJgxl93ltFzaryXqwip1AaxeDqKCGLxkXODDA5Ab/D+tV5EL5+aTx76RvLRxw==} + electron-to-chromium@1.5.194: + resolution: {integrity: sha512-SdnWJwSUot04UR51I2oPD8kuP2VI37/CADR1OHsFOUzZIvfWJBO6q11k5P/uKNyTT3cdOsnyjkrZ+DDShqYqJA==} emittery@0.13.1: resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} @@ -1838,8 +1841,8 @@ packages: peerDependencies: eslint: ^9.5.0 - eslint-flat-config-utils@2.1.0: - resolution: {integrity: sha512-6fjOJ9tS0k28ketkUcQ+kKptB4dBZY2VijMZ9rGn8Cwnn1SH0cZBoPXT8AHBFHxmHcLFQK9zbELDinZ2Mr1rng==} + eslint-flat-config-utils@2.1.1: + resolution: {integrity: sha512-K8eaPkBemHkfbYsZH7z4lZ/tt6gNSsVh535Wh9W9gQBS2WjvfUbbVr2NZR3L1yiRCLuOEimYfPxCxODczD4Opg==} eslint-json-compat-utils@0.2.1: resolution: {integrity: sha512-YzEodbDyW8DX8bImKhAcCeu/L31Dd/70Bidx2Qex9OFUtgzXLqtfWL4Hr5fM/aCCB8QUZLuJur0S9k6UfgFkfg==} @@ -1883,8 +1886,8 @@ packages: typescript: optional: true - eslint-plugin-jsdoc@51.4.1: - resolution: {integrity: sha512-y4CA9OkachG8v5nAtrwvcvjIbdcKgSyS6U//IfQr4FZFFyeBFwZFf/tfSsMr46mWDJgidZjBTqoCRlXywfFBMg==} + eslint-plugin-jsdoc@52.0.2: + resolution: {integrity: sha512-fYrnc7OpRifxxKjH78Y9/D/EouQDYD3G++bpR1Y+A+fy+CMzKZAdGIiHTIxCd2U10hb2y1NxN5TJt9aupq1vmw==} engines: {node: '>=20.11.0'} peerDependencies: eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 @@ -1895,8 +1898,8 @@ packages: peerDependencies: eslint: '>=6.0.0' - eslint-plugin-n@17.21.0: - resolution: {integrity: sha512-1+iZ8We4ZlwVMtb/DcHG3y5/bZOdazIpa/4TySo22MLKdwrLcfrX0hbadnCvykSQCCmkAnWmIP8jZVb2AAq29A==} + eslint-plugin-n@17.21.3: + resolution: {integrity: sha512-MtxYjDZhMQgsWRm/4xYLL0i2EhusWT7itDxlJ80l1NND2AL2Vi5Mvneqv/ikG9+zpran0VsVRXTEHrpLmUZRNw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: '>=8.23.0' @@ -1943,8 +1946,8 @@ packages: '@typescript-eslint/eslint-plugin': optional: true - eslint-plugin-vue@10.3.0: - resolution: {integrity: sha512-A0u9snqjCfYaPnqqOaH6MBLVWDUIN4trXn8J3x67uDcXvR7X6Ut8p16N+nYhMCQ9Y7edg2BIRGzfyZsY0IdqoQ==} + eslint-plugin-vue@10.4.0: + resolution: {integrity: sha512-K6tP0dW8FJVZLQxa2S7LcE1lLw3X8VvB3t887Q6CLrFVxHYBXGANbXvwNzYIu6Ughx1bSJ5BDT0YB3ybPT39lw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: '@typescript-eslint/parser': ^7.0.0 || ^8.0.0 @@ -2200,6 +2203,9 @@ packages: resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} engines: {node: '>=10'} + globrex@0.1.2: + resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} + graceful-fs@4.2.11: resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} @@ -3815,7 +3821,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@5.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0))': + '@antfu/eslint-config@5.1.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -3829,14 +3835,14 @@ snapshots: cac: 6.7.14 eslint: 9.32.0(jiti@2.4.0) eslint-config-flat-gitignore: 2.1.0(eslint@9.32.0(jiti@2.4.0)) - eslint-flat-config-utils: 2.1.0 + eslint-flat-config-utils: 2.1.1 eslint-merge-processors: 2.0.0(eslint@9.32.0(jiti@2.4.0)) eslint-plugin-antfu: 3.1.1(eslint@9.32.0(jiti@2.4.0)) eslint-plugin-command: 3.3.1(eslint@9.32.0(jiti@2.4.0)) eslint-plugin-import-lite: 0.3.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) - eslint-plugin-jsdoc: 51.4.1(eslint@9.32.0(jiti@2.4.0)) + eslint-plugin-jsdoc: 52.0.2(eslint@9.32.0(jiti@2.4.0)) eslint-plugin-jsonc: 2.20.1(eslint@9.32.0(jiti@2.4.0)) - eslint-plugin-n: 17.21.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) + eslint-plugin-n: 17.21.3(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) eslint-plugin-no-only-tests: 3.3.0 eslint-plugin-perfectionist: 4.15.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) eslint-plugin-pnpm: 1.1.0(eslint@9.32.0(jiti@2.4.0)) @@ -3844,7 +3850,7 @@ snapshots: eslint-plugin-toml: 0.12.0(eslint@9.32.0(jiti@2.4.0)) eslint-plugin-unicorn: 60.0.0(eslint@9.32.0(jiti@2.4.0)) eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0)) - eslint-plugin-vue: 10.3.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.32.0(jiti@2.4.0))) + eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.32.0(jiti@2.4.0))) eslint-plugin-yml: 1.18.0(eslint@9.32.0(jiti@2.4.0)) eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0)) globals: 16.3.0 @@ -5529,8 +5535,8 @@ snapshots: browserslist@4.25.1: dependencies: - caniuse-lite: 1.0.30001727 - electron-to-chromium: 1.5.190 + caniuse-lite: 1.0.30001731 + electron-to-chromium: 1.5.194 node-releases: 2.0.19 update-browserslist-db: 1.1.3(browserslist@4.25.1) @@ -5568,7 +5574,7 @@ snapshots: camelcase@6.3.0: {} - caniuse-lite@1.0.30001727: {} + caniuse-lite@1.0.30001731: {} capital-case@1.0.4: dependencies: @@ -5776,7 +5782,7 @@ snapshots: dependencies: jake: 10.9.2 - electron-to-chromium@1.5.190: {} + electron-to-chromium@1.5.194: {} emittery@0.13.1: {} @@ -5850,7 +5856,7 @@ snapshots: '@eslint/compat': 1.3.1(eslint@9.32.0(jiti@2.4.0)) eslint: 9.32.0(jiti@2.4.0) - eslint-flat-config-utils@2.1.0: + eslint-flat-config-utils@2.1.1: dependencies: pathe: 2.0.3 @@ -5888,7 +5894,7 @@ snapshots: optionalDependencies: typescript: 5.9.2 - eslint-plugin-jsdoc@51.4.1(eslint@9.32.0(jiti@2.4.0)): + eslint-plugin-jsdoc@52.0.2(eslint@9.32.0(jiti@2.4.0)): dependencies: '@es-joy/jsdoccomment': 0.52.0 are-docs-informative: 0.0.2 @@ -5918,7 +5924,7 @@ snapshots: transitivePeerDependencies: - '@eslint/json' - eslint-plugin-n@17.21.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2): + eslint-plugin-n@17.21.3(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2): dependencies: '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) enhanced-resolve: 5.18.2 @@ -5926,8 +5932,8 @@ snapshots: eslint-plugin-es-x: 7.8.0(eslint@9.32.0(jiti@2.4.0)) get-tsconfig: 4.10.1 globals: 15.15.0 + globrex: 0.1.2 ignore: 5.3.2 - minimatch: 9.0.5 semver: 7.7.2 ts-declaration-location: 1.0.7(typescript@5.9.2) transitivePeerDependencies: @@ -6004,7 +6010,7 @@ snapshots: optionalDependencies: '@typescript-eslint/eslint-plugin': 8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) - eslint-plugin-vue@10.3.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.32.0(jiti@2.4.0))): + eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.32.0(jiti@2.4.0))): dependencies: '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) eslint: 9.32.0(jiti@2.4.0) @@ -6305,6 +6311,8 @@ snapshots: merge2: 1.4.1 slash: 3.0.0 + globrex@0.1.2: {} + graceful-fs@4.2.11: {} graphemer@1.4.0: {} From bb35a43151ca283cc763ee2500ba11eafd54c790 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 3 Aug 2025 18:04:28 +0000 Subject: [PATCH 020/133] chore(deps): update dependency ts-jest to v29.4.1 (#1204) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 90 ++++++++++++++++++++++++-------------------------- 2 files changed, 44 insertions(+), 48 deletions(-) diff --git a/package.json b/package.json index 6592c233..fba05c23 100644 --- a/package.json +++ b/package.json @@ -96,7 +96,7 @@ "myzod": "1.12.1", "npm-run-all2": "8.0.4", "ts-dedent": "^2.2.0", - "ts-jest": "29.4.0", + "ts-jest": "29.4.1", "typescript": "5.9.2", "valibot": "1.1.0", "vitest": "^3.0.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 47a10fc4..df954a49 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -61,8 +61,8 @@ importers: specifier: ^2.2.0 version: 2.2.0 ts-jest: - specifier: 29.4.0 - version: 29.4.0(@babel/core@7.27.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.0.5(@types/node@22.17.0))(typescript@5.9.2) + specifier: 29.4.1 + version: 29.4.1(@babel/core@7.27.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.0.5(@types/node@22.17.0))(typescript@5.9.2) typescript: specifier: 5.9.2 version: 5.9.2 @@ -1444,9 +1444,6 @@ packages: resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} engines: {node: '>=8'} - async@3.2.6: - resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} - auto-bind@4.0.0: resolution: {integrity: sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==} engines: {node: '>=8'} @@ -1767,11 +1764,6 @@ packages: eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - ejs@3.1.10: - resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==} - engines: {node: '>=0.10.0'} - hasBin: true - electron-to-chromium@1.5.194: resolution: {integrity: sha512-SdnWJwSUot04UR51I2oPD8kuP2VI37/CADR1OHsFOUzZIvfWJBO6q11k5P/uKNyTT3cdOsnyjkrZ+DDShqYqJA==} @@ -2103,9 +2095,6 @@ packages: resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} engines: {node: '>=16.0.0'} - filelist@1.0.4: - resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} - fill-range@7.1.1: resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} engines: {node: '>=8'} @@ -2246,6 +2235,11 @@ packages: resolution: {integrity: sha512-mS1lbMsxgQj6hge1XZ6p7GPhbrtFwUFYi3wRzXAC/FmYnyXMTvvI3td3rjmQ2u8ewXueaSvRPWaEcgVVOT9Jnw==} engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} + handlebars@4.7.8: + resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} + engines: {node: '>=0.4.7'} + hasBin: true + has-flag@4.0.0: resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} engines: {node: '>=8'} @@ -2422,11 +2416,6 @@ packages: jackspeak@3.4.3: resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} - jake@10.9.2: - resolution: {integrity: sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==} - engines: {node: '>=10'} - hasBin: true - jest-changed-files@30.0.5: resolution: {integrity: sha512-bGl2Ntdx0eAwXuGpdLdVYVr5YQHnSZlQ0y9HVDu565lCUAe9sj6JOtBbMmBBikGIegne9piDDIOeiLVoqTkz4A==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} @@ -2878,14 +2867,13 @@ packages: minimatch@3.1.2: resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} - minimatch@5.1.6: - resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} - engines: {node: '>=10'} - minimatch@9.0.5: resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} engines: {node: '>=16 || 14 >=14.17'} + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + minipass@7.1.2: resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} engines: {node: '>=16 || 14 >=14.17'} @@ -2919,6 +2907,9 @@ packages: resolution: {integrity: sha512-kKHJhxwpR/Okycz4HhQKKlhWe4ASEfPgkSWNmKFHd7+ezuQlxkA5cM3+XkBPvm1gmHen3w53qsYAv+8GwRrBlg==} engines: {node: '>=18'} + neo-async@2.6.2: + resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + no-case@3.0.4: resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} @@ -3498,8 +3489,8 @@ packages: resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} engines: {node: '>=6.10'} - ts-jest@29.4.0: - resolution: {integrity: sha512-d423TJMnJGu80/eSgfQ5w/R+0zFJvdtTxwtF9KzFFunOpSeD+79lHJQIiAhluJoyGRbvj9NZJsl9WjCUo0ND7Q==} + ts-jest@29.4.1: + resolution: {integrity: sha512-SaeUtjfpg9Uqu8IbeDKtdaS0g8lS6FT6OzM3ezrDfErPJPHNDo/Ey+VFGP1bQIDfagYDLyRpd7O15XpG1Es2Uw==} engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: @@ -3566,6 +3557,11 @@ packages: ufo@1.6.1: resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==} + uglify-js@3.19.3: + resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==} + engines: {node: '>=0.8.0'} + hasBin: true + unc-path-regex@0.1.2: resolution: {integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==} engines: {node: '>=0.10.0'} @@ -3739,6 +3735,9 @@ packages: resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} engines: {node: '>=0.10.0'} + wordwrap@1.0.0: + resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} + wrap-ansi@6.2.0: resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} engines: {node: '>=8'} @@ -5450,8 +5449,6 @@ snapshots: astral-regex@2.0.0: {} - async@3.2.6: {} - auto-bind@4.0.0: {} babel-jest@30.0.5(@babel/core@7.27.4): @@ -5778,10 +5775,6 @@ snapshots: eastasianwidth@0.2.0: {} - ejs@3.1.10: - dependencies: - jake: 10.9.2 - electron-to-chromium@1.5.194: {} emittery@0.13.1: {} @@ -6215,10 +6208,6 @@ snapshots: dependencies: flat-cache: 4.0.1 - filelist@1.0.4: - dependencies: - minimatch: 5.1.6 - fill-range@7.1.1: dependencies: to-regex-range: 5.0.1 @@ -6361,6 +6350,15 @@ snapshots: graphql@16.11.0: {} + handlebars@4.7.8: + dependencies: + minimist: 1.2.8 + neo-async: 2.6.2 + source-map: 0.6.1 + wordwrap: 1.0.0 + optionalDependencies: + uglify-js: 3.19.3 + has-flag@4.0.0: {} header-case@2.0.4: @@ -6537,13 +6535,6 @@ snapshots: optionalDependencies: '@pkgjs/parseargs': 0.11.0 - jake@10.9.2: - dependencies: - async: 3.2.6 - chalk: 4.1.2 - filelist: 1.0.4 - minimatch: 3.1.2 - jest-changed-files@30.0.5: dependencies: execa: 5.1.1 @@ -7336,14 +7327,12 @@ snapshots: dependencies: brace-expansion: 1.1.11 - minimatch@5.1.6: - dependencies: - brace-expansion: 2.0.2 - minimatch@9.0.5: dependencies: brace-expansion: 2.0.2 + minimist@1.2.8: {} + minipass@7.1.2: {} mlly@1.7.4: @@ -7367,6 +7356,8 @@ snapshots: natural-orderby@5.0.0: {} + neo-async@2.6.2: {} + no-case@3.0.4: dependencies: lower-case: 2.0.2 @@ -7921,11 +7912,11 @@ snapshots: ts-dedent@2.2.0: {} - ts-jest@29.4.0(@babel/core@7.27.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.0.5(@types/node@22.17.0))(typescript@5.9.2): + ts-jest@29.4.1(@babel/core@7.27.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.0.5(@types/node@22.17.0))(typescript@5.9.2): dependencies: bs-logger: 0.2.6 - ejs: 3.1.10 fast-json-stable-stringify: 2.1.0 + handlebars: 4.7.8 jest: 30.0.5(@types/node@22.17.0) json5: 2.2.3 lodash.memoize: 4.1.2 @@ -7965,6 +7956,9 @@ snapshots: ufo@1.6.1: {} + uglify-js@3.19.3: + optional: true + unc-path-regex@0.1.2: {} undici-types@6.21.0: {} @@ -8167,6 +8161,8 @@ snapshots: word-wrap@1.2.5: {} + wordwrap@1.0.0: {} + wrap-ansi@6.2.0: dependencies: ansi-styles: 4.3.0 From 55d54a4a8059614fcf6c83e4aabd62830ead9717 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 6 Aug 2025 01:58:48 +0000 Subject: [PATCH 021/133] chore(deps): update dependency zod to v4.0.15 (#1205) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index fba05c23..4a1c1aa6 100644 --- a/package.json +++ b/package.json @@ -101,6 +101,6 @@ "valibot": "1.1.0", "vitest": "^3.0.0", "yup": "1.7.0", - "zod": "4.0.14" + "zod": "4.0.15" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index df954a49..274ba447 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -76,8 +76,8 @@ importers: specifier: 1.7.0 version: 1.7.0 zod: - specifier: 4.0.14 - version: 4.0.14 + specifier: 4.0.15 + version: 4.0.15 packages: @@ -3807,8 +3807,8 @@ packages: yup@1.7.0: resolution: {integrity: sha512-VJce62dBd+JQvoc+fCVq+KZfPHr+hXaxCcVgotfwWvlR0Ja3ffYKaJBT8rptPOSKOGJDCUnW2C2JWpud7aRP6Q==} - zod@4.0.14: - resolution: {integrity: sha512-nGFJTnJN6cM2v9kXL+SOBq3AtjQby3Mv5ySGFof5UGRHrRioSJ5iG680cYNjE/yWk671nROcpPj4hAS8nyLhSw==} + zod@4.0.15: + resolution: {integrity: sha512-2IVHb9h4Mt6+UXkyMs0XbfICUh1eUrlJJAOupBHUhLRnKkruawyDddYRCs0Eizt900ntIMk9/4RksYl+FgSpcQ==} zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} @@ -8226,6 +8226,6 @@ snapshots: toposort: 2.0.2 type-fest: 2.19.0 - zod@4.0.14: {} + zod@4.0.15: {} zwitch@2.0.4: {} From 79d3573b5a434db0fd6cd66780b5ce3635204055 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 6 Aug 2025 09:44:46 +0000 Subject: [PATCH 022/133] chore(deps): update dependency @antfu/eslint-config to v5.2.0 (#1206) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 233 +++++++++++++++++++++++++------------------------ 1 file changed, 120 insertions(+), 113 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 274ba447..c64f3c71 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^5.0.0 - version: 5.1.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0)) + version: 5.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 5.0.7 version: 5.0.7(@types/node@22.17.0)(graphql@16.11.0)(typescript@5.9.2) @@ -71,7 +71,7 @@ importers: version: 1.1.0(typescript@5.9.2) vitest: specifier: ^3.0.0 - version: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.0 version: 1.7.0 @@ -85,8 +85,8 @@ packages: resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - '@antfu/eslint-config@5.1.0': - resolution: {integrity: sha512-JirdCHnt2frnUf7kmXBxvFfdca1UnC19AP89/nKgZIV71PXxhH6pX/jqF13OKpbOo4hxJQfs6yuS1Kl5LoW4Yw==} + '@antfu/eslint-config@5.2.0': + resolution: {integrity: sha512-qAf+Ja5COyF0414kUxY/BfyqyLaWrf1YTwUqMuUASPltugDc25t7OCQYNt1p/QilmVocCpsL1dUJWkehemidOA==} hasBin: true peerDependencies: '@eslint-react/eslint-plugin': ^1.38.4 @@ -1151,63 +1151,63 @@ packages: '@types/yargs@17.0.33': resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==} - '@typescript-eslint/eslint-plugin@8.38.0': - resolution: {integrity: sha512-CPoznzpuAnIOl4nhj4tRr4gIPj5AfKgkiJmGQDaq+fQnRJTYlcBjbX3wbciGmpoPf8DREufuPRe1tNMZnGdanA==} + '@typescript-eslint/eslint-plugin@8.39.0': + resolution: {integrity: sha512-bhEz6OZeUR+O/6yx9Jk6ohX6H9JSFTaiY0v9/PuKT3oGK0rn0jNplLmyFUGV+a9gfYnVNwGDwS/UkLIuXNb2Rw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - '@typescript-eslint/parser': ^8.38.0 + '@typescript-eslint/parser': ^8.39.0 eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.9.0' + typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/parser@8.38.0': - resolution: {integrity: sha512-Zhy8HCvBUEfBECzIl1PKqF4p11+d0aUJS1GeUiuqK9WmOug8YCmC4h4bjyBvMyAMI9sbRczmrYL5lKg/YMbrcQ==} + '@typescript-eslint/parser@8.39.0': + resolution: {integrity: sha512-g3WpVQHngx0aLXn6kfIYCZxM6rRJlWzEkVpqEFLT3SgEDsp9cpCbxxgwnE504q4H+ruSDh/VGS6nqZIDynP+vg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.9.0' + typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/project-service@8.38.0': - resolution: {integrity: sha512-dbK7Jvqcb8c9QfH01YB6pORpqX1mn5gDZc9n63Ak/+jD67oWXn3Gs0M6vddAN+eDXBCS5EmNWzbSxsn9SzFWWg==} + '@typescript-eslint/project-service@8.39.0': + resolution: {integrity: sha512-CTzJqaSq30V/Z2Og9jogzZt8lJRR5TKlAdXmWgdu4hgcC9Kww5flQ+xFvMxIBWVNdxJO7OifgdOK4PokMIWPew==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - typescript: '>=4.8.4 <5.9.0' + typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/scope-manager@8.38.0': - resolution: {integrity: sha512-WJw3AVlFFcdT9Ri1xs/lg8LwDqgekWXWhH3iAF+1ZM+QPd7oxQ6jvtW/JPwzAScxitILUIFs0/AnQ/UWHzbATQ==} + '@typescript-eslint/scope-manager@8.39.0': + resolution: {integrity: sha512-8QOzff9UKxOh6npZQ/4FQu4mjdOCGSdO3p44ww0hk8Vu+IGbg0tB/H1LcTARRDzGCC8pDGbh2rissBuuoPgH8A==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/tsconfig-utils@8.38.0': - resolution: {integrity: sha512-Lum9RtSE3EroKk/bYns+sPOodqb2Fv50XOl/gMviMKNvanETUuUcC9ObRbzrJ4VSd2JalPqgSAavwrPiPvnAiQ==} + '@typescript-eslint/tsconfig-utils@8.39.0': + resolution: {integrity: sha512-Fd3/QjmFV2sKmvv3Mrj8r6N8CryYiCS8Wdb/6/rgOXAWGcFuc+VkQuG28uk/4kVNVZBQuuDHEDUpo/pQ32zsIQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - typescript: '>=4.8.4 <5.9.0' + typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/type-utils@8.38.0': - resolution: {integrity: sha512-c7jAvGEZVf0ao2z+nnz8BUaHZD09Agbh+DY7qvBQqLiz8uJzRgVPj5YvOh8I8uEiH8oIUGIfHzMwUcGVco/SJg==} + '@typescript-eslint/type-utils@8.39.0': + resolution: {integrity: sha512-6B3z0c1DXVT2vYA9+z9axjtc09rqKUPRmijD5m9iv8iQpHBRYRMBcgxSiKTZKm6FwWw1/cI4v6em35OsKCiN5Q==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.9.0' + typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/types@8.38.0': - resolution: {integrity: sha512-wzkUfX3plUqij4YwWaJyqhiPE5UCRVlFpKn1oCRn2O1bJ592XxWJj8ROQ3JD5MYXLORW84063z3tZTb/cs4Tyw==} + '@typescript-eslint/types@8.39.0': + resolution: {integrity: sha512-ArDdaOllnCj3yn/lzKn9s0pBQYmmyme/v1HbGIGB0GB/knFI3fWMHloC+oYTJW46tVbYnGKTMDK4ah1sC2v0Kg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/typescript-estree@8.38.0': - resolution: {integrity: sha512-fooELKcAKzxux6fA6pxOflpNS0jc+nOQEEOipXFNjSlBS6fqrJOVY/whSn70SScHrcJ2LDsxWrneFoWYSVfqhQ==} + '@typescript-eslint/typescript-estree@8.39.0': + resolution: {integrity: sha512-ndWdiflRMvfIgQRpckQQLiB5qAKQ7w++V4LlCHwp62eym1HLB/kw7D9f2e8ytONls/jt89TEasgvb+VwnRprsw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - typescript: '>=4.8.4 <5.9.0' + typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/utils@8.38.0': - resolution: {integrity: sha512-hHcMA86Hgt+ijJlrD8fX0j1j8w4C92zue/8LOPAFioIno+W0+L7KqE8QZKCcPGc/92Vs9x36w/4MPTJhqXdyvg==} + '@typescript-eslint/utils@8.39.0': + resolution: {integrity: sha512-4GVSvNA0Vx1Ktwvf4sFE+exxJ3QGUorQG1/A5mRfRNZtkBT2xrA/BCO2H0eALx/PnvCS6/vmYwRdDA41EoffkQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.9.0' + typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/visitor-keys@8.38.0': - resolution: {integrity: sha512-pWrTcoFNWuwHlA9CvlfSsGWs14JxfN1TH25zM5L7o0pRLhsoZkDnTsXfQRJBEWJoV5DL0jf+Z+sxiud+K0mq1g==} + '@typescript-eslint/visitor-keys@8.39.0': + resolution: {integrity: sha512-ldgiJ+VAhQCfIjeOgu8Kj5nSxds0ktPOSO9p4+0VDH2R2pLvQraaM5Oen2d7NxzMCm+Sn/vJT+mv2H5u6b/3fA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@ungap/structured-clone@1.3.0': @@ -1659,8 +1659,8 @@ packages: convert-source-map@2.0.0: resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} - core-js-compat@3.44.0: - resolution: {integrity: sha512-JepmAj2zfl6ogy34qfWtcE7nHKAJnKsQFRn++scjVS2bZFllwptzw61BZcZFYBPpUznLfAvh0LGhxKppk04ClA==} + core-js-compat@3.45.0: + resolution: {integrity: sha512-gRoVMBawZg0OnxaVv3zpqLLxaHmsubEGyTnqdpI/CEBvX4JadI1dMSHxagThprYRtSVbuQxvi6iUatdPxohHpA==} cosmiconfig@8.3.6: resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} @@ -1764,8 +1764,8 @@ packages: eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - electron-to-chromium@1.5.194: - resolution: {integrity: sha512-SdnWJwSUot04UR51I2oPD8kuP2VI37/CADR1OHsFOUzZIvfWJBO6q11k5P/uKNyTT3cdOsnyjkrZ+DDShqYqJA==} + electron-to-chromium@1.5.197: + resolution: {integrity: sha512-m1xWB3g7vJ6asIFz+2pBUbq3uGmfmln1M9SSvBe4QIFWYrRHylP73zL/3nMjDmwz8V+1xAXQDfBd6+HPW0WvDQ==} emittery@0.13.1: resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} @@ -1878,8 +1878,8 @@ packages: typescript: optional: true - eslint-plugin-jsdoc@52.0.2: - resolution: {integrity: sha512-fYrnc7OpRifxxKjH78Y9/D/EouQDYD3G++bpR1Y+A+fy+CMzKZAdGIiHTIxCd2U10hb2y1NxN5TJt9aupq1vmw==} + eslint-plugin-jsdoc@52.0.4: + resolution: {integrity: sha512-be5OzGlLExvcK13Il3noU7/v7WmAQGenTmCaBKf1pwVtPOb6X+PGFVnJad0QhMj4KKf45XjE4hbsBxv25q1fTg==} engines: {node: '>=20.11.0'} peerDependencies: eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 @@ -1911,8 +1911,8 @@ packages: peerDependencies: eslint: ^9.0.0 - eslint-plugin-regexp@2.9.0: - resolution: {integrity: sha512-9WqJMnOq8VlE/cK+YAo9C9YHhkOtcEtEk9d12a+H7OSZFwlpI6stiHmYPGa2VE0QhTzodJyhlyprUaXDZLgHBw==} + eslint-plugin-regexp@2.9.1: + resolution: {integrity: sha512-JwK6glV/aoYDxvXcrvMQbw/pByBewZwqXVSBzzjot3GxSbmjDYuWU4LWiLdBO8JKi4o8A1+rygO6JWRBg4qAQQ==} engines: {node: ^18 || >=20} peerDependencies: eslint: '>=8.44.0' @@ -3792,6 +3792,11 @@ packages: engines: {node: '>= 14.6'} hasBin: true + yaml@2.8.1: + resolution: {integrity: sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==} + engines: {node: '>= 14.6'} + hasBin: true + yargs-parser@21.1.1: resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} engines: {node: '>=12'} @@ -3820,16 +3825,16 @@ snapshots: '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@5.1.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0))': + '@antfu/eslint-config@5.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.32.0(jiti@2.4.0)) '@eslint/markdown': 7.1.0 '@stylistic/eslint-plugin': 5.2.2(eslint@9.32.0(jiti@2.4.0)) - '@typescript-eslint/eslint-plugin': 8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) - '@typescript-eslint/parser': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) - '@vitest/eslint-plugin': 1.3.4(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0)) + '@typescript-eslint/eslint-plugin': 8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/parser': 8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) + '@vitest/eslint-plugin': 1.3.4(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.1.0 cac: 6.7.14 eslint: 9.32.0(jiti@2.4.0) @@ -3839,17 +3844,17 @@ snapshots: eslint-plugin-antfu: 3.1.1(eslint@9.32.0(jiti@2.4.0)) eslint-plugin-command: 3.3.1(eslint@9.32.0(jiti@2.4.0)) eslint-plugin-import-lite: 0.3.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) - eslint-plugin-jsdoc: 52.0.2(eslint@9.32.0(jiti@2.4.0)) + eslint-plugin-jsdoc: 52.0.4(eslint@9.32.0(jiti@2.4.0)) eslint-plugin-jsonc: 2.20.1(eslint@9.32.0(jiti@2.4.0)) eslint-plugin-n: 17.21.3(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) eslint-plugin-no-only-tests: 3.3.0 eslint-plugin-perfectionist: 4.15.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) eslint-plugin-pnpm: 1.1.0(eslint@9.32.0(jiti@2.4.0)) - eslint-plugin-regexp: 2.9.0(eslint@9.32.0(jiti@2.4.0)) + eslint-plugin-regexp: 2.9.1(eslint@9.32.0(jiti@2.4.0)) eslint-plugin-toml: 0.12.0(eslint@9.32.0(jiti@2.4.0)) eslint-plugin-unicorn: 60.0.0(eslint@9.32.0(jiti@2.4.0)) - eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0)) - eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.32.0(jiti@2.4.0))) + eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0)) + eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.32.0(jiti@2.4.0))) eslint-plugin-yml: 1.18.0(eslint@9.32.0(jiti@2.4.0)) eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0)) globals: 16.3.0 @@ -4142,7 +4147,7 @@ snapshots: '@es-joy/jsdoccomment@0.50.2': dependencies: '@types/estree': 1.0.8 - '@typescript-eslint/types': 8.38.0 + '@typescript-eslint/types': 8.39.0 comment-parser: 1.4.1 esquery: 1.6.0 jsdoc-type-pratt-parser: 4.1.0 @@ -4150,7 +4155,7 @@ snapshots: '@es-joy/jsdoccomment@0.52.0': dependencies: '@types/estree': 1.0.8 - '@typescript-eslint/types': 8.38.0 + '@typescript-eslint/types': 8.39.0 comment-parser: 1.4.1 esquery: 1.6.0 jsdoc-type-pratt-parser: 4.1.0 @@ -5049,7 +5054,7 @@ snapshots: '@stylistic/eslint-plugin@5.2.2(eslint@9.32.0(jiti@2.4.0))': dependencies: '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) - '@typescript-eslint/types': 8.38.0 + '@typescript-eslint/types': 8.39.0 eslint: 9.32.0(jiti@2.4.0) eslint-visitor-keys: 4.2.1 espree: 10.4.0 @@ -5138,14 +5143,14 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/eslint-plugin@8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) - '@typescript-eslint/scope-manager': 8.38.0 - '@typescript-eslint/type-utils': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) - '@typescript-eslint/utils': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) - '@typescript-eslint/visitor-keys': 8.38.0 + '@typescript-eslint/parser': 8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/scope-manager': 8.39.0 + '@typescript-eslint/type-utils': 8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/utils': 8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/visitor-keys': 8.39.0 eslint: 9.32.0(jiti@2.4.0) graphemer: 1.4.0 ignore: 7.0.5 @@ -5155,41 +5160,41 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/parser@8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: - '@typescript-eslint/scope-manager': 8.38.0 - '@typescript-eslint/types': 8.38.0 - '@typescript-eslint/typescript-estree': 8.38.0(typescript@5.9.2) - '@typescript-eslint/visitor-keys': 8.38.0 + '@typescript-eslint/scope-manager': 8.39.0 + '@typescript-eslint/types': 8.39.0 + '@typescript-eslint/typescript-estree': 8.39.0(typescript@5.9.2) + '@typescript-eslint/visitor-keys': 8.39.0 debug: 4.4.1 eslint: 9.32.0(jiti@2.4.0) typescript: 5.9.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/project-service@8.38.0(typescript@5.9.2)': + '@typescript-eslint/project-service@8.39.0(typescript@5.9.2)': dependencies: - '@typescript-eslint/tsconfig-utils': 8.38.0(typescript@5.9.2) - '@typescript-eslint/types': 8.38.0 + '@typescript-eslint/tsconfig-utils': 8.39.0(typescript@5.9.2) + '@typescript-eslint/types': 8.39.0 debug: 4.4.1 typescript: 5.9.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@8.38.0': + '@typescript-eslint/scope-manager@8.39.0': dependencies: - '@typescript-eslint/types': 8.38.0 - '@typescript-eslint/visitor-keys': 8.38.0 + '@typescript-eslint/types': 8.39.0 + '@typescript-eslint/visitor-keys': 8.39.0 - '@typescript-eslint/tsconfig-utils@8.38.0(typescript@5.9.2)': + '@typescript-eslint/tsconfig-utils@8.39.0(typescript@5.9.2)': dependencies: typescript: 5.9.2 - '@typescript-eslint/type-utils@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/type-utils@8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: - '@typescript-eslint/types': 8.38.0 - '@typescript-eslint/typescript-estree': 8.38.0(typescript@5.9.2) - '@typescript-eslint/utils': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/types': 8.39.0 + '@typescript-eslint/typescript-estree': 8.39.0(typescript@5.9.2) + '@typescript-eslint/utils': 8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) debug: 4.4.1 eslint: 9.32.0(jiti@2.4.0) ts-api-utils: 2.1.0(typescript@5.9.2) @@ -5197,14 +5202,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/types@8.38.0': {} + '@typescript-eslint/types@8.39.0': {} - '@typescript-eslint/typescript-estree@8.38.0(typescript@5.9.2)': + '@typescript-eslint/typescript-estree@8.39.0(typescript@5.9.2)': dependencies: - '@typescript-eslint/project-service': 8.38.0(typescript@5.9.2) - '@typescript-eslint/tsconfig-utils': 8.38.0(typescript@5.9.2) - '@typescript-eslint/types': 8.38.0 - '@typescript-eslint/visitor-keys': 8.38.0 + '@typescript-eslint/project-service': 8.39.0(typescript@5.9.2) + '@typescript-eslint/tsconfig-utils': 8.39.0(typescript@5.9.2) + '@typescript-eslint/types': 8.39.0 + '@typescript-eslint/visitor-keys': 8.39.0 debug: 4.4.1 fast-glob: 3.3.3 is-glob: 4.0.3 @@ -5215,20 +5220,20 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/utils@8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) - '@typescript-eslint/scope-manager': 8.38.0 - '@typescript-eslint/types': 8.38.0 - '@typescript-eslint/typescript-estree': 8.38.0(typescript@5.9.2) + '@typescript-eslint/scope-manager': 8.39.0 + '@typescript-eslint/types': 8.39.0 + '@typescript-eslint/typescript-estree': 8.39.0(typescript@5.9.2) eslint: 9.32.0(jiti@2.4.0) typescript: 5.9.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/visitor-keys@8.38.0': + '@typescript-eslint/visitor-keys@8.39.0': dependencies: - '@typescript-eslint/types': 8.38.0 + '@typescript-eslint/types': 8.39.0 eslint-visitor-keys: 4.2.1 '@ungap/structured-clone@1.3.0': {} @@ -5286,13 +5291,13 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.4(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0))': + '@vitest/eslint-plugin@1.3.4(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1))': dependencies: - '@typescript-eslint/utils': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/utils': 8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) eslint: 9.32.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.2 - vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0) + vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color @@ -5304,13 +5309,13 @@ snapshots: chai: 5.2.0 tinyrainbow: 2.0.0 - '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0))': + '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@vitest/spy': 3.2.4 estree-walker: 3.0.3 magic-string: 0.30.17 optionalDependencies: - vite: 6.3.5(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0) + vite: 6.3.5(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1) '@vitest/pretty-format@3.2.4': dependencies: @@ -5533,7 +5538,7 @@ snapshots: browserslist@4.25.1: dependencies: caniuse-lite: 1.0.30001731 - electron-to-chromium: 1.5.194 + electron-to-chromium: 1.5.197 node-releases: 2.0.19 update-browserslist-db: 1.1.3(browserslist@4.25.1) @@ -5693,7 +5698,7 @@ snapshots: convert-source-map@2.0.0: {} - core-js-compat@3.44.0: + core-js-compat@3.45.0: dependencies: browserslist: 4.25.1 @@ -5775,7 +5780,7 @@ snapshots: eastasianwidth@0.2.0: {} - electron-to-chromium@1.5.194: {} + electron-to-chromium@1.5.197: {} emittery@0.13.1: {} @@ -5882,12 +5887,12 @@ snapshots: eslint-plugin-import-lite@0.3.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2): dependencies: '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) - '@typescript-eslint/types': 8.38.0 + '@typescript-eslint/types': 8.39.0 eslint: 9.32.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.2 - eslint-plugin-jsdoc@52.0.2(eslint@9.32.0(jiti@2.4.0)): + eslint-plugin-jsdoc@52.0.4(eslint@9.32.0(jiti@2.4.0)): dependencies: '@es-joy/jsdoccomment': 0.52.0 are-docs-informative: 0.0.2 @@ -5936,8 +5941,8 @@ snapshots: eslint-plugin-perfectionist@4.15.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2): dependencies: - '@typescript-eslint/types': 8.38.0 - '@typescript-eslint/utils': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/types': 8.39.0 + '@typescript-eslint/utils': 8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) eslint: 9.32.0(jiti@2.4.0) natural-orderby: 5.0.0 transitivePeerDependencies: @@ -5954,7 +5959,7 @@ snapshots: tinyglobby: 0.2.14 yaml-eslint-parser: 1.3.0 - eslint-plugin-regexp@2.9.0(eslint@9.32.0(jiti@2.4.0)): + eslint-plugin-regexp@2.9.1(eslint@9.32.0(jiti@2.4.0)): dependencies: '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.1 @@ -5983,7 +5988,7 @@ snapshots: change-case: 5.4.4 ci-info: 4.3.0 clean-regexp: 1.0.0 - core-js-compat: 3.44.0 + core-js-compat: 3.45.0 eslint: 9.32.0(jiti@2.4.0) esquery: 1.6.0 find-up-simple: 1.0.1 @@ -5997,13 +6002,13 @@ snapshots: semver: 7.7.2 strip-indent: 4.0.0 - eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0)): + eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0)): dependencies: eslint: 9.32.0(jiti@2.4.0) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/eslint-plugin': 8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) - eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.32.0(jiti@2.4.0))): + eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.32.0(jiti@2.4.0))): dependencies: '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) eslint: 9.32.0(jiti@2.4.0) @@ -6014,7 +6019,7 @@ snapshots: vue-eslint-parser: 10.2.0(eslint@9.32.0(jiti@2.4.0)) xml-name-validator: 4.0.0 optionalDependencies: - '@typescript-eslint/parser': 8.38.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/parser': 8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) eslint-plugin-yml@1.18.0(eslint@9.32.0(jiti@2.4.0)): dependencies: @@ -7554,7 +7559,7 @@ snapshots: pnpm-workspace-yaml@1.1.0: dependencies: - yaml: 2.8.0 + yaml: 2.8.1 postcss-selector-parser@6.1.2: dependencies: @@ -8042,13 +8047,13 @@ snapshots: value-or-promise@1.0.12: {} - vite-node@3.2.4(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0): + vite-node@3.2.4(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1): dependencies: cac: 6.7.14 debug: 4.4.1 es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 6.3.5(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0) + vite: 6.3.5(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - '@types/node' - jiti @@ -8063,7 +8068,7 @@ snapshots: - tsx - yaml - vite@6.3.5(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0): + vite@6.3.5(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1): dependencies: esbuild: 0.25.5 fdir: 6.4.6(picomatch@4.0.2) @@ -8075,13 +8080,13 @@ snapshots: '@types/node': 22.17.0 fsevents: 2.3.3 jiti: 2.4.0 - yaml: 2.8.0 + yaml: 2.8.1 - vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0): + vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1): dependencies: '@types/chai': 5.2.2 '@vitest/expect': 3.2.4 - '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0)) + '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1)) '@vitest/pretty-format': 3.2.4 '@vitest/runner': 3.2.4 '@vitest/snapshot': 3.2.4 @@ -8099,8 +8104,8 @@ snapshots: tinyglobby: 0.2.14 tinypool: 1.1.1 tinyrainbow: 2.0.0 - vite: 6.3.5(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0) - vite-node: 3.2.4(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.0) + vite: 6.3.5(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1) + vite-node: 3.2.4(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1) why-is-node-running: 2.3.0 optionalDependencies: '@types/debug': 4.1.12 @@ -8201,10 +8206,12 @@ snapshots: yaml-eslint-parser@1.3.0: dependencies: eslint-visitor-keys: 3.4.3 - yaml: 2.8.0 + yaml: 2.8.1 yaml@2.8.0: {} + yaml@2.8.1: {} + yargs-parser@21.1.1: {} yargs@17.7.2: From 4fffafa649b9418f3437bb911be6b31fecadaf45 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 8 Aug 2025 16:56:30 +0000 Subject: [PATCH 023/133] chore(deps): update dependency @types/node to v22.17.1 (#1207) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 134 ++++++++++++++++++++++++------------------------- 1 file changed, 67 insertions(+), 67 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c64f3c71..d0ccf212 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,10 +29,10 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^5.0.0 - version: 5.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1)) + version: 5.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 5.0.7 - version: 5.0.7(@types/node@22.17.0)(graphql@16.11.0)(typescript@5.9.2) + version: 5.0.7(@types/node@22.17.1)(graphql@16.11.0)(typescript@5.9.2) '@graphql-codegen/typescript': specifier: ^4.0.0 version: 4.1.6(graphql@16.11.0) @@ -44,13 +44,13 @@ importers: version: 2.1.12 '@types/node': specifier: ^22.0.0 - version: 22.17.0 + version: 22.17.1 eslint: specifier: 9.32.0 version: 9.32.0(jiti@2.4.0) jest: specifier: 30.0.5 - version: 30.0.5(@types/node@22.17.0) + version: 30.0.5(@types/node@22.17.1) myzod: specifier: 1.12.1 version: 1.12.1 @@ -62,7 +62,7 @@ importers: version: 2.2.0 ts-jest: specifier: 29.4.1 - version: 29.4.1(@babel/core@7.27.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.0.5(@types/node@22.17.0))(typescript@5.9.2) + version: 29.4.1(@babel/core@7.27.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.0.5(@types/node@22.17.1))(typescript@5.9.2) typescript: specifier: 5.9.2 version: 5.9.2 @@ -71,7 +71,7 @@ importers: version: 1.1.0(typescript@5.9.2) vitest: specifier: ^3.0.0 - version: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.0 version: 1.7.0 @@ -1133,8 +1133,8 @@ packages: '@types/ms@2.1.0': resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} - '@types/node@22.17.0': - resolution: {integrity: sha512-bbAKTCqX5aNVryi7qXVMi+OkB3w/OyblodicMbvE38blyAz7GxXf6XYhklokijuPwwVg9sDLKRxt0ZHXQwZVfQ==} + '@types/node@22.17.1': + resolution: {integrity: sha512-y3tBaz+rjspDTylNjAX37jEC3TETEFGNJL6uQDxwF9/8GLLIjW1rvVHlynyuUKMnMr1Roq8jOv3vkopBjC4/VA==} '@types/stack-utils@2.0.3': resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} @@ -3825,7 +3825,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@5.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@5.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -3834,7 +3834,7 @@ snapshots: '@stylistic/eslint-plugin': 5.2.2(eslint@9.32.0(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) '@typescript-eslint/parser': 8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) - '@vitest/eslint-plugin': 1.3.4(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/eslint-plugin': 1.3.4(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.1.0 cac: 6.7.14 eslint: 9.32.0(jiti@2.4.0) @@ -4308,7 +4308,7 @@ snapshots: graphql: 16.11.0 tslib: 2.6.3 - '@graphql-codegen/cli@5.0.7(@types/node@22.17.0)(graphql@16.11.0)(typescript@5.9.2)': + '@graphql-codegen/cli@5.0.7(@types/node@22.17.1)(graphql@16.11.0)(typescript@5.9.2)': dependencies: '@babel/generator': 7.27.0 '@babel/template': 7.25.9 @@ -4319,12 +4319,12 @@ snapshots: '@graphql-tools/apollo-engine-loader': 8.0.4(graphql@16.11.0) '@graphql-tools/code-file-loader': 8.1.5(graphql@16.11.0) '@graphql-tools/git-loader': 8.0.9(graphql@16.11.0) - '@graphql-tools/github-loader': 8.0.4(@types/node@22.17.0)(graphql@16.11.0) + '@graphql-tools/github-loader': 8.0.4(@types/node@22.17.1)(graphql@16.11.0) '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) - '@graphql-tools/prisma-loader': 8.0.17(@types/node@22.17.0)(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@22.17.0)(graphql@16.11.0) + '@graphql-tools/prisma-loader': 8.0.17(@types/node@22.17.1)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@22.17.1)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@whatwg-node/fetch': 0.10.1 chalk: 4.1.2 @@ -4332,7 +4332,7 @@ snapshots: debounce: 1.2.1 detect-indent: 6.1.0 graphql: 16.11.0 - graphql-config: 5.1.3(@types/node@22.17.0)(graphql@16.11.0)(typescript@5.9.2) + graphql-config: 5.1.3(@types/node@22.17.1)(graphql@16.11.0)(typescript@5.9.2) inquirer: 8.2.6 is-glob: 4.0.3 jiti: 1.21.6 @@ -4521,14 +4521,14 @@ snapshots: - bufferutil - utf-8-validate - '@graphql-tools/executor-http@1.1.9(@types/node@22.17.0)(graphql@16.11.0)': + '@graphql-tools/executor-http@1.1.9(@types/node@22.17.1)(graphql@16.11.0)': dependencies: '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/fetch': 0.10.1 extract-files: 11.0.0 graphql: 16.11.0 - meros: 1.3.0(@types/node@22.17.0) + meros: 1.3.0(@types/node@22.17.1) tslib: 2.8.1 value-or-promise: 1.0.12 transitivePeerDependencies: @@ -4567,10 +4567,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@graphql-tools/github-loader@8.0.4(@types/node@22.17.0)(graphql@16.11.0)': + '@graphql-tools/github-loader@8.0.4(@types/node@22.17.1)(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/executor-http': 1.1.9(@types/node@22.17.0)(graphql@16.11.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@22.17.1)(graphql@16.11.0) '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@whatwg-node/fetch': 0.10.1 @@ -4638,9 +4638,9 @@ snapshots: graphql: 16.11.0 tslib: 2.6.3 - '@graphql-tools/prisma-loader@8.0.17(@types/node@22.17.0)(graphql@16.11.0)': + '@graphql-tools/prisma-loader@8.0.17(@types/node@22.17.1)(graphql@16.11.0)': dependencies: - '@graphql-tools/url-loader': 8.0.15(@types/node@22.17.0)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@22.17.1)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@types/js-yaml': 4.0.9 '@whatwg-node/fetch': 0.10.1 @@ -4680,11 +4680,11 @@ snapshots: graphql: 16.11.0 tslib: 2.8.1 - '@graphql-tools/url-loader@8.0.15(@types/node@22.17.0)(graphql@16.11.0)': + '@graphql-tools/url-loader@8.0.15(@types/node@22.17.1)(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/executor-graphql-ws': 1.3.2(graphql@16.11.0) - '@graphql-tools/executor-http': 1.1.9(@types/node@22.17.0)(graphql@16.11.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@22.17.1)(graphql@16.11.0) '@graphql-tools/executor-legacy-ws': 1.1.2(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@graphql-tools/wrap': 10.0.16(graphql@16.11.0) @@ -4758,7 +4758,7 @@ snapshots: '@jest/console@30.0.5': dependencies: '@jest/types': 30.0.5 - '@types/node': 22.17.0 + '@types/node': 22.17.1 chalk: 4.1.2 jest-message-util: 30.0.5 jest-util: 30.0.5 @@ -4772,14 +4772,14 @@ snapshots: '@jest/test-result': 30.0.5 '@jest/transform': 30.0.5 '@jest/types': 30.0.5 - '@types/node': 22.17.0 + '@types/node': 22.17.1 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 4.3.0 exit-x: 0.2.2 graceful-fs: 4.2.11 jest-changed-files: 30.0.5 - jest-config: 30.0.5(@types/node@22.17.0) + jest-config: 30.0.5(@types/node@22.17.1) jest-haste-map: 30.0.5 jest-message-util: 30.0.5 jest-regex-util: 30.0.1 @@ -4806,7 +4806,7 @@ snapshots: dependencies: '@jest/fake-timers': 30.0.5 '@jest/types': 30.0.5 - '@types/node': 22.17.0 + '@types/node': 22.17.1 jest-mock: 30.0.5 '@jest/expect-utils@30.0.5': @@ -4824,7 +4824,7 @@ snapshots: dependencies: '@jest/types': 30.0.5 '@sinonjs/fake-timers': 13.0.5 - '@types/node': 22.17.0 + '@types/node': 22.17.1 jest-message-util: 30.0.5 jest-mock: 30.0.5 jest-util: 30.0.5 @@ -4842,7 +4842,7 @@ snapshots: '@jest/pattern@30.0.1': dependencies: - '@types/node': 22.17.0 + '@types/node': 22.17.1 jest-regex-util: 30.0.1 '@jest/reporters@30.0.5': @@ -4853,7 +4853,7 @@ snapshots: '@jest/transform': 30.0.5 '@jest/types': 30.0.5 '@jridgewell/trace-mapping': 0.3.25 - '@types/node': 22.17.0 + '@types/node': 22.17.1 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit-x: 0.2.2 @@ -4930,7 +4930,7 @@ snapshots: '@jest/schemas': 30.0.5 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 22.17.0 + '@types/node': 22.17.1 '@types/yargs': 17.0.33 chalk: 4.1.2 @@ -5125,7 +5125,7 @@ snapshots: '@types/ms@2.1.0': {} - '@types/node@22.17.0': + '@types/node@22.17.1': dependencies: undici-types: 6.21.0 @@ -5135,7 +5135,7 @@ snapshots: '@types/ws@8.5.13': dependencies: - '@types/node': 22.17.0 + '@types/node': 22.17.1 '@types/yargs-parser@21.0.3': {} @@ -5291,13 +5291,13 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.4(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.3.4(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/utils': 8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) eslint: 9.32.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.2 - vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1) + vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color @@ -5309,13 +5309,13 @@ snapshots: chai: 5.2.0 tinyrainbow: 2.0.0 - '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@vitest/spy': 3.2.4 estree-walker: 3.0.3 magic-string: 0.30.17 optionalDependencies: - vite: 6.3.5(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1) '@vitest/pretty-format@3.2.4': dependencies: @@ -6315,13 +6315,13 @@ snapshots: dependencies: lodash: 4.17.21 - graphql-config@5.1.3(@types/node@22.17.0)(graphql@16.11.0)(typescript@5.9.2): + graphql-config@5.1.3(@types/node@22.17.1)(graphql@16.11.0)(typescript@5.9.2): dependencies: '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) '@graphql-tools/merge': 9.0.24(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@22.17.0)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@22.17.1)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) cosmiconfig: 8.3.6(typescript@5.9.2) graphql: 16.11.0 @@ -6552,7 +6552,7 @@ snapshots: '@jest/expect': 30.0.5 '@jest/test-result': 30.0.5 '@jest/types': 30.0.5 - '@types/node': 22.17.0 + '@types/node': 22.17.1 chalk: 4.1.2 co: 4.6.0 dedent: 1.6.0 @@ -6572,7 +6572,7 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@30.0.5(@types/node@22.17.0): + jest-cli@30.0.5(@types/node@22.17.1): dependencies: '@jest/core': 30.0.5 '@jest/test-result': 30.0.5 @@ -6580,7 +6580,7 @@ snapshots: chalk: 4.1.2 exit-x: 0.2.2 import-local: 3.2.0 - jest-config: 30.0.5(@types/node@22.17.0) + jest-config: 30.0.5(@types/node@22.17.1) jest-util: 30.0.5 jest-validate: 30.0.5 yargs: 17.7.2 @@ -6591,7 +6591,7 @@ snapshots: - supports-color - ts-node - jest-config@30.0.5(@types/node@22.17.0): + jest-config@30.0.5(@types/node@22.17.1): dependencies: '@babel/core': 7.27.4 '@jest/get-type': 30.0.1 @@ -6618,7 +6618,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 22.17.0 + '@types/node': 22.17.1 transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -6647,7 +6647,7 @@ snapshots: '@jest/environment': 30.0.5 '@jest/fake-timers': 30.0.5 '@jest/types': 30.0.5 - '@types/node': 22.17.0 + '@types/node': 22.17.1 jest-mock: 30.0.5 jest-util: 30.0.5 jest-validate: 30.0.5 @@ -6655,7 +6655,7 @@ snapshots: jest-haste-map@30.0.5: dependencies: '@jest/types': 30.0.5 - '@types/node': 22.17.0 + '@types/node': 22.17.1 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -6694,7 +6694,7 @@ snapshots: jest-mock@30.0.5: dependencies: '@jest/types': 30.0.5 - '@types/node': 22.17.0 + '@types/node': 22.17.1 jest-util: 30.0.5 jest-pnp-resolver@1.2.3(jest-resolve@30.0.5): @@ -6728,7 +6728,7 @@ snapshots: '@jest/test-result': 30.0.5 '@jest/transform': 30.0.5 '@jest/types': 30.0.5 - '@types/node': 22.17.0 + '@types/node': 22.17.1 chalk: 4.1.2 emittery: 0.13.1 exit-x: 0.2.2 @@ -6757,7 +6757,7 @@ snapshots: '@jest/test-result': 30.0.5 '@jest/transform': 30.0.5 '@jest/types': 30.0.5 - '@types/node': 22.17.0 + '@types/node': 22.17.1 chalk: 4.1.2 cjs-module-lexer: 2.1.0 collect-v8-coverage: 1.0.2 @@ -6804,7 +6804,7 @@ snapshots: jest-util@30.0.5: dependencies: '@jest/types': 30.0.5 - '@types/node': 22.17.0 + '@types/node': 22.17.1 chalk: 4.1.2 ci-info: 4.3.0 graceful-fs: 4.2.11 @@ -6823,7 +6823,7 @@ snapshots: dependencies: '@jest/test-result': 30.0.5 '@jest/types': 30.0.5 - '@types/node': 22.17.0 + '@types/node': 22.17.1 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -6832,18 +6832,18 @@ snapshots: jest-worker@30.0.5: dependencies: - '@types/node': 22.17.0 + '@types/node': 22.17.1 '@ungap/structured-clone': 1.3.0 jest-util: 30.0.5 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@30.0.5(@types/node@22.17.0): + jest@30.0.5(@types/node@22.17.1): dependencies: '@jest/core': 30.0.5 '@jest/types': 30.0.5 import-local: 3.2.0 - jest-cli: 30.0.5(@types/node@22.17.0) + jest-cli: 30.0.5(@types/node@22.17.1) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -7117,9 +7117,9 @@ snapshots: merge2@1.4.1: {} - meros@1.3.0(@types/node@22.17.0): + meros@1.3.0(@types/node@22.17.1): optionalDependencies: - '@types/node': 22.17.0 + '@types/node': 22.17.1 micromark-core-commonmark@2.0.3: dependencies: @@ -7917,12 +7917,12 @@ snapshots: ts-dedent@2.2.0: {} - ts-jest@29.4.1(@babel/core@7.27.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.0.5(@types/node@22.17.0))(typescript@5.9.2): + ts-jest@29.4.1(@babel/core@7.27.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.0.5(@types/node@22.17.1))(typescript@5.9.2): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 handlebars: 4.7.8 - jest: 30.0.5(@types/node@22.17.0) + jest: 30.0.5(@types/node@22.17.1) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -8047,13 +8047,13 @@ snapshots: value-or-promise@1.0.12: {} - vite-node@3.2.4(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1): + vite-node@3.2.4(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1): dependencies: cac: 6.7.14 debug: 4.4.1 es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 6.3.5(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - '@types/node' - jiti @@ -8068,7 +8068,7 @@ snapshots: - tsx - yaml - vite@6.3.5(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1): + vite@6.3.5(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1): dependencies: esbuild: 0.25.5 fdir: 6.4.6(picomatch@4.0.2) @@ -8077,16 +8077,16 @@ snapshots: rollup: 4.43.0 tinyglobby: 0.2.14 optionalDependencies: - '@types/node': 22.17.0 + '@types/node': 22.17.1 fsevents: 2.3.3 jiti: 2.4.0 yaml: 2.8.1 - vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1): + vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1): dependencies: '@types/chai': 5.2.2 '@vitest/expect': 3.2.4 - '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1)) '@vitest/pretty-format': 3.2.4 '@vitest/runner': 3.2.4 '@vitest/snapshot': 3.2.4 @@ -8104,12 +8104,12 @@ snapshots: tinyglobby: 0.2.14 tinypool: 1.1.1 tinyrainbow: 2.0.0 - vite: 6.3.5(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1) - vite-node: 3.2.4(@types/node@22.17.0)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1) + vite-node: 3.2.4(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1) why-is-node-running: 2.3.0 optionalDependencies: '@types/debug': 4.1.12 - '@types/node': 22.17.0 + '@types/node': 22.17.1 transitivePeerDependencies: - jiti - less From fdbfb7b8f88ee24544f2483fd4f1034b6ad52a0b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 9 Aug 2025 00:24:48 +0000 Subject: [PATCH 024/133] chore(deps): update dependency zod to v4.0.16 (#1208) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 4a1c1aa6..3f3ea82b 100644 --- a/package.json +++ b/package.json @@ -101,6 +101,6 @@ "valibot": "1.1.0", "vitest": "^3.0.0", "yup": "1.7.0", - "zod": "4.0.15" + "zod": "4.0.16" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d0ccf212..2b3ad836 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -76,8 +76,8 @@ importers: specifier: 1.7.0 version: 1.7.0 zod: - specifier: 4.0.15 - version: 4.0.15 + specifier: 4.0.16 + version: 4.0.16 packages: @@ -3812,8 +3812,8 @@ packages: yup@1.7.0: resolution: {integrity: sha512-VJce62dBd+JQvoc+fCVq+KZfPHr+hXaxCcVgotfwWvlR0Ja3ffYKaJBT8rptPOSKOGJDCUnW2C2JWpud7aRP6Q==} - zod@4.0.15: - resolution: {integrity: sha512-2IVHb9h4Mt6+UXkyMs0XbfICUh1eUrlJJAOupBHUhLRnKkruawyDddYRCs0Eizt900ntIMk9/4RksYl+FgSpcQ==} + zod@4.0.16: + resolution: {integrity: sha512-Djo/cM339grjI7/HmN+ixYO2FzEMcWr/On50UlQ/RjrWK1I/hPpWhpC76heCptnRFpH0LMwrEbUY50HDc0V8wg==} zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} @@ -8233,6 +8233,6 @@ snapshots: toposort: 2.0.2 type-fest: 2.19.0 - zod@4.0.15: {} + zod@4.0.16: {} zwitch@2.0.4: {} From 1d9f39af60bc9d9ef1efa88e285faf1e0c01d6d7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 9 Aug 2025 00:24:59 +0000 Subject: [PATCH 025/133] chore(deps): update dependency eslint to v9.33.0 (#1209) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 275 ++++++++++++++++++++++++++----------------------- 2 files changed, 147 insertions(+), 130 deletions(-) diff --git a/package.json b/package.json index 3f3ea82b..39bbe8db 100644 --- a/package.json +++ b/package.json @@ -91,7 +91,7 @@ "@tsconfig/recommended": "1.0.10", "@types/graphlib": "^2.1.8", "@types/node": "^22.0.0", - "eslint": "9.32.0", + "eslint": "9.33.0", "jest": "30.0.5", "myzod": "1.12.1", "npm-run-all2": "8.0.4", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2b3ad836..d25d6f19 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^5.0.0 - version: 5.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1)) + version: 5.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 5.0.7 version: 5.0.7(@types/node@22.17.1)(graphql@16.11.0)(typescript@5.9.2) @@ -46,8 +46,8 @@ importers: specifier: ^22.0.0 version: 22.17.1 eslint: - specifier: 9.32.0 - version: 9.32.0(jiti@2.4.0) + specifier: 9.33.0 + version: 9.33.0(jiti@2.4.0) jest: specifier: 30.0.5 version: 30.0.5(@types/node@22.17.1) @@ -543,20 +543,24 @@ packages: resolution: {integrity: sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/config-helpers@0.3.0': - resolution: {integrity: sha512-ViuymvFmcJi04qdZeDc2whTHryouGcDlaxPqarTD0ZE10ISpxGUVZGZDx4w01upyIynL3iu6IXH2bS1NhclQMw==} + '@eslint/config-helpers@0.3.1': + resolution: {integrity: sha512-xR93k9WhrDYpXHORXpxVL5oHj3Era7wo6k/Wd8/IsQNnZUTzkGS29lyn3nAT05v6ltUuTFVCCYDEGfy2Or/sPA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/core@0.15.1': resolution: {integrity: sha512-bkOp+iumZCCbt1K1CmWf0R9pM5yKpDv+ZXtvSyQpudrI9kuFLp+bM2WOPXImuD/ceQuaa8f5pj93Y7zyECIGNA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/core@0.15.2': + resolution: {integrity: sha512-78Md3/Rrxh83gCxoUc0EiciuOHsIITzLy53m3d9UyiW8y9Dj2D29FeETqyKA+BRK76tnTp6RXWb3pCay8Oyomg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/eslintrc@3.3.1': resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/js@9.32.0': - resolution: {integrity: sha512-BBpRFZK3eX6uMLKz8WxFOBIFFcGFJ/g8XuwjTHCqHROSIsopI+ddn/d5Cfh36+7+e5edVS8dbSHnBNhrLEX0zg==} + '@eslint/js@9.33.0': + resolution: {integrity: sha512-5K1/mKhWaMfreBGJTwval43JJmkip0RmM+3+IuqupeSKNC/Th2Kc7ucaq5ovTSra/OOKB9c58CGSz3QMVbWt0A==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/markdown@7.1.0': @@ -571,6 +575,10 @@ packages: resolution: {integrity: sha512-Ul5l+lHEcw3L5+k8POx6r74mxEYKG5kOb6Xpy2gCRW6zweT6TEhAf8vhxGgjhqrd/VO/Dirhsb+1hNpD1ue9hw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/plugin-kit@0.3.5': + resolution: {integrity: sha512-Z5kJ+wU3oA7MMIqVR9tyZRtjYPr4OC004Q4Rw7pgOKUOKkJfZ3O24nz3WYfGRpMDNmcOi3TwQOmgm7B7Tpii0w==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@graphql-codegen/add@5.0.3': resolution: {integrity: sha512-SxXPmramkth8XtBlAHu4H4jYcYXM/o3p01+psU+0NADQowA8jtYkK6MW5rV6T+CxkEaNZItfSmZRPgIuypcqnA==} peerDependencies: @@ -1973,8 +1981,8 @@ packages: resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - eslint@9.32.0: - resolution: {integrity: sha512-LSehfdpgMeWcTZkWZVIJl+tkZ2nuSkyyB9C27MZqFWXuph7DvaowgcTvKqxvpLW1JZIk8PN7hFY3Rj9LQ7m7lg==} + eslint@9.33.0: + resolution: {integrity: sha512-TS9bTNIryDzStCpJN93aC5VRSW3uTx9sClUn4B87pwiCaJh220otoI0X8mJKr+VcPtniMdN8GKjlwgWGUv5ZKA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true peerDependencies: @@ -3825,44 +3833,44 @@ snapshots: '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@5.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@5.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 - '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.32.0(jiti@2.4.0)) + '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.33.0(jiti@2.4.0)) '@eslint/markdown': 7.1.0 - '@stylistic/eslint-plugin': 5.2.2(eslint@9.32.0(jiti@2.4.0)) - '@typescript-eslint/eslint-plugin': 8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) - '@typescript-eslint/parser': 8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) - '@vitest/eslint-plugin': 1.3.4(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1)) + '@stylistic/eslint-plugin': 5.2.2(eslint@9.33.0(jiti@2.4.0)) + '@typescript-eslint/eslint-plugin': 8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/parser': 8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) + '@vitest/eslint-plugin': 1.3.4(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.1.0 cac: 6.7.14 - eslint: 9.32.0(jiti@2.4.0) - eslint-config-flat-gitignore: 2.1.0(eslint@9.32.0(jiti@2.4.0)) + eslint: 9.33.0(jiti@2.4.0) + eslint-config-flat-gitignore: 2.1.0(eslint@9.33.0(jiti@2.4.0)) eslint-flat-config-utils: 2.1.1 - eslint-merge-processors: 2.0.0(eslint@9.32.0(jiti@2.4.0)) - eslint-plugin-antfu: 3.1.1(eslint@9.32.0(jiti@2.4.0)) - eslint-plugin-command: 3.3.1(eslint@9.32.0(jiti@2.4.0)) - eslint-plugin-import-lite: 0.3.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) - eslint-plugin-jsdoc: 52.0.4(eslint@9.32.0(jiti@2.4.0)) - eslint-plugin-jsonc: 2.20.1(eslint@9.32.0(jiti@2.4.0)) - eslint-plugin-n: 17.21.3(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) + eslint-merge-processors: 2.0.0(eslint@9.33.0(jiti@2.4.0)) + eslint-plugin-antfu: 3.1.1(eslint@9.33.0(jiti@2.4.0)) + eslint-plugin-command: 3.3.1(eslint@9.33.0(jiti@2.4.0)) + eslint-plugin-import-lite: 0.3.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) + eslint-plugin-jsdoc: 52.0.4(eslint@9.33.0(jiti@2.4.0)) + eslint-plugin-jsonc: 2.20.1(eslint@9.33.0(jiti@2.4.0)) + eslint-plugin-n: 17.21.3(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) eslint-plugin-no-only-tests: 3.3.0 - eslint-plugin-perfectionist: 4.15.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) - eslint-plugin-pnpm: 1.1.0(eslint@9.32.0(jiti@2.4.0)) - eslint-plugin-regexp: 2.9.1(eslint@9.32.0(jiti@2.4.0)) - eslint-plugin-toml: 0.12.0(eslint@9.32.0(jiti@2.4.0)) - eslint-plugin-unicorn: 60.0.0(eslint@9.32.0(jiti@2.4.0)) - eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0)) - eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.32.0(jiti@2.4.0))) - eslint-plugin-yml: 1.18.0(eslint@9.32.0(jiti@2.4.0)) - eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0)) + eslint-plugin-perfectionist: 4.15.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) + eslint-plugin-pnpm: 1.1.0(eslint@9.33.0(jiti@2.4.0)) + eslint-plugin-regexp: 2.9.1(eslint@9.33.0(jiti@2.4.0)) + eslint-plugin-toml: 0.12.0(eslint@9.33.0(jiti@2.4.0)) + eslint-plugin-unicorn: 60.0.0(eslint@9.33.0(jiti@2.4.0)) + eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.33.0(jiti@2.4.0)) + eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.33.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.33.0(jiti@2.4.0))) + eslint-plugin-yml: 1.18.0(eslint@9.33.0(jiti@2.4.0)) + eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.33.0(jiti@2.4.0)) globals: 16.3.0 jsonc-eslint-parser: 2.4.0 local-pkg: 1.1.1 parse-gitignore: 2.0.0 toml-eslint-parser: 0.10.0 - vue-eslint-parser: 10.2.0(eslint@9.32.0(jiti@2.4.0)) + vue-eslint-parser: 10.2.0(eslint@9.33.0(jiti@2.4.0)) yaml-eslint-parser: 1.3.0 transitivePeerDependencies: - '@eslint/json' @@ -4235,22 +4243,22 @@ snapshots: '@esbuild/win32-x64@0.25.5': optional: true - '@eslint-community/eslint-plugin-eslint-comments@4.5.0(eslint@9.32.0(jiti@2.4.0))': + '@eslint-community/eslint-plugin-eslint-comments@4.5.0(eslint@9.33.0(jiti@2.4.0))': dependencies: escape-string-regexp: 4.0.0 - eslint: 9.32.0(jiti@2.4.0) + eslint: 9.33.0(jiti@2.4.0) ignore: 5.3.2 - '@eslint-community/eslint-utils@4.7.0(eslint@9.32.0(jiti@2.4.0))': + '@eslint-community/eslint-utils@4.7.0(eslint@9.33.0(jiti@2.4.0))': dependencies: - eslint: 9.32.0(jiti@2.4.0) + eslint: 9.33.0(jiti@2.4.0) eslint-visitor-keys: 3.4.3 '@eslint-community/regexpp@4.12.1': {} - '@eslint/compat@1.3.1(eslint@9.32.0(jiti@2.4.0))': + '@eslint/compat@1.3.1(eslint@9.33.0(jiti@2.4.0))': optionalDependencies: - eslint: 9.32.0(jiti@2.4.0) + eslint: 9.33.0(jiti@2.4.0) '@eslint/config-array@0.21.0': dependencies: @@ -4260,12 +4268,16 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/config-helpers@0.3.0': {} + '@eslint/config-helpers@0.3.1': {} '@eslint/core@0.15.1': dependencies: '@types/json-schema': 7.0.15 + '@eslint/core@0.15.2': + dependencies: + '@types/json-schema': 7.0.15 + '@eslint/eslintrc@3.3.1': dependencies: ajv: 6.12.6 @@ -4280,7 +4292,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/js@9.32.0': {} + '@eslint/js@9.33.0': {} '@eslint/markdown@7.1.0': dependencies: @@ -4302,6 +4314,11 @@ snapshots: '@eslint/core': 0.15.1 levn: 0.4.1 + '@eslint/plugin-kit@0.3.5': + dependencies: + '@eslint/core': 0.15.2 + levn: 0.4.1 + '@graphql-codegen/add@5.0.3(graphql@16.11.0)': dependencies: '@graphql-codegen/plugin-helpers': 5.1.1(graphql@16.11.0) @@ -5051,11 +5068,11 @@ snapshots: dependencies: '@sinonjs/commons': 3.0.1 - '@stylistic/eslint-plugin@5.2.2(eslint@9.32.0(jiti@2.4.0))': + '@stylistic/eslint-plugin@5.2.2(eslint@9.33.0(jiti@2.4.0))': dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.4.0)) '@typescript-eslint/types': 8.39.0 - eslint: 9.32.0(jiti@2.4.0) + eslint: 9.33.0(jiti@2.4.0) eslint-visitor-keys: 4.2.1 espree: 10.4.0 estraverse: 5.3.0 @@ -5143,15 +5160,15 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/eslint-plugin@8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/parser': 8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) '@typescript-eslint/scope-manager': 8.39.0 - '@typescript-eslint/type-utils': 8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) - '@typescript-eslint/utils': 8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/type-utils': 8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/utils': 8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) '@typescript-eslint/visitor-keys': 8.39.0 - eslint: 9.32.0(jiti@2.4.0) + eslint: 9.33.0(jiti@2.4.0) graphemer: 1.4.0 ignore: 7.0.5 natural-compare: 1.4.0 @@ -5160,14 +5177,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/parser@8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: '@typescript-eslint/scope-manager': 8.39.0 '@typescript-eslint/types': 8.39.0 '@typescript-eslint/typescript-estree': 8.39.0(typescript@5.9.2) '@typescript-eslint/visitor-keys': 8.39.0 debug: 4.4.1 - eslint: 9.32.0(jiti@2.4.0) + eslint: 9.33.0(jiti@2.4.0) typescript: 5.9.2 transitivePeerDependencies: - supports-color @@ -5190,13 +5207,13 @@ snapshots: dependencies: typescript: 5.9.2 - '@typescript-eslint/type-utils@8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/type-utils@8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: '@typescript-eslint/types': 8.39.0 '@typescript-eslint/typescript-estree': 8.39.0(typescript@5.9.2) - '@typescript-eslint/utils': 8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/utils': 8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) debug: 4.4.1 - eslint: 9.32.0(jiti@2.4.0) + eslint: 9.33.0(jiti@2.4.0) ts-api-utils: 2.1.0(typescript@5.9.2) typescript: 5.9.2 transitivePeerDependencies: @@ -5220,13 +5237,13 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/utils@8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.4.0)) '@typescript-eslint/scope-manager': 8.39.0 '@typescript-eslint/types': 8.39.0 '@typescript-eslint/typescript-estree': 8.39.0(typescript@5.9.2) - eslint: 9.32.0(jiti@2.4.0) + eslint: 9.33.0(jiti@2.4.0) typescript: 5.9.2 transitivePeerDependencies: - supports-color @@ -5291,10 +5308,10 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.4(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.3.4(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: - '@typescript-eslint/utils': 8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) - eslint: 9.32.0(jiti@2.4.0) + '@typescript-eslint/utils': 8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) + eslint: 9.33.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.2 vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1) @@ -5839,67 +5856,67 @@ snapshots: escape-string-regexp@5.0.0: {} - eslint-compat-utils@0.5.1(eslint@9.32.0(jiti@2.4.0)): + eslint-compat-utils@0.5.1(eslint@9.33.0(jiti@2.4.0)): dependencies: - eslint: 9.32.0(jiti@2.4.0) + eslint: 9.33.0(jiti@2.4.0) semver: 7.7.2 - eslint-compat-utils@0.6.5(eslint@9.32.0(jiti@2.4.0)): + eslint-compat-utils@0.6.5(eslint@9.33.0(jiti@2.4.0)): dependencies: - eslint: 9.32.0(jiti@2.4.0) + eslint: 9.33.0(jiti@2.4.0) semver: 7.7.2 - eslint-config-flat-gitignore@2.1.0(eslint@9.32.0(jiti@2.4.0)): + eslint-config-flat-gitignore@2.1.0(eslint@9.33.0(jiti@2.4.0)): dependencies: - '@eslint/compat': 1.3.1(eslint@9.32.0(jiti@2.4.0)) - eslint: 9.32.0(jiti@2.4.0) + '@eslint/compat': 1.3.1(eslint@9.33.0(jiti@2.4.0)) + eslint: 9.33.0(jiti@2.4.0) eslint-flat-config-utils@2.1.1: dependencies: pathe: 2.0.3 - eslint-json-compat-utils@0.2.1(eslint@9.32.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0): + eslint-json-compat-utils@0.2.1(eslint@9.33.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0): dependencies: - eslint: 9.32.0(jiti@2.4.0) + eslint: 9.33.0(jiti@2.4.0) esquery: 1.6.0 jsonc-eslint-parser: 2.4.0 - eslint-merge-processors@2.0.0(eslint@9.32.0(jiti@2.4.0)): + eslint-merge-processors@2.0.0(eslint@9.33.0(jiti@2.4.0)): dependencies: - eslint: 9.32.0(jiti@2.4.0) + eslint: 9.33.0(jiti@2.4.0) - eslint-plugin-antfu@3.1.1(eslint@9.32.0(jiti@2.4.0)): + eslint-plugin-antfu@3.1.1(eslint@9.33.0(jiti@2.4.0)): dependencies: - eslint: 9.32.0(jiti@2.4.0) + eslint: 9.33.0(jiti@2.4.0) - eslint-plugin-command@3.3.1(eslint@9.32.0(jiti@2.4.0)): + eslint-plugin-command@3.3.1(eslint@9.33.0(jiti@2.4.0)): dependencies: '@es-joy/jsdoccomment': 0.50.2 - eslint: 9.32.0(jiti@2.4.0) + eslint: 9.33.0(jiti@2.4.0) - eslint-plugin-es-x@7.8.0(eslint@9.32.0(jiti@2.4.0)): + eslint-plugin-es-x@7.8.0(eslint@9.33.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.1 - eslint: 9.32.0(jiti@2.4.0) - eslint-compat-utils: 0.5.1(eslint@9.32.0(jiti@2.4.0)) + eslint: 9.33.0(jiti@2.4.0) + eslint-compat-utils: 0.5.1(eslint@9.33.0(jiti@2.4.0)) - eslint-plugin-import-lite@0.3.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2): + eslint-plugin-import-lite@0.3.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.4.0)) '@typescript-eslint/types': 8.39.0 - eslint: 9.32.0(jiti@2.4.0) + eslint: 9.33.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.2 - eslint-plugin-jsdoc@52.0.4(eslint@9.32.0(jiti@2.4.0)): + eslint-plugin-jsdoc@52.0.4(eslint@9.33.0(jiti@2.4.0)): dependencies: '@es-joy/jsdoccomment': 0.52.0 are-docs-informative: 0.0.2 comment-parser: 1.4.1 debug: 4.4.1 escape-string-regexp: 4.0.0 - eslint: 9.32.0(jiti@2.4.0) + eslint: 9.33.0(jiti@2.4.0) espree: 10.4.0 esquery: 1.6.0 parse-imports-exports: 0.2.4 @@ -5908,12 +5925,12 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-jsonc@2.20.1(eslint@9.32.0(jiti@2.4.0)): + eslint-plugin-jsonc@2.20.1(eslint@9.33.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) - eslint: 9.32.0(jiti@2.4.0) - eslint-compat-utils: 0.6.5(eslint@9.32.0(jiti@2.4.0)) - eslint-json-compat-utils: 0.2.1(eslint@9.32.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.4.0)) + eslint: 9.33.0(jiti@2.4.0) + eslint-compat-utils: 0.6.5(eslint@9.33.0(jiti@2.4.0)) + eslint-json-compat-utils: 0.2.1(eslint@9.33.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0) espree: 10.4.0 graphemer: 1.4.0 jsonc-eslint-parser: 2.4.0 @@ -5922,12 +5939,12 @@ snapshots: transitivePeerDependencies: - '@eslint/json' - eslint-plugin-n@17.21.3(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2): + eslint-plugin-n@17.21.3(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.4.0)) enhanced-resolve: 5.18.2 - eslint: 9.32.0(jiti@2.4.0) - eslint-plugin-es-x: 7.8.0(eslint@9.32.0(jiti@2.4.0)) + eslint: 9.33.0(jiti@2.4.0) + eslint-plugin-es-x: 7.8.0(eslint@9.33.0(jiti@2.4.0)) get-tsconfig: 4.10.1 globals: 15.15.0 globrex: 0.1.2 @@ -5939,19 +5956,19 @@ snapshots: eslint-plugin-no-only-tests@3.3.0: {} - eslint-plugin-perfectionist@4.15.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2): + eslint-plugin-perfectionist@4.15.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2): dependencies: '@typescript-eslint/types': 8.39.0 - '@typescript-eslint/utils': 8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) - eslint: 9.32.0(jiti@2.4.0) + '@typescript-eslint/utils': 8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) + eslint: 9.33.0(jiti@2.4.0) natural-orderby: 5.0.0 transitivePeerDependencies: - supports-color - typescript - eslint-plugin-pnpm@1.1.0(eslint@9.32.0(jiti@2.4.0)): + eslint-plugin-pnpm@1.1.0(eslint@9.33.0(jiti@2.4.0)): dependencies: - eslint: 9.32.0(jiti@2.4.0) + eslint: 9.33.0(jiti@2.4.0) find-up-simple: 1.0.1 jsonc-eslint-parser: 2.4.0 pathe: 2.0.3 @@ -5959,37 +5976,37 @@ snapshots: tinyglobby: 0.2.14 yaml-eslint-parser: 1.3.0 - eslint-plugin-regexp@2.9.1(eslint@9.32.0(jiti@2.4.0)): + eslint-plugin-regexp@2.9.1(eslint@9.33.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.1 comment-parser: 1.4.1 - eslint: 9.32.0(jiti@2.4.0) + eslint: 9.33.0(jiti@2.4.0) jsdoc-type-pratt-parser: 4.1.0 refa: 0.12.1 regexp-ast-analysis: 0.7.1 scslre: 0.3.0 - eslint-plugin-toml@0.12.0(eslint@9.32.0(jiti@2.4.0)): + eslint-plugin-toml@0.12.0(eslint@9.33.0(jiti@2.4.0)): dependencies: debug: 4.4.1 - eslint: 9.32.0(jiti@2.4.0) - eslint-compat-utils: 0.6.5(eslint@9.32.0(jiti@2.4.0)) + eslint: 9.33.0(jiti@2.4.0) + eslint-compat-utils: 0.6.5(eslint@9.33.0(jiti@2.4.0)) lodash: 4.17.21 toml-eslint-parser: 0.10.0 transitivePeerDependencies: - supports-color - eslint-plugin-unicorn@60.0.0(eslint@9.32.0(jiti@2.4.0)): + eslint-plugin-unicorn@60.0.0(eslint@9.33.0(jiti@2.4.0)): dependencies: '@babel/helper-validator-identifier': 7.27.1 - '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.4.0)) '@eslint/plugin-kit': 0.3.4 change-case: 5.4.4 ci-info: 4.3.0 clean-regexp: 1.0.0 core-js-compat: 3.45.0 - eslint: 9.32.0(jiti@2.4.0) + eslint: 9.33.0(jiti@2.4.0) esquery: 1.6.0 find-up-simple: 1.0.1 globals: 16.3.0 @@ -6002,40 +6019,40 @@ snapshots: semver: 7.7.2 strip-indent: 4.0.0 - eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0)): + eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.33.0(jiti@2.4.0)): dependencies: - eslint: 9.32.0(jiti@2.4.0) + eslint: 9.33.0(jiti@2.4.0) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/eslint-plugin': 8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) - eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.32.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.32.0(jiti@2.4.0))): + eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.33.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.33.0(jiti@2.4.0))): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) - eslint: 9.32.0(jiti@2.4.0) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.4.0)) + eslint: 9.33.0(jiti@2.4.0) natural-compare: 1.4.0 nth-check: 2.1.1 postcss-selector-parser: 6.1.2 semver: 7.7.2 - vue-eslint-parser: 10.2.0(eslint@9.32.0(jiti@2.4.0)) + vue-eslint-parser: 10.2.0(eslint@9.33.0(jiti@2.4.0)) xml-name-validator: 4.0.0 optionalDependencies: - '@typescript-eslint/parser': 8.39.0(eslint@9.32.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/parser': 8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) - eslint-plugin-yml@1.18.0(eslint@9.32.0(jiti@2.4.0)): + eslint-plugin-yml@1.18.0(eslint@9.33.0(jiti@2.4.0)): dependencies: debug: 4.4.1 escape-string-regexp: 4.0.0 - eslint: 9.32.0(jiti@2.4.0) - eslint-compat-utils: 0.6.5(eslint@9.32.0(jiti@2.4.0)) + eslint: 9.33.0(jiti@2.4.0) + eslint-compat-utils: 0.6.5(eslint@9.33.0(jiti@2.4.0)) natural-compare: 1.4.0 yaml-eslint-parser: 1.3.0 transitivePeerDependencies: - supports-color - eslint-processor-vue-blocks@2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.32.0(jiti@2.4.0)): + eslint-processor-vue-blocks@2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.33.0(jiti@2.4.0)): dependencies: '@vue/compiler-sfc': 3.5.12 - eslint: 9.32.0(jiti@2.4.0) + eslint: 9.33.0(jiti@2.4.0) eslint-scope@8.4.0: dependencies: @@ -6046,16 +6063,16 @@ snapshots: eslint-visitor-keys@4.2.1: {} - eslint@9.32.0(jiti@2.4.0): + eslint@9.33.0(jiti@2.4.0): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.1 '@eslint/config-array': 0.21.0 - '@eslint/config-helpers': 0.3.0 - '@eslint/core': 0.15.1 + '@eslint/config-helpers': 0.3.1 + '@eslint/core': 0.15.2 '@eslint/eslintrc': 3.3.1 - '@eslint/js': 9.32.0 - '@eslint/plugin-kit': 0.3.4 + '@eslint/js': 9.33.0 + '@eslint/plugin-kit': 0.3.5 '@humanfs/node': 0.16.6 '@humanwhocodes/module-importer': 1.0.1 '@humanwhocodes/retry': 0.4.2 @@ -8124,10 +8141,10 @@ snapshots: - tsx - yaml - vue-eslint-parser@10.2.0(eslint@9.32.0(jiti@2.4.0)): + vue-eslint-parser@10.2.0(eslint@9.33.0(jiti@2.4.0)): dependencies: debug: 4.4.1 - eslint: 9.32.0(jiti@2.4.0) + eslint: 9.33.0(jiti@2.4.0) eslint-scope: 8.4.0 eslint-visitor-keys: 4.2.1 espree: 10.4.0 From f94999ab49668a242eb33a9af60ad95ea47df102 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 9 Aug 2025 20:47:00 +0000 Subject: [PATCH 026/133] chore(deps): update dependency zod to v4.0.17 (#1210) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 39bbe8db..864773c1 100644 --- a/package.json +++ b/package.json @@ -101,6 +101,6 @@ "valibot": "1.1.0", "vitest": "^3.0.0", "yup": "1.7.0", - "zod": "4.0.16" + "zod": "4.0.17" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d25d6f19..3bbe4b17 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -76,8 +76,8 @@ importers: specifier: 1.7.0 version: 1.7.0 zod: - specifier: 4.0.16 - version: 4.0.16 + specifier: 4.0.17 + version: 4.0.17 packages: @@ -3820,8 +3820,8 @@ packages: yup@1.7.0: resolution: {integrity: sha512-VJce62dBd+JQvoc+fCVq+KZfPHr+hXaxCcVgotfwWvlR0Ja3ffYKaJBT8rptPOSKOGJDCUnW2C2JWpud7aRP6Q==} - zod@4.0.16: - resolution: {integrity: sha512-Djo/cM339grjI7/HmN+ixYO2FzEMcWr/On50UlQ/RjrWK1I/hPpWhpC76heCptnRFpH0LMwrEbUY50HDc0V8wg==} + zod@4.0.17: + resolution: {integrity: sha512-1PHjlYRevNxxdy2JZ8JcNAw7rX8V9P1AKkP+x/xZfxB0K5FYfuV+Ug6P/6NVSR2jHQ+FzDDoDHS04nYUsOIyLQ==} zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} @@ -8250,6 +8250,6 @@ snapshots: toposort: 2.0.2 type-fest: 2.19.0 - zod@4.0.16: {} + zod@4.0.17: {} zwitch@2.0.4: {} From 61bb90bfb3771cc47fafaf01a515f1ba1c2590e3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 11 Aug 2025 09:26:36 +0000 Subject: [PATCH 027/133] chore(deps): update dependency @antfu/eslint-config to v5.2.1 (#1211) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 103 +++++++++++++++++++++---------------------------- 1 file changed, 43 insertions(+), 60 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3bbe4b17..35dafd63 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^5.0.0 - version: 5.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1)) + version: 5.2.1(@vue/compiler-sfc@3.5.12)(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 5.0.7 version: 5.0.7(@types/node@22.17.1)(graphql@16.11.0)(typescript@5.9.2) @@ -85,8 +85,8 @@ packages: resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - '@antfu/eslint-config@5.2.0': - resolution: {integrity: sha512-qAf+Ja5COyF0414kUxY/BfyqyLaWrf1YTwUqMuUASPltugDc25t7OCQYNt1p/QilmVocCpsL1dUJWkehemidOA==} + '@antfu/eslint-config@5.2.1': + resolution: {integrity: sha512-EG/5kwDci1PFKSwAPMEMHDA/VYJFn0TAqwXLdnmE7zuFcaug3EGih7UOWmapMfL59Hqq6jbomaUHN31aVnL8NA==} hasBin: true peerDependencies: '@eslint-react/eslint-plugin': ^1.38.4 @@ -530,8 +530,8 @@ packages: resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - '@eslint/compat@1.3.1': - resolution: {integrity: sha512-k8MHony59I5EPic6EQTCNOuPoVBnoYXkP+20xvwFjN7t0qI3ImyvyBgg+hIVPwC8JaxVjjUZld+cLfBLFDLucg==} + '@eslint/compat@1.3.2': + resolution: {integrity: sha512-jRNwzTbd6p2Rw4sZ1CgWRS8YMtqG15YyZf7zvb6gY2rB2u6n+2Z+ELW0GtL0fQgyl0pr4Y/BzBfng/BdsereRA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.40 || 9 @@ -547,10 +547,6 @@ packages: resolution: {integrity: sha512-xR93k9WhrDYpXHORXpxVL5oHj3Era7wo6k/Wd8/IsQNnZUTzkGS29lyn3nAT05v6ltUuTFVCCYDEGfy2Or/sPA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/core@0.15.1': - resolution: {integrity: sha512-bkOp+iumZCCbt1K1CmWf0R9pM5yKpDv+ZXtvSyQpudrI9kuFLp+bM2WOPXImuD/ceQuaa8f5pj93Y7zyECIGNA==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/core@0.15.2': resolution: {integrity: sha512-78Md3/Rrxh83gCxoUc0EiciuOHsIITzLy53m3d9UyiW8y9Dj2D29FeETqyKA+BRK76tnTp6RXWb3pCay8Oyomg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -571,10 +567,6 @@ packages: resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/plugin-kit@0.3.4': - resolution: {integrity: sha512-Ul5l+lHEcw3L5+k8POx6r74mxEYKG5kOb6Xpy2gCRW6zweT6TEhAf8vhxGgjhqrd/VO/Dirhsb+1hNpD1ue9hw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/plugin-kit@0.3.5': resolution: {integrity: sha512-Z5kJ+wU3oA7MMIqVR9tyZRtjYPr4OC004Q4Rw7pgOKUOKkJfZ3O24nz3WYfGRpMDNmcOi3TwQOmgm7B7Tpii0w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -1078,8 +1070,8 @@ packages: '@sinonjs/fake-timers@13.0.5': resolution: {integrity: sha512-36/hTbH2uaWuGVERyC6da9YwGWnzUZXuPro/F2LfsdOsLnCojz/iSH8MxUt/FD2S5XBSVPhmArFUXcpCQ2Hkiw==} - '@stylistic/eslint-plugin@5.2.2': - resolution: {integrity: sha512-bE2DUjruqXlHYP3Q2Gpqiuj2bHq7/88FnuaS0FjeGGLCy+X6a07bGVuwtiOYnPSLHR6jmx5Bwdv+j7l8H+G97A==} + '@stylistic/eslint-plugin@5.2.3': + resolution: {integrity: sha512-oY7GVkJGVMI5benlBDCaRrSC1qPasafyv5dOBLLv5MTilMGnErKhO6ziEfodDDIZbo5QxPUNW360VudJOFODMw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: '>=9.0.0' @@ -1503,8 +1495,8 @@ packages: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} - browserslist@4.25.1: - resolution: {integrity: sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==} + browserslist@4.25.2: + resolution: {integrity: sha512-0si2SJK3ooGzIawRu61ZdPCO1IncZwS8IzuX73sPZsXW6EQ/w/DAfPyKI8l1ETTCr2MnvqWitmlCUxgdul45jA==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true @@ -1548,8 +1540,8 @@ packages: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} - caniuse-lite@1.0.30001731: - resolution: {integrity: sha512-lDdp2/wrOmTRWuoB5DpfNkC0rJDU8DqRa6nYL6HK6sytw70QMopt/NIc/9SM7ylItlBWfACXk0tEn37UWM/+mg==} + caniuse-lite@1.0.30001734: + resolution: {integrity: sha512-uhE1Ye5vgqju6OI71HTQqcBCZrvHugk0MjLak7Q+HfoBgoq5Bi+5YnwjP4fjDgrtYr/l8MVRBvzz9dPD4KyK0A==} capital-case@1.0.4: resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} @@ -1772,8 +1764,8 @@ packages: eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - electron-to-chromium@1.5.197: - resolution: {integrity: sha512-m1xWB3g7vJ6asIFz+2pBUbq3uGmfmln1M9SSvBe4QIFWYrRHylP73zL/3nMjDmwz8V+1xAXQDfBd6+HPW0WvDQ==} + electron-to-chromium@1.5.199: + resolution: {integrity: sha512-3gl0S7zQd88kCAZRO/DnxtBKuhMO4h0EaQIN3YgZfV6+pW+5+bf2AdQeHNESCoaQqo/gjGVYEf2YM4O5HJQqpQ==} emittery@0.13.1: resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} @@ -1785,8 +1777,8 @@ packages: emoji-regex@9.2.2: resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} - enhanced-resolve@5.18.2: - resolution: {integrity: sha512-6Jw4sE1maoRJo3q8MsSIn2onJFbLTOjY9hlx4DZXmOKvLRd1Ok2kXmAGXaafL2+ijsJZ1ClYbl/pmqr9+k4iUQ==} + enhanced-resolve@5.18.3: + resolution: {integrity: sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==} engines: {node: '>=10.13.0'} entities@4.5.0: @@ -1919,8 +1911,8 @@ packages: peerDependencies: eslint: ^9.0.0 - eslint-plugin-regexp@2.9.1: - resolution: {integrity: sha512-JwK6glV/aoYDxvXcrvMQbw/pByBewZwqXVSBzzjot3GxSbmjDYuWU4LWiLdBO8JKi4o8A1+rygO6JWRBg4qAQQ==} + eslint-plugin-regexp@2.10.0: + resolution: {integrity: sha512-ovzQT8ESVn5oOe5a7gIDPD5v9bCSjIFJu57sVPDqgPRXicQzOnYfFN21WoQBQF18vrhT5o7UMKFwJQVVjyJ0ng==} engines: {node: ^18 || >=20} peerDependencies: eslint: '>=8.44.0' @@ -3332,8 +3324,8 @@ packages: spdx-expression-parse@4.0.0: resolution: {integrity: sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==} - spdx-license-ids@3.0.21: - resolution: {integrity: sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg==} + spdx-license-ids@3.0.22: + resolution: {integrity: sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==} sponge-case@1.0.1: resolution: {integrity: sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA==} @@ -3833,13 +3825,13 @@ snapshots: '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@5.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@5.2.1(@vue/compiler-sfc@3.5.12)(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.33.0(jiti@2.4.0)) '@eslint/markdown': 7.1.0 - '@stylistic/eslint-plugin': 5.2.2(eslint@9.33.0(jiti@2.4.0)) + '@stylistic/eslint-plugin': 5.2.3(eslint@9.33.0(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) '@typescript-eslint/parser': 8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) '@vitest/eslint-plugin': 1.3.4(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1)) @@ -3858,7 +3850,7 @@ snapshots: eslint-plugin-no-only-tests: 3.3.0 eslint-plugin-perfectionist: 4.15.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) eslint-plugin-pnpm: 1.1.0(eslint@9.33.0(jiti@2.4.0)) - eslint-plugin-regexp: 2.9.1(eslint@9.33.0(jiti@2.4.0)) + eslint-plugin-regexp: 2.10.0(eslint@9.33.0(jiti@2.4.0)) eslint-plugin-toml: 0.12.0(eslint@9.33.0(jiti@2.4.0)) eslint-plugin-unicorn: 60.0.0(eslint@9.33.0(jiti@2.4.0)) eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.33.0(jiti@2.4.0)) @@ -3954,7 +3946,7 @@ snapshots: dependencies: '@babel/compat-data': 7.27.5 '@babel/helper-validator-option': 7.27.1 - browserslist: 4.25.1 + browserslist: 4.25.2 lru-cache: 5.1.1 semver: 6.3.1 @@ -4256,7 +4248,7 @@ snapshots: '@eslint-community/regexpp@4.12.1': {} - '@eslint/compat@1.3.1(eslint@9.33.0(jiti@2.4.0))': + '@eslint/compat@1.3.2(eslint@9.33.0(jiti@2.4.0))': optionalDependencies: eslint: 9.33.0(jiti@2.4.0) @@ -4270,10 +4262,6 @@ snapshots: '@eslint/config-helpers@0.3.1': {} - '@eslint/core@0.15.1': - dependencies: - '@types/json-schema': 7.0.15 - '@eslint/core@0.15.2': dependencies: '@types/json-schema': 7.0.15 @@ -4296,8 +4284,8 @@ snapshots: '@eslint/markdown@7.1.0': dependencies: - '@eslint/core': 0.15.1 - '@eslint/plugin-kit': 0.3.4 + '@eslint/core': 0.15.2 + '@eslint/plugin-kit': 0.3.5 github-slugger: 2.0.0 mdast-util-from-markdown: 2.0.2 mdast-util-frontmatter: 2.0.1 @@ -4309,11 +4297,6 @@ snapshots: '@eslint/object-schema@2.1.6': {} - '@eslint/plugin-kit@0.3.4': - dependencies: - '@eslint/core': 0.15.1 - levn: 0.4.1 - '@eslint/plugin-kit@0.3.5': dependencies: '@eslint/core': 0.15.2 @@ -5068,7 +5051,7 @@ snapshots: dependencies: '@sinonjs/commons': 3.0.1 - '@stylistic/eslint-plugin@5.2.2(eslint@9.33.0(jiti@2.4.0))': + '@stylistic/eslint-plugin@5.2.3(eslint@9.33.0(jiti@2.4.0))': dependencies: '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.4.0)) '@typescript-eslint/types': 8.39.0 @@ -5552,12 +5535,12 @@ snapshots: dependencies: fill-range: 7.1.1 - browserslist@4.25.1: + browserslist@4.25.2: dependencies: - caniuse-lite: 1.0.30001731 - electron-to-chromium: 1.5.197 + caniuse-lite: 1.0.30001734 + electron-to-chromium: 1.5.199 node-releases: 2.0.19 - update-browserslist-db: 1.1.3(browserslist@4.25.1) + update-browserslist-db: 1.1.3(browserslist@4.25.2) bs-logger@0.2.6: dependencies: @@ -5593,7 +5576,7 @@ snapshots: camelcase@6.3.0: {} - caniuse-lite@1.0.30001731: {} + caniuse-lite@1.0.30001734: {} capital-case@1.0.4: dependencies: @@ -5717,7 +5700,7 @@ snapshots: core-js-compat@3.45.0: dependencies: - browserslist: 4.25.1 + browserslist: 4.25.2 cosmiconfig@8.3.6(typescript@5.9.2): dependencies: @@ -5797,7 +5780,7 @@ snapshots: eastasianwidth@0.2.0: {} - electron-to-chromium@1.5.197: {} + electron-to-chromium@1.5.199: {} emittery@0.13.1: {} @@ -5805,7 +5788,7 @@ snapshots: emoji-regex@9.2.2: {} - enhanced-resolve@5.18.2: + enhanced-resolve@5.18.3: dependencies: graceful-fs: 4.2.11 tapable: 2.2.2 @@ -5868,7 +5851,7 @@ snapshots: eslint-config-flat-gitignore@2.1.0(eslint@9.33.0(jiti@2.4.0)): dependencies: - '@eslint/compat': 1.3.1(eslint@9.33.0(jiti@2.4.0)) + '@eslint/compat': 1.3.2(eslint@9.33.0(jiti@2.4.0)) eslint: 9.33.0(jiti@2.4.0) eslint-flat-config-utils@2.1.1: @@ -5942,7 +5925,7 @@ snapshots: eslint-plugin-n@17.21.3(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2): dependencies: '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.4.0)) - enhanced-resolve: 5.18.2 + enhanced-resolve: 5.18.3 eslint: 9.33.0(jiti@2.4.0) eslint-plugin-es-x: 7.8.0(eslint@9.33.0(jiti@2.4.0)) get-tsconfig: 4.10.1 @@ -5976,7 +5959,7 @@ snapshots: tinyglobby: 0.2.14 yaml-eslint-parser: 1.3.0 - eslint-plugin-regexp@2.9.1(eslint@9.33.0(jiti@2.4.0)): + eslint-plugin-regexp@2.10.0(eslint@9.33.0(jiti@2.4.0)): dependencies: '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.1 @@ -6001,7 +5984,7 @@ snapshots: dependencies: '@babel/helper-validator-identifier': 7.27.1 '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.4.0)) - '@eslint/plugin-kit': 0.3.4 + '@eslint/plugin-kit': 0.3.5 change-case: 5.4.4 ci-info: 4.3.0 clean-regexp: 1.0.0 @@ -7787,9 +7770,9 @@ snapshots: spdx-expression-parse@4.0.0: dependencies: spdx-exceptions: 2.5.0 - spdx-license-ids: 3.0.21 + spdx-license-ids: 3.0.22 - spdx-license-ids@3.0.21: {} + spdx-license-ids@3.0.22: {} sponge-case@1.0.1: dependencies: @@ -8030,9 +8013,9 @@ snapshots: '@unrs/resolver-binding-win32-ia32-msvc': 1.7.13 '@unrs/resolver-binding-win32-x64-msvc': 1.7.13 - update-browserslist-db@1.1.3(browserslist@4.25.1): + update-browserslist-db@1.1.3(browserslist@4.25.2): dependencies: - browserslist: 4.25.1 + browserslist: 4.25.2 escalade: 3.2.0 picocolors: 1.1.1 From b6b1c94d0231f6e6f58a9778068721c0543df4ca Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 15 Aug 2025 09:52:54 +0000 Subject: [PATCH 028/133] chore(deps): update dependency @types/node to v22.17.2 (#1212) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 156 +++++++++++++++++++++++++++---------------------- 1 file changed, 87 insertions(+), 69 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 35dafd63..e53c43b1 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,10 +29,10 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^5.0.0 - version: 5.2.1(@vue/compiler-sfc@3.5.12)(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1)) + version: 5.2.1(@vue/compiler-sfc@3.5.12)(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 5.0.7 - version: 5.0.7(@types/node@22.17.1)(graphql@16.11.0)(typescript@5.9.2) + version: 5.0.7(@types/node@22.17.2)(graphql@16.11.0)(typescript@5.9.2) '@graphql-codegen/typescript': specifier: ^4.0.0 version: 4.1.6(graphql@16.11.0) @@ -44,13 +44,13 @@ importers: version: 2.1.12 '@types/node': specifier: ^22.0.0 - version: 22.17.1 + version: 22.17.2 eslint: specifier: 9.33.0 version: 9.33.0(jiti@2.4.0) jest: specifier: 30.0.5 - version: 30.0.5(@types/node@22.17.1) + version: 30.0.5(@types/node@22.17.2) myzod: specifier: 1.12.1 version: 1.12.1 @@ -62,7 +62,7 @@ importers: version: 2.2.0 ts-jest: specifier: 29.4.1 - version: 29.4.1(@babel/core@7.27.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.0.5(@types/node@22.17.1))(typescript@5.9.2) + version: 29.4.1(@babel/core@7.27.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.0.5(@types/node@22.17.2))(typescript@5.9.2) typescript: specifier: 5.9.2 version: 5.9.2 @@ -71,7 +71,7 @@ importers: version: 1.1.0(typescript@5.9.2) vitest: specifier: ^3.0.0 - version: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.0 version: 1.7.0 @@ -217,6 +217,11 @@ packages: engines: {node: '>=6.0.0'} hasBin: true + '@babel/parser@7.28.3': + resolution: {integrity: sha512-7+Ey1mAgYqFAx2h0RuoxcQT5+MlG3GTV0TQrgr7/ZliKsm/MNDxVVutlWaziMq7wJNAz8MTqz55XLpWvva6StA==} + engines: {node: '>=6.0.0'} + hasBin: true + '@babel/plugin-syntax-async-generators@7.8.4': resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: @@ -338,6 +343,10 @@ packages: resolution: {integrity: sha512-x0LvFTekgSX+83TI28Y9wYPUfzrnl2aT5+5QLnO6v7mSJYtEEevuDRN0F0uSHRk1G1IWZC43o00Y0xDDrpBGPQ==} engines: {node: '>=6.9.0'} + '@babel/types@7.28.2': + resolution: {integrity: sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==} + engines: {node: '>=6.9.0'} + '@bcoe/v8-coverage@0.2.3': resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} @@ -1133,8 +1142,8 @@ packages: '@types/ms@2.1.0': resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} - '@types/node@22.17.1': - resolution: {integrity: sha512-y3tBaz+rjspDTylNjAX37jEC3TETEFGNJL6uQDxwF9/8GLLIjW1rvVHlynyuUKMnMr1Roq8jOv3vkopBjC4/VA==} + '@types/node@22.17.2': + resolution: {integrity: sha512-gL6z5N9Jm9mhY+U2KXZpteb+09zyffliRkZyZOHODGATyC5B1Jt/7TzuuiLkFsSUMLbS1OLmlj/E+/3KF4Q/4w==} '@types/stack-utils@2.0.3': resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} @@ -3825,7 +3834,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@5.2.1(@vue/compiler-sfc@3.5.12)(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@5.2.1(@vue/compiler-sfc@3.5.12)(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -3834,7 +3843,7 @@ snapshots: '@stylistic/eslint-plugin': 5.2.3(eslint@9.33.0(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) '@typescript-eslint/parser': 8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) - '@vitest/eslint-plugin': 1.3.4(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/eslint-plugin': 1.3.4(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.1.0 cac: 6.7.14 eslint: 9.33.0(jiti@2.4.0) @@ -3987,6 +3996,10 @@ snapshots: dependencies: '@babel/types': 7.28.1 + '@babel/parser@7.28.3': + dependencies: + '@babel/types': 7.28.2 + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.27.4)': dependencies: '@babel/core': 7.27.4 @@ -4115,6 +4128,11 @@ snapshots: '@babel/helper-string-parser': 7.27.1 '@babel/helper-validator-identifier': 7.27.1 + '@babel/types@7.28.2': + dependencies: + '@babel/helper-string-parser': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + '@bcoe/v8-coverage@0.2.3': {} '@clack/core@0.5.0': @@ -4308,7 +4326,7 @@ snapshots: graphql: 16.11.0 tslib: 2.6.3 - '@graphql-codegen/cli@5.0.7(@types/node@22.17.1)(graphql@16.11.0)(typescript@5.9.2)': + '@graphql-codegen/cli@5.0.7(@types/node@22.17.2)(graphql@16.11.0)(typescript@5.9.2)': dependencies: '@babel/generator': 7.27.0 '@babel/template': 7.25.9 @@ -4319,12 +4337,12 @@ snapshots: '@graphql-tools/apollo-engine-loader': 8.0.4(graphql@16.11.0) '@graphql-tools/code-file-loader': 8.1.5(graphql@16.11.0) '@graphql-tools/git-loader': 8.0.9(graphql@16.11.0) - '@graphql-tools/github-loader': 8.0.4(@types/node@22.17.1)(graphql@16.11.0) + '@graphql-tools/github-loader': 8.0.4(@types/node@22.17.2)(graphql@16.11.0) '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) - '@graphql-tools/prisma-loader': 8.0.17(@types/node@22.17.1)(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@22.17.1)(graphql@16.11.0) + '@graphql-tools/prisma-loader': 8.0.17(@types/node@22.17.2)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@22.17.2)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@whatwg-node/fetch': 0.10.1 chalk: 4.1.2 @@ -4332,7 +4350,7 @@ snapshots: debounce: 1.2.1 detect-indent: 6.1.0 graphql: 16.11.0 - graphql-config: 5.1.3(@types/node@22.17.1)(graphql@16.11.0)(typescript@5.9.2) + graphql-config: 5.1.3(@types/node@22.17.2)(graphql@16.11.0)(typescript@5.9.2) inquirer: 8.2.6 is-glob: 4.0.3 jiti: 1.21.6 @@ -4521,14 +4539,14 @@ snapshots: - bufferutil - utf-8-validate - '@graphql-tools/executor-http@1.1.9(@types/node@22.17.1)(graphql@16.11.0)': + '@graphql-tools/executor-http@1.1.9(@types/node@22.17.2)(graphql@16.11.0)': dependencies: '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/fetch': 0.10.1 extract-files: 11.0.0 graphql: 16.11.0 - meros: 1.3.0(@types/node@22.17.1) + meros: 1.3.0(@types/node@22.17.2) tslib: 2.8.1 value-or-promise: 1.0.12 transitivePeerDependencies: @@ -4567,10 +4585,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@graphql-tools/github-loader@8.0.4(@types/node@22.17.1)(graphql@16.11.0)': + '@graphql-tools/github-loader@8.0.4(@types/node@22.17.2)(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/executor-http': 1.1.9(@types/node@22.17.1)(graphql@16.11.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@22.17.2)(graphql@16.11.0) '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@whatwg-node/fetch': 0.10.1 @@ -4638,9 +4656,9 @@ snapshots: graphql: 16.11.0 tslib: 2.6.3 - '@graphql-tools/prisma-loader@8.0.17(@types/node@22.17.1)(graphql@16.11.0)': + '@graphql-tools/prisma-loader@8.0.17(@types/node@22.17.2)(graphql@16.11.0)': dependencies: - '@graphql-tools/url-loader': 8.0.15(@types/node@22.17.1)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@22.17.2)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@types/js-yaml': 4.0.9 '@whatwg-node/fetch': 0.10.1 @@ -4680,11 +4698,11 @@ snapshots: graphql: 16.11.0 tslib: 2.8.1 - '@graphql-tools/url-loader@8.0.15(@types/node@22.17.1)(graphql@16.11.0)': + '@graphql-tools/url-loader@8.0.15(@types/node@22.17.2)(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/executor-graphql-ws': 1.3.2(graphql@16.11.0) - '@graphql-tools/executor-http': 1.1.9(@types/node@22.17.1)(graphql@16.11.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@22.17.2)(graphql@16.11.0) '@graphql-tools/executor-legacy-ws': 1.1.2(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@graphql-tools/wrap': 10.0.16(graphql@16.11.0) @@ -4758,7 +4776,7 @@ snapshots: '@jest/console@30.0.5': dependencies: '@jest/types': 30.0.5 - '@types/node': 22.17.1 + '@types/node': 22.17.2 chalk: 4.1.2 jest-message-util: 30.0.5 jest-util: 30.0.5 @@ -4772,14 +4790,14 @@ snapshots: '@jest/test-result': 30.0.5 '@jest/transform': 30.0.5 '@jest/types': 30.0.5 - '@types/node': 22.17.1 + '@types/node': 22.17.2 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 4.3.0 exit-x: 0.2.2 graceful-fs: 4.2.11 jest-changed-files: 30.0.5 - jest-config: 30.0.5(@types/node@22.17.1) + jest-config: 30.0.5(@types/node@22.17.2) jest-haste-map: 30.0.5 jest-message-util: 30.0.5 jest-regex-util: 30.0.1 @@ -4806,7 +4824,7 @@ snapshots: dependencies: '@jest/fake-timers': 30.0.5 '@jest/types': 30.0.5 - '@types/node': 22.17.1 + '@types/node': 22.17.2 jest-mock: 30.0.5 '@jest/expect-utils@30.0.5': @@ -4824,7 +4842,7 @@ snapshots: dependencies: '@jest/types': 30.0.5 '@sinonjs/fake-timers': 13.0.5 - '@types/node': 22.17.1 + '@types/node': 22.17.2 jest-message-util: 30.0.5 jest-mock: 30.0.5 jest-util: 30.0.5 @@ -4842,7 +4860,7 @@ snapshots: '@jest/pattern@30.0.1': dependencies: - '@types/node': 22.17.1 + '@types/node': 22.17.2 jest-regex-util: 30.0.1 '@jest/reporters@30.0.5': @@ -4853,7 +4871,7 @@ snapshots: '@jest/transform': 30.0.5 '@jest/types': 30.0.5 '@jridgewell/trace-mapping': 0.3.25 - '@types/node': 22.17.1 + '@types/node': 22.17.2 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit-x: 0.2.2 @@ -4930,7 +4948,7 @@ snapshots: '@jest/schemas': 30.0.5 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 22.17.1 + '@types/node': 22.17.2 '@types/yargs': 17.0.33 chalk: 4.1.2 @@ -5125,7 +5143,7 @@ snapshots: '@types/ms@2.1.0': {} - '@types/node@22.17.1': + '@types/node@22.17.2': dependencies: undici-types: 6.21.0 @@ -5135,7 +5153,7 @@ snapshots: '@types/ws@8.5.13': dependencies: - '@types/node': 22.17.1 + '@types/node': 22.17.2 '@types/yargs-parser@21.0.3': {} @@ -5291,13 +5309,13 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.4(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.3.4(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/utils': 8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) eslint: 9.33.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.2 - vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1) + vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color @@ -5309,13 +5327,13 @@ snapshots: chai: 5.2.0 tinyrainbow: 2.0.0 - '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@vitest/spy': 3.2.4 estree-walker: 3.0.3 magic-string: 0.30.17 optionalDependencies: - vite: 6.3.5(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1) '@vitest/pretty-format@3.2.4': dependencies: @@ -5345,7 +5363,7 @@ snapshots: '@vue/compiler-core@3.5.12': dependencies: - '@babel/parser': 7.28.0 + '@babel/parser': 7.28.3 '@vue/shared': 3.5.12 entities: 4.5.0 estree-walker: 2.0.2 @@ -5358,7 +5376,7 @@ snapshots: '@vue/compiler-sfc@3.5.12': dependencies: - '@babel/parser': 7.28.0 + '@babel/parser': 7.28.3 '@vue/compiler-core': 3.5.12 '@vue/compiler-dom': 3.5.12 '@vue/compiler-ssr': 3.5.12 @@ -6315,13 +6333,13 @@ snapshots: dependencies: lodash: 4.17.21 - graphql-config@5.1.3(@types/node@22.17.1)(graphql@16.11.0)(typescript@5.9.2): + graphql-config@5.1.3(@types/node@22.17.2)(graphql@16.11.0)(typescript@5.9.2): dependencies: '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) '@graphql-tools/merge': 9.0.24(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@22.17.1)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@22.17.2)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) cosmiconfig: 8.3.6(typescript@5.9.2) graphql: 16.11.0 @@ -6552,7 +6570,7 @@ snapshots: '@jest/expect': 30.0.5 '@jest/test-result': 30.0.5 '@jest/types': 30.0.5 - '@types/node': 22.17.1 + '@types/node': 22.17.2 chalk: 4.1.2 co: 4.6.0 dedent: 1.6.0 @@ -6572,7 +6590,7 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@30.0.5(@types/node@22.17.1): + jest-cli@30.0.5(@types/node@22.17.2): dependencies: '@jest/core': 30.0.5 '@jest/test-result': 30.0.5 @@ -6580,7 +6598,7 @@ snapshots: chalk: 4.1.2 exit-x: 0.2.2 import-local: 3.2.0 - jest-config: 30.0.5(@types/node@22.17.1) + jest-config: 30.0.5(@types/node@22.17.2) jest-util: 30.0.5 jest-validate: 30.0.5 yargs: 17.7.2 @@ -6591,7 +6609,7 @@ snapshots: - supports-color - ts-node - jest-config@30.0.5(@types/node@22.17.1): + jest-config@30.0.5(@types/node@22.17.2): dependencies: '@babel/core': 7.27.4 '@jest/get-type': 30.0.1 @@ -6618,7 +6636,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 22.17.1 + '@types/node': 22.17.2 transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -6647,7 +6665,7 @@ snapshots: '@jest/environment': 30.0.5 '@jest/fake-timers': 30.0.5 '@jest/types': 30.0.5 - '@types/node': 22.17.1 + '@types/node': 22.17.2 jest-mock: 30.0.5 jest-util: 30.0.5 jest-validate: 30.0.5 @@ -6655,7 +6673,7 @@ snapshots: jest-haste-map@30.0.5: dependencies: '@jest/types': 30.0.5 - '@types/node': 22.17.1 + '@types/node': 22.17.2 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -6694,7 +6712,7 @@ snapshots: jest-mock@30.0.5: dependencies: '@jest/types': 30.0.5 - '@types/node': 22.17.1 + '@types/node': 22.17.2 jest-util: 30.0.5 jest-pnp-resolver@1.2.3(jest-resolve@30.0.5): @@ -6728,7 +6746,7 @@ snapshots: '@jest/test-result': 30.0.5 '@jest/transform': 30.0.5 '@jest/types': 30.0.5 - '@types/node': 22.17.1 + '@types/node': 22.17.2 chalk: 4.1.2 emittery: 0.13.1 exit-x: 0.2.2 @@ -6757,7 +6775,7 @@ snapshots: '@jest/test-result': 30.0.5 '@jest/transform': 30.0.5 '@jest/types': 30.0.5 - '@types/node': 22.17.1 + '@types/node': 22.17.2 chalk: 4.1.2 cjs-module-lexer: 2.1.0 collect-v8-coverage: 1.0.2 @@ -6804,7 +6822,7 @@ snapshots: jest-util@30.0.5: dependencies: '@jest/types': 30.0.5 - '@types/node': 22.17.1 + '@types/node': 22.17.2 chalk: 4.1.2 ci-info: 4.3.0 graceful-fs: 4.2.11 @@ -6823,7 +6841,7 @@ snapshots: dependencies: '@jest/test-result': 30.0.5 '@jest/types': 30.0.5 - '@types/node': 22.17.1 + '@types/node': 22.17.2 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -6832,18 +6850,18 @@ snapshots: jest-worker@30.0.5: dependencies: - '@types/node': 22.17.1 + '@types/node': 22.17.2 '@ungap/structured-clone': 1.3.0 jest-util: 30.0.5 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@30.0.5(@types/node@22.17.1): + jest@30.0.5(@types/node@22.17.2): dependencies: '@jest/core': 30.0.5 '@jest/types': 30.0.5 import-local: 3.2.0 - jest-cli: 30.0.5(@types/node@22.17.1) + jest-cli: 30.0.5(@types/node@22.17.2) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -7117,9 +7135,9 @@ snapshots: merge2@1.4.1: {} - meros@1.3.0(@types/node@22.17.1): + meros@1.3.0(@types/node@22.17.2): optionalDependencies: - '@types/node': 22.17.1 + '@types/node': 22.17.2 micromark-core-commonmark@2.0.3: dependencies: @@ -7917,12 +7935,12 @@ snapshots: ts-dedent@2.2.0: {} - ts-jest@29.4.1(@babel/core@7.27.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.0.5(@types/node@22.17.1))(typescript@5.9.2): + ts-jest@29.4.1(@babel/core@7.27.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.0.5(@types/node@22.17.2))(typescript@5.9.2): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 handlebars: 4.7.8 - jest: 30.0.5(@types/node@22.17.1) + jest: 30.0.5(@types/node@22.17.2) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -8047,13 +8065,13 @@ snapshots: value-or-promise@1.0.12: {} - vite-node@3.2.4(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1): + vite-node@3.2.4(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1): dependencies: cac: 6.7.14 debug: 4.4.1 es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 6.3.5(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - '@types/node' - jiti @@ -8068,7 +8086,7 @@ snapshots: - tsx - yaml - vite@6.3.5(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1): + vite@6.3.5(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1): dependencies: esbuild: 0.25.5 fdir: 6.4.6(picomatch@4.0.2) @@ -8077,16 +8095,16 @@ snapshots: rollup: 4.43.0 tinyglobby: 0.2.14 optionalDependencies: - '@types/node': 22.17.1 + '@types/node': 22.17.2 fsevents: 2.3.3 jiti: 2.4.0 yaml: 2.8.1 - vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1): + vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1): dependencies: '@types/chai': 5.2.2 '@vitest/expect': 3.2.4 - '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1)) '@vitest/pretty-format': 3.2.4 '@vitest/runner': 3.2.4 '@vitest/snapshot': 3.2.4 @@ -8104,12 +8122,12 @@ snapshots: tinyglobby: 0.2.14 tinypool: 1.1.1 tinyrainbow: 2.0.0 - vite: 6.3.5(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1) - vite-node: 3.2.4(@types/node@22.17.1)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1) + vite-node: 3.2.4(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1) why-is-node-running: 2.3.0 optionalDependencies: '@types/debug': 4.1.12 - '@types/node': 22.17.1 + '@types/node': 22.17.2 transitivePeerDependencies: - jiti - less From bed7d1bd19a8cd608428ceaa9b0c34b4cee83dee Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 19 Aug 2025 22:35:31 +0000 Subject: [PATCH 029/133] chore(deps): update pnpm to v10.15.0 (#1214) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 864773c1..5418cf63 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "graphql-codegen-typescript-validation-schema", "type": "module", "version": "0.17.1", - "packageManager": "pnpm@10.14.0", + "packageManager": "pnpm@10.15.0", "description": "GraphQL Code Generator plugin to generate form validation schema from your GraphQL schema", "respository": { "type": "git", From da200087c9a2841c8ede85fcb919a4d6fdde34af Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 22 Aug 2025 23:45:29 +0000 Subject: [PATCH 030/133] chore(deps): update dependency eslint to v9.34.0 (#1215) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 246 ++++++++++++++++++++++++------------------------- 2 files changed, 124 insertions(+), 124 deletions(-) diff --git a/package.json b/package.json index 5418cf63..84804e8c 100644 --- a/package.json +++ b/package.json @@ -91,7 +91,7 @@ "@tsconfig/recommended": "1.0.10", "@types/graphlib": "^2.1.8", "@types/node": "^22.0.0", - "eslint": "9.33.0", + "eslint": "9.34.0", "jest": "30.0.5", "myzod": "1.12.1", "npm-run-all2": "8.0.4", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index e53c43b1..48512023 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^5.0.0 - version: 5.2.1(@vue/compiler-sfc@3.5.12)(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1)) + version: 5.2.1(@vue/compiler-sfc@3.5.12)(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 5.0.7 version: 5.0.7(@types/node@22.17.2)(graphql@16.11.0)(typescript@5.9.2) @@ -46,8 +46,8 @@ importers: specifier: ^22.0.0 version: 22.17.2 eslint: - specifier: 9.33.0 - version: 9.33.0(jiti@2.4.0) + specifier: 9.34.0 + version: 9.34.0(jiti@2.4.0) jest: specifier: 30.0.5 version: 30.0.5(@types/node@22.17.2) @@ -564,8 +564,8 @@ packages: resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/js@9.33.0': - resolution: {integrity: sha512-5K1/mKhWaMfreBGJTwval43JJmkip0RmM+3+IuqupeSKNC/Th2Kc7ucaq5ovTSra/OOKB9c58CGSz3QMVbWt0A==} + '@eslint/js@9.34.0': + resolution: {integrity: sha512-EoyvqQnBNsV1CWaEJ559rxXL4c8V92gxirbawSmVUOWXlsRxxQXl6LmCpdUblgxgSkDIqKnhzba2SjRTI/A5Rw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/markdown@7.1.0': @@ -1982,8 +1982,8 @@ packages: resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - eslint@9.33.0: - resolution: {integrity: sha512-TS9bTNIryDzStCpJN93aC5VRSW3uTx9sClUn4B87pwiCaJh220otoI0X8mJKr+VcPtniMdN8GKjlwgWGUv5ZKA==} + eslint@9.34.0: + resolution: {integrity: sha512-RNCHRX5EwdrESy3Jc9o8ie8Bog+PeYvvSR8sDGoZxNFTvZ4dlxUB3WzQ3bQMztFrSRODGrLLj8g6OFuGY/aiQg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true peerDependencies: @@ -3834,44 +3834,44 @@ snapshots: '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@5.2.1(@vue/compiler-sfc@3.5.12)(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@5.2.1(@vue/compiler-sfc@3.5.12)(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 - '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.33.0(jiti@2.4.0)) + '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.34.0(jiti@2.4.0)) '@eslint/markdown': 7.1.0 - '@stylistic/eslint-plugin': 5.2.3(eslint@9.33.0(jiti@2.4.0)) - '@typescript-eslint/eslint-plugin': 8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) - '@typescript-eslint/parser': 8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) - '@vitest/eslint-plugin': 1.3.4(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1)) + '@stylistic/eslint-plugin': 5.2.3(eslint@9.34.0(jiti@2.4.0)) + '@typescript-eslint/eslint-plugin': 8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/parser': 8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) + '@vitest/eslint-plugin': 1.3.4(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.1.0 cac: 6.7.14 - eslint: 9.33.0(jiti@2.4.0) - eslint-config-flat-gitignore: 2.1.0(eslint@9.33.0(jiti@2.4.0)) + eslint: 9.34.0(jiti@2.4.0) + eslint-config-flat-gitignore: 2.1.0(eslint@9.34.0(jiti@2.4.0)) eslint-flat-config-utils: 2.1.1 - eslint-merge-processors: 2.0.0(eslint@9.33.0(jiti@2.4.0)) - eslint-plugin-antfu: 3.1.1(eslint@9.33.0(jiti@2.4.0)) - eslint-plugin-command: 3.3.1(eslint@9.33.0(jiti@2.4.0)) - eslint-plugin-import-lite: 0.3.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) - eslint-plugin-jsdoc: 52.0.4(eslint@9.33.0(jiti@2.4.0)) - eslint-plugin-jsonc: 2.20.1(eslint@9.33.0(jiti@2.4.0)) - eslint-plugin-n: 17.21.3(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) + eslint-merge-processors: 2.0.0(eslint@9.34.0(jiti@2.4.0)) + eslint-plugin-antfu: 3.1.1(eslint@9.34.0(jiti@2.4.0)) + eslint-plugin-command: 3.3.1(eslint@9.34.0(jiti@2.4.0)) + eslint-plugin-import-lite: 0.3.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) + eslint-plugin-jsdoc: 52.0.4(eslint@9.34.0(jiti@2.4.0)) + eslint-plugin-jsonc: 2.20.1(eslint@9.34.0(jiti@2.4.0)) + eslint-plugin-n: 17.21.3(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) eslint-plugin-no-only-tests: 3.3.0 - eslint-plugin-perfectionist: 4.15.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) - eslint-plugin-pnpm: 1.1.0(eslint@9.33.0(jiti@2.4.0)) - eslint-plugin-regexp: 2.10.0(eslint@9.33.0(jiti@2.4.0)) - eslint-plugin-toml: 0.12.0(eslint@9.33.0(jiti@2.4.0)) - eslint-plugin-unicorn: 60.0.0(eslint@9.33.0(jiti@2.4.0)) - eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.33.0(jiti@2.4.0)) - eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.33.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.33.0(jiti@2.4.0))) - eslint-plugin-yml: 1.18.0(eslint@9.33.0(jiti@2.4.0)) - eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.33.0(jiti@2.4.0)) + eslint-plugin-perfectionist: 4.15.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) + eslint-plugin-pnpm: 1.1.0(eslint@9.34.0(jiti@2.4.0)) + eslint-plugin-regexp: 2.10.0(eslint@9.34.0(jiti@2.4.0)) + eslint-plugin-toml: 0.12.0(eslint@9.34.0(jiti@2.4.0)) + eslint-plugin-unicorn: 60.0.0(eslint@9.34.0(jiti@2.4.0)) + eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0)) + eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.34.0(jiti@2.4.0))) + eslint-plugin-yml: 1.18.0(eslint@9.34.0(jiti@2.4.0)) + eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.34.0(jiti@2.4.0)) globals: 16.3.0 jsonc-eslint-parser: 2.4.0 local-pkg: 1.1.1 parse-gitignore: 2.0.0 toml-eslint-parser: 0.10.0 - vue-eslint-parser: 10.2.0(eslint@9.33.0(jiti@2.4.0)) + vue-eslint-parser: 10.2.0(eslint@9.34.0(jiti@2.4.0)) yaml-eslint-parser: 1.3.0 transitivePeerDependencies: - '@eslint/json' @@ -4253,22 +4253,22 @@ snapshots: '@esbuild/win32-x64@0.25.5': optional: true - '@eslint-community/eslint-plugin-eslint-comments@4.5.0(eslint@9.33.0(jiti@2.4.0))': + '@eslint-community/eslint-plugin-eslint-comments@4.5.0(eslint@9.34.0(jiti@2.4.0))': dependencies: escape-string-regexp: 4.0.0 - eslint: 9.33.0(jiti@2.4.0) + eslint: 9.34.0(jiti@2.4.0) ignore: 5.3.2 - '@eslint-community/eslint-utils@4.7.0(eslint@9.33.0(jiti@2.4.0))': + '@eslint-community/eslint-utils@4.7.0(eslint@9.34.0(jiti@2.4.0))': dependencies: - eslint: 9.33.0(jiti@2.4.0) + eslint: 9.34.0(jiti@2.4.0) eslint-visitor-keys: 3.4.3 '@eslint-community/regexpp@4.12.1': {} - '@eslint/compat@1.3.2(eslint@9.33.0(jiti@2.4.0))': + '@eslint/compat@1.3.2(eslint@9.34.0(jiti@2.4.0))': optionalDependencies: - eslint: 9.33.0(jiti@2.4.0) + eslint: 9.34.0(jiti@2.4.0) '@eslint/config-array@0.21.0': dependencies: @@ -4298,7 +4298,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/js@9.33.0': {} + '@eslint/js@9.34.0': {} '@eslint/markdown@7.1.0': dependencies: @@ -5069,11 +5069,11 @@ snapshots: dependencies: '@sinonjs/commons': 3.0.1 - '@stylistic/eslint-plugin@5.2.3(eslint@9.33.0(jiti@2.4.0))': + '@stylistic/eslint-plugin@5.2.3(eslint@9.34.0(jiti@2.4.0))': dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.34.0(jiti@2.4.0)) '@typescript-eslint/types': 8.39.0 - eslint: 9.33.0(jiti@2.4.0) + eslint: 9.34.0(jiti@2.4.0) eslint-visitor-keys: 4.2.1 espree: 10.4.0 estraverse: 5.3.0 @@ -5161,15 +5161,15 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/eslint-plugin@8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/parser': 8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) '@typescript-eslint/scope-manager': 8.39.0 - '@typescript-eslint/type-utils': 8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) - '@typescript-eslint/utils': 8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/type-utils': 8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/utils': 8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) '@typescript-eslint/visitor-keys': 8.39.0 - eslint: 9.33.0(jiti@2.4.0) + eslint: 9.34.0(jiti@2.4.0) graphemer: 1.4.0 ignore: 7.0.5 natural-compare: 1.4.0 @@ -5178,14 +5178,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/parser@8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: '@typescript-eslint/scope-manager': 8.39.0 '@typescript-eslint/types': 8.39.0 '@typescript-eslint/typescript-estree': 8.39.0(typescript@5.9.2) '@typescript-eslint/visitor-keys': 8.39.0 debug: 4.4.1 - eslint: 9.33.0(jiti@2.4.0) + eslint: 9.34.0(jiti@2.4.0) typescript: 5.9.2 transitivePeerDependencies: - supports-color @@ -5208,13 +5208,13 @@ snapshots: dependencies: typescript: 5.9.2 - '@typescript-eslint/type-utils@8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/type-utils@8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: '@typescript-eslint/types': 8.39.0 '@typescript-eslint/typescript-estree': 8.39.0(typescript@5.9.2) - '@typescript-eslint/utils': 8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/utils': 8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) debug: 4.4.1 - eslint: 9.33.0(jiti@2.4.0) + eslint: 9.34.0(jiti@2.4.0) ts-api-utils: 2.1.0(typescript@5.9.2) typescript: 5.9.2 transitivePeerDependencies: @@ -5238,13 +5238,13 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/utils@8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.34.0(jiti@2.4.0)) '@typescript-eslint/scope-manager': 8.39.0 '@typescript-eslint/types': 8.39.0 '@typescript-eslint/typescript-estree': 8.39.0(typescript@5.9.2) - eslint: 9.33.0(jiti@2.4.0) + eslint: 9.34.0(jiti@2.4.0) typescript: 5.9.2 transitivePeerDependencies: - supports-color @@ -5309,10 +5309,10 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.4(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.3.4(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1))': dependencies: - '@typescript-eslint/utils': 8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) - eslint: 9.33.0(jiti@2.4.0) + '@typescript-eslint/utils': 8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) + eslint: 9.34.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.2 vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1) @@ -5857,67 +5857,67 @@ snapshots: escape-string-regexp@5.0.0: {} - eslint-compat-utils@0.5.1(eslint@9.33.0(jiti@2.4.0)): + eslint-compat-utils@0.5.1(eslint@9.34.0(jiti@2.4.0)): dependencies: - eslint: 9.33.0(jiti@2.4.0) + eslint: 9.34.0(jiti@2.4.0) semver: 7.7.2 - eslint-compat-utils@0.6.5(eslint@9.33.0(jiti@2.4.0)): + eslint-compat-utils@0.6.5(eslint@9.34.0(jiti@2.4.0)): dependencies: - eslint: 9.33.0(jiti@2.4.0) + eslint: 9.34.0(jiti@2.4.0) semver: 7.7.2 - eslint-config-flat-gitignore@2.1.0(eslint@9.33.0(jiti@2.4.0)): + eslint-config-flat-gitignore@2.1.0(eslint@9.34.0(jiti@2.4.0)): dependencies: - '@eslint/compat': 1.3.2(eslint@9.33.0(jiti@2.4.0)) - eslint: 9.33.0(jiti@2.4.0) + '@eslint/compat': 1.3.2(eslint@9.34.0(jiti@2.4.0)) + eslint: 9.34.0(jiti@2.4.0) eslint-flat-config-utils@2.1.1: dependencies: pathe: 2.0.3 - eslint-json-compat-utils@0.2.1(eslint@9.33.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0): + eslint-json-compat-utils@0.2.1(eslint@9.34.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0): dependencies: - eslint: 9.33.0(jiti@2.4.0) + eslint: 9.34.0(jiti@2.4.0) esquery: 1.6.0 jsonc-eslint-parser: 2.4.0 - eslint-merge-processors@2.0.0(eslint@9.33.0(jiti@2.4.0)): + eslint-merge-processors@2.0.0(eslint@9.34.0(jiti@2.4.0)): dependencies: - eslint: 9.33.0(jiti@2.4.0) + eslint: 9.34.0(jiti@2.4.0) - eslint-plugin-antfu@3.1.1(eslint@9.33.0(jiti@2.4.0)): + eslint-plugin-antfu@3.1.1(eslint@9.34.0(jiti@2.4.0)): dependencies: - eslint: 9.33.0(jiti@2.4.0) + eslint: 9.34.0(jiti@2.4.0) - eslint-plugin-command@3.3.1(eslint@9.33.0(jiti@2.4.0)): + eslint-plugin-command@3.3.1(eslint@9.34.0(jiti@2.4.0)): dependencies: '@es-joy/jsdoccomment': 0.50.2 - eslint: 9.33.0(jiti@2.4.0) + eslint: 9.34.0(jiti@2.4.0) - eslint-plugin-es-x@7.8.0(eslint@9.33.0(jiti@2.4.0)): + eslint-plugin-es-x@7.8.0(eslint@9.34.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.34.0(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.1 - eslint: 9.33.0(jiti@2.4.0) - eslint-compat-utils: 0.5.1(eslint@9.33.0(jiti@2.4.0)) + eslint: 9.34.0(jiti@2.4.0) + eslint-compat-utils: 0.5.1(eslint@9.34.0(jiti@2.4.0)) - eslint-plugin-import-lite@0.3.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2): + eslint-plugin-import-lite@0.3.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.34.0(jiti@2.4.0)) '@typescript-eslint/types': 8.39.0 - eslint: 9.33.0(jiti@2.4.0) + eslint: 9.34.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.2 - eslint-plugin-jsdoc@52.0.4(eslint@9.33.0(jiti@2.4.0)): + eslint-plugin-jsdoc@52.0.4(eslint@9.34.0(jiti@2.4.0)): dependencies: '@es-joy/jsdoccomment': 0.52.0 are-docs-informative: 0.0.2 comment-parser: 1.4.1 debug: 4.4.1 escape-string-regexp: 4.0.0 - eslint: 9.33.0(jiti@2.4.0) + eslint: 9.34.0(jiti@2.4.0) espree: 10.4.0 esquery: 1.6.0 parse-imports-exports: 0.2.4 @@ -5926,12 +5926,12 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-jsonc@2.20.1(eslint@9.33.0(jiti@2.4.0)): + eslint-plugin-jsonc@2.20.1(eslint@9.34.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.4.0)) - eslint: 9.33.0(jiti@2.4.0) - eslint-compat-utils: 0.6.5(eslint@9.33.0(jiti@2.4.0)) - eslint-json-compat-utils: 0.2.1(eslint@9.33.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.34.0(jiti@2.4.0)) + eslint: 9.34.0(jiti@2.4.0) + eslint-compat-utils: 0.6.5(eslint@9.34.0(jiti@2.4.0)) + eslint-json-compat-utils: 0.2.1(eslint@9.34.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0) espree: 10.4.0 graphemer: 1.4.0 jsonc-eslint-parser: 2.4.0 @@ -5940,12 +5940,12 @@ snapshots: transitivePeerDependencies: - '@eslint/json' - eslint-plugin-n@17.21.3(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2): + eslint-plugin-n@17.21.3(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.34.0(jiti@2.4.0)) enhanced-resolve: 5.18.3 - eslint: 9.33.0(jiti@2.4.0) - eslint-plugin-es-x: 7.8.0(eslint@9.33.0(jiti@2.4.0)) + eslint: 9.34.0(jiti@2.4.0) + eslint-plugin-es-x: 7.8.0(eslint@9.34.0(jiti@2.4.0)) get-tsconfig: 4.10.1 globals: 15.15.0 globrex: 0.1.2 @@ -5957,19 +5957,19 @@ snapshots: eslint-plugin-no-only-tests@3.3.0: {} - eslint-plugin-perfectionist@4.15.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2): + eslint-plugin-perfectionist@4.15.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2): dependencies: '@typescript-eslint/types': 8.39.0 - '@typescript-eslint/utils': 8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) - eslint: 9.33.0(jiti@2.4.0) + '@typescript-eslint/utils': 8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) + eslint: 9.34.0(jiti@2.4.0) natural-orderby: 5.0.0 transitivePeerDependencies: - supports-color - typescript - eslint-plugin-pnpm@1.1.0(eslint@9.33.0(jiti@2.4.0)): + eslint-plugin-pnpm@1.1.0(eslint@9.34.0(jiti@2.4.0)): dependencies: - eslint: 9.33.0(jiti@2.4.0) + eslint: 9.34.0(jiti@2.4.0) find-up-simple: 1.0.1 jsonc-eslint-parser: 2.4.0 pathe: 2.0.3 @@ -5977,37 +5977,37 @@ snapshots: tinyglobby: 0.2.14 yaml-eslint-parser: 1.3.0 - eslint-plugin-regexp@2.10.0(eslint@9.33.0(jiti@2.4.0)): + eslint-plugin-regexp@2.10.0(eslint@9.34.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.34.0(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.1 comment-parser: 1.4.1 - eslint: 9.33.0(jiti@2.4.0) + eslint: 9.34.0(jiti@2.4.0) jsdoc-type-pratt-parser: 4.1.0 refa: 0.12.1 regexp-ast-analysis: 0.7.1 scslre: 0.3.0 - eslint-plugin-toml@0.12.0(eslint@9.33.0(jiti@2.4.0)): + eslint-plugin-toml@0.12.0(eslint@9.34.0(jiti@2.4.0)): dependencies: debug: 4.4.1 - eslint: 9.33.0(jiti@2.4.0) - eslint-compat-utils: 0.6.5(eslint@9.33.0(jiti@2.4.0)) + eslint: 9.34.0(jiti@2.4.0) + eslint-compat-utils: 0.6.5(eslint@9.34.0(jiti@2.4.0)) lodash: 4.17.21 toml-eslint-parser: 0.10.0 transitivePeerDependencies: - supports-color - eslint-plugin-unicorn@60.0.0(eslint@9.33.0(jiti@2.4.0)): + eslint-plugin-unicorn@60.0.0(eslint@9.34.0(jiti@2.4.0)): dependencies: '@babel/helper-validator-identifier': 7.27.1 - '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.34.0(jiti@2.4.0)) '@eslint/plugin-kit': 0.3.5 change-case: 5.4.4 ci-info: 4.3.0 clean-regexp: 1.0.0 core-js-compat: 3.45.0 - eslint: 9.33.0(jiti@2.4.0) + eslint: 9.34.0(jiti@2.4.0) esquery: 1.6.0 find-up-simple: 1.0.1 globals: 16.3.0 @@ -6020,40 +6020,40 @@ snapshots: semver: 7.7.2 strip-indent: 4.0.0 - eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.33.0(jiti@2.4.0)): + eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0)): dependencies: - eslint: 9.33.0(jiti@2.4.0) + eslint: 9.34.0(jiti@2.4.0) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/eslint-plugin': 8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) - eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.33.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.33.0(jiti@2.4.0))): + eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.34.0(jiti@2.4.0))): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.4.0)) - eslint: 9.33.0(jiti@2.4.0) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.34.0(jiti@2.4.0)) + eslint: 9.34.0(jiti@2.4.0) natural-compare: 1.4.0 nth-check: 2.1.1 postcss-selector-parser: 6.1.2 semver: 7.7.2 - vue-eslint-parser: 10.2.0(eslint@9.33.0(jiti@2.4.0)) + vue-eslint-parser: 10.2.0(eslint@9.34.0(jiti@2.4.0)) xml-name-validator: 4.0.0 optionalDependencies: - '@typescript-eslint/parser': 8.39.0(eslint@9.33.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/parser': 8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) - eslint-plugin-yml@1.18.0(eslint@9.33.0(jiti@2.4.0)): + eslint-plugin-yml@1.18.0(eslint@9.34.0(jiti@2.4.0)): dependencies: debug: 4.4.1 escape-string-regexp: 4.0.0 - eslint: 9.33.0(jiti@2.4.0) - eslint-compat-utils: 0.6.5(eslint@9.33.0(jiti@2.4.0)) + eslint: 9.34.0(jiti@2.4.0) + eslint-compat-utils: 0.6.5(eslint@9.34.0(jiti@2.4.0)) natural-compare: 1.4.0 yaml-eslint-parser: 1.3.0 transitivePeerDependencies: - supports-color - eslint-processor-vue-blocks@2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.33.0(jiti@2.4.0)): + eslint-processor-vue-blocks@2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.34.0(jiti@2.4.0)): dependencies: '@vue/compiler-sfc': 3.5.12 - eslint: 9.33.0(jiti@2.4.0) + eslint: 9.34.0(jiti@2.4.0) eslint-scope@8.4.0: dependencies: @@ -6064,15 +6064,15 @@ snapshots: eslint-visitor-keys@4.2.1: {} - eslint@9.33.0(jiti@2.4.0): + eslint@9.34.0(jiti@2.4.0): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.34.0(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.1 '@eslint/config-array': 0.21.0 '@eslint/config-helpers': 0.3.1 '@eslint/core': 0.15.2 '@eslint/eslintrc': 3.3.1 - '@eslint/js': 9.33.0 + '@eslint/js': 9.34.0 '@eslint/plugin-kit': 0.3.5 '@humanfs/node': 0.16.6 '@humanwhocodes/module-importer': 1.0.1 @@ -8142,10 +8142,10 @@ snapshots: - tsx - yaml - vue-eslint-parser@10.2.0(eslint@9.33.0(jiti@2.4.0)): + vue-eslint-parser@10.2.0(eslint@9.34.0(jiti@2.4.0)): dependencies: debug: 4.4.1 - eslint: 9.33.0(jiti@2.4.0) + eslint: 9.34.0(jiti@2.4.0) eslint-scope: 8.4.0 eslint-visitor-keys: 4.2.1 espree: 10.4.0 From 93f9f971479228ea2207ba806f60eafc73afbd53 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 23 Aug 2025 09:59:54 +0000 Subject: [PATCH 031/133] chore(deps): update dependency zod to v4.1.0 (#1216) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 84804e8c..93fdaa13 100644 --- a/package.json +++ b/package.json @@ -101,6 +101,6 @@ "valibot": "1.1.0", "vitest": "^3.0.0", "yup": "1.7.0", - "zod": "4.0.17" + "zod": "4.1.0" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 48512023..0ce209ec 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -76,8 +76,8 @@ importers: specifier: 1.7.0 version: 1.7.0 zod: - specifier: 4.0.17 - version: 4.0.17 + specifier: 4.1.0 + version: 4.1.0 packages: @@ -3821,8 +3821,8 @@ packages: yup@1.7.0: resolution: {integrity: sha512-VJce62dBd+JQvoc+fCVq+KZfPHr+hXaxCcVgotfwWvlR0Ja3ffYKaJBT8rptPOSKOGJDCUnW2C2JWpud7aRP6Q==} - zod@4.0.17: - resolution: {integrity: sha512-1PHjlYRevNxxdy2JZ8JcNAw7rX8V9P1AKkP+x/xZfxB0K5FYfuV+Ug6P/6NVSR2jHQ+FzDDoDHS04nYUsOIyLQ==} + zod@4.1.0: + resolution: {integrity: sha512-UWxluYj2IDX9MHRXTMbB/2eeWrAMmmMSESM+MfT9MQw8U1qo9q5ASW08anoJh6AJ7pkt099fLdNFmfI+4aChHg==} zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} @@ -8251,6 +8251,6 @@ snapshots: toposort: 2.0.2 type-fest: 2.19.0 - zod@4.0.17: {} + zod@4.1.0: {} zwitch@2.0.4: {} From 9174cfc24e026245cef74cea6cd87649eb091e9b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 24 Aug 2025 08:59:22 +0000 Subject: [PATCH 032/133] chore(deps): update dependency zod to v4.1.1 (#1217) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 93fdaa13..cf5fde66 100644 --- a/package.json +++ b/package.json @@ -101,6 +101,6 @@ "valibot": "1.1.0", "vitest": "^3.0.0", "yup": "1.7.0", - "zod": "4.1.0" + "zod": "4.1.1" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0ce209ec..14fb53f9 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -76,8 +76,8 @@ importers: specifier: 1.7.0 version: 1.7.0 zod: - specifier: 4.1.0 - version: 4.1.0 + specifier: 4.1.1 + version: 4.1.1 packages: @@ -3821,8 +3821,8 @@ packages: yup@1.7.0: resolution: {integrity: sha512-VJce62dBd+JQvoc+fCVq+KZfPHr+hXaxCcVgotfwWvlR0Ja3ffYKaJBT8rptPOSKOGJDCUnW2C2JWpud7aRP6Q==} - zod@4.1.0: - resolution: {integrity: sha512-UWxluYj2IDX9MHRXTMbB/2eeWrAMmmMSESM+MfT9MQw8U1qo9q5ASW08anoJh6AJ7pkt099fLdNFmfI+4aChHg==} + zod@4.1.1: + resolution: {integrity: sha512-SgMZK/h8Tigt9nnKkfJMvB/mKjiJXaX26xegP4sa+0wHIFVFWVlsQGdhklDmuargBD3Hsi3rsQRIzwJIhTPJHA==} zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} @@ -8251,6 +8251,6 @@ snapshots: toposort: 2.0.2 type-fest: 2.19.0 - zod@4.1.0: {} + zod@4.1.1: {} zwitch@2.0.4: {} From 4c0004d5740ca270cbe923e2652470ce8927e520 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 25 Aug 2025 14:42:10 +0000 Subject: [PATCH 033/133] chore(deps): update dependency @types/node to v22.18.0 (#1218) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 148 ++++++++++++++++++++++++++----------------------- 1 file changed, 80 insertions(+), 68 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 14fb53f9..4ff49aec 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,10 +29,10 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^5.0.0 - version: 5.2.1(@vue/compiler-sfc@3.5.12)(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1)) + version: 5.2.1(@vue/compiler-sfc@3.5.12)(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 5.0.7 - version: 5.0.7(@types/node@22.17.2)(graphql@16.11.0)(typescript@5.9.2) + version: 5.0.7(@types/node@22.18.0)(graphql@16.11.0)(typescript@5.9.2) '@graphql-codegen/typescript': specifier: ^4.0.0 version: 4.1.6(graphql@16.11.0) @@ -44,13 +44,13 @@ importers: version: 2.1.12 '@types/node': specifier: ^22.0.0 - version: 22.17.2 + version: 22.18.0 eslint: specifier: 9.34.0 version: 9.34.0(jiti@2.4.0) jest: specifier: 30.0.5 - version: 30.0.5(@types/node@22.17.2) + version: 30.0.5(@types/node@22.18.0) myzod: specifier: 1.12.1 version: 1.12.1 @@ -62,7 +62,7 @@ importers: version: 2.2.0 ts-jest: specifier: 29.4.1 - version: 29.4.1(@babel/core@7.27.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.0.5(@types/node@22.17.2))(typescript@5.9.2) + version: 29.4.1(@babel/core@7.27.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.0.5(@types/node@22.18.0))(typescript@5.9.2) typescript: specifier: 5.9.2 version: 5.9.2 @@ -71,7 +71,7 @@ importers: version: 1.1.0(typescript@5.9.2) vitest: specifier: ^3.0.0 - version: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.0 version: 1.7.0 @@ -934,6 +934,9 @@ packages: '@jridgewell/sourcemap-codec@1.5.0': resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} + '@jridgewell/sourcemap-codec@1.5.5': + resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} + '@jridgewell/trace-mapping@0.3.25': resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} @@ -1142,8 +1145,8 @@ packages: '@types/ms@2.1.0': resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} - '@types/node@22.17.2': - resolution: {integrity: sha512-gL6z5N9Jm9mhY+U2KXZpteb+09zyffliRkZyZOHODGATyC5B1Jt/7TzuuiLkFsSUMLbS1OLmlj/E+/3KF4Q/4w==} + '@types/node@22.18.0': + resolution: {integrity: sha512-m5ObIqwsUp6BZzyiy4RdZpzWGub9bqLJMvZDD0QMXhxjqMHMENlj+SqF5QxoUwaQNFe+8kz8XM8ZQhqkQPTgMQ==} '@types/stack-utils@2.0.3': resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} @@ -2701,6 +2704,9 @@ packages: magic-string@0.30.17: resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} + magic-string@0.30.18: + resolution: {integrity: sha512-yi8swmWbO17qHhwIBNeeZxTceJMeBvWJaId6dyvTSOwTipqeHhMhOrz6513r1sOKnpvQ7zkhlG8tPrpilwTxHQ==} + make-dir@4.0.0: resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} engines: {node: '>=10'} @@ -3834,7 +3840,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@5.2.1(@vue/compiler-sfc@3.5.12)(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@5.2.1(@vue/compiler-sfc@3.5.12)(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -3843,7 +3849,7 @@ snapshots: '@stylistic/eslint-plugin': 5.2.3(eslint@9.34.0(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) '@typescript-eslint/parser': 8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) - '@vitest/eslint-plugin': 1.3.4(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/eslint-plugin': 1.3.4(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.1.0 cac: 6.7.14 eslint: 9.34.0(jiti@2.4.0) @@ -4326,7 +4332,7 @@ snapshots: graphql: 16.11.0 tslib: 2.6.3 - '@graphql-codegen/cli@5.0.7(@types/node@22.17.2)(graphql@16.11.0)(typescript@5.9.2)': + '@graphql-codegen/cli@5.0.7(@types/node@22.18.0)(graphql@16.11.0)(typescript@5.9.2)': dependencies: '@babel/generator': 7.27.0 '@babel/template': 7.25.9 @@ -4337,12 +4343,12 @@ snapshots: '@graphql-tools/apollo-engine-loader': 8.0.4(graphql@16.11.0) '@graphql-tools/code-file-loader': 8.1.5(graphql@16.11.0) '@graphql-tools/git-loader': 8.0.9(graphql@16.11.0) - '@graphql-tools/github-loader': 8.0.4(@types/node@22.17.2)(graphql@16.11.0) + '@graphql-tools/github-loader': 8.0.4(@types/node@22.18.0)(graphql@16.11.0) '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) - '@graphql-tools/prisma-loader': 8.0.17(@types/node@22.17.2)(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@22.17.2)(graphql@16.11.0) + '@graphql-tools/prisma-loader': 8.0.17(@types/node@22.18.0)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.0)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@whatwg-node/fetch': 0.10.1 chalk: 4.1.2 @@ -4350,7 +4356,7 @@ snapshots: debounce: 1.2.1 detect-indent: 6.1.0 graphql: 16.11.0 - graphql-config: 5.1.3(@types/node@22.17.2)(graphql@16.11.0)(typescript@5.9.2) + graphql-config: 5.1.3(@types/node@22.18.0)(graphql@16.11.0)(typescript@5.9.2) inquirer: 8.2.6 is-glob: 4.0.3 jiti: 1.21.6 @@ -4539,14 +4545,14 @@ snapshots: - bufferutil - utf-8-validate - '@graphql-tools/executor-http@1.1.9(@types/node@22.17.2)(graphql@16.11.0)': + '@graphql-tools/executor-http@1.1.9(@types/node@22.18.0)(graphql@16.11.0)': dependencies: '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/fetch': 0.10.1 extract-files: 11.0.0 graphql: 16.11.0 - meros: 1.3.0(@types/node@22.17.2) + meros: 1.3.0(@types/node@22.18.0) tslib: 2.8.1 value-or-promise: 1.0.12 transitivePeerDependencies: @@ -4585,10 +4591,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@graphql-tools/github-loader@8.0.4(@types/node@22.17.2)(graphql@16.11.0)': + '@graphql-tools/github-loader@8.0.4(@types/node@22.18.0)(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/executor-http': 1.1.9(@types/node@22.17.2)(graphql@16.11.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.0)(graphql@16.11.0) '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@whatwg-node/fetch': 0.10.1 @@ -4656,9 +4662,9 @@ snapshots: graphql: 16.11.0 tslib: 2.6.3 - '@graphql-tools/prisma-loader@8.0.17(@types/node@22.17.2)(graphql@16.11.0)': + '@graphql-tools/prisma-loader@8.0.17(@types/node@22.18.0)(graphql@16.11.0)': dependencies: - '@graphql-tools/url-loader': 8.0.15(@types/node@22.17.2)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.0)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@types/js-yaml': 4.0.9 '@whatwg-node/fetch': 0.10.1 @@ -4698,11 +4704,11 @@ snapshots: graphql: 16.11.0 tslib: 2.8.1 - '@graphql-tools/url-loader@8.0.15(@types/node@22.17.2)(graphql@16.11.0)': + '@graphql-tools/url-loader@8.0.15(@types/node@22.18.0)(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/executor-graphql-ws': 1.3.2(graphql@16.11.0) - '@graphql-tools/executor-http': 1.1.9(@types/node@22.17.2)(graphql@16.11.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.0)(graphql@16.11.0) '@graphql-tools/executor-legacy-ws': 1.1.2(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@graphql-tools/wrap': 10.0.16(graphql@16.11.0) @@ -4776,7 +4782,7 @@ snapshots: '@jest/console@30.0.5': dependencies: '@jest/types': 30.0.5 - '@types/node': 22.17.2 + '@types/node': 22.18.0 chalk: 4.1.2 jest-message-util: 30.0.5 jest-util: 30.0.5 @@ -4790,14 +4796,14 @@ snapshots: '@jest/test-result': 30.0.5 '@jest/transform': 30.0.5 '@jest/types': 30.0.5 - '@types/node': 22.17.2 + '@types/node': 22.18.0 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 4.3.0 exit-x: 0.2.2 graceful-fs: 4.2.11 jest-changed-files: 30.0.5 - jest-config: 30.0.5(@types/node@22.17.2) + jest-config: 30.0.5(@types/node@22.18.0) jest-haste-map: 30.0.5 jest-message-util: 30.0.5 jest-regex-util: 30.0.1 @@ -4824,7 +4830,7 @@ snapshots: dependencies: '@jest/fake-timers': 30.0.5 '@jest/types': 30.0.5 - '@types/node': 22.17.2 + '@types/node': 22.18.0 jest-mock: 30.0.5 '@jest/expect-utils@30.0.5': @@ -4842,7 +4848,7 @@ snapshots: dependencies: '@jest/types': 30.0.5 '@sinonjs/fake-timers': 13.0.5 - '@types/node': 22.17.2 + '@types/node': 22.18.0 jest-message-util: 30.0.5 jest-mock: 30.0.5 jest-util: 30.0.5 @@ -4860,7 +4866,7 @@ snapshots: '@jest/pattern@30.0.1': dependencies: - '@types/node': 22.17.2 + '@types/node': 22.18.0 jest-regex-util: 30.0.1 '@jest/reporters@30.0.5': @@ -4871,7 +4877,7 @@ snapshots: '@jest/transform': 30.0.5 '@jest/types': 30.0.5 '@jridgewell/trace-mapping': 0.3.25 - '@types/node': 22.17.2 + '@types/node': 22.18.0 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit-x: 0.2.2 @@ -4948,7 +4954,7 @@ snapshots: '@jest/schemas': 30.0.5 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 22.17.2 + '@types/node': 22.18.0 '@types/yargs': 17.0.33 chalk: 4.1.2 @@ -4964,6 +4970,8 @@ snapshots: '@jridgewell/sourcemap-codec@1.5.0': {} + '@jridgewell/sourcemap-codec@1.5.5': {} + '@jridgewell/trace-mapping@0.3.25': dependencies: '@jridgewell/resolve-uri': 3.1.2 @@ -5143,7 +5151,7 @@ snapshots: '@types/ms@2.1.0': {} - '@types/node@22.17.2': + '@types/node@22.18.0': dependencies: undici-types: 6.21.0 @@ -5153,7 +5161,7 @@ snapshots: '@types/ws@8.5.13': dependencies: - '@types/node': 22.17.2 + '@types/node': 22.18.0 '@types/yargs-parser@21.0.3': {} @@ -5309,13 +5317,13 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.4(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.3.4(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/utils': 8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) eslint: 9.34.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.2 - vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1) + vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color @@ -5327,13 +5335,13 @@ snapshots: chai: 5.2.0 tinyrainbow: 2.0.0 - '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@vitest/spy': 3.2.4 estree-walker: 3.0.3 magic-string: 0.30.17 optionalDependencies: - vite: 6.3.5(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1) '@vitest/pretty-format@3.2.4': dependencies: @@ -5382,7 +5390,7 @@ snapshots: '@vue/compiler-ssr': 3.5.12 '@vue/shared': 3.5.12 estree-walker: 2.0.2 - magic-string: 0.30.17 + magic-string: 0.30.18 postcss: 8.5.6 source-map-js: 1.2.1 @@ -6333,13 +6341,13 @@ snapshots: dependencies: lodash: 4.17.21 - graphql-config@5.1.3(@types/node@22.17.2)(graphql@16.11.0)(typescript@5.9.2): + graphql-config@5.1.3(@types/node@22.18.0)(graphql@16.11.0)(typescript@5.9.2): dependencies: '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) '@graphql-tools/merge': 9.0.24(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@22.17.2)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.0)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) cosmiconfig: 8.3.6(typescript@5.9.2) graphql: 16.11.0 @@ -6570,7 +6578,7 @@ snapshots: '@jest/expect': 30.0.5 '@jest/test-result': 30.0.5 '@jest/types': 30.0.5 - '@types/node': 22.17.2 + '@types/node': 22.18.0 chalk: 4.1.2 co: 4.6.0 dedent: 1.6.0 @@ -6590,7 +6598,7 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@30.0.5(@types/node@22.17.2): + jest-cli@30.0.5(@types/node@22.18.0): dependencies: '@jest/core': 30.0.5 '@jest/test-result': 30.0.5 @@ -6598,7 +6606,7 @@ snapshots: chalk: 4.1.2 exit-x: 0.2.2 import-local: 3.2.0 - jest-config: 30.0.5(@types/node@22.17.2) + jest-config: 30.0.5(@types/node@22.18.0) jest-util: 30.0.5 jest-validate: 30.0.5 yargs: 17.7.2 @@ -6609,7 +6617,7 @@ snapshots: - supports-color - ts-node - jest-config@30.0.5(@types/node@22.17.2): + jest-config@30.0.5(@types/node@22.18.0): dependencies: '@babel/core': 7.27.4 '@jest/get-type': 30.0.1 @@ -6636,7 +6644,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 22.17.2 + '@types/node': 22.18.0 transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -6665,7 +6673,7 @@ snapshots: '@jest/environment': 30.0.5 '@jest/fake-timers': 30.0.5 '@jest/types': 30.0.5 - '@types/node': 22.17.2 + '@types/node': 22.18.0 jest-mock: 30.0.5 jest-util: 30.0.5 jest-validate: 30.0.5 @@ -6673,7 +6681,7 @@ snapshots: jest-haste-map@30.0.5: dependencies: '@jest/types': 30.0.5 - '@types/node': 22.17.2 + '@types/node': 22.18.0 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -6712,7 +6720,7 @@ snapshots: jest-mock@30.0.5: dependencies: '@jest/types': 30.0.5 - '@types/node': 22.17.2 + '@types/node': 22.18.0 jest-util: 30.0.5 jest-pnp-resolver@1.2.3(jest-resolve@30.0.5): @@ -6746,7 +6754,7 @@ snapshots: '@jest/test-result': 30.0.5 '@jest/transform': 30.0.5 '@jest/types': 30.0.5 - '@types/node': 22.17.2 + '@types/node': 22.18.0 chalk: 4.1.2 emittery: 0.13.1 exit-x: 0.2.2 @@ -6775,7 +6783,7 @@ snapshots: '@jest/test-result': 30.0.5 '@jest/transform': 30.0.5 '@jest/types': 30.0.5 - '@types/node': 22.17.2 + '@types/node': 22.18.0 chalk: 4.1.2 cjs-module-lexer: 2.1.0 collect-v8-coverage: 1.0.2 @@ -6822,7 +6830,7 @@ snapshots: jest-util@30.0.5: dependencies: '@jest/types': 30.0.5 - '@types/node': 22.17.2 + '@types/node': 22.18.0 chalk: 4.1.2 ci-info: 4.3.0 graceful-fs: 4.2.11 @@ -6841,7 +6849,7 @@ snapshots: dependencies: '@jest/test-result': 30.0.5 '@jest/types': 30.0.5 - '@types/node': 22.17.2 + '@types/node': 22.18.0 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -6850,18 +6858,18 @@ snapshots: jest-worker@30.0.5: dependencies: - '@types/node': 22.17.2 + '@types/node': 22.18.0 '@ungap/structured-clone': 1.3.0 jest-util: 30.0.5 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@30.0.5(@types/node@22.17.2): + jest@30.0.5(@types/node@22.18.0): dependencies: '@jest/core': 30.0.5 '@jest/types': 30.0.5 import-local: 3.2.0 - jest-cli: 30.0.5(@types/node@22.17.2) + jest-cli: 30.0.5(@types/node@22.18.0) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -7002,6 +7010,10 @@ snapshots: dependencies: '@jridgewell/sourcemap-codec': 1.5.0 + magic-string@0.30.18: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.5 + make-dir@4.0.0: dependencies: semver: 7.7.2 @@ -7135,9 +7147,9 @@ snapshots: merge2@1.4.1: {} - meros@1.3.0(@types/node@22.17.2): + meros@1.3.0(@types/node@22.18.0): optionalDependencies: - '@types/node': 22.17.2 + '@types/node': 22.18.0 micromark-core-commonmark@2.0.3: dependencies: @@ -7935,12 +7947,12 @@ snapshots: ts-dedent@2.2.0: {} - ts-jest@29.4.1(@babel/core@7.27.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.0.5(@types/node@22.17.2))(typescript@5.9.2): + ts-jest@29.4.1(@babel/core@7.27.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.0.5(@types/node@22.18.0))(typescript@5.9.2): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 handlebars: 4.7.8 - jest: 30.0.5(@types/node@22.17.2) + jest: 30.0.5(@types/node@22.18.0) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -8065,13 +8077,13 @@ snapshots: value-or-promise@1.0.12: {} - vite-node@3.2.4(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1): + vite-node@3.2.4(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1): dependencies: cac: 6.7.14 debug: 4.4.1 es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 6.3.5(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - '@types/node' - jiti @@ -8086,7 +8098,7 @@ snapshots: - tsx - yaml - vite@6.3.5(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1): + vite@6.3.5(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1): dependencies: esbuild: 0.25.5 fdir: 6.4.6(picomatch@4.0.2) @@ -8095,16 +8107,16 @@ snapshots: rollup: 4.43.0 tinyglobby: 0.2.14 optionalDependencies: - '@types/node': 22.17.2 + '@types/node': 22.18.0 fsevents: 2.3.3 jiti: 2.4.0 yaml: 2.8.1 - vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1): + vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1): dependencies: '@types/chai': 5.2.2 '@vitest/expect': 3.2.4 - '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1)) '@vitest/pretty-format': 3.2.4 '@vitest/runner': 3.2.4 '@vitest/snapshot': 3.2.4 @@ -8122,12 +8134,12 @@ snapshots: tinyglobby: 0.2.14 tinypool: 1.1.1 tinyrainbow: 2.0.0 - vite: 6.3.5(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1) - vite-node: 3.2.4(@types/node@22.17.2)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1) + vite-node: 3.2.4(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1) why-is-node-running: 2.3.0 optionalDependencies: '@types/debug': 4.1.12 - '@types/node': 22.17.2 + '@types/node': 22.18.0 transitivePeerDependencies: - jiti - less From 9ed4b43624b2b40613f2f3bcb176ea2858c9d22e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 26 Aug 2025 01:00:30 +0000 Subject: [PATCH 034/133] chore(deps): update dependency zod to v4.1.3 (#1219) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index cf5fde66..6ef2f08c 100644 --- a/package.json +++ b/package.json @@ -101,6 +101,6 @@ "valibot": "1.1.0", "vitest": "^3.0.0", "yup": "1.7.0", - "zod": "4.1.1" + "zod": "4.1.3" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4ff49aec..d6117894 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -76,8 +76,8 @@ importers: specifier: 1.7.0 version: 1.7.0 zod: - specifier: 4.1.1 - version: 4.1.1 + specifier: 4.1.3 + version: 4.1.3 packages: @@ -3827,8 +3827,8 @@ packages: yup@1.7.0: resolution: {integrity: sha512-VJce62dBd+JQvoc+fCVq+KZfPHr+hXaxCcVgotfwWvlR0Ja3ffYKaJBT8rptPOSKOGJDCUnW2C2JWpud7aRP6Q==} - zod@4.1.1: - resolution: {integrity: sha512-SgMZK/h8Tigt9nnKkfJMvB/mKjiJXaX26xegP4sa+0wHIFVFWVlsQGdhklDmuargBD3Hsi3rsQRIzwJIhTPJHA==} + zod@4.1.3: + resolution: {integrity: sha512-1neef4bMce1hNTrxvHVKxWjKfGDn0oAli3Wy1Uwb7TRO1+wEwoZUZNP1NXIEESybOBiFnBOhI6a4m6tCLE8dog==} zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} @@ -8263,6 +8263,6 @@ snapshots: toposort: 2.0.2 type-fest: 2.19.0 - zod@4.1.1: {} + zod@4.1.3: {} zwitch@2.0.4: {} From 913c826af0a6edcb86f2b733bfe11feff0c04bfe Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 27 Aug 2025 06:06:53 +0000 Subject: [PATCH 035/133] chore(deps): update dependency jest to v30.1.0 (#1220) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 484 ++++++++++++++++++++++++------------------------- 2 files changed, 236 insertions(+), 250 deletions(-) diff --git a/package.json b/package.json index 6ef2f08c..fe247768 100644 --- a/package.json +++ b/package.json @@ -92,7 +92,7 @@ "@types/graphlib": "^2.1.8", "@types/node": "^22.0.0", "eslint": "9.34.0", - "jest": "30.0.5", + "jest": "30.1.0", "myzod": "1.12.1", "npm-run-all2": "8.0.4", "ts-dedent": "^2.2.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d6117894..6c2f9e4b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -49,8 +49,8 @@ importers: specifier: 9.34.0 version: 9.34.0(jiti@2.4.0) jest: - specifier: 30.0.5 - version: 30.0.5(@types/node@22.18.0) + specifier: 30.1.0 + version: 30.1.0(@types/node@22.18.0) myzod: specifier: 1.12.1 version: 1.12.1 @@ -62,7 +62,7 @@ importers: version: 2.2.0 ts-jest: specifier: 29.4.1 - version: 29.4.1(@babel/core@7.27.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.0.5(@types/node@22.18.0))(typescript@5.9.2) + version: 29.4.1(@babel/core@7.27.4)(@jest/transform@30.1.0)(@jest/types@30.0.5)(babel-jest@30.1.0(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.1.0(@types/node@22.18.0))(typescript@5.9.2) typescript: specifier: 5.9.2 version: 5.9.2 @@ -837,12 +837,12 @@ packages: resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} engines: {node: '>=8'} - '@jest/console@30.0.5': - resolution: {integrity: sha512-xY6b0XiL0Nav3ReresUarwl2oIz1gTnxGbGpho9/rbUWsLH0f1OD/VT84xs8c7VmH7MChnLb0pag6PhZhAdDiA==} + '@jest/console@30.1.0': + resolution: {integrity: sha512-qCEJKC53Z/mpRcxuK8wg0rnkUKoAeN+pet1T7Da/l8WPGzSWdE+RIUQM+LN5bQkNH5PBUab+ua9BiFTW0hKXSQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/core@30.0.5': - resolution: {integrity: sha512-fKD0OulvRsXF1hmaFgHhVJzczWzA1RXMMo9LTPuFXo9q/alDbME3JIyWYqovWsUBWSoBcsHaGPSLF9rz4l9Qeg==} + '@jest/core@30.1.0': + resolution: {integrity: sha512-pxSGVBndJFgHS8IuW6gT39kmbZwPvBZfnqJG4lN9xS++0hxuINsitpTswq8hiaZo+R/OYjVbuw0ee+UDsrK4aw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -854,36 +854,36 @@ packages: resolution: {integrity: sha512-n5H8QLDJ47QqbCNn5SuFjCRDrOLEZ0h8vAHCK5RL9Ls7Xa8AQLa/YxAc9UjFqoEDM48muwtBGjtMY5cr0PLDCw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/environment@30.0.5': - resolution: {integrity: sha512-aRX7WoaWx1oaOkDQvCWImVQ8XNtdv5sEWgk4gxR6NXb7WBUnL5sRak4WRzIQRZ1VTWPvV4VI4mgGjNL9TeKMYA==} + '@jest/environment@30.1.0': + resolution: {integrity: sha512-a9yjDya5j/6jFFCbuF3wBlxHzaFNRpZBpO52VP80BzgEfLFY7ZlZnS8K3qZGlKYiA02tLCJL3R6+66l1lY05zQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/expect-utils@30.0.5': - resolution: {integrity: sha512-F3lmTT7CXWYywoVUGTCmom0vXq3HTTkaZyTAzIy+bXSBizB7o5qzlC9VCtq0arOa8GqmNsbg/cE9C6HLn7Szew==} + '@jest/expect-utils@30.1.0': + resolution: {integrity: sha512-3anLWpBieOCIvDYkEoHTK3351znRkmtAiOyURPRwn3IIT2TLlwqkgl6P7wk5mxwW04MZvHHx/gw1qGb3VPDmLA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/expect@30.0.5': - resolution: {integrity: sha512-6udac8KKrtTtC+AXZ2iUN/R7dp7Ydry+Fo6FPFnDG54wjVMnb6vW/XNlf7Xj8UDjAE3aAVAsR4KFyKk3TCXmTA==} + '@jest/expect@30.1.0': + resolution: {integrity: sha512-Mnl7ZZ0NurliixNfFGTJ1aC+RBi2p9fFj+0RCsrXJDouaYZbQ7IZbmI9OWsf8f3BsBS/0UWCBztyXmHTn0Q8dQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/fake-timers@30.0.5': - resolution: {integrity: sha512-ZO5DHfNV+kgEAeP3gK3XlpJLL4U3Sz6ebl/n68Uwt64qFFs5bv4bfEEjyRGK5uM0C90ewooNgFuKMdkbEoMEXw==} + '@jest/fake-timers@30.1.0': + resolution: {integrity: sha512-Yei5/jGS0OZbPaLOUMrWVjAlwrlQWPkrBx2lp9M1kx79q2O4JJnrXRCEGgag06zN+a4M3FKatw7g1GYcNATPMg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/get-type@30.0.1': - resolution: {integrity: sha512-AyYdemXCptSRFirI5EPazNxyPwAL0jXt3zceFjaj8NFiKP9pOi0bfXonf6qkf82z2t3QWPeLCWWw4stPBzctLw==} + '@jest/get-type@30.1.0': + resolution: {integrity: sha512-eMbZE2hUnx1WV0pmURZY9XoXPkUYjpc55mb0CrhtdWLtzMQPFvu/rZkTLZFTsdaVQa+Tr4eWAteqcUzoawq/uA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/globals@30.0.5': - resolution: {integrity: sha512-7oEJT19WW4oe6HR7oLRvHxwlJk2gev0U9px3ufs8sX9PoD1Eza68KF0/tlN7X0dq/WVsBScXQGgCldA1V9Y/jA==} + '@jest/globals@30.1.0': + resolution: {integrity: sha512-zZEscSJnh/yNA+7Rw0aNtIy6DZ9EQGWK2PD7Ig934Y/5xJOOGnLBgGKG4YNkORhkR4UZo33CKwaazSy1+Rfosw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} '@jest/pattern@30.0.1': resolution: {integrity: sha512-gWp7NfQW27LaBQz3TITS8L7ZCQ0TLvtmI//4OwlQRx4rnWxcPNIYjxZpDcN4+UlGxgm3jS5QPz8IPTCkb59wZA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/reporters@30.0.5': - resolution: {integrity: sha512-mafft7VBX4jzED1FwGC1o/9QUM2xebzavImZMeqnsklgcyxBto8mV4HzNSzUrryJ+8R9MFOM3HgYuDradWR+4g==} + '@jest/reporters@30.1.0': + resolution: {integrity: sha512-BJg8JUaJrX9Q01DUFs4+/P9XMsYivfoafXr/vjxy43rRebkd8ZC+NrxEh2tBdOBS5ow89dSL2mIcAFqASQCU3w==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -895,24 +895,24 @@ packages: resolution: {integrity: sha512-DmdYgtezMkh3cpU8/1uyXakv3tJRcmcXxBOcO0tbaozPwpmh4YMsnWrQm9ZmZMfa5ocbxzbFk6O4bDPEc/iAnA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/snapshot-utils@30.0.5': - resolution: {integrity: sha512-XcCQ5qWHLvi29UUrowgDFvV4t7ETxX91CbDczMnoqXPOIcZOxyNdSjm6kV5XMc8+HkxfRegU/MUmnTbJRzGrUQ==} + '@jest/snapshot-utils@30.1.0': + resolution: {integrity: sha512-8Hc0WVaquUqVQ9J3inaJtV3EvkLzep81qtuS0l/gD7huGPEZCf6TZWugvaF6LpZARw6oLF291E5Y3e+eKcZe1w==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} '@jest/source-map@30.0.1': resolution: {integrity: sha512-MIRWMUUR3sdbP36oyNyhbThLHyJ2eEDClPCiHVbrYAe5g3CHRArIVpBw7cdSB5fr+ofSfIb2Tnsw8iEHL0PYQg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/test-result@30.0.5': - resolution: {integrity: sha512-wPyztnK0gbDMQAJZ43tdMro+qblDHH1Ru/ylzUo21TBKqt88ZqnKKK2m30LKmLLoKtR2lxdpCC/P3g1vfKcawQ==} + '@jest/test-result@30.1.0': + resolution: {integrity: sha512-ByBm3rucBDAeYUsArrOq6dnYIRsQ0dogs0DqOWaYjPvO4McVQYb/6dVNz9vIqz3hJbhb7b/XF5ZBLoTxUNJwbQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/test-sequencer@30.0.5': - resolution: {integrity: sha512-Aea/G1egWoIIozmDD7PBXUOxkekXl7ueGzrsGGi1SbeKgQqCYCIf+wfbflEbf2LiPxL8j2JZGLyrzZagjvW4YQ==} + '@jest/test-sequencer@30.1.0': + resolution: {integrity: sha512-qKfPCHMEHP+vLdGOVkoxbR42deneEdlAtJkn5z/h0HSfd8LJyUbTysO5esd1hJu9pXmeK6yA9ug1ccV+OJKFPg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/transform@30.0.5': - resolution: {integrity: sha512-Vk8amLQCmuZyy6GbBht1Jfo9RSdBtg7Lks+B0PecnjI8J+PCLQPGh7uI8Q/2wwpW2gLdiAfiHNsmekKlywULqg==} + '@jest/transform@30.1.0': + resolution: {integrity: sha512-OvzganIbExZDS2jl37re14XSJXK3sREyGP641RL+Ek1galupCMLWHlxop+4wQnVX7e3fxF6C3W16VzWdl2ducQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} '@jest/types@30.0.5': @@ -962,10 +962,6 @@ packages: resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} engines: {node: '>=14'} - '@pkgr/core@0.2.7': - resolution: {integrity: sha512-YLT9Zo3oNPJoBjBc4q8G2mjU4tqIbf5CEOORbUUr48dCD9q3umJ3IPlVqOqDakPfd2HuwccBaqlGhN4Gmr5OWg==} - engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} - '@pkgr/core@0.2.9': resolution: {integrity: sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==} engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} @@ -1460,8 +1456,8 @@ packages: resolution: {integrity: sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==} engines: {node: '>=8'} - babel-jest@30.0.5: - resolution: {integrity: sha512-mRijnKimhGDMsizTvBTWotwNpzrkHr+VvZUQBof2AufXKB8NXrL1W69TG20EvOz7aevx6FTJIaBuBkYxS8zolg==} + babel-jest@30.1.0: + resolution: {integrity: sha512-xoF2zwb3po3dOJMahde//mE284gcxp9WH8TTbo3Y102fas7Ga1mjGUwrw137RmvUkuA2liISRlg2BFQhmTfeHg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} peerDependencies: '@babel/core': ^7.11.0 @@ -2042,8 +2038,8 @@ packages: resolution: {integrity: sha512-/kP8CAwxzLVEeFrMm4kMmy4CCDlpipyA7MYLVrdJIkV0fYF0UaigQHRsxHiuY/GEea+bh4KSv3TIlgr+2UL6bw==} engines: {node: '>=12.0.0'} - expect@30.0.5: - resolution: {integrity: sha512-P0te2pt+hHI5qLJkIR+iMvS+lYUZml8rKKsohVHAGY+uClp9XVbdyYNJOIjSRpHVp8s8YqxJCiHUkSYZGr8rtQ==} + expect@30.1.0: + resolution: {integrity: sha512-BjTOhEHlQVAXJqkgmxRt33ZbA8H+NLKpZ+Ff0qsFEOhPMNNcdJ160TocOSyiQS8ZNEUHXozg2ykBDboySPTSKQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} exsolve@1.0.7: @@ -2432,12 +2428,12 @@ packages: resolution: {integrity: sha512-bGl2Ntdx0eAwXuGpdLdVYVr5YQHnSZlQ0y9HVDu565lCUAe9sj6JOtBbMmBBikGIegne9piDDIOeiLVoqTkz4A==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-circus@30.0.5: - resolution: {integrity: sha512-h/sjXEs4GS+NFFfqBDYT7y5Msfxh04EwWLhQi0F8kuWpe+J/7tICSlswU8qvBqumR3kFgHbfu7vU6qruWWBPug==} + jest-circus@30.1.0: + resolution: {integrity: sha512-+59Jn7UmRwWiC9GV2mKdf6ei2SGE2/QwO3fn+G7gm3XprNCJsbn+8VFdkI7vKsyRH8yzzPXMnF88XCBcYy8+PQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-cli@30.0.5: - resolution: {integrity: sha512-Sa45PGMkBZzF94HMrlX4kUyPOwUpdZasaliKN3mifvDmkhLYqLLg8HQTzn6gq7vJGahFYMQjXgyJWfYImKZzOw==} + jest-cli@30.1.0: + resolution: {integrity: sha512-H18qsWNR73XNzHbafx+UrP8L4EcziiG41S192You2tfellKSj5BERpAovjh+RMHtuCId4F50VC/JuwPVNaFkRg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: @@ -2446,8 +2442,8 @@ packages: node-notifier: optional: true - jest-config@30.0.5: - resolution: {integrity: sha512-aIVh+JNOOpzUgzUnPn5FLtyVnqc3TQHVMupYtyeURSb//iLColiMIR8TxCIDKyx9ZgjKnXGucuW68hCxgbrwmA==} + jest-config@30.1.0: + resolution: {integrity: sha512-XqpN5l/DkQQJIFig+eZL2KiBTXrhV9MUXQtstX0ES3XhgIujQppUagF79CI86ES3pp/UVVJVwQyCBt89I9nsJA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} peerDependencies: '@types/node': '*' @@ -2461,36 +2457,36 @@ packages: ts-node: optional: true - jest-diff@30.0.5: - resolution: {integrity: sha512-1UIqE9PoEKaHcIKvq2vbibrCog4Y8G0zmOxgQUVEiTqwR5hJVMCoDsN1vFvI5JvwD37hjueZ1C4l2FyGnfpE0A==} + jest-diff@30.1.0: + resolution: {integrity: sha512-DHkvlHONjXknCIzYqFCIqH9uT0G6ZMN0U9Brb64BbQnCmVNcILa3FLTHh21h+E1oNRpaTvupTQTCiOhz2hx7hw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} jest-docblock@30.0.1: resolution: {integrity: sha512-/vF78qn3DYphAaIc3jy4gA7XSAz167n9Bm/wn/1XhTLW7tTBIzXtCJpb/vcmc73NIIeeohCbdL94JasyXUZsGA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-each@30.0.5: - resolution: {integrity: sha512-dKjRsx1uZ96TVyejD3/aAWcNKy6ajMaN531CwWIsrazIqIoXI9TnnpPlkrEYku/8rkS3dh2rbH+kMOyiEIv0xQ==} + jest-each@30.1.0: + resolution: {integrity: sha512-A+9FKzxPluqogNahpCv04UJvcZ9B3HamqpDNWNKDjtxVRYB8xbZLFuCr8JAJFpNp83CA0anGQFlpQna9Me+/tQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-environment-node@30.0.5: - resolution: {integrity: sha512-ppYizXdLMSvciGsRsMEnv/5EFpvOdXBaXRBzFUDPWrsfmog4kYrOGWXarLllz6AXan6ZAA/kYokgDWuos1IKDA==} + jest-environment-node@30.1.0: + resolution: {integrity: sha512-PoHcBVniqBcJubrLbMSrDIzD3RONpnqPeuNB1dOvU4aWzuV5vwViAtZtvAPtcZJW6i4n2YAAM+r8AvKWgUegmA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-haste-map@30.0.5: - resolution: {integrity: sha512-dkmlWNlsTSR0nH3nRfW5BKbqHefLZv0/6LCccG0xFCTWcJu8TuEwG+5Cm75iBfjVoockmO6J35o5gxtFSn5xeg==} + jest-haste-map@30.1.0: + resolution: {integrity: sha512-JLeM84kNjpRkggcGpQLsV7B8W4LNUWz7oDNVnY1Vjj22b5/fAb3kk3htiD+4Na8bmJmjJR7rBtS2Rmq/NEcADg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-leak-detector@30.0.5: - resolution: {integrity: sha512-3Uxr5uP8jmHMcsOtYMRB/zf1gXN3yUIc+iPorhNETG54gErFIiUhLvyY/OggYpSMOEYqsmRxmuU4ZOoX5jpRFg==} + jest-leak-detector@30.1.0: + resolution: {integrity: sha512-AoFvJzwxK+4KohH60vRuHaqXfWmeBATFZpzpmzNmYTtmRMiyGPVhkXpBqxUQunw+dQB48bDf4NpUs6ivVbRv1g==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-matcher-utils@30.0.5: - resolution: {integrity: sha512-uQgGWt7GOrRLP1P7IwNWwK1WAQbq+m//ZY0yXygyfWp0rJlksMSLQAA4wYQC3b6wl3zfnchyTx+k3HZ5aPtCbQ==} + jest-matcher-utils@30.1.0: + resolution: {integrity: sha512-A0/O5+WzSmeBrsm1PMOLyKkKUekbCbAtgyViRvJagjMnOsuKQbukiHJy7y+7cTST9pvoi81NyHXz5Fc96UoKUQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-message-util@30.0.5: - resolution: {integrity: sha512-NAiDOhsK3V7RU0Aa/HnrQo+E4JlbarbmI3q6Pi4KcxicdtjV82gcIUrejOtczChtVQR4kddu1E1EJlW6EN9IyA==} + jest-message-util@30.1.0: + resolution: {integrity: sha512-HizKDGG98cYkWmaLUHChq4iN+oCENohQLb7Z5guBPumYs+/etonmNFlg1Ps6yN9LTPyZn+M+b/9BbnHx3WTMDg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} jest-mock@30.0.5: @@ -2510,44 +2506,44 @@ packages: resolution: {integrity: sha512-jHEQgBXAgc+Gh4g0p3bCevgRCVRkB4VB70zhoAE48gxeSr1hfUOsM/C2WoJgVL7Eyg//hudYENbm3Ne+/dRVVA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-resolve-dependencies@30.0.5: - resolution: {integrity: sha512-/xMvBR4MpwkrHW4ikZIWRttBBRZgWK4d6xt3xW1iRDSKt4tXzYkMkyPfBnSCgv96cpkrctfXs6gexeqMYqdEpw==} + jest-resolve-dependencies@30.1.0: + resolution: {integrity: sha512-pNWAfnzoqPWPYNaHwWmR34+5ib9DcUr5E+GLyIxjGxZEwdfgYnXLjPP3WfSW0VaTUnYes1Tl0cQNyBPr5plZmg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-resolve@30.0.5: - resolution: {integrity: sha512-d+DjBQ1tIhdz91B79mywH5yYu76bZuE96sSbxj8MkjWVx5WNdt1deEFRONVL4UkKLSrAbMkdhb24XN691yDRHg==} + jest-resolve@30.1.0: + resolution: {integrity: sha512-hASe7D/wRtZw8Cm607NrlF7fi3HWC5wmA5jCVc2QjQAB2pTwP9eVZILGEi6OeSLNUtE1zb04sXRowsdh5CUjwA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-runner@30.0.5: - resolution: {integrity: sha512-JcCOucZmgp+YuGgLAXHNy7ualBx4wYSgJVWrYMRBnb79j9PD0Jxh0EHvR5Cx/r0Ce+ZBC4hCdz2AzFFLl9hCiw==} + jest-runner@30.1.0: + resolution: {integrity: sha512-Qd8JLWBooJQZBbstY9sdzt3B3Euj4cjDB0X+CeExURm1+BqZcXA5pSPb4XwbgPlBhTXkUva3bb0B94CFy9ZnZw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-runtime@30.0.5: - resolution: {integrity: sha512-7oySNDkqpe4xpX5PPiJTe5vEa+Ak/NnNz2bGYZrA1ftG3RL3EFlHaUkA1Cjx+R8IhK0Vg43RML5mJedGTPNz3A==} + jest-runtime@30.1.0: + resolution: {integrity: sha512-tPKb7oCj1D0CffhJrP+yheK/lHx2PrMaK21BmBD3YUirr4E4gxXa6jNb9r9yhiD0LRv9J5AoTmzJVYeyWPgt6A==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-snapshot@30.0.5: - resolution: {integrity: sha512-T00dWU/Ek3LqTp4+DcW6PraVxjk28WY5Ua/s+3zUKSERZSNyxTqhDXCWKG5p2HAJ+crVQ3WJ2P9YVHpj1tkW+g==} + jest-snapshot@30.1.0: + resolution: {integrity: sha512-rBR/lTOi4ANpoqMhehPcGX/KGVXBEwe4V6HH27B3J1VZoXHXLk4nbMVGusbPc2y+of9/sU5uH2E998IlO7sLlQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} jest-util@30.0.5: resolution: {integrity: sha512-pvyPWssDZR0FlfMxCBoc0tvM8iUEskaRFALUtGQYzVEAqisAztmy+R8LnU14KT4XA0H/a5HMVTXat1jLne010g==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-validate@30.0.5: - resolution: {integrity: sha512-ouTm6VFHaS2boyl+k4u+Qip4TSH7Uld5tyD8psQ8abGgt2uYYB8VwVfAHWHjHc0NWmGGbwO5h0sCPOGHHevefw==} + jest-validate@30.1.0: + resolution: {integrity: sha512-7P3ZlCFW/vhfQ8pE7zW6Oi4EzvuB4sgR72Q1INfW9m0FGo0GADYlPwIkf4CyPq7wq85g+kPMtPOHNAdWHeBOaA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-watcher@30.0.5: - resolution: {integrity: sha512-z9slj/0vOwBDBjN3L4z4ZYaA+pG56d6p3kTUhFRYGvXbXMWhXmb/FIxREZCD06DYUwDKKnj2T80+Pb71CQ0KEg==} + jest-watcher@30.1.0: + resolution: {integrity: sha512-aXSHgnDY2XhHt7zo8MkdN0ovl/DbmPEw2KTEZRtH+4MeLZ+eYwnO+RIUk4nVlIx1wwH+7FZk+wPOYSDWDW3F4w==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-worker@30.0.5: - resolution: {integrity: sha512-ojRXsWzEP16NdUuBw/4H/zkZdHOa7MMYCk4E430l+8fELeLg/mqmMlRhjL7UNZvQrDmnovWZV4DxX03fZF48fQ==} + jest-worker@30.1.0: + resolution: {integrity: sha512-uvWcSjlwAAgIu133Tt77A05H7RIk3Ho8tZL50bQM2AkvLdluw9NG48lRCl3Dt+MOH719n/0nnb5YxUwcuJiKRA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest@30.0.5: - resolution: {integrity: sha512-y2mfcJywuTUkvLm2Lp1/pFX8kTgMO5yyQGq/Sk/n2mN7XWYp4JsCZ/QXW34M8YScgk8bPZlREH04f6blPnoHnQ==} + jest@30.1.0: + resolution: {integrity: sha512-4/QcV9Yw4+O3Hsjj/71s4fz2WHdJuXd11bbEJYeK7kxF/bZ1Kx1aCjBaXQ5eTeSLSLv3/XwhAhFQaX/KnTF/yw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: @@ -3422,10 +3418,6 @@ packages: resolution: {integrity: sha512-MeQTA1r0litLUf0Rp/iisCaL8761lKAZHaimlbGK4j0HysC4PLfqygQj9srcs0m2RdtDYnF8UuYyKpbjHYp7Jw==} engines: {node: ^14.18.0 || >=16.0.0} - synckit@0.11.8: - resolution: {integrity: sha512-+XZ+r1XGIJGeQk3VvXhT6xx/VpbHsRzsTkGgF6E5RX9TTXD0118l87puaEBZ566FhqblC6U0d4XnubznJDm30A==} - engines: {node: ^14.18.0 || >=16.0.0} - tapable@2.2.2: resolution: {integrity: sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==} engines: {node: '>=6'} @@ -3929,10 +3921,10 @@ snapshots: '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.4) '@babel/helpers': 7.27.6 - '@babel/parser': 7.28.0 + '@babel/parser': 7.28.3 '@babel/template': 7.27.2 '@babel/traverse': 7.27.4 - '@babel/types': 7.28.1 + '@babel/types': 7.28.2 convert-source-map: 2.0.0 debug: 4.4.1 gensync: 1.0.0-beta.2 @@ -3951,8 +3943,8 @@ snapshots: '@babel/generator@7.27.5': dependencies: - '@babel/parser': 7.28.0 - '@babel/types': 7.28.1 + '@babel/parser': 7.28.3 + '@babel/types': 7.28.2 '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 jsesc: 3.1.0 @@ -3968,7 +3960,7 @@ snapshots: '@babel/helper-module-imports@7.27.1': dependencies: '@babel/traverse': 7.27.4 - '@babel/types': 7.28.1 + '@babel/types': 7.28.2 transitivePeerDependencies: - supports-color @@ -3992,11 +3984,11 @@ snapshots: '@babel/helpers@7.27.6': dependencies: '@babel/template': 7.27.2 - '@babel/types': 7.28.1 + '@babel/types': 7.28.2 '@babel/parser@7.27.0': dependencies: - '@babel/types': 7.28.1 + '@babel/types': 7.28.2 '@babel/parser@7.28.0': dependencies: @@ -4109,8 +4101,8 @@ snapshots: '@babel/template@7.27.2': dependencies: '@babel/code-frame': 7.27.1 - '@babel/parser': 7.28.0 - '@babel/types': 7.28.1 + '@babel/parser': 7.28.3 + '@babel/types': 7.28.2 '@babel/traverse@7.27.4': dependencies: @@ -4118,7 +4110,7 @@ snapshots: '@babel/generator': 7.27.5 '@babel/parser': 7.28.0 '@babel/template': 7.27.2 - '@babel/types': 7.28.1 + '@babel/types': 7.28.2 debug: 4.4.1 globals: 11.12.0 transitivePeerDependencies: @@ -4779,22 +4771,22 @@ snapshots: '@istanbuljs/schema@0.1.3': {} - '@jest/console@30.0.5': + '@jest/console@30.1.0': dependencies: '@jest/types': 30.0.5 '@types/node': 22.18.0 chalk: 4.1.2 - jest-message-util: 30.0.5 + jest-message-util: 30.1.0 jest-util: 30.0.5 slash: 3.0.0 - '@jest/core@30.0.5': + '@jest/core@30.1.0': dependencies: - '@jest/console': 30.0.5 + '@jest/console': 30.1.0 '@jest/pattern': 30.0.1 - '@jest/reporters': 30.0.5 - '@jest/test-result': 30.0.5 - '@jest/transform': 30.0.5 + '@jest/reporters': 30.1.0 + '@jest/test-result': 30.1.0 + '@jest/transform': 30.1.0 '@jest/types': 30.0.5 '@types/node': 22.18.0 ansi-escapes: 4.3.2 @@ -4803,18 +4795,18 @@ snapshots: exit-x: 0.2.2 graceful-fs: 4.2.11 jest-changed-files: 30.0.5 - jest-config: 30.0.5(@types/node@22.18.0) - jest-haste-map: 30.0.5 - jest-message-util: 30.0.5 + jest-config: 30.1.0(@types/node@22.18.0) + jest-haste-map: 30.1.0 + jest-message-util: 30.1.0 jest-regex-util: 30.0.1 - jest-resolve: 30.0.5 - jest-resolve-dependencies: 30.0.5 - jest-runner: 30.0.5 - jest-runtime: 30.0.5 - jest-snapshot: 30.0.5 + jest-resolve: 30.1.0 + jest-resolve-dependencies: 30.1.0 + jest-runner: 30.1.0 + jest-runtime: 30.1.0 + jest-snapshot: 30.1.0 jest-util: 30.0.5 - jest-validate: 30.0.5 - jest-watcher: 30.0.5 + jest-validate: 30.1.0 + jest-watcher: 30.1.0 micromatch: 4.0.8 pretty-format: 30.0.5 slash: 3.0.0 @@ -4826,39 +4818,39 @@ snapshots: '@jest/diff-sequences@30.0.1': {} - '@jest/environment@30.0.5': + '@jest/environment@30.1.0': dependencies: - '@jest/fake-timers': 30.0.5 + '@jest/fake-timers': 30.1.0 '@jest/types': 30.0.5 '@types/node': 22.18.0 jest-mock: 30.0.5 - '@jest/expect-utils@30.0.5': + '@jest/expect-utils@30.1.0': dependencies: - '@jest/get-type': 30.0.1 + '@jest/get-type': 30.1.0 - '@jest/expect@30.0.5': + '@jest/expect@30.1.0': dependencies: - expect: 30.0.5 - jest-snapshot: 30.0.5 + expect: 30.1.0 + jest-snapshot: 30.1.0 transitivePeerDependencies: - supports-color - '@jest/fake-timers@30.0.5': + '@jest/fake-timers@30.1.0': dependencies: '@jest/types': 30.0.5 '@sinonjs/fake-timers': 13.0.5 '@types/node': 22.18.0 - jest-message-util: 30.0.5 + jest-message-util: 30.1.0 jest-mock: 30.0.5 jest-util: 30.0.5 - '@jest/get-type@30.0.1': {} + '@jest/get-type@30.1.0': {} - '@jest/globals@30.0.5': + '@jest/globals@30.1.0': dependencies: - '@jest/environment': 30.0.5 - '@jest/expect': 30.0.5 + '@jest/environment': 30.1.0 + '@jest/expect': 30.1.0 '@jest/types': 30.0.5 jest-mock: 30.0.5 transitivePeerDependencies: @@ -4869,12 +4861,12 @@ snapshots: '@types/node': 22.18.0 jest-regex-util: 30.0.1 - '@jest/reporters@30.0.5': + '@jest/reporters@30.1.0': dependencies: '@bcoe/v8-coverage': 0.2.3 - '@jest/console': 30.0.5 - '@jest/test-result': 30.0.5 - '@jest/transform': 30.0.5 + '@jest/console': 30.1.0 + '@jest/test-result': 30.1.0 + '@jest/transform': 30.1.0 '@jest/types': 30.0.5 '@jridgewell/trace-mapping': 0.3.25 '@types/node': 22.18.0 @@ -4888,9 +4880,9 @@ snapshots: istanbul-lib-report: 3.0.1 istanbul-lib-source-maps: 5.0.6 istanbul-reports: 3.1.7 - jest-message-util: 30.0.5 + jest-message-util: 30.1.0 jest-util: 30.0.5 - jest-worker: 30.0.5 + jest-worker: 30.1.0 slash: 3.0.0 string-length: 4.0.2 v8-to-istanbul: 9.3.0 @@ -4901,7 +4893,7 @@ snapshots: dependencies: '@sinclair/typebox': 0.34.33 - '@jest/snapshot-utils@30.0.5': + '@jest/snapshot-utils@30.1.0': dependencies: '@jest/types': 30.0.5 chalk: 4.1.2 @@ -4914,21 +4906,21 @@ snapshots: callsites: 3.1.0 graceful-fs: 4.2.11 - '@jest/test-result@30.0.5': + '@jest/test-result@30.1.0': dependencies: - '@jest/console': 30.0.5 + '@jest/console': 30.1.0 '@jest/types': 30.0.5 '@types/istanbul-lib-coverage': 2.0.6 collect-v8-coverage: 1.0.2 - '@jest/test-sequencer@30.0.5': + '@jest/test-sequencer@30.1.0': dependencies: - '@jest/test-result': 30.0.5 + '@jest/test-result': 30.1.0 graceful-fs: 4.2.11 - jest-haste-map: 30.0.5 + jest-haste-map: 30.1.0 slash: 3.0.0 - '@jest/transform@30.0.5': + '@jest/transform@30.1.0': dependencies: '@babel/core': 7.27.4 '@jest/types': 30.0.5 @@ -4938,7 +4930,7 @@ snapshots: convert-source-map: 2.0.0 fast-json-stable-stringify: 2.1.0 graceful-fs: 4.2.11 - jest-haste-map: 30.0.5 + jest-haste-map: 30.1.0 jest-regex-util: 30.0.1 jest-util: 30.0.5 micromatch: 4.0.8 @@ -4975,7 +4967,7 @@ snapshots: '@jridgewell/trace-mapping@0.3.25': dependencies: '@jridgewell/resolve-uri': 3.1.2 - '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/sourcemap-codec': 1.5.5 '@kamilkisiela/fast-url-parser@1.1.4': {} @@ -5001,8 +4993,6 @@ snapshots: '@pkgjs/parseargs@0.11.0': optional: true - '@pkgr/core@0.2.7': {} - '@pkgr/core@0.2.9': {} '@repeaterjs/repeater@3.0.6': {} @@ -5096,24 +5086,24 @@ snapshots: '@types/babel__core@7.20.5': dependencies: - '@babel/parser': 7.28.0 - '@babel/types': 7.28.1 + '@babel/parser': 7.28.3 + '@babel/types': 7.28.2 '@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.28.1 + '@babel/types': 7.28.2 '@types/babel__template@7.4.4': dependencies: - '@babel/parser': 7.28.0 - '@babel/types': 7.28.1 + '@babel/parser': 7.28.3 + '@babel/types': 7.28.2 '@types/babel__traverse@7.20.6': dependencies: - '@babel/types': 7.28.1 + '@babel/types': 7.28.2 '@types/chai@5.2.2': dependencies: @@ -5482,10 +5472,10 @@ snapshots: auto-bind@4.0.0: {} - babel-jest@30.0.5(@babel/core@7.27.4): + babel-jest@30.1.0(@babel/core@7.27.4): dependencies: '@babel/core': 7.27.4 - '@jest/transform': 30.0.5 + '@jest/transform': 30.1.0 '@types/babel__core': 7.20.5 babel-plugin-istanbul: 7.0.0 babel-preset-jest: 30.0.1(@babel/core@7.27.4) @@ -5508,7 +5498,7 @@ snapshots: babel-plugin-jest-hoist@30.0.1: dependencies: '@babel/template': 7.27.2 - '@babel/types': 7.28.1 + '@babel/types': 7.28.2 '@types/babel__core': 7.20.5 babel-preset-current-node-syntax@1.1.0(@babel/core@7.27.4): @@ -6162,12 +6152,12 @@ snapshots: expect-type@1.2.1: {} - expect@30.0.5: + expect@30.1.0: dependencies: - '@jest/expect-utils': 30.0.5 - '@jest/get-type': 30.0.1 - jest-matcher-utils: 30.0.5 - jest-message-util: 30.0.5 + '@jest/expect-utils': 30.1.0 + '@jest/get-type': 30.1.0 + jest-matcher-utils: 30.1.0 + jest-message-util: 30.1.0 jest-mock: 30.0.5 jest-util: 30.0.5 @@ -6534,7 +6524,7 @@ snapshots: istanbul-lib-instrument@6.0.3: dependencies: '@babel/core': 7.27.4 - '@babel/parser': 7.28.0 + '@babel/parser': 7.28.3 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 semver: 7.7.2 @@ -6572,22 +6562,22 @@ snapshots: jest-util: 30.0.5 p-limit: 3.1.0 - jest-circus@30.0.5: + jest-circus@30.1.0: dependencies: - '@jest/environment': 30.0.5 - '@jest/expect': 30.0.5 - '@jest/test-result': 30.0.5 + '@jest/environment': 30.1.0 + '@jest/expect': 30.1.0 + '@jest/test-result': 30.1.0 '@jest/types': 30.0.5 '@types/node': 22.18.0 chalk: 4.1.2 co: 4.6.0 dedent: 1.6.0 is-generator-fn: 2.1.0 - jest-each: 30.0.5 - jest-matcher-utils: 30.0.5 - jest-message-util: 30.0.5 - jest-runtime: 30.0.5 - jest-snapshot: 30.0.5 + jest-each: 30.1.0 + jest-matcher-utils: 30.1.0 + jest-message-util: 30.1.0 + jest-runtime: 30.1.0 + jest-snapshot: 30.1.0 jest-util: 30.0.5 p-limit: 3.1.0 pretty-format: 30.0.5 @@ -6598,17 +6588,17 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@30.0.5(@types/node@22.18.0): + jest-cli@30.1.0(@types/node@22.18.0): dependencies: - '@jest/core': 30.0.5 - '@jest/test-result': 30.0.5 + '@jest/core': 30.1.0 + '@jest/test-result': 30.1.0 '@jest/types': 30.0.5 chalk: 4.1.2 exit-x: 0.2.2 import-local: 3.2.0 - jest-config: 30.0.5(@types/node@22.18.0) + jest-config: 30.1.0(@types/node@22.18.0) jest-util: 30.0.5 - jest-validate: 30.0.5 + jest-validate: 30.1.0 yargs: 17.7.2 transitivePeerDependencies: - '@types/node' @@ -6617,27 +6607,27 @@ snapshots: - supports-color - ts-node - jest-config@30.0.5(@types/node@22.18.0): + jest-config@30.1.0(@types/node@22.18.0): dependencies: '@babel/core': 7.27.4 - '@jest/get-type': 30.0.1 + '@jest/get-type': 30.1.0 '@jest/pattern': 30.0.1 - '@jest/test-sequencer': 30.0.5 + '@jest/test-sequencer': 30.1.0 '@jest/types': 30.0.5 - babel-jest: 30.0.5(@babel/core@7.27.4) + babel-jest: 30.1.0(@babel/core@7.27.4) chalk: 4.1.2 ci-info: 4.3.0 deepmerge: 4.3.1 glob: 10.4.5 graceful-fs: 4.2.11 - jest-circus: 30.0.5 + jest-circus: 30.1.0 jest-docblock: 30.0.1 - jest-environment-node: 30.0.5 + jest-environment-node: 30.1.0 jest-regex-util: 30.0.1 - jest-resolve: 30.0.5 - jest-runner: 30.0.5 + jest-resolve: 30.1.0 + jest-runner: 30.1.0 jest-util: 30.0.5 - jest-validate: 30.0.5 + jest-validate: 30.1.0 micromatch: 4.0.8 parse-json: 5.2.0 pretty-format: 30.0.5 @@ -6649,10 +6639,10 @@ snapshots: - babel-plugin-macros - supports-color - jest-diff@30.0.5: + jest-diff@30.1.0: dependencies: '@jest/diff-sequences': 30.0.1 - '@jest/get-type': 30.0.1 + '@jest/get-type': 30.1.0 chalk: 4.1.2 pretty-format: 30.0.5 @@ -6660,25 +6650,25 @@ snapshots: dependencies: detect-newline: 3.1.0 - jest-each@30.0.5: + jest-each@30.1.0: dependencies: - '@jest/get-type': 30.0.1 + '@jest/get-type': 30.1.0 '@jest/types': 30.0.5 chalk: 4.1.2 jest-util: 30.0.5 pretty-format: 30.0.5 - jest-environment-node@30.0.5: + jest-environment-node@30.1.0: dependencies: - '@jest/environment': 30.0.5 - '@jest/fake-timers': 30.0.5 + '@jest/environment': 30.1.0 + '@jest/fake-timers': 30.1.0 '@jest/types': 30.0.5 '@types/node': 22.18.0 jest-mock: 30.0.5 jest-util: 30.0.5 - jest-validate: 30.0.5 + jest-validate: 30.1.0 - jest-haste-map@30.0.5: + jest-haste-map@30.1.0: dependencies: '@jest/types': 30.0.5 '@types/node': 22.18.0 @@ -6687,25 +6677,25 @@ snapshots: graceful-fs: 4.2.11 jest-regex-util: 30.0.1 jest-util: 30.0.5 - jest-worker: 30.0.5 + jest-worker: 30.1.0 micromatch: 4.0.8 walker: 1.0.8 optionalDependencies: fsevents: 2.3.3 - jest-leak-detector@30.0.5: + jest-leak-detector@30.1.0: dependencies: - '@jest/get-type': 30.0.1 + '@jest/get-type': 30.1.0 pretty-format: 30.0.5 - jest-matcher-utils@30.0.5: + jest-matcher-utils@30.1.0: dependencies: - '@jest/get-type': 30.0.1 + '@jest/get-type': 30.1.0 chalk: 4.1.2 - jest-diff: 30.0.5 + jest-diff: 30.1.0 pretty-format: 30.0.5 - jest-message-util@30.0.5: + jest-message-util@30.1.0: dependencies: '@babel/code-frame': 7.27.1 '@jest/types': 30.0.5 @@ -6723,36 +6713,36 @@ snapshots: '@types/node': 22.18.0 jest-util: 30.0.5 - jest-pnp-resolver@1.2.3(jest-resolve@30.0.5): + jest-pnp-resolver@1.2.3(jest-resolve@30.1.0): optionalDependencies: - jest-resolve: 30.0.5 + jest-resolve: 30.1.0 jest-regex-util@30.0.1: {} - jest-resolve-dependencies@30.0.5: + jest-resolve-dependencies@30.1.0: dependencies: jest-regex-util: 30.0.1 - jest-snapshot: 30.0.5 + jest-snapshot: 30.1.0 transitivePeerDependencies: - supports-color - jest-resolve@30.0.5: + jest-resolve@30.1.0: dependencies: chalk: 4.1.2 graceful-fs: 4.2.11 - jest-haste-map: 30.0.5 - jest-pnp-resolver: 1.2.3(jest-resolve@30.0.5) + jest-haste-map: 30.1.0 + jest-pnp-resolver: 1.2.3(jest-resolve@30.1.0) jest-util: 30.0.5 - jest-validate: 30.0.5 + jest-validate: 30.1.0 slash: 3.0.0 unrs-resolver: 1.7.13 - jest-runner@30.0.5: + jest-runner@30.1.0: dependencies: - '@jest/console': 30.0.5 - '@jest/environment': 30.0.5 - '@jest/test-result': 30.0.5 - '@jest/transform': 30.0.5 + '@jest/console': 30.1.0 + '@jest/environment': 30.1.0 + '@jest/test-result': 30.1.0 + '@jest/transform': 30.1.0 '@jest/types': 30.0.5 '@types/node': 22.18.0 chalk: 4.1.2 @@ -6760,28 +6750,28 @@ snapshots: exit-x: 0.2.2 graceful-fs: 4.2.11 jest-docblock: 30.0.1 - jest-environment-node: 30.0.5 - jest-haste-map: 30.0.5 - jest-leak-detector: 30.0.5 - jest-message-util: 30.0.5 - jest-resolve: 30.0.5 - jest-runtime: 30.0.5 + jest-environment-node: 30.1.0 + jest-haste-map: 30.1.0 + jest-leak-detector: 30.1.0 + jest-message-util: 30.1.0 + jest-resolve: 30.1.0 + jest-runtime: 30.1.0 jest-util: 30.0.5 - jest-watcher: 30.0.5 - jest-worker: 30.0.5 + jest-watcher: 30.1.0 + jest-worker: 30.1.0 p-limit: 3.1.0 source-map-support: 0.5.13 transitivePeerDependencies: - supports-color - jest-runtime@30.0.5: + jest-runtime@30.1.0: dependencies: - '@jest/environment': 30.0.5 - '@jest/fake-timers': 30.0.5 - '@jest/globals': 30.0.5 + '@jest/environment': 30.1.0 + '@jest/fake-timers': 30.1.0 + '@jest/globals': 30.1.0 '@jest/source-map': 30.0.1 - '@jest/test-result': 30.0.5 - '@jest/transform': 30.0.5 + '@jest/test-result': 30.1.0 + '@jest/transform': 30.1.0 '@jest/types': 30.0.5 '@types/node': 22.18.0 chalk: 4.1.2 @@ -6789,41 +6779,41 @@ snapshots: collect-v8-coverage: 1.0.2 glob: 10.4.5 graceful-fs: 4.2.11 - jest-haste-map: 30.0.5 - jest-message-util: 30.0.5 + jest-haste-map: 30.1.0 + jest-message-util: 30.1.0 jest-mock: 30.0.5 jest-regex-util: 30.0.1 - jest-resolve: 30.0.5 - jest-snapshot: 30.0.5 + jest-resolve: 30.1.0 + jest-snapshot: 30.1.0 jest-util: 30.0.5 slash: 3.0.0 strip-bom: 4.0.0 transitivePeerDependencies: - supports-color - jest-snapshot@30.0.5: + jest-snapshot@30.1.0: dependencies: '@babel/core': 7.27.4 '@babel/generator': 7.27.5 '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.4) '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.27.4) - '@babel/types': 7.28.1 - '@jest/expect-utils': 30.0.5 - '@jest/get-type': 30.0.1 - '@jest/snapshot-utils': 30.0.5 - '@jest/transform': 30.0.5 + '@babel/types': 7.28.2 + '@jest/expect-utils': 30.1.0 + '@jest/get-type': 30.1.0 + '@jest/snapshot-utils': 30.1.0 + '@jest/transform': 30.1.0 '@jest/types': 30.0.5 babel-preset-current-node-syntax: 1.1.0(@babel/core@7.27.4) chalk: 4.1.2 - expect: 30.0.5 + expect: 30.1.0 graceful-fs: 4.2.11 - jest-diff: 30.0.5 - jest-matcher-utils: 30.0.5 - jest-message-util: 30.0.5 + jest-diff: 30.1.0 + jest-matcher-utils: 30.1.0 + jest-message-util: 30.1.0 jest-util: 30.0.5 pretty-format: 30.0.5 semver: 7.7.2 - synckit: 0.11.8 + synckit: 0.11.11 transitivePeerDependencies: - supports-color @@ -6834,20 +6824,20 @@ snapshots: chalk: 4.1.2 ci-info: 4.3.0 graceful-fs: 4.2.11 - picomatch: 4.0.2 + picomatch: 4.0.3 - jest-validate@30.0.5: + jest-validate@30.1.0: dependencies: - '@jest/get-type': 30.0.1 + '@jest/get-type': 30.1.0 '@jest/types': 30.0.5 camelcase: 6.3.0 chalk: 4.1.2 leven: 3.1.0 pretty-format: 30.0.5 - jest-watcher@30.0.5: + jest-watcher@30.1.0: dependencies: - '@jest/test-result': 30.0.5 + '@jest/test-result': 30.1.0 '@jest/types': 30.0.5 '@types/node': 22.18.0 ansi-escapes: 4.3.2 @@ -6856,7 +6846,7 @@ snapshots: jest-util: 30.0.5 string-length: 4.0.2 - jest-worker@30.0.5: + jest-worker@30.1.0: dependencies: '@types/node': 22.18.0 '@ungap/structured-clone': 1.3.0 @@ -6864,12 +6854,12 @@ snapshots: merge-stream: 2.0.0 supports-color: 8.1.1 - jest@30.0.5(@types/node@22.18.0): + jest@30.1.0(@types/node@22.18.0): dependencies: - '@jest/core': 30.0.5 + '@jest/core': 30.1.0 '@jest/types': 30.0.5 import-local: 3.2.0 - jest-cli: 30.0.5(@types/node@22.18.0) + jest-cli: 30.1.0(@types/node@22.18.0) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -7881,10 +7871,6 @@ snapshots: dependencies: '@pkgr/core': 0.2.9 - synckit@0.11.8: - dependencies: - '@pkgr/core': 0.2.7 - tapable@2.2.2: {} test-exclude@6.0.0: @@ -7947,12 +7933,12 @@ snapshots: ts-dedent@2.2.0: {} - ts-jest@29.4.1(@babel/core@7.27.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.0.5(@types/node@22.18.0))(typescript@5.9.2): + ts-jest@29.4.1(@babel/core@7.27.4)(@jest/transform@30.1.0)(@jest/types@30.0.5)(babel-jest@30.1.0(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.1.0(@types/node@22.18.0))(typescript@5.9.2): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 handlebars: 4.7.8 - jest: 30.0.5(@types/node@22.18.0) + jest: 30.1.0(@types/node@22.18.0) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -7962,9 +7948,9 @@ snapshots: yargs-parser: 21.1.1 optionalDependencies: '@babel/core': 7.27.4 - '@jest/transform': 30.0.5 + '@jest/transform': 30.1.0 '@jest/types': 30.0.5 - babel-jest: 30.0.5(@babel/core@7.27.4) + babel-jest: 30.1.0(@babel/core@7.27.4) jest-util: 30.0.5 ts-log@2.2.7: {} From 65176223b0537377944a163d6a70fc82cad9d0ad Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 27 Aug 2025 17:04:05 +0000 Subject: [PATCH 036/133] chore(deps): update dependency jest to v30.1.1 (#1221) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 296 ++++++++++++++++++++++++------------------------- 2 files changed, 149 insertions(+), 149 deletions(-) diff --git a/package.json b/package.json index fe247768..36d2063f 100644 --- a/package.json +++ b/package.json @@ -92,7 +92,7 @@ "@types/graphlib": "^2.1.8", "@types/node": "^22.0.0", "eslint": "9.34.0", - "jest": "30.1.0", + "jest": "30.1.1", "myzod": "1.12.1", "npm-run-all2": "8.0.4", "ts-dedent": "^2.2.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6c2f9e4b..0544b9fd 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -49,8 +49,8 @@ importers: specifier: 9.34.0 version: 9.34.0(jiti@2.4.0) jest: - specifier: 30.1.0 - version: 30.1.0(@types/node@22.18.0) + specifier: 30.1.1 + version: 30.1.1(@types/node@22.18.0) myzod: specifier: 1.12.1 version: 1.12.1 @@ -62,7 +62,7 @@ importers: version: 2.2.0 ts-jest: specifier: 29.4.1 - version: 29.4.1(@babel/core@7.27.4)(@jest/transform@30.1.0)(@jest/types@30.0.5)(babel-jest@30.1.0(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.1.0(@types/node@22.18.0))(typescript@5.9.2) + version: 29.4.1(@babel/core@7.27.4)(@jest/transform@30.1.1)(@jest/types@30.0.5)(babel-jest@30.1.1(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.1.1(@types/node@22.18.0))(typescript@5.9.2) typescript: specifier: 5.9.2 version: 5.9.2 @@ -837,12 +837,12 @@ packages: resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} engines: {node: '>=8'} - '@jest/console@30.1.0': - resolution: {integrity: sha512-qCEJKC53Z/mpRcxuK8wg0rnkUKoAeN+pet1T7Da/l8WPGzSWdE+RIUQM+LN5bQkNH5PBUab+ua9BiFTW0hKXSQ==} + '@jest/console@30.1.1': + resolution: {integrity: sha512-f7TGqR1k4GtN5pyFrKmq+ZVndesiwLU33yDpJIGMS9aW+j6hKjue7ljeAdznBsH9kAnxUWe2Y+Y3fLV/FJt3gA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/core@30.1.0': - resolution: {integrity: sha512-pxSGVBndJFgHS8IuW6gT39kmbZwPvBZfnqJG4lN9xS++0hxuINsitpTswq8hiaZo+R/OYjVbuw0ee+UDsrK4aw==} + '@jest/core@30.1.1': + resolution: {integrity: sha512-3ncU9peZ3D2VdgRkdZtUceTrDgX5yiDRwAFjtxNfU22IiZrpVWlv/FogzDLYSJQptQGfFo3PcHK86a2oG6WUGg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -854,36 +854,36 @@ packages: resolution: {integrity: sha512-n5H8QLDJ47QqbCNn5SuFjCRDrOLEZ0h8vAHCK5RL9Ls7Xa8AQLa/YxAc9UjFqoEDM48muwtBGjtMY5cr0PLDCw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/environment@30.1.0': - resolution: {integrity: sha512-a9yjDya5j/6jFFCbuF3wBlxHzaFNRpZBpO52VP80BzgEfLFY7ZlZnS8K3qZGlKYiA02tLCJL3R6+66l1lY05zQ==} + '@jest/environment@30.1.1': + resolution: {integrity: sha512-yWHbU+3j7ehQE+NRpnxRvHvpUhoohIjMePBbIr8lfe0cWVb0WeTf80DNux1GPJa18CDHiIU5DtksGUfxcDE+Rw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/expect-utils@30.1.0': - resolution: {integrity: sha512-3anLWpBieOCIvDYkEoHTK3351znRkmtAiOyURPRwn3IIT2TLlwqkgl6P7wk5mxwW04MZvHHx/gw1qGb3VPDmLA==} + '@jest/expect-utils@30.1.1': + resolution: {integrity: sha512-5YUHr27fpJ64dnvtu+tt11ewATynrHkGYD+uSFgRr8V2eFJis/vEXgToyLwccIwqBihVfz9jwio+Zr1ab1Zihw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/expect@30.1.0': - resolution: {integrity: sha512-Mnl7ZZ0NurliixNfFGTJ1aC+RBi2p9fFj+0RCsrXJDouaYZbQ7IZbmI9OWsf8f3BsBS/0UWCBztyXmHTn0Q8dQ==} + '@jest/expect@30.1.1': + resolution: {integrity: sha512-3vHIHsF+qd3D8FU2c7U5l3rg1fhDwAYcGyHyZAi94YIlTwcJ+boNhRyJf373cl4wxbOX+0Q7dF40RTrTFTSuig==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/fake-timers@30.1.0': - resolution: {integrity: sha512-Yei5/jGS0OZbPaLOUMrWVjAlwrlQWPkrBx2lp9M1kx79q2O4JJnrXRCEGgag06zN+a4M3FKatw7g1GYcNATPMg==} + '@jest/fake-timers@30.1.1': + resolution: {integrity: sha512-fK/25dNgBNYPw3eLi2CRs57g1H04qBAFNMsUY3IRzkfx/m4THe0E1zF+yGQBOMKKc2XQVdc9EYbJ4hEm7/2UtA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} '@jest/get-type@30.1.0': resolution: {integrity: sha512-eMbZE2hUnx1WV0pmURZY9XoXPkUYjpc55mb0CrhtdWLtzMQPFvu/rZkTLZFTsdaVQa+Tr4eWAteqcUzoawq/uA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/globals@30.1.0': - resolution: {integrity: sha512-zZEscSJnh/yNA+7Rw0aNtIy6DZ9EQGWK2PD7Ig934Y/5xJOOGnLBgGKG4YNkORhkR4UZo33CKwaazSy1+Rfosw==} + '@jest/globals@30.1.1': + resolution: {integrity: sha512-NNUUkHT2TU/xztZl6r1UXvJL+zvCwmZsQDmK69fVHHcB9fBtlu3FInnzOve/ZoyKnWY8JXWJNT+Lkmu1+ubXUA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} '@jest/pattern@30.0.1': resolution: {integrity: sha512-gWp7NfQW27LaBQz3TITS8L7ZCQ0TLvtmI//4OwlQRx4rnWxcPNIYjxZpDcN4+UlGxgm3jS5QPz8IPTCkb59wZA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/reporters@30.1.0': - resolution: {integrity: sha512-BJg8JUaJrX9Q01DUFs4+/P9XMsYivfoafXr/vjxy43rRebkd8ZC+NrxEh2tBdOBS5ow89dSL2mIcAFqASQCU3w==} + '@jest/reporters@30.1.1': + resolution: {integrity: sha512-Hb2Bq80kahOC6Sv2waEaH1rEU6VdFcM6WHaRBWQF9tf30+nJHxhl/Upbgo9+25f0mOgbphxvbwSMjSgy9gW/FA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -895,24 +895,24 @@ packages: resolution: {integrity: sha512-DmdYgtezMkh3cpU8/1uyXakv3tJRcmcXxBOcO0tbaozPwpmh4YMsnWrQm9ZmZMfa5ocbxzbFk6O4bDPEc/iAnA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/snapshot-utils@30.1.0': - resolution: {integrity: sha512-8Hc0WVaquUqVQ9J3inaJtV3EvkLzep81qtuS0l/gD7huGPEZCf6TZWugvaF6LpZARw6oLF291E5Y3e+eKcZe1w==} + '@jest/snapshot-utils@30.1.1': + resolution: {integrity: sha512-TkVBc9wuN22TT8hESRFmjjg/xIMu7z0J3UDYtIRydzCqlLPTB7jK1DDBKdnTUZ4zL3z3rnPpzV6rL1Uzh87sXg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} '@jest/source-map@30.0.1': resolution: {integrity: sha512-MIRWMUUR3sdbP36oyNyhbThLHyJ2eEDClPCiHVbrYAe5g3CHRArIVpBw7cdSB5fr+ofSfIb2Tnsw8iEHL0PYQg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/test-result@30.1.0': - resolution: {integrity: sha512-ByBm3rucBDAeYUsArrOq6dnYIRsQ0dogs0DqOWaYjPvO4McVQYb/6dVNz9vIqz3hJbhb7b/XF5ZBLoTxUNJwbQ==} + '@jest/test-result@30.1.1': + resolution: {integrity: sha512-bMdj7fNu8iZuBPSnbVir5ezvWmVo4jrw7xDE+A33Yb3ENCoiJK9XgOLgal+rJ9XSKjsL7aPUMIo87zhN7I5o2w==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/test-sequencer@30.1.0': - resolution: {integrity: sha512-qKfPCHMEHP+vLdGOVkoxbR42deneEdlAtJkn5z/h0HSfd8LJyUbTysO5esd1hJu9pXmeK6yA9ug1ccV+OJKFPg==} + '@jest/test-sequencer@30.1.1': + resolution: {integrity: sha512-yruRdLXSA3HYD/MTNykgJ6VYEacNcXDFRMqKVAwlYegmxICUiT/B++CNuhJnYJzKYks61iYnjVsMwbUqmmAYJg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/transform@30.1.0': - resolution: {integrity: sha512-OvzganIbExZDS2jl37re14XSJXK3sREyGP641RL+Ek1galupCMLWHlxop+4wQnVX7e3fxF6C3W16VzWdl2ducQ==} + '@jest/transform@30.1.1': + resolution: {integrity: sha512-PHIA2AbAASBfk6evkNifvmx9lkOSkmvaQoO6VSpuL8+kQqDMHeDoJ7RU3YP1wWAMD7AyQn9UL5iheuFYCC4lqQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} '@jest/types@30.0.5': @@ -1456,8 +1456,8 @@ packages: resolution: {integrity: sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==} engines: {node: '>=8'} - babel-jest@30.1.0: - resolution: {integrity: sha512-xoF2zwb3po3dOJMahde//mE284gcxp9WH8TTbo3Y102fas7Ga1mjGUwrw137RmvUkuA2liISRlg2BFQhmTfeHg==} + babel-jest@30.1.1: + resolution: {integrity: sha512-1bZfC/V03qBCzASvZpNFhx3Ouj6LgOd4KFJm4br/fYOS+tSSvVCE61QmcAVbMTwq/GoB7KN4pzGMoyr9cMxSvQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} peerDependencies: '@babel/core': ^7.11.0 @@ -2038,8 +2038,8 @@ packages: resolution: {integrity: sha512-/kP8CAwxzLVEeFrMm4kMmy4CCDlpipyA7MYLVrdJIkV0fYF0UaigQHRsxHiuY/GEea+bh4KSv3TIlgr+2UL6bw==} engines: {node: '>=12.0.0'} - expect@30.1.0: - resolution: {integrity: sha512-BjTOhEHlQVAXJqkgmxRt33ZbA8H+NLKpZ+Ff0qsFEOhPMNNcdJ160TocOSyiQS8ZNEUHXozg2ykBDboySPTSKQ==} + expect@30.1.1: + resolution: {integrity: sha512-OKe7cdic4qbfWd/CcgwJvvCrNX2KWfuMZee9AfJHL1gTYmvqjBjZG1a2NwfhspBzxzlXwsN75WWpKTYfsJpBxg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} exsolve@1.0.7: @@ -2428,12 +2428,12 @@ packages: resolution: {integrity: sha512-bGl2Ntdx0eAwXuGpdLdVYVr5YQHnSZlQ0y9HVDu565lCUAe9sj6JOtBbMmBBikGIegne9piDDIOeiLVoqTkz4A==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-circus@30.1.0: - resolution: {integrity: sha512-+59Jn7UmRwWiC9GV2mKdf6ei2SGE2/QwO3fn+G7gm3XprNCJsbn+8VFdkI7vKsyRH8yzzPXMnF88XCBcYy8+PQ==} + jest-circus@30.1.1: + resolution: {integrity: sha512-M3Vd4x5wD7eSJspuTvRF55AkOOBndRxgW3gqQBDlFvbH3X+ASdi8jc+EqXEeAFd/UHulVYIlC4XKJABOhLw6UA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-cli@30.1.0: - resolution: {integrity: sha512-H18qsWNR73XNzHbafx+UrP8L4EcziiG41S192You2tfellKSj5BERpAovjh+RMHtuCId4F50VC/JuwPVNaFkRg==} + jest-cli@30.1.1: + resolution: {integrity: sha512-xm9llxuh5OoI5KZaYzlMhklryHBwg9LZy/gEaaMlXlxb+cZekGNzukU0iblbDo3XOBuN6N0CgK4ykgNRYSEb6g==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: @@ -2442,8 +2442,8 @@ packages: node-notifier: optional: true - jest-config@30.1.0: - resolution: {integrity: sha512-XqpN5l/DkQQJIFig+eZL2KiBTXrhV9MUXQtstX0ES3XhgIujQppUagF79CI86ES3pp/UVVJVwQyCBt89I9nsJA==} + jest-config@30.1.1: + resolution: {integrity: sha512-xuPGUGDw+9fPPnGmddnLnHS/mhKUiJOW7K65vErYmglEPKq65NKwSRchkQ7iv6gqjs2l+YNEsAtbsplxozdOWg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} peerDependencies: '@types/node': '*' @@ -2457,8 +2457,8 @@ packages: ts-node: optional: true - jest-diff@30.1.0: - resolution: {integrity: sha512-DHkvlHONjXknCIzYqFCIqH9uT0G6ZMN0U9Brb64BbQnCmVNcILa3FLTHh21h+E1oNRpaTvupTQTCiOhz2hx7hw==} + jest-diff@30.1.1: + resolution: {integrity: sha512-LUU2Gx8EhYxpdzTR6BmjL1ifgOAQJQELTHOiPv9KITaKjZvJ9Jmgigx01tuZ49id37LorpGc9dPBPlXTboXScw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} jest-docblock@30.0.1: @@ -2469,8 +2469,8 @@ packages: resolution: {integrity: sha512-A+9FKzxPluqogNahpCv04UJvcZ9B3HamqpDNWNKDjtxVRYB8xbZLFuCr8JAJFpNp83CA0anGQFlpQna9Me+/tQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-environment-node@30.1.0: - resolution: {integrity: sha512-PoHcBVniqBcJubrLbMSrDIzD3RONpnqPeuNB1dOvU4aWzuV5vwViAtZtvAPtcZJW6i4n2YAAM+r8AvKWgUegmA==} + jest-environment-node@30.1.1: + resolution: {integrity: sha512-IaMoaA6saxnJimqCppUDqKck+LKM0Jg+OxyMUIvs1yGd2neiC22o8zXo90k04+tO+49OmgMR4jTgM5e4B0S62Q==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} jest-haste-map@30.1.0: @@ -2481,8 +2481,8 @@ packages: resolution: {integrity: sha512-AoFvJzwxK+4KohH60vRuHaqXfWmeBATFZpzpmzNmYTtmRMiyGPVhkXpBqxUQunw+dQB48bDf4NpUs6ivVbRv1g==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-matcher-utils@30.1.0: - resolution: {integrity: sha512-A0/O5+WzSmeBrsm1PMOLyKkKUekbCbAtgyViRvJagjMnOsuKQbukiHJy7y+7cTST9pvoi81NyHXz5Fc96UoKUQ==} + jest-matcher-utils@30.1.1: + resolution: {integrity: sha512-SuH2QVemK48BNTqReti6FtjsMPFsSOD/ZzRxU1TttR7RiRsRSe78d03bb4Cx6D4bQC/80Q8U4VnaaAH9FlbZ9w==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} jest-message-util@30.1.0: @@ -2506,24 +2506,24 @@ packages: resolution: {integrity: sha512-jHEQgBXAgc+Gh4g0p3bCevgRCVRkB4VB70zhoAE48gxeSr1hfUOsM/C2WoJgVL7Eyg//hudYENbm3Ne+/dRVVA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-resolve-dependencies@30.1.0: - resolution: {integrity: sha512-pNWAfnzoqPWPYNaHwWmR34+5ib9DcUr5E+GLyIxjGxZEwdfgYnXLjPP3WfSW0VaTUnYes1Tl0cQNyBPr5plZmg==} + jest-resolve-dependencies@30.1.1: + resolution: {integrity: sha512-tRtaaoH8Ws1Gn1o/9pedt19dvVgr81WwdmvJSP9Ow3amOUOP2nN9j94u5jC9XlIfa2Q1FQKIWWQwL4ajqsjCGQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} jest-resolve@30.1.0: resolution: {integrity: sha512-hASe7D/wRtZw8Cm607NrlF7fi3HWC5wmA5jCVc2QjQAB2pTwP9eVZILGEi6OeSLNUtE1zb04sXRowsdh5CUjwA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-runner@30.1.0: - resolution: {integrity: sha512-Qd8JLWBooJQZBbstY9sdzt3B3Euj4cjDB0X+CeExURm1+BqZcXA5pSPb4XwbgPlBhTXkUva3bb0B94CFy9ZnZw==} + jest-runner@30.1.1: + resolution: {integrity: sha512-ATe6372SOfJvCRExtCAr06I4rGujwFdKg44b6i7/aOgFnULwjxzugJ0Y4AnG+jeSeQi8dU7R6oqLGmsxRUbErQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-runtime@30.1.0: - resolution: {integrity: sha512-tPKb7oCj1D0CffhJrP+yheK/lHx2PrMaK21BmBD3YUirr4E4gxXa6jNb9r9yhiD0LRv9J5AoTmzJVYeyWPgt6A==} + jest-runtime@30.1.1: + resolution: {integrity: sha512-7sOyR0Oekw4OesQqqBHuYJRB52QtXiq0NNgLRzVogiMSxKCMiliUd6RrXHCnG5f12Age/ggidCBiQftzcA9XKw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-snapshot@30.1.0: - resolution: {integrity: sha512-rBR/lTOi4ANpoqMhehPcGX/KGVXBEwe4V6HH27B3J1VZoXHXLk4nbMVGusbPc2y+of9/sU5uH2E998IlO7sLlQ==} + jest-snapshot@30.1.1: + resolution: {integrity: sha512-7/iBEzoJqEt2TjkQY+mPLHP8cbPhLReZVkkxjTMzIzoTC4cZufg7HzKo/n9cIkXKj2LG0x3mmBHsZto+7TOmFg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} jest-util@30.0.5: @@ -2534,16 +2534,16 @@ packages: resolution: {integrity: sha512-7P3ZlCFW/vhfQ8pE7zW6Oi4EzvuB4sgR72Q1INfW9m0FGo0GADYlPwIkf4CyPq7wq85g+kPMtPOHNAdWHeBOaA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-watcher@30.1.0: - resolution: {integrity: sha512-aXSHgnDY2XhHt7zo8MkdN0ovl/DbmPEw2KTEZRtH+4MeLZ+eYwnO+RIUk4nVlIx1wwH+7FZk+wPOYSDWDW3F4w==} + jest-watcher@30.1.1: + resolution: {integrity: sha512-CrAQ73LlaS6KGQQw6NBi71g7qvP7scy+4+2c0jKX6+CWaYg85lZiig5nQQVTsS5a5sffNPL3uxXnaE9d7v9eQg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} jest-worker@30.1.0: resolution: {integrity: sha512-uvWcSjlwAAgIu133Tt77A05H7RIk3Ho8tZL50bQM2AkvLdluw9NG48lRCl3Dt+MOH719n/0nnb5YxUwcuJiKRA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest@30.1.0: - resolution: {integrity: sha512-4/QcV9Yw4+O3Hsjj/71s4fz2WHdJuXd11bbEJYeK7kxF/bZ1Kx1aCjBaXQ5eTeSLSLv3/XwhAhFQaX/KnTF/yw==} + jest@30.1.1: + resolution: {integrity: sha512-yC3JvpP/ZcAZX5rYCtXO/g9k6VTCQz0VFE2v1FpxytWzUqfDtu0XL/pwnNvptzYItvGwomh1ehomRNMOyhCJKw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: @@ -4771,7 +4771,7 @@ snapshots: '@istanbuljs/schema@0.1.3': {} - '@jest/console@30.1.0': + '@jest/console@30.1.1': dependencies: '@jest/types': 30.0.5 '@types/node': 22.18.0 @@ -4780,13 +4780,13 @@ snapshots: jest-util: 30.0.5 slash: 3.0.0 - '@jest/core@30.1.0': + '@jest/core@30.1.1': dependencies: - '@jest/console': 30.1.0 + '@jest/console': 30.1.1 '@jest/pattern': 30.0.1 - '@jest/reporters': 30.1.0 - '@jest/test-result': 30.1.0 - '@jest/transform': 30.1.0 + '@jest/reporters': 30.1.1 + '@jest/test-result': 30.1.1 + '@jest/transform': 30.1.1 '@jest/types': 30.0.5 '@types/node': 22.18.0 ansi-escapes: 4.3.2 @@ -4795,18 +4795,18 @@ snapshots: exit-x: 0.2.2 graceful-fs: 4.2.11 jest-changed-files: 30.0.5 - jest-config: 30.1.0(@types/node@22.18.0) + jest-config: 30.1.1(@types/node@22.18.0) jest-haste-map: 30.1.0 jest-message-util: 30.1.0 jest-regex-util: 30.0.1 jest-resolve: 30.1.0 - jest-resolve-dependencies: 30.1.0 - jest-runner: 30.1.0 - jest-runtime: 30.1.0 - jest-snapshot: 30.1.0 + jest-resolve-dependencies: 30.1.1 + jest-runner: 30.1.1 + jest-runtime: 30.1.1 + jest-snapshot: 30.1.1 jest-util: 30.0.5 jest-validate: 30.1.0 - jest-watcher: 30.1.0 + jest-watcher: 30.1.1 micromatch: 4.0.8 pretty-format: 30.0.5 slash: 3.0.0 @@ -4818,25 +4818,25 @@ snapshots: '@jest/diff-sequences@30.0.1': {} - '@jest/environment@30.1.0': + '@jest/environment@30.1.1': dependencies: - '@jest/fake-timers': 30.1.0 + '@jest/fake-timers': 30.1.1 '@jest/types': 30.0.5 '@types/node': 22.18.0 jest-mock: 30.0.5 - '@jest/expect-utils@30.1.0': + '@jest/expect-utils@30.1.1': dependencies: '@jest/get-type': 30.1.0 - '@jest/expect@30.1.0': + '@jest/expect@30.1.1': dependencies: - expect: 30.1.0 - jest-snapshot: 30.1.0 + expect: 30.1.1 + jest-snapshot: 30.1.1 transitivePeerDependencies: - supports-color - '@jest/fake-timers@30.1.0': + '@jest/fake-timers@30.1.1': dependencies: '@jest/types': 30.0.5 '@sinonjs/fake-timers': 13.0.5 @@ -4847,10 +4847,10 @@ snapshots: '@jest/get-type@30.1.0': {} - '@jest/globals@30.1.0': + '@jest/globals@30.1.1': dependencies: - '@jest/environment': 30.1.0 - '@jest/expect': 30.1.0 + '@jest/environment': 30.1.1 + '@jest/expect': 30.1.1 '@jest/types': 30.0.5 jest-mock: 30.0.5 transitivePeerDependencies: @@ -4861,12 +4861,12 @@ snapshots: '@types/node': 22.18.0 jest-regex-util: 30.0.1 - '@jest/reporters@30.1.0': + '@jest/reporters@30.1.1': dependencies: '@bcoe/v8-coverage': 0.2.3 - '@jest/console': 30.1.0 - '@jest/test-result': 30.1.0 - '@jest/transform': 30.1.0 + '@jest/console': 30.1.1 + '@jest/test-result': 30.1.1 + '@jest/transform': 30.1.1 '@jest/types': 30.0.5 '@jridgewell/trace-mapping': 0.3.25 '@types/node': 22.18.0 @@ -4893,7 +4893,7 @@ snapshots: dependencies: '@sinclair/typebox': 0.34.33 - '@jest/snapshot-utils@30.1.0': + '@jest/snapshot-utils@30.1.1': dependencies: '@jest/types': 30.0.5 chalk: 4.1.2 @@ -4906,21 +4906,21 @@ snapshots: callsites: 3.1.0 graceful-fs: 4.2.11 - '@jest/test-result@30.1.0': + '@jest/test-result@30.1.1': dependencies: - '@jest/console': 30.1.0 + '@jest/console': 30.1.1 '@jest/types': 30.0.5 '@types/istanbul-lib-coverage': 2.0.6 collect-v8-coverage: 1.0.2 - '@jest/test-sequencer@30.1.0': + '@jest/test-sequencer@30.1.1': dependencies: - '@jest/test-result': 30.1.0 + '@jest/test-result': 30.1.1 graceful-fs: 4.2.11 jest-haste-map: 30.1.0 slash: 3.0.0 - '@jest/transform@30.1.0': + '@jest/transform@30.1.1': dependencies: '@babel/core': 7.27.4 '@jest/types': 30.0.5 @@ -5472,10 +5472,10 @@ snapshots: auto-bind@4.0.0: {} - babel-jest@30.1.0(@babel/core@7.27.4): + babel-jest@30.1.1(@babel/core@7.27.4): dependencies: '@babel/core': 7.27.4 - '@jest/transform': 30.1.0 + '@jest/transform': 30.1.1 '@types/babel__core': 7.20.5 babel-plugin-istanbul: 7.0.0 babel-preset-jest: 30.0.1(@babel/core@7.27.4) @@ -6152,11 +6152,11 @@ snapshots: expect-type@1.2.1: {} - expect@30.1.0: + expect@30.1.1: dependencies: - '@jest/expect-utils': 30.1.0 + '@jest/expect-utils': 30.1.1 '@jest/get-type': 30.1.0 - jest-matcher-utils: 30.1.0 + jest-matcher-utils: 30.1.1 jest-message-util: 30.1.0 jest-mock: 30.0.5 jest-util: 30.0.5 @@ -6562,11 +6562,11 @@ snapshots: jest-util: 30.0.5 p-limit: 3.1.0 - jest-circus@30.1.0: + jest-circus@30.1.1: dependencies: - '@jest/environment': 30.1.0 - '@jest/expect': 30.1.0 - '@jest/test-result': 30.1.0 + '@jest/environment': 30.1.1 + '@jest/expect': 30.1.1 + '@jest/test-result': 30.1.1 '@jest/types': 30.0.5 '@types/node': 22.18.0 chalk: 4.1.2 @@ -6574,10 +6574,10 @@ snapshots: dedent: 1.6.0 is-generator-fn: 2.1.0 jest-each: 30.1.0 - jest-matcher-utils: 30.1.0 + jest-matcher-utils: 30.1.1 jest-message-util: 30.1.0 - jest-runtime: 30.1.0 - jest-snapshot: 30.1.0 + jest-runtime: 30.1.1 + jest-snapshot: 30.1.1 jest-util: 30.0.5 p-limit: 3.1.0 pretty-format: 30.0.5 @@ -6588,15 +6588,15 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@30.1.0(@types/node@22.18.0): + jest-cli@30.1.1(@types/node@22.18.0): dependencies: - '@jest/core': 30.1.0 - '@jest/test-result': 30.1.0 + '@jest/core': 30.1.1 + '@jest/test-result': 30.1.1 '@jest/types': 30.0.5 chalk: 4.1.2 exit-x: 0.2.2 import-local: 3.2.0 - jest-config: 30.1.0(@types/node@22.18.0) + jest-config: 30.1.1(@types/node@22.18.0) jest-util: 30.0.5 jest-validate: 30.1.0 yargs: 17.7.2 @@ -6607,25 +6607,25 @@ snapshots: - supports-color - ts-node - jest-config@30.1.0(@types/node@22.18.0): + jest-config@30.1.1(@types/node@22.18.0): dependencies: '@babel/core': 7.27.4 '@jest/get-type': 30.1.0 '@jest/pattern': 30.0.1 - '@jest/test-sequencer': 30.1.0 + '@jest/test-sequencer': 30.1.1 '@jest/types': 30.0.5 - babel-jest: 30.1.0(@babel/core@7.27.4) + babel-jest: 30.1.1(@babel/core@7.27.4) chalk: 4.1.2 ci-info: 4.3.0 deepmerge: 4.3.1 glob: 10.4.5 graceful-fs: 4.2.11 - jest-circus: 30.1.0 + jest-circus: 30.1.1 jest-docblock: 30.0.1 - jest-environment-node: 30.1.0 + jest-environment-node: 30.1.1 jest-regex-util: 30.0.1 jest-resolve: 30.1.0 - jest-runner: 30.1.0 + jest-runner: 30.1.1 jest-util: 30.0.5 jest-validate: 30.1.0 micromatch: 4.0.8 @@ -6639,7 +6639,7 @@ snapshots: - babel-plugin-macros - supports-color - jest-diff@30.1.0: + jest-diff@30.1.1: dependencies: '@jest/diff-sequences': 30.0.1 '@jest/get-type': 30.1.0 @@ -6658,10 +6658,10 @@ snapshots: jest-util: 30.0.5 pretty-format: 30.0.5 - jest-environment-node@30.1.0: + jest-environment-node@30.1.1: dependencies: - '@jest/environment': 30.1.0 - '@jest/fake-timers': 30.1.0 + '@jest/environment': 30.1.1 + '@jest/fake-timers': 30.1.1 '@jest/types': 30.0.5 '@types/node': 22.18.0 jest-mock: 30.0.5 @@ -6688,11 +6688,11 @@ snapshots: '@jest/get-type': 30.1.0 pretty-format: 30.0.5 - jest-matcher-utils@30.1.0: + jest-matcher-utils@30.1.1: dependencies: '@jest/get-type': 30.1.0 chalk: 4.1.2 - jest-diff: 30.1.0 + jest-diff: 30.1.1 pretty-format: 30.0.5 jest-message-util@30.1.0: @@ -6719,10 +6719,10 @@ snapshots: jest-regex-util@30.0.1: {} - jest-resolve-dependencies@30.1.0: + jest-resolve-dependencies@30.1.1: dependencies: jest-regex-util: 30.0.1 - jest-snapshot: 30.1.0 + jest-snapshot: 30.1.1 transitivePeerDependencies: - supports-color @@ -6737,12 +6737,12 @@ snapshots: slash: 3.0.0 unrs-resolver: 1.7.13 - jest-runner@30.1.0: + jest-runner@30.1.1: dependencies: - '@jest/console': 30.1.0 - '@jest/environment': 30.1.0 - '@jest/test-result': 30.1.0 - '@jest/transform': 30.1.0 + '@jest/console': 30.1.1 + '@jest/environment': 30.1.1 + '@jest/test-result': 30.1.1 + '@jest/transform': 30.1.1 '@jest/types': 30.0.5 '@types/node': 22.18.0 chalk: 4.1.2 @@ -6750,28 +6750,28 @@ snapshots: exit-x: 0.2.2 graceful-fs: 4.2.11 jest-docblock: 30.0.1 - jest-environment-node: 30.1.0 + jest-environment-node: 30.1.1 jest-haste-map: 30.1.0 jest-leak-detector: 30.1.0 jest-message-util: 30.1.0 jest-resolve: 30.1.0 - jest-runtime: 30.1.0 + jest-runtime: 30.1.1 jest-util: 30.0.5 - jest-watcher: 30.1.0 + jest-watcher: 30.1.1 jest-worker: 30.1.0 p-limit: 3.1.0 source-map-support: 0.5.13 transitivePeerDependencies: - supports-color - jest-runtime@30.1.0: + jest-runtime@30.1.1: dependencies: - '@jest/environment': 30.1.0 - '@jest/fake-timers': 30.1.0 - '@jest/globals': 30.1.0 + '@jest/environment': 30.1.1 + '@jest/fake-timers': 30.1.1 + '@jest/globals': 30.1.1 '@jest/source-map': 30.0.1 - '@jest/test-result': 30.1.0 - '@jest/transform': 30.1.0 + '@jest/test-result': 30.1.1 + '@jest/transform': 30.1.1 '@jest/types': 30.0.5 '@types/node': 22.18.0 chalk: 4.1.2 @@ -6784,31 +6784,31 @@ snapshots: jest-mock: 30.0.5 jest-regex-util: 30.0.1 jest-resolve: 30.1.0 - jest-snapshot: 30.1.0 + jest-snapshot: 30.1.1 jest-util: 30.0.5 slash: 3.0.0 strip-bom: 4.0.0 transitivePeerDependencies: - supports-color - jest-snapshot@30.1.0: + jest-snapshot@30.1.1: dependencies: '@babel/core': 7.27.4 '@babel/generator': 7.27.5 '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.4) '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.27.4) '@babel/types': 7.28.2 - '@jest/expect-utils': 30.1.0 + '@jest/expect-utils': 30.1.1 '@jest/get-type': 30.1.0 - '@jest/snapshot-utils': 30.1.0 - '@jest/transform': 30.1.0 + '@jest/snapshot-utils': 30.1.1 + '@jest/transform': 30.1.1 '@jest/types': 30.0.5 babel-preset-current-node-syntax: 1.1.0(@babel/core@7.27.4) chalk: 4.1.2 - expect: 30.1.0 + expect: 30.1.1 graceful-fs: 4.2.11 - jest-diff: 30.1.0 - jest-matcher-utils: 30.1.0 + jest-diff: 30.1.1 + jest-matcher-utils: 30.1.1 jest-message-util: 30.1.0 jest-util: 30.0.5 pretty-format: 30.0.5 @@ -6835,9 +6835,9 @@ snapshots: leven: 3.1.0 pretty-format: 30.0.5 - jest-watcher@30.1.0: + jest-watcher@30.1.1: dependencies: - '@jest/test-result': 30.1.0 + '@jest/test-result': 30.1.1 '@jest/types': 30.0.5 '@types/node': 22.18.0 ansi-escapes: 4.3.2 @@ -6854,12 +6854,12 @@ snapshots: merge-stream: 2.0.0 supports-color: 8.1.1 - jest@30.1.0(@types/node@22.18.0): + jest@30.1.1(@types/node@22.18.0): dependencies: - '@jest/core': 30.1.0 + '@jest/core': 30.1.1 '@jest/types': 30.0.5 import-local: 3.2.0 - jest-cli: 30.1.0(@types/node@22.18.0) + jest-cli: 30.1.1(@types/node@22.18.0) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -7933,12 +7933,12 @@ snapshots: ts-dedent@2.2.0: {} - ts-jest@29.4.1(@babel/core@7.27.4)(@jest/transform@30.1.0)(@jest/types@30.0.5)(babel-jest@30.1.0(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.1.0(@types/node@22.18.0))(typescript@5.9.2): + ts-jest@29.4.1(@babel/core@7.27.4)(@jest/transform@30.1.1)(@jest/types@30.0.5)(babel-jest@30.1.1(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.1.1(@types/node@22.18.0))(typescript@5.9.2): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 handlebars: 4.7.8 - jest: 30.1.0(@types/node@22.18.0) + jest: 30.1.1(@types/node@22.18.0) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -7948,9 +7948,9 @@ snapshots: yargs-parser: 21.1.1 optionalDependencies: '@babel/core': 7.27.4 - '@jest/transform': 30.1.0 + '@jest/transform': 30.1.1 '@jest/types': 30.0.5 - babel-jest: 30.1.0(@babel/core@7.27.4) + babel-jest: 30.1.1(@babel/core@7.27.4) jest-util: 30.0.5 ts-log@2.2.7: {} From 10fe6696fb3847c8bd4f2e1fc9f7c228865927a8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 27 Aug 2025 22:31:40 +0000 Subject: [PATCH 037/133] chore(deps): update dependency zod to v4.1.4 (#1222) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 36d2063f..6569a694 100644 --- a/package.json +++ b/package.json @@ -101,6 +101,6 @@ "valibot": "1.1.0", "vitest": "^3.0.0", "yup": "1.7.0", - "zod": "4.1.3" + "zod": "4.1.4" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0544b9fd..9188f244 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -76,8 +76,8 @@ importers: specifier: 1.7.0 version: 1.7.0 zod: - specifier: 4.1.3 - version: 4.1.3 + specifier: 4.1.4 + version: 4.1.4 packages: @@ -3819,8 +3819,8 @@ packages: yup@1.7.0: resolution: {integrity: sha512-VJce62dBd+JQvoc+fCVq+KZfPHr+hXaxCcVgotfwWvlR0Ja3ffYKaJBT8rptPOSKOGJDCUnW2C2JWpud7aRP6Q==} - zod@4.1.3: - resolution: {integrity: sha512-1neef4bMce1hNTrxvHVKxWjKfGDn0oAli3Wy1Uwb7TRO1+wEwoZUZNP1NXIEESybOBiFnBOhI6a4m6tCLE8dog==} + zod@4.1.4: + resolution: {integrity: sha512-2YqJuWkU6IIK9qcE4k1lLLhyZ6zFw7XVRdQGpV97jEIZwTrscUw+DY31Xczd8nwaoksyJUIxCojZXwckJovWxA==} zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} @@ -8249,6 +8249,6 @@ snapshots: toposort: 2.0.2 type-fest: 2.19.0 - zod@4.1.3: {} + zod@4.1.4: {} zwitch@2.0.4: {} From 8fc8d49c8710e87fb7ae629ba716ca1868f6e78a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 29 Aug 2025 03:57:39 +0000 Subject: [PATCH 038/133] chore(deps): update dependency zod to v4.1.5 (#1223) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 6569a694..a22c5bf3 100644 --- a/package.json +++ b/package.json @@ -101,6 +101,6 @@ "valibot": "1.1.0", "vitest": "^3.0.0", "yup": "1.7.0", - "zod": "4.1.4" + "zod": "4.1.5" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9188f244..d0df0c79 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -76,8 +76,8 @@ importers: specifier: 1.7.0 version: 1.7.0 zod: - specifier: 4.1.4 - version: 4.1.4 + specifier: 4.1.5 + version: 4.1.5 packages: @@ -3819,8 +3819,8 @@ packages: yup@1.7.0: resolution: {integrity: sha512-VJce62dBd+JQvoc+fCVq+KZfPHr+hXaxCcVgotfwWvlR0Ja3ffYKaJBT8rptPOSKOGJDCUnW2C2JWpud7aRP6Q==} - zod@4.1.4: - resolution: {integrity: sha512-2YqJuWkU6IIK9qcE4k1lLLhyZ6zFw7XVRdQGpV97jEIZwTrscUw+DY31Xczd8nwaoksyJUIxCojZXwckJovWxA==} + zod@4.1.5: + resolution: {integrity: sha512-rcUUZqlLJgBC33IT3PNMgsCq6TzLQEG/Ei/KTCU0PedSWRMAXoOUN+4t/0H+Q8bdnLPdqUYnvboJT0bn/229qg==} zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} @@ -8249,6 +8249,6 @@ snapshots: toposort: 2.0.2 type-fest: 2.19.0 - zod@4.1.4: {} + zod@4.1.5: {} zwitch@2.0.4: {} From 22eb0a7a9e0563d6f59161163d4b3479b053d3cb Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 7 Sep 2025 23:22:32 +0000 Subject: [PATCH 039/133] chore(deps): update dependency @antfu/eslint-config to v5.2.2 (#1224) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 375 +++++++++++++++++++++++++++++-------------------- 1 file changed, 220 insertions(+), 155 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d0df0c79..3a771f01 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^5.0.0 - version: 5.2.1(@vue/compiler-sfc@3.5.12)(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1)) + version: 5.2.2(@vue/compiler-sfc@3.5.12)(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 5.0.7 version: 5.0.7(@types/node@22.18.0)(graphql@16.11.0)(typescript@5.9.2) @@ -85,8 +85,8 @@ packages: resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - '@antfu/eslint-config@5.2.1': - resolution: {integrity: sha512-EG/5kwDci1PFKSwAPMEMHDA/VYJFn0TAqwXLdnmE7zuFcaug3EGih7UOWmapMfL59Hqq6jbomaUHN31aVnL8NA==} + '@antfu/eslint-config@5.2.2': + resolution: {integrity: sha512-oQO9apvnJ5Fke1k20QL+HwxErwTowK3IWMCwQbWww68Yh9xz4UtZo/hrQ6McHTqxd5YhsVq9y4PZQNN4ltoSLQ==} hasBin: true peerDependencies: '@eslint-react/eslint-plugin': ^1.38.4 @@ -222,6 +222,11 @@ packages: engines: {node: '>=6.0.0'} hasBin: true + '@babel/parser@7.28.4': + resolution: {integrity: sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==} + engines: {node: '>=6.0.0'} + hasBin: true + '@babel/plugin-syntax-async-generators@7.8.4': resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: @@ -347,6 +352,10 @@ packages: resolution: {integrity: sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==} engines: {node: '>=6.9.0'} + '@babel/types@7.28.4': + resolution: {integrity: sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==} + engines: {node: '>=6.9.0'} + '@bcoe/v8-coverage@0.2.3': resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} @@ -535,6 +544,12 @@ packages: peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + '@eslint-community/eslint-utils@4.8.0': + resolution: {integrity: sha512-MJQFqrZgcW0UNYLGOuQpey/oTN59vyWwplvCGZztn1cKz9agZPPYpJB7h2OMmuu7VLqkvEjN8feFZJmxNF9D+Q==} + 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.12.1': resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} @@ -568,8 +583,8 @@ packages: resolution: {integrity: sha512-EoyvqQnBNsV1CWaEJ559rxXL4c8V92gxirbawSmVUOWXlsRxxQXl6LmCpdUblgxgSkDIqKnhzba2SjRTI/A5Rw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/markdown@7.1.0': - resolution: {integrity: sha512-Y+X1B1j+/zupKDVJfkKc8uYMjQkGzfnd8lt7vK3y8x9Br6H5dBuhAfFrQ6ff7HAMm/1BwgecyEiRFkYCWPRxmA==} + '@eslint/markdown@7.2.0': + resolution: {integrity: sha512-cmDloByulvKzofM0tIkSGWwxMcrKOLsXZC+EM0FLkRIrxKzW+2RkZAt9TAh37EtQRmx1M4vjBEmlC6R0wiGkog==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/object-schema@2.1.6': @@ -1078,8 +1093,8 @@ packages: '@sinonjs/fake-timers@13.0.5': resolution: {integrity: sha512-36/hTbH2uaWuGVERyC6da9YwGWnzUZXuPro/F2LfsdOsLnCojz/iSH8MxUt/FD2S5XBSVPhmArFUXcpCQ2Hkiw==} - '@stylistic/eslint-plugin@5.2.3': - resolution: {integrity: sha512-oY7GVkJGVMI5benlBDCaRrSC1qPasafyv5dOBLLv5MTilMGnErKhO6ziEfodDDIZbo5QxPUNW360VudJOFODMw==} + '@stylistic/eslint-plugin@5.3.1': + resolution: {integrity: sha512-Ykums1VYonM0TgkD0VteVq9mrlO2FhF48MDJnPyv3MktIB2ydtuhlO0AfWm7xnW1kyf5bjOqA6xc7JjviuVTxg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: '>=9.0.0' @@ -1159,63 +1174,63 @@ packages: '@types/yargs@17.0.33': resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==} - '@typescript-eslint/eslint-plugin@8.39.0': - resolution: {integrity: sha512-bhEz6OZeUR+O/6yx9Jk6ohX6H9JSFTaiY0v9/PuKT3oGK0rn0jNplLmyFUGV+a9gfYnVNwGDwS/UkLIuXNb2Rw==} + '@typescript-eslint/eslint-plugin@8.42.0': + resolution: {integrity: sha512-Aq2dPqsQkxHOLfb2OPv43RnIvfj05nw8v/6n3B2NABIPpHnjQnaLo9QGMTvml+tv4korl/Cjfrb/BYhoL8UUTQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - '@typescript-eslint/parser': ^8.39.0 + '@typescript-eslint/parser': ^8.42.0 eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/parser@8.39.0': - resolution: {integrity: sha512-g3WpVQHngx0aLXn6kfIYCZxM6rRJlWzEkVpqEFLT3SgEDsp9cpCbxxgwnE504q4H+ruSDh/VGS6nqZIDynP+vg==} + '@typescript-eslint/parser@8.42.0': + resolution: {integrity: sha512-r1XG74QgShUgXph1BYseJ+KZd17bKQib/yF3SR+demvytiRXrwd12Blnz5eYGm8tXaeRdd4x88MlfwldHoudGg==} 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/project-service@8.39.0': - resolution: {integrity: sha512-CTzJqaSq30V/Z2Og9jogzZt8lJRR5TKlAdXmWgdu4hgcC9Kww5flQ+xFvMxIBWVNdxJO7OifgdOK4PokMIWPew==} + '@typescript-eslint/project-service@8.42.0': + resolution: {integrity: sha512-vfVpLHAhbPjilrabtOSNcUDmBboQNrJUiNAGoImkZKnMjs2TIcWG33s4Ds0wY3/50aZmTMqJa6PiwkwezaAklg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/scope-manager@8.39.0': - resolution: {integrity: sha512-8QOzff9UKxOh6npZQ/4FQu4mjdOCGSdO3p44ww0hk8Vu+IGbg0tB/H1LcTARRDzGCC8pDGbh2rissBuuoPgH8A==} + '@typescript-eslint/scope-manager@8.42.0': + resolution: {integrity: sha512-51+x9o78NBAVgQzOPd17DkNTnIzJ8T/O2dmMBLoK9qbY0Gm52XJcdJcCl18ExBMiHo6jPMErUQWUv5RLE51zJw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/tsconfig-utils@8.39.0': - resolution: {integrity: sha512-Fd3/QjmFV2sKmvv3Mrj8r6N8CryYiCS8Wdb/6/rgOXAWGcFuc+VkQuG28uk/4kVNVZBQuuDHEDUpo/pQ32zsIQ==} + '@typescript-eslint/tsconfig-utils@8.42.0': + resolution: {integrity: sha512-kHeFUOdwAJfUmYKjR3CLgZSglGHjbNTi1H8sTYRYV2xX6eNz4RyJ2LIgsDLKf8Yi0/GL1WZAC/DgZBeBft8QAQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/type-utils@8.39.0': - resolution: {integrity: sha512-6B3z0c1DXVT2vYA9+z9axjtc09rqKUPRmijD5m9iv8iQpHBRYRMBcgxSiKTZKm6FwWw1/cI4v6em35OsKCiN5Q==} + '@typescript-eslint/type-utils@8.42.0': + resolution: {integrity: sha512-9KChw92sbPTYVFw3JLRH1ockhyR3zqqn9lQXol3/YbI6jVxzWoGcT3AsAW0mu1MY0gYtsXnUGV/AKpkAj5tVlQ==} 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/types@8.39.0': - resolution: {integrity: sha512-ArDdaOllnCj3yn/lzKn9s0pBQYmmyme/v1HbGIGB0GB/knFI3fWMHloC+oYTJW46tVbYnGKTMDK4ah1sC2v0Kg==} + '@typescript-eslint/types@8.42.0': + resolution: {integrity: sha512-LdtAWMiFmbRLNP7JNeY0SqEtJvGMYSzfiWBSmx+VSZ1CH+1zyl8Mmw1TT39OrtsRvIYShjJWzTDMPWZJCpwBlw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/typescript-estree@8.39.0': - resolution: {integrity: sha512-ndWdiflRMvfIgQRpckQQLiB5qAKQ7w++V4LlCHwp62eym1HLB/kw7D9f2e8ytONls/jt89TEasgvb+VwnRprsw==} + '@typescript-eslint/typescript-estree@8.42.0': + resolution: {integrity: sha512-ku/uYtT4QXY8sl9EDJETD27o3Ewdi72hcXg1ah/kkUgBvAYHLwj2ofswFFNXS+FL5G+AGkxBtvGt8pFBHKlHsQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/utils@8.39.0': - resolution: {integrity: sha512-4GVSvNA0Vx1Ktwvf4sFE+exxJ3QGUorQG1/A5mRfRNZtkBT2xrA/BCO2H0eALx/PnvCS6/vmYwRdDA41EoffkQ==} + '@typescript-eslint/utils@8.42.0': + resolution: {integrity: sha512-JnIzu7H3RH5BrKC4NoZqRfmjqCIS1u3hGZltDYJgkVdqAezl4L9d1ZLw+36huCujtSBSAirGINF/S4UxOcR+/g==} 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/visitor-keys@8.39.0': - resolution: {integrity: sha512-ldgiJ+VAhQCfIjeOgu8Kj5nSxds0ktPOSO9p4+0VDH2R2pLvQraaM5Oen2d7NxzMCm+Sn/vJT+mv2H5u6b/3fA==} + '@typescript-eslint/visitor-keys@8.42.0': + resolution: {integrity: sha512-3WbiuzoEowaEn8RSnhJBrxSwX8ULYE9CXaPepS2C2W3NSA5NNIvBaslpBSBElPq0UGr0xVJlXFWOAKIkyylydQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@ungap/structured-clone@1.3.0': @@ -1306,8 +1321,8 @@ packages: cpu: [x64] os: [win32] - '@vitest/eslint-plugin@1.3.4': - resolution: {integrity: sha512-EOg8d0jn3BAiKnR55WkFxmxfWA3nmzrbIIuOXyTe6A72duryNgyU+bdBEauA97Aab3ho9kLmAwgPX63Ckj4QEg==} + '@vitest/eslint-plugin@1.3.9': + resolution: {integrity: sha512-wsNe7xy44ovm/h9ISDkDNcv0aOnUsaOYDqan2y6qCFAUQ0odFr6df/+FdGKHZN+mCM+SvIDWoXuvm5T5V3Kh6w==} peerDependencies: eslint: '>= 8.57.0' typescript: '>= 5.0.0' @@ -1503,8 +1518,8 @@ packages: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} - browserslist@4.25.2: - resolution: {integrity: sha512-0si2SJK3ooGzIawRu61ZdPCO1IncZwS8IzuX73sPZsXW6EQ/w/DAfPyKI8l1ETTCr2MnvqWitmlCUxgdul45jA==} + browserslist@4.25.4: + resolution: {integrity: sha512-4jYpcjabC606xJ3kw2QwGEZKX0Aw7sgQdZCvIK9dhVSPh76BKo+C+btT1RRofH7B+8iNpEbgGNVWiLki5q93yg==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true @@ -1548,8 +1563,8 @@ packages: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} - caniuse-lite@1.0.30001734: - resolution: {integrity: sha512-uhE1Ye5vgqju6OI71HTQqcBCZrvHugk0MjLak7Q+HfoBgoq5Bi+5YnwjP4fjDgrtYr/l8MVRBvzz9dPD4KyK0A==} + caniuse-lite@1.0.30001741: + resolution: {integrity: sha512-QGUGitqsc8ARjLdgAfxETDhRbJ0REsP6O3I96TAth/mVjh2cYzN2u+3AzPP3aVSm2FehEItaJw1xd+IGBXWeSw==} capital-case@1.0.4: resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} @@ -1667,8 +1682,8 @@ packages: convert-source-map@2.0.0: resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} - core-js-compat@3.45.0: - resolution: {integrity: sha512-gRoVMBawZg0OnxaVv3zpqLLxaHmsubEGyTnqdpI/CEBvX4JadI1dMSHxagThprYRtSVbuQxvi6iUatdPxohHpA==} + core-js-compat@3.45.1: + resolution: {integrity: sha512-tqTt5T4PzsMIZ430XGviK4vzYSoeNJ6CXODi6c/voxOT6IZqBht5/EKaSNnYiEjjRYxjVz7DQIsOsY0XNi8PIA==} cosmiconfig@8.3.6: resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} @@ -1772,8 +1787,8 @@ packages: eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - electron-to-chromium@1.5.199: - resolution: {integrity: sha512-3gl0S7zQd88kCAZRO/DnxtBKuhMO4h0EaQIN3YgZfV6+pW+5+bf2AdQeHNESCoaQqo/gjGVYEf2YM4O5HJQqpQ==} + electron-to-chromium@1.5.214: + resolution: {integrity: sha512-TpvUNdha+X3ybfU78NoQatKvQEm1oq3lf2QbnmCEdw+Bd9RuIAY+hJTvq1avzHM0f7EJfnH3vbCnbzKzisc/9Q==} emittery@0.13.1: resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} @@ -1785,6 +1800,10 @@ packages: emoji-regex@9.2.2: resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + empathic@2.0.0: + resolution: {integrity: sha512-i6UzDscO/XfAcNYD75CfICkmfLedpyPDdozrLMmQc5ORaQcdMoc21OnlEylMIqI7U8eniKrPMxxtj8k0vhmJhA==} + engines: {node: '>=14'} + enhanced-resolve@5.18.3: resolution: {integrity: sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==} engines: {node: '>=10.13.0'} @@ -1914,8 +1933,8 @@ packages: peerDependencies: eslint: '>=8.45.0' - eslint-plugin-pnpm@1.1.0: - resolution: {integrity: sha512-sL93w0muBtjnogzk/loDsxzMbmXQOLP5Blw3swLDBXZgfb+qQI73bPcUbjVR+ZL+K62vGJdErV+43i3r5DsZPg==} + eslint-plugin-pnpm@1.1.1: + resolution: {integrity: sha512-gNo+swrLCgvT8L6JX6hVmxuKeuStGK2l8IwVjDxmYIn+wP4SW/d0ORLKyUiYamsp+UxknQo3f2M1irrTpqahCw==} peerDependencies: eslint: ^9.0.0 @@ -1937,8 +1956,8 @@ packages: peerDependencies: eslint: '>=9.29.0' - eslint-plugin-unused-imports@4.1.4: - resolution: {integrity: sha512-YptD6IzQjDardkl0POxnnRBhU1OEePMV0nd6siHaRBbd+lyh6NAhFEobiznKU7kTsSsDeSD62Pe7kAM1b7dAZQ==} + eslint-plugin-unused-imports@4.2.0: + resolution: {integrity: sha512-hLbJ2/wnjKq4kGA9AUaExVFIbNzyxYdVo49QZmKCnhk5pc9wcYRbfgLHvWJ8tnsdcseGhoUAddm9gn/lt+d74w==} peerDependencies: '@typescript-eslint/eslint-plugin': ^8.0.0-0 || ^7.0.0 || ^6.0.0 || ^5.0.0 eslint: ^9.0.0 || ^8.0.0 @@ -2095,6 +2114,15 @@ 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'} @@ -2581,6 +2609,10 @@ packages: resolution: {integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==} engines: {node: '>=12.0.0'} + jsdoc-type-pratt-parser@4.8.0: + resolution: {integrity: sha512-iZ8Bdb84lWRuGHamRXFyML07r21pcwBrLkHEuHgEY5UbCouBwv7ECknDRKzsQIXMiqpPymqtIf8TC/shYKB5rw==} + engines: {node: '>=12.0.0'} + jsesc@3.0.2: resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} engines: {node: '>=6'} @@ -2643,8 +2675,8 @@ packages: enquirer: optional: true - local-pkg@1.1.1: - resolution: {integrity: sha512-WunYko2W1NcdfAFpuLUoucsgULmgDBRkdxHxWQ7mK0cQqwPiy8E1enjuRBrhLtZkB5iScJ1XIPdhVEFK8aOLSg==} + local-pkg@1.1.2: + resolution: {integrity: sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A==} engines: {node: '>=14'} locate-path@5.0.0: @@ -2889,8 +2921,8 @@ packages: resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} engines: {node: '>=16 || 14 >=14.17'} - mlly@1.7.4: - resolution: {integrity: sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==} + mlly@1.8.0: + resolution: {integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==} ms@2.1.3: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} @@ -2936,8 +2968,8 @@ packages: node-int64@0.4.0: resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} - node-releases@2.0.19: - resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} + node-releases@2.0.20: + resolution: {integrity: sha512-7gK6zSXEH6neM212JgfYFXe+GmZQM+fia5SsusuBIUgnPheLFBmIPhtFoAQRj8/7wASYQnbDlHPVwY0BefoFgA==} normalize-path@2.1.1: resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==} @@ -3116,15 +3148,15 @@ packages: pkg-types@1.3.1: resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==} - pkg-types@2.2.0: - resolution: {integrity: sha512-2SM/GZGAEkPp3KWORxQZns4M+WSeXbC2HEvmOIJe3Cmiv6ieAJvdVhDldtHqM5J1Y7MrR1XhkBT/rMlhh9FdqQ==} + pkg-types@2.3.0: + resolution: {integrity: sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==} pluralize@8.0.0: resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} engines: {node: '>=4'} - pnpm-workspace-yaml@1.1.0: - resolution: {integrity: sha512-OWUzBxtitpyUV0fBYYwLAfWxn3mSzVbVB7cwgNaHvTTU9P0V2QHjyaY5i7f1hEiT9VeKsNH1Skfhe2E3lx/zhA==} + pnpm-workspace-yaml@1.1.1: + resolution: {integrity: sha512-nGBB7h3Ped3g9dBrR6d3YNwXCKYsEg8K9J3GMmSrwGEXq3RHeGW44/B4MZW51p4FRMnyxJzTY5feSBbUjRhIHQ==} postcss-selector-parser@6.1.2: resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} @@ -3155,8 +3187,8 @@ packages: pure-rand@7.0.1: resolution: {integrity: sha512-oTUZM/NAZS8p7ANR3SHh30kXB+zK2r2BPcEn/awJIbOvq82WoMN4p62AWWp3Hhw50G0xMsw1mhIBLqHw64EcNQ==} - quansync@0.2.10: - resolution: {integrity: sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A==} + quansync@0.2.11: + resolution: {integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==} queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} @@ -3418,8 +3450,8 @@ packages: resolution: {integrity: sha512-MeQTA1r0litLUf0Rp/iisCaL8761lKAZHaimlbGK4j0HysC4PLfqygQj9srcs0m2RdtDYnF8UuYyKpbjHYp7Jw==} engines: {node: ^14.18.0 || >=16.0.0} - tapable@2.2.2: - resolution: {integrity: sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==} + tapable@2.2.3: + resolution: {integrity: sha512-ZL6DDuAlRlLGghwcfmSn9sK3Hr6ArtyudlSAiCqQ6IfE+b+HHbydbYDIG15IfS5do+7XQQBdBiubF/cV2dnDzg==} engines: {node: '>=6'} test-exclude@6.0.0: @@ -3445,6 +3477,10 @@ packages: resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==} engines: {node: '>=12.0.0'} + tinyglobby@0.2.15: + resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} + engines: {node: '>=12.0.0'} + tinypool@1.1.1: resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==} engines: {node: ^18.0.0 || >=20.0.0} @@ -3832,16 +3868,16 @@ snapshots: '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@5.2.1(@vue/compiler-sfc@3.5.12)(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@5.2.2(@vue/compiler-sfc@3.5.12)(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.34.0(jiti@2.4.0)) - '@eslint/markdown': 7.1.0 - '@stylistic/eslint-plugin': 5.2.3(eslint@9.34.0(jiti@2.4.0)) - '@typescript-eslint/eslint-plugin': 8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) - '@typescript-eslint/parser': 8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) - '@vitest/eslint-plugin': 1.3.4(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1)) + '@eslint/markdown': 7.2.0 + '@stylistic/eslint-plugin': 5.3.1(eslint@9.34.0(jiti@2.4.0)) + '@typescript-eslint/eslint-plugin': 8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/parser': 8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) + '@vitest/eslint-plugin': 1.3.9(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.1.0 cac: 6.7.14 eslint: 9.34.0(jiti@2.4.0) @@ -3856,17 +3892,17 @@ snapshots: eslint-plugin-n: 17.21.3(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) eslint-plugin-no-only-tests: 3.3.0 eslint-plugin-perfectionist: 4.15.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) - eslint-plugin-pnpm: 1.1.0(eslint@9.34.0(jiti@2.4.0)) + eslint-plugin-pnpm: 1.1.1(eslint@9.34.0(jiti@2.4.0)) eslint-plugin-regexp: 2.10.0(eslint@9.34.0(jiti@2.4.0)) eslint-plugin-toml: 0.12.0(eslint@9.34.0(jiti@2.4.0)) eslint-plugin-unicorn: 60.0.0(eslint@9.34.0(jiti@2.4.0)) - eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0)) - eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.34.0(jiti@2.4.0))) + eslint-plugin-unused-imports: 4.2.0(@typescript-eslint/eslint-plugin@8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0)) + eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.34.0(jiti@2.4.0))) eslint-plugin-yml: 1.18.0(eslint@9.34.0(jiti@2.4.0)) eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.34.0(jiti@2.4.0)) globals: 16.3.0 jsonc-eslint-parser: 2.4.0 - local-pkg: 1.1.1 + local-pkg: 1.1.2 parse-gitignore: 2.0.0 toml-eslint-parser: 0.10.0 vue-eslint-parser: 10.2.0(eslint@9.34.0(jiti@2.4.0)) @@ -3953,7 +3989,7 @@ snapshots: dependencies: '@babel/compat-data': 7.27.5 '@babel/helper-validator-option': 7.27.1 - browserslist: 4.25.2 + browserslist: 4.25.4 lru-cache: 5.1.1 semver: 6.3.1 @@ -3998,6 +4034,10 @@ snapshots: dependencies: '@babel/types': 7.28.2 + '@babel/parser@7.28.4': + dependencies: + '@babel/types': 7.28.4 + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.27.4)': dependencies: '@babel/core': 7.27.4 @@ -4131,6 +4171,11 @@ snapshots: '@babel/helper-string-parser': 7.27.1 '@babel/helper-validator-identifier': 7.27.1 + '@babel/types@7.28.4': + dependencies: + '@babel/helper-string-parser': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + '@bcoe/v8-coverage@0.2.3': {} '@clack/core@0.5.0': @@ -4163,7 +4208,7 @@ snapshots: '@es-joy/jsdoccomment@0.50.2': dependencies: '@types/estree': 1.0.8 - '@typescript-eslint/types': 8.39.0 + '@typescript-eslint/types': 8.42.0 comment-parser: 1.4.1 esquery: 1.6.0 jsdoc-type-pratt-parser: 4.1.0 @@ -4171,7 +4216,7 @@ snapshots: '@es-joy/jsdoccomment@0.52.0': dependencies: '@types/estree': 1.0.8 - '@typescript-eslint/types': 8.39.0 + '@typescript-eslint/types': 8.42.0 comment-parser: 1.4.1 esquery: 1.6.0 jsdoc-type-pratt-parser: 4.1.0 @@ -4262,6 +4307,11 @@ snapshots: eslint: 9.34.0(jiti@2.4.0) eslint-visitor-keys: 3.4.3 + '@eslint-community/eslint-utils@4.8.0(eslint@9.34.0(jiti@2.4.0))': + dependencies: + eslint: 9.34.0(jiti@2.4.0) + eslint-visitor-keys: 3.4.3 + '@eslint-community/regexpp@4.12.1': {} '@eslint/compat@1.3.2(eslint@9.34.0(jiti@2.4.0))': @@ -4298,7 +4348,7 @@ snapshots: '@eslint/js@9.34.0': {} - '@eslint/markdown@7.1.0': + '@eslint/markdown@7.2.0': dependencies: '@eslint/core': 0.15.2 '@eslint/plugin-kit': 0.3.5 @@ -4308,6 +4358,7 @@ snapshots: mdast-util-gfm: 3.1.0 micromark-extension-frontmatter: 2.0.0 micromark-extension-gfm: 3.0.0 + micromark-util-normalize-identifier: 2.0.1 transitivePeerDependencies: - supports-color @@ -5067,10 +5118,10 @@ snapshots: dependencies: '@sinonjs/commons': 3.0.1 - '@stylistic/eslint-plugin@5.2.3(eslint@9.34.0(jiti@2.4.0))': + '@stylistic/eslint-plugin@5.3.1(eslint@9.34.0(jiti@2.4.0))': dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.34.0(jiti@2.4.0)) - '@typescript-eslint/types': 8.39.0 + '@eslint-community/eslint-utils': 4.8.0(eslint@9.34.0(jiti@2.4.0)) + '@typescript-eslint/types': 8.42.0 eslint: 9.34.0(jiti@2.4.0) eslint-visitor-keys: 4.2.1 espree: 10.4.0 @@ -5159,14 +5210,14 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/eslint-plugin@8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) - '@typescript-eslint/scope-manager': 8.39.0 - '@typescript-eslint/type-utils': 8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) - '@typescript-eslint/utils': 8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) - '@typescript-eslint/visitor-keys': 8.39.0 + '@typescript-eslint/parser': 8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/scope-manager': 8.42.0 + '@typescript-eslint/type-utils': 8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/utils': 8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/visitor-keys': 8.42.0 eslint: 9.34.0(jiti@2.4.0) graphemer: 1.4.0 ignore: 7.0.5 @@ -5176,41 +5227,41 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: - '@typescript-eslint/scope-manager': 8.39.0 - '@typescript-eslint/types': 8.39.0 - '@typescript-eslint/typescript-estree': 8.39.0(typescript@5.9.2) - '@typescript-eslint/visitor-keys': 8.39.0 + '@typescript-eslint/scope-manager': 8.42.0 + '@typescript-eslint/types': 8.42.0 + '@typescript-eslint/typescript-estree': 8.42.0(typescript@5.9.2) + '@typescript-eslint/visitor-keys': 8.42.0 debug: 4.4.1 eslint: 9.34.0(jiti@2.4.0) typescript: 5.9.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/project-service@8.39.0(typescript@5.9.2)': + '@typescript-eslint/project-service@8.42.0(typescript@5.9.2)': dependencies: - '@typescript-eslint/tsconfig-utils': 8.39.0(typescript@5.9.2) - '@typescript-eslint/types': 8.39.0 + '@typescript-eslint/tsconfig-utils': 8.42.0(typescript@5.9.2) + '@typescript-eslint/types': 8.42.0 debug: 4.4.1 typescript: 5.9.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@8.39.0': + '@typescript-eslint/scope-manager@8.42.0': dependencies: - '@typescript-eslint/types': 8.39.0 - '@typescript-eslint/visitor-keys': 8.39.0 + '@typescript-eslint/types': 8.42.0 + '@typescript-eslint/visitor-keys': 8.42.0 - '@typescript-eslint/tsconfig-utils@8.39.0(typescript@5.9.2)': + '@typescript-eslint/tsconfig-utils@8.42.0(typescript@5.9.2)': dependencies: typescript: 5.9.2 - '@typescript-eslint/type-utils@8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/type-utils@8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: - '@typescript-eslint/types': 8.39.0 - '@typescript-eslint/typescript-estree': 8.39.0(typescript@5.9.2) - '@typescript-eslint/utils': 8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/types': 8.42.0 + '@typescript-eslint/typescript-estree': 8.42.0(typescript@5.9.2) + '@typescript-eslint/utils': 8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) debug: 4.4.1 eslint: 9.34.0(jiti@2.4.0) ts-api-utils: 2.1.0(typescript@5.9.2) @@ -5218,14 +5269,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/types@8.39.0': {} + '@typescript-eslint/types@8.42.0': {} - '@typescript-eslint/typescript-estree@8.39.0(typescript@5.9.2)': + '@typescript-eslint/typescript-estree@8.42.0(typescript@5.9.2)': dependencies: - '@typescript-eslint/project-service': 8.39.0(typescript@5.9.2) - '@typescript-eslint/tsconfig-utils': 8.39.0(typescript@5.9.2) - '@typescript-eslint/types': 8.39.0 - '@typescript-eslint/visitor-keys': 8.39.0 + '@typescript-eslint/project-service': 8.42.0(typescript@5.9.2) + '@typescript-eslint/tsconfig-utils': 8.42.0(typescript@5.9.2) + '@typescript-eslint/types': 8.42.0 + '@typescript-eslint/visitor-keys': 8.42.0 debug: 4.4.1 fast-glob: 3.3.3 is-glob: 4.0.3 @@ -5236,20 +5287,20 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/utils@8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.34.0(jiti@2.4.0)) - '@typescript-eslint/scope-manager': 8.39.0 - '@typescript-eslint/types': 8.39.0 - '@typescript-eslint/typescript-estree': 8.39.0(typescript@5.9.2) + '@eslint-community/eslint-utils': 4.8.0(eslint@9.34.0(jiti@2.4.0)) + '@typescript-eslint/scope-manager': 8.42.0 + '@typescript-eslint/types': 8.42.0 + '@typescript-eslint/typescript-estree': 8.42.0(typescript@5.9.2) eslint: 9.34.0(jiti@2.4.0) typescript: 5.9.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/visitor-keys@8.39.0': + '@typescript-eslint/visitor-keys@8.42.0': dependencies: - '@typescript-eslint/types': 8.39.0 + '@typescript-eslint/types': 8.42.0 eslint-visitor-keys: 4.2.1 '@ungap/structured-clone@1.3.0': {} @@ -5307,9 +5358,10 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.4(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.3.9(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1))': dependencies: - '@typescript-eslint/utils': 8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/scope-manager': 8.42.0 + '@typescript-eslint/utils': 8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) eslint: 9.34.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.2 @@ -5361,7 +5413,7 @@ snapshots: '@vue/compiler-core@3.5.12': dependencies: - '@babel/parser': 7.28.3 + '@babel/parser': 7.28.4 '@vue/shared': 3.5.12 entities: 4.5.0 estree-walker: 2.0.2 @@ -5374,7 +5426,7 @@ snapshots: '@vue/compiler-sfc@3.5.12': dependencies: - '@babel/parser': 7.28.3 + '@babel/parser': 7.28.4 '@vue/compiler-core': 3.5.12 '@vue/compiler-dom': 3.5.12 '@vue/compiler-ssr': 3.5.12 @@ -5551,12 +5603,12 @@ snapshots: dependencies: fill-range: 7.1.1 - browserslist@4.25.2: + browserslist@4.25.4: dependencies: - caniuse-lite: 1.0.30001734 - electron-to-chromium: 1.5.199 - node-releases: 2.0.19 - update-browserslist-db: 1.1.3(browserslist@4.25.2) + caniuse-lite: 1.0.30001741 + electron-to-chromium: 1.5.214 + node-releases: 2.0.20 + update-browserslist-db: 1.1.3(browserslist@4.25.4) bs-logger@0.2.6: dependencies: @@ -5592,7 +5644,7 @@ snapshots: camelcase@6.3.0: {} - caniuse-lite@1.0.30001734: {} + caniuse-lite@1.0.30001741: {} capital-case@1.0.4: dependencies: @@ -5714,9 +5766,9 @@ snapshots: convert-source-map@2.0.0: {} - core-js-compat@3.45.0: + core-js-compat@3.45.1: dependencies: - browserslist: 4.25.2 + browserslist: 4.25.4 cosmiconfig@8.3.6(typescript@5.9.2): dependencies: @@ -5796,7 +5848,7 @@ snapshots: eastasianwidth@0.2.0: {} - electron-to-chromium@1.5.199: {} + electron-to-chromium@1.5.214: {} emittery@0.13.1: {} @@ -5804,10 +5856,12 @@ snapshots: emoji-regex@9.2.2: {} + empathic@2.0.0: {} + enhanced-resolve@5.18.3: dependencies: graceful-fs: 4.2.11 - tapable: 2.2.2 + tapable: 2.2.3 entities@4.5.0: {} @@ -5895,15 +5949,15 @@ snapshots: eslint-plugin-es-x@7.8.0(eslint@9.34.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.34.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.8.0(eslint@9.34.0(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.1 eslint: 9.34.0(jiti@2.4.0) eslint-compat-utils: 0.5.1(eslint@9.34.0(jiti@2.4.0)) eslint-plugin-import-lite@0.3.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.34.0(jiti@2.4.0)) - '@typescript-eslint/types': 8.39.0 + '@eslint-community/eslint-utils': 4.8.0(eslint@9.34.0(jiti@2.4.0)) + '@typescript-eslint/types': 8.42.0 eslint: 9.34.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.2 @@ -5926,7 +5980,7 @@ snapshots: eslint-plugin-jsonc@2.20.1(eslint@9.34.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.34.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.8.0(eslint@9.34.0(jiti@2.4.0)) eslint: 9.34.0(jiti@2.4.0) eslint-compat-utils: 0.6.5(eslint@9.34.0(jiti@2.4.0)) eslint-json-compat-utils: 0.2.1(eslint@9.34.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0) @@ -5940,7 +5994,7 @@ snapshots: eslint-plugin-n@17.21.3(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.34.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.8.0(eslint@9.34.0(jiti@2.4.0)) enhanced-resolve: 5.18.3 eslint: 9.34.0(jiti@2.4.0) eslint-plugin-es-x: 7.8.0(eslint@9.34.0(jiti@2.4.0)) @@ -5957,31 +6011,31 @@ snapshots: eslint-plugin-perfectionist@4.15.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2): dependencies: - '@typescript-eslint/types': 8.39.0 - '@typescript-eslint/utils': 8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/types': 8.42.0 + '@typescript-eslint/utils': 8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) eslint: 9.34.0(jiti@2.4.0) natural-orderby: 5.0.0 transitivePeerDependencies: - supports-color - typescript - eslint-plugin-pnpm@1.1.0(eslint@9.34.0(jiti@2.4.0)): + eslint-plugin-pnpm@1.1.1(eslint@9.34.0(jiti@2.4.0)): dependencies: + empathic: 2.0.0 eslint: 9.34.0(jiti@2.4.0) - find-up-simple: 1.0.1 jsonc-eslint-parser: 2.4.0 pathe: 2.0.3 - pnpm-workspace-yaml: 1.1.0 - tinyglobby: 0.2.14 + pnpm-workspace-yaml: 1.1.1 + tinyglobby: 0.2.15 yaml-eslint-parser: 1.3.0 eslint-plugin-regexp@2.10.0(eslint@9.34.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.34.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.8.0(eslint@9.34.0(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.1 comment-parser: 1.4.1 eslint: 9.34.0(jiti@2.4.0) - jsdoc-type-pratt-parser: 4.1.0 + jsdoc-type-pratt-parser: 4.8.0 refa: 0.12.1 regexp-ast-analysis: 0.7.1 scslre: 0.3.0 @@ -5999,12 +6053,12 @@ snapshots: eslint-plugin-unicorn@60.0.0(eslint@9.34.0(jiti@2.4.0)): dependencies: '@babel/helper-validator-identifier': 7.27.1 - '@eslint-community/eslint-utils': 4.7.0(eslint@9.34.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.8.0(eslint@9.34.0(jiti@2.4.0)) '@eslint/plugin-kit': 0.3.5 change-case: 5.4.4 ci-info: 4.3.0 clean-regexp: 1.0.0 - core-js-compat: 3.45.0 + core-js-compat: 3.45.1 eslint: 9.34.0(jiti@2.4.0) esquery: 1.6.0 find-up-simple: 1.0.1 @@ -6018,15 +6072,15 @@ snapshots: semver: 7.7.2 strip-indent: 4.0.0 - eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0)): + eslint-plugin-unused-imports@4.2.0(@typescript-eslint/eslint-plugin@8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0)): dependencies: eslint: 9.34.0(jiti@2.4.0) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/eslint-plugin': 8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) - eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.34.0(jiti@2.4.0))): + eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.34.0(jiti@2.4.0))): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.34.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.8.0(eslint@9.34.0(jiti@2.4.0)) eslint: 9.34.0(jiti@2.4.0) natural-compare: 1.4.0 nth-check: 2.1.1 @@ -6035,7 +6089,7 @@ snapshots: vue-eslint-parser: 10.2.0(eslint@9.34.0(jiti@2.4.0)) xml-name-validator: 4.0.0 optionalDependencies: - '@typescript-eslint/parser': 8.39.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/parser': 8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) eslint-plugin-yml@1.18.0(eslint@9.34.0(jiti@2.4.0)): dependencies: @@ -6221,6 +6275,10 @@ 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 @@ -6888,6 +6946,8 @@ snapshots: jsdoc-type-pratt-parser@4.1.0: {} + jsdoc-type-pratt-parser@4.8.0: {} + jsesc@3.0.2: {} jsesc@3.1.0: {} @@ -6940,11 +7000,11 @@ snapshots: through: 2.3.8 wrap-ansi: 7.0.0 - local-pkg@1.1.1: + local-pkg@1.1.2: dependencies: - mlly: 1.7.4 - pkg-types: 2.2.0 - quansync: 0.2.10 + mlly: 1.8.0 + pkg-types: 2.3.0 + quansync: 0.2.11 locate-path@5.0.0: dependencies: @@ -7360,7 +7420,7 @@ snapshots: minipass@7.1.2: {} - mlly@1.7.4: + mlly@1.8.0: dependencies: acorn: 8.15.0 pathe: 2.0.3 @@ -7394,7 +7454,7 @@ snapshots: node-int64@0.4.0: {} - node-releases@2.0.19: {} + node-releases@2.0.20: {} normalize-path@2.1.1: dependencies: @@ -7566,10 +7626,10 @@ snapshots: pkg-types@1.3.1: dependencies: confbox: 0.1.8 - mlly: 1.7.4 + mlly: 1.8.0 pathe: 2.0.3 - pkg-types@2.2.0: + pkg-types@2.3.0: dependencies: confbox: 0.2.2 exsolve: 1.0.7 @@ -7577,7 +7637,7 @@ snapshots: pluralize@8.0.0: {} - pnpm-workspace-yaml@1.1.0: + pnpm-workspace-yaml@1.1.1: dependencies: yaml: 2.8.1 @@ -7610,7 +7670,7 @@ snapshots: pure-rand@7.0.1: {} - quansync@0.2.10: {} + quansync@0.2.11: {} queue-microtask@1.2.3: {} @@ -7871,7 +7931,7 @@ snapshots: dependencies: '@pkgr/core': 0.2.9 - tapable@2.2.2: {} + tapable@2.2.3: {} test-exclude@6.0.0: dependencies: @@ -7894,6 +7954,11 @@ snapshots: fdir: 6.4.6(picomatch@4.0.2) picomatch: 4.0.2 + tinyglobby@0.2.15: + dependencies: + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 + tinypool@1.1.1: {} tinyrainbow@2.0.0: {} @@ -8029,9 +8094,9 @@ snapshots: '@unrs/resolver-binding-win32-ia32-msvc': 1.7.13 '@unrs/resolver-binding-win32-x64-msvc': 1.7.13 - update-browserslist-db@1.1.3(browserslist@4.25.2): + update-browserslist-db@1.1.3(browserslist@4.25.4): dependencies: - browserslist: 4.25.2 + browserslist: 4.25.4 escalade: 3.2.0 picocolors: 1.1.1 From a51fb179887b88cd65d1a50ed008521ef60b3f02 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 01:39:56 +0000 Subject: [PATCH 040/133] chore(deps): update dependency jest to v30.1.3 (#1226) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 344 ++++++++++++++++++++++++------------------------- 2 files changed, 173 insertions(+), 173 deletions(-) diff --git a/package.json b/package.json index a22c5bf3..1dd40685 100644 --- a/package.json +++ b/package.json @@ -92,7 +92,7 @@ "@types/graphlib": "^2.1.8", "@types/node": "^22.0.0", "eslint": "9.34.0", - "jest": "30.1.1", + "jest": "30.1.3", "myzod": "1.12.1", "npm-run-all2": "8.0.4", "ts-dedent": "^2.2.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3a771f01..3d6ed2b2 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -49,8 +49,8 @@ importers: specifier: 9.34.0 version: 9.34.0(jiti@2.4.0) jest: - specifier: 30.1.1 - version: 30.1.1(@types/node@22.18.0) + specifier: 30.1.3 + version: 30.1.3(@types/node@22.18.0) myzod: specifier: 1.12.1 version: 1.12.1 @@ -62,7 +62,7 @@ importers: version: 2.2.0 ts-jest: specifier: 29.4.1 - version: 29.4.1(@babel/core@7.27.4)(@jest/transform@30.1.1)(@jest/types@30.0.5)(babel-jest@30.1.1(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.1.1(@types/node@22.18.0))(typescript@5.9.2) + version: 29.4.1(@babel/core@7.27.4)(@jest/transform@30.1.2)(@jest/types@30.0.5)(babel-jest@30.1.2(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.1.3(@types/node@22.18.0))(typescript@5.9.2) typescript: specifier: 5.9.2 version: 5.9.2 @@ -852,12 +852,12 @@ packages: resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} engines: {node: '>=8'} - '@jest/console@30.1.1': - resolution: {integrity: sha512-f7TGqR1k4GtN5pyFrKmq+ZVndesiwLU33yDpJIGMS9aW+j6hKjue7ljeAdznBsH9kAnxUWe2Y+Y3fLV/FJt3gA==} + '@jest/console@30.1.2': + resolution: {integrity: sha512-BGMAxj8VRmoD0MoA/jo9alMXSRoqW8KPeqOfEo1ncxnRLatTBCpRoOwlwlEMdudp68Q6WSGwYrrLtTGOh8fLzw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/core@30.1.1': - resolution: {integrity: sha512-3ncU9peZ3D2VdgRkdZtUceTrDgX5yiDRwAFjtxNfU22IiZrpVWlv/FogzDLYSJQptQGfFo3PcHK86a2oG6WUGg==} + '@jest/core@30.1.3': + resolution: {integrity: sha512-LIQz7NEDDO1+eyOA2ZmkiAyYvZuo6s1UxD/e2IHldR6D7UYogVq3arTmli07MkENLq6/3JEQjp0mA8rrHHJ8KQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -869,36 +869,36 @@ packages: resolution: {integrity: sha512-n5H8QLDJ47QqbCNn5SuFjCRDrOLEZ0h8vAHCK5RL9Ls7Xa8AQLa/YxAc9UjFqoEDM48muwtBGjtMY5cr0PLDCw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/environment@30.1.1': - resolution: {integrity: sha512-yWHbU+3j7ehQE+NRpnxRvHvpUhoohIjMePBbIr8lfe0cWVb0WeTf80DNux1GPJa18CDHiIU5DtksGUfxcDE+Rw==} + '@jest/environment@30.1.2': + resolution: {integrity: sha512-N8t1Ytw4/mr9uN28OnVf0SYE2dGhaIxOVYcwsf9IInBKjvofAjbFRvedvBBlyTYk2knbJTiEjEJ2PyyDIBnd9w==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/expect-utils@30.1.1': - resolution: {integrity: sha512-5YUHr27fpJ64dnvtu+tt11ewATynrHkGYD+uSFgRr8V2eFJis/vEXgToyLwccIwqBihVfz9jwio+Zr1ab1Zihw==} + '@jest/expect-utils@30.1.2': + resolution: {integrity: sha512-HXy1qT/bfdjCv7iC336ExbqqYtZvljrV8odNdso7dWK9bSeHtLlvwWWC3YSybSPL03Gg5rug6WLCZAZFH72m0A==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/expect@30.1.1': - resolution: {integrity: sha512-3vHIHsF+qd3D8FU2c7U5l3rg1fhDwAYcGyHyZAi94YIlTwcJ+boNhRyJf373cl4wxbOX+0Q7dF40RTrTFTSuig==} + '@jest/expect@30.1.2': + resolution: {integrity: sha512-tyaIExOwQRCxPCGNC05lIjWJztDwk2gPDNSDGg1zitXJJ8dC3++G/CRjE5mb2wQsf89+lsgAgqxxNpDLiCViTA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/fake-timers@30.1.1': - resolution: {integrity: sha512-fK/25dNgBNYPw3eLi2CRs57g1H04qBAFNMsUY3IRzkfx/m4THe0E1zF+yGQBOMKKc2XQVdc9EYbJ4hEm7/2UtA==} + '@jest/fake-timers@30.1.2': + resolution: {integrity: sha512-Beljfv9AYkr9K+ETX9tvV61rJTY706BhBUtiaepQHeEGfe0DbpvUA5Z3fomwc5Xkhns6NWrcFDZn+72fLieUnA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} '@jest/get-type@30.1.0': resolution: {integrity: sha512-eMbZE2hUnx1WV0pmURZY9XoXPkUYjpc55mb0CrhtdWLtzMQPFvu/rZkTLZFTsdaVQa+Tr4eWAteqcUzoawq/uA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/globals@30.1.1': - resolution: {integrity: sha512-NNUUkHT2TU/xztZl6r1UXvJL+zvCwmZsQDmK69fVHHcB9fBtlu3FInnzOve/ZoyKnWY8JXWJNT+Lkmu1+ubXUA==} + '@jest/globals@30.1.2': + resolution: {integrity: sha512-teNTPZ8yZe3ahbYnvnVRDeOjr+3pu2uiAtNtrEsiMjVPPj+cXd5E/fr8BL7v/T7F31vYdEHrI5cC/2OoO/vM9A==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} '@jest/pattern@30.0.1': resolution: {integrity: sha512-gWp7NfQW27LaBQz3TITS8L7ZCQ0TLvtmI//4OwlQRx4rnWxcPNIYjxZpDcN4+UlGxgm3jS5QPz8IPTCkb59wZA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/reporters@30.1.1': - resolution: {integrity: sha512-Hb2Bq80kahOC6Sv2waEaH1rEU6VdFcM6WHaRBWQF9tf30+nJHxhl/Upbgo9+25f0mOgbphxvbwSMjSgy9gW/FA==} + '@jest/reporters@30.1.3': + resolution: {integrity: sha512-VWEQmJWfXMOrzdFEOyGjUEOuVXllgZsoPtEHZzfdNz18RmzJ5nlR6kp8hDdY8dDS1yGOXAY7DHT+AOHIPSBV0w==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -910,24 +910,24 @@ packages: resolution: {integrity: sha512-DmdYgtezMkh3cpU8/1uyXakv3tJRcmcXxBOcO0tbaozPwpmh4YMsnWrQm9ZmZMfa5ocbxzbFk6O4bDPEc/iAnA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/snapshot-utils@30.1.1': - resolution: {integrity: sha512-TkVBc9wuN22TT8hESRFmjjg/xIMu7z0J3UDYtIRydzCqlLPTB7jK1DDBKdnTUZ4zL3z3rnPpzV6rL1Uzh87sXg==} + '@jest/snapshot-utils@30.1.2': + resolution: {integrity: sha512-vHoMTpimcPSR7OxS2S0V1Cpg8eKDRxucHjoWl5u4RQcnxqQrV3avETiFpl8etn4dqxEGarBeHbIBety/f8mLXw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} '@jest/source-map@30.0.1': resolution: {integrity: sha512-MIRWMUUR3sdbP36oyNyhbThLHyJ2eEDClPCiHVbrYAe5g3CHRArIVpBw7cdSB5fr+ofSfIb2Tnsw8iEHL0PYQg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/test-result@30.1.1': - resolution: {integrity: sha512-bMdj7fNu8iZuBPSnbVir5ezvWmVo4jrw7xDE+A33Yb3ENCoiJK9XgOLgal+rJ9XSKjsL7aPUMIo87zhN7I5o2w==} + '@jest/test-result@30.1.3': + resolution: {integrity: sha512-P9IV8T24D43cNRANPPokn7tZh0FAFnYS2HIfi5vK18CjRkTDR9Y3e1BoEcAJnl4ghZZF4Ecda4M/k41QkvurEQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/test-sequencer@30.1.1': - resolution: {integrity: sha512-yruRdLXSA3HYD/MTNykgJ6VYEacNcXDFRMqKVAwlYegmxICUiT/B++CNuhJnYJzKYks61iYnjVsMwbUqmmAYJg==} + '@jest/test-sequencer@30.1.3': + resolution: {integrity: sha512-82J+hzC0qeQIiiZDThh+YUadvshdBswi5nuyXlEmXzrhw5ZQSRHeQ5LpVMD/xc8B3wPePvs6VMzHnntxL+4E3w==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/transform@30.1.1': - resolution: {integrity: sha512-PHIA2AbAASBfk6evkNifvmx9lkOSkmvaQoO6VSpuL8+kQqDMHeDoJ7RU3YP1wWAMD7AyQn9UL5iheuFYCC4lqQ==} + '@jest/transform@30.1.2': + resolution: {integrity: sha512-UYYFGifSgfjujf1Cbd3iU/IQoSd6uwsj8XHj5DSDf5ERDcWMdJOPTkHWXj4U+Z/uMagyOQZ6Vne8C4nRIrCxqA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} '@jest/types@30.0.5': @@ -1471,8 +1471,8 @@ packages: resolution: {integrity: sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==} engines: {node: '>=8'} - babel-jest@30.1.1: - resolution: {integrity: sha512-1bZfC/V03qBCzASvZpNFhx3Ouj6LgOd4KFJm4br/fYOS+tSSvVCE61QmcAVbMTwq/GoB7KN4pzGMoyr9cMxSvQ==} + babel-jest@30.1.2: + resolution: {integrity: sha512-IQCus1rt9kaSh7PQxLYRY5NmkNrNlU2TpabzwV7T2jljnpdHOcmnYYv8QmE04Li4S3a2Lj8/yXyET5pBarPr6g==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} peerDependencies: '@babel/core': ^7.11.0 @@ -2057,8 +2057,8 @@ packages: resolution: {integrity: sha512-/kP8CAwxzLVEeFrMm4kMmy4CCDlpipyA7MYLVrdJIkV0fYF0UaigQHRsxHiuY/GEea+bh4KSv3TIlgr+2UL6bw==} engines: {node: '>=12.0.0'} - expect@30.1.1: - resolution: {integrity: sha512-OKe7cdic4qbfWd/CcgwJvvCrNX2KWfuMZee9AfJHL1gTYmvqjBjZG1a2NwfhspBzxzlXwsN75WWpKTYfsJpBxg==} + expect@30.1.2: + resolution: {integrity: sha512-xvHszRavo28ejws8FpemjhwswGj4w/BetHIL8cU49u4sGyXDw2+p3YbeDbj6xzlxi6kWTjIRSTJ+9sNXPnF0Zg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} exsolve@1.0.7: @@ -2456,12 +2456,12 @@ packages: resolution: {integrity: sha512-bGl2Ntdx0eAwXuGpdLdVYVr5YQHnSZlQ0y9HVDu565lCUAe9sj6JOtBbMmBBikGIegne9piDDIOeiLVoqTkz4A==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-circus@30.1.1: - resolution: {integrity: sha512-M3Vd4x5wD7eSJspuTvRF55AkOOBndRxgW3gqQBDlFvbH3X+ASdi8jc+EqXEeAFd/UHulVYIlC4XKJABOhLw6UA==} + jest-circus@30.1.3: + resolution: {integrity: sha512-Yf3dnhRON2GJT4RYzM89t/EXIWNxKTpWTL9BfF3+geFetWP4XSvJjiU1vrWplOiUkmq8cHLiwuhz+XuUp9DscA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-cli@30.1.1: - resolution: {integrity: sha512-xm9llxuh5OoI5KZaYzlMhklryHBwg9LZy/gEaaMlXlxb+cZekGNzukU0iblbDo3XOBuN6N0CgK4ykgNRYSEb6g==} + jest-cli@30.1.3: + resolution: {integrity: sha512-G8E2Ol3OKch1DEeIBl41NP7OiC6LBhfg25Btv+idcusmoUSpqUkbrneMqbW9lVpI/rCKb/uETidb7DNteheuAQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: @@ -2470,8 +2470,8 @@ packages: node-notifier: optional: true - jest-config@30.1.1: - resolution: {integrity: sha512-xuPGUGDw+9fPPnGmddnLnHS/mhKUiJOW7K65vErYmglEPKq65NKwSRchkQ7iv6gqjs2l+YNEsAtbsplxozdOWg==} + jest-config@30.1.3: + resolution: {integrity: sha512-M/f7gqdQEPgZNA181Myz+GXCe8jXcJsGjCMXUzRj22FIXsZOyHNte84e0exntOvdPaeh9tA0w+B8qlP2fAezfw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} peerDependencies: '@types/node': '*' @@ -2485,8 +2485,8 @@ packages: ts-node: optional: true - jest-diff@30.1.1: - resolution: {integrity: sha512-LUU2Gx8EhYxpdzTR6BmjL1ifgOAQJQELTHOiPv9KITaKjZvJ9Jmgigx01tuZ49id37LorpGc9dPBPlXTboXScw==} + jest-diff@30.1.2: + resolution: {integrity: sha512-4+prq+9J61mOVXCa4Qp8ZjavdxzrWQXrI80GNxP8f4tkI2syPuPrJgdRPZRrfUTRvIoUwcmNLbqEJy9W800+NQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} jest-docblock@30.0.1: @@ -2497,8 +2497,8 @@ packages: resolution: {integrity: sha512-A+9FKzxPluqogNahpCv04UJvcZ9B3HamqpDNWNKDjtxVRYB8xbZLFuCr8JAJFpNp83CA0anGQFlpQna9Me+/tQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-environment-node@30.1.1: - resolution: {integrity: sha512-IaMoaA6saxnJimqCppUDqKck+LKM0Jg+OxyMUIvs1yGd2neiC22o8zXo90k04+tO+49OmgMR4jTgM5e4B0S62Q==} + jest-environment-node@30.1.2: + resolution: {integrity: sha512-w8qBiXtqGWJ9xpJIA98M0EIoq079GOQRQUyse5qg1plShUCQ0Ek1VTTcczqKrn3f24TFAgFtT+4q3aOXvjbsuA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} jest-haste-map@30.1.0: @@ -2509,8 +2509,8 @@ packages: resolution: {integrity: sha512-AoFvJzwxK+4KohH60vRuHaqXfWmeBATFZpzpmzNmYTtmRMiyGPVhkXpBqxUQunw+dQB48bDf4NpUs6ivVbRv1g==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-matcher-utils@30.1.1: - resolution: {integrity: sha512-SuH2QVemK48BNTqReti6FtjsMPFsSOD/ZzRxU1TttR7RiRsRSe78d03bb4Cx6D4bQC/80Q8U4VnaaAH9FlbZ9w==} + jest-matcher-utils@30.1.2: + resolution: {integrity: sha512-7ai16hy4rSbDjvPTuUhuV8nyPBd6EX34HkBsBcBX2lENCuAQ0qKCPb/+lt8OSWUa9WWmGYLy41PrEzkwRwoGZQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} jest-message-util@30.1.0: @@ -2534,24 +2534,24 @@ packages: resolution: {integrity: sha512-jHEQgBXAgc+Gh4g0p3bCevgRCVRkB4VB70zhoAE48gxeSr1hfUOsM/C2WoJgVL7Eyg//hudYENbm3Ne+/dRVVA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-resolve-dependencies@30.1.1: - resolution: {integrity: sha512-tRtaaoH8Ws1Gn1o/9pedt19dvVgr81WwdmvJSP9Ow3amOUOP2nN9j94u5jC9XlIfa2Q1FQKIWWQwL4ajqsjCGQ==} + jest-resolve-dependencies@30.1.3: + resolution: {integrity: sha512-DNfq3WGmuRyHRHfEet+Zm3QOmVFtIarUOQHHryKPc0YL9ROfgWZxl4+aZq/VAzok2SS3gZdniP+dO4zgo59hBg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-resolve@30.1.0: - resolution: {integrity: sha512-hASe7D/wRtZw8Cm607NrlF7fi3HWC5wmA5jCVc2QjQAB2pTwP9eVZILGEi6OeSLNUtE1zb04sXRowsdh5CUjwA==} + jest-resolve@30.1.3: + resolution: {integrity: sha512-DI4PtTqzw9GwELFS41sdMK32Ajp3XZQ8iygeDMWkxlRhm7uUTOFSZFVZABFuxr0jvspn8MAYy54NxZCsuCTSOw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-runner@30.1.1: - resolution: {integrity: sha512-ATe6372SOfJvCRExtCAr06I4rGujwFdKg44b6i7/aOgFnULwjxzugJ0Y4AnG+jeSeQi8dU7R6oqLGmsxRUbErQ==} + jest-runner@30.1.3: + resolution: {integrity: sha512-dd1ORcxQraW44Uz029TtXj85W11yvLpDuIzNOlofrC8GN+SgDlgY4BvyxJiVeuabA1t6idjNbX59jLd2oplOGQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-runtime@30.1.1: - resolution: {integrity: sha512-7sOyR0Oekw4OesQqqBHuYJRB52QtXiq0NNgLRzVogiMSxKCMiliUd6RrXHCnG5f12Age/ggidCBiQftzcA9XKw==} + jest-runtime@30.1.3: + resolution: {integrity: sha512-WS8xgjuNSphdIGnleQcJ3AKE4tBKOVP+tKhCD0u+Tb2sBmsU8DxfbBpZX7//+XOz81zVs4eFpJQwBNji2Y07DA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-snapshot@30.1.1: - resolution: {integrity: sha512-7/iBEzoJqEt2TjkQY+mPLHP8cbPhLReZVkkxjTMzIzoTC4cZufg7HzKo/n9cIkXKj2LG0x3mmBHsZto+7TOmFg==} + jest-snapshot@30.1.2: + resolution: {integrity: sha512-4q4+6+1c8B6Cy5pGgFvjDy/Pa6VYRiGu0yQafKkJ9u6wQx4G5PqI2QR6nxTl43yy7IWsINwz6oT4o6tD12a8Dg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} jest-util@30.0.5: @@ -2562,16 +2562,16 @@ packages: resolution: {integrity: sha512-7P3ZlCFW/vhfQ8pE7zW6Oi4EzvuB4sgR72Q1INfW9m0FGo0GADYlPwIkf4CyPq7wq85g+kPMtPOHNAdWHeBOaA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-watcher@30.1.1: - resolution: {integrity: sha512-CrAQ73LlaS6KGQQw6NBi71g7qvP7scy+4+2c0jKX6+CWaYg85lZiig5nQQVTsS5a5sffNPL3uxXnaE9d7v9eQg==} + jest-watcher@30.1.3: + resolution: {integrity: sha512-6jQUZCP1BTL2gvG9E4YF06Ytq4yMb4If6YoQGRR6PpjtqOXSP3sKe2kqwB6SQ+H9DezOfZaSLnmka1NtGm3fCQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} jest-worker@30.1.0: resolution: {integrity: sha512-uvWcSjlwAAgIu133Tt77A05H7RIk3Ho8tZL50bQM2AkvLdluw9NG48lRCl3Dt+MOH719n/0nnb5YxUwcuJiKRA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest@30.1.1: - resolution: {integrity: sha512-yC3JvpP/ZcAZX5rYCtXO/g9k6VTCQz0VFE2v1FpxytWzUqfDtu0XL/pwnNvptzYItvGwomh1ehomRNMOyhCJKw==} + jest@30.1.3: + resolution: {integrity: sha512-Ry+p2+NLk6u8Agh5yVqELfUJvRfV51hhVBRIB5yZPY7mU0DGBmOuFG5GebZbMbm86cdQNK0fhJuDX8/1YorISQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: @@ -3979,8 +3979,8 @@ snapshots: '@babel/generator@7.27.5': dependencies: - '@babel/parser': 7.28.3 - '@babel/types': 7.28.2 + '@babel/parser': 7.28.4 + '@babel/types': 7.28.4 '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 jsesc: 3.1.0 @@ -3996,7 +3996,7 @@ snapshots: '@babel/helper-module-imports@7.27.1': dependencies: '@babel/traverse': 7.27.4 - '@babel/types': 7.28.2 + '@babel/types': 7.28.4 transitivePeerDependencies: - supports-color @@ -4020,11 +4020,11 @@ snapshots: '@babel/helpers@7.27.6': dependencies: '@babel/template': 7.27.2 - '@babel/types': 7.28.2 + '@babel/types': 7.28.4 '@babel/parser@7.27.0': dependencies: - '@babel/types': 7.28.2 + '@babel/types': 7.28.4 '@babel/parser@7.28.0': dependencies: @@ -4822,7 +4822,7 @@ snapshots: '@istanbuljs/schema@0.1.3': {} - '@jest/console@30.1.1': + '@jest/console@30.1.2': dependencies: '@jest/types': 30.0.5 '@types/node': 22.18.0 @@ -4831,13 +4831,13 @@ snapshots: jest-util: 30.0.5 slash: 3.0.0 - '@jest/core@30.1.1': + '@jest/core@30.1.3': dependencies: - '@jest/console': 30.1.1 + '@jest/console': 30.1.2 '@jest/pattern': 30.0.1 - '@jest/reporters': 30.1.1 - '@jest/test-result': 30.1.1 - '@jest/transform': 30.1.1 + '@jest/reporters': 30.1.3 + '@jest/test-result': 30.1.3 + '@jest/transform': 30.1.2 '@jest/types': 30.0.5 '@types/node': 22.18.0 ansi-escapes: 4.3.2 @@ -4846,18 +4846,18 @@ snapshots: exit-x: 0.2.2 graceful-fs: 4.2.11 jest-changed-files: 30.0.5 - jest-config: 30.1.1(@types/node@22.18.0) + jest-config: 30.1.3(@types/node@22.18.0) jest-haste-map: 30.1.0 jest-message-util: 30.1.0 jest-regex-util: 30.0.1 - jest-resolve: 30.1.0 - jest-resolve-dependencies: 30.1.1 - jest-runner: 30.1.1 - jest-runtime: 30.1.1 - jest-snapshot: 30.1.1 + jest-resolve: 30.1.3 + jest-resolve-dependencies: 30.1.3 + jest-runner: 30.1.3 + jest-runtime: 30.1.3 + jest-snapshot: 30.1.2 jest-util: 30.0.5 jest-validate: 30.1.0 - jest-watcher: 30.1.1 + jest-watcher: 30.1.3 micromatch: 4.0.8 pretty-format: 30.0.5 slash: 3.0.0 @@ -4869,25 +4869,25 @@ snapshots: '@jest/diff-sequences@30.0.1': {} - '@jest/environment@30.1.1': + '@jest/environment@30.1.2': dependencies: - '@jest/fake-timers': 30.1.1 + '@jest/fake-timers': 30.1.2 '@jest/types': 30.0.5 '@types/node': 22.18.0 jest-mock: 30.0.5 - '@jest/expect-utils@30.1.1': + '@jest/expect-utils@30.1.2': dependencies: '@jest/get-type': 30.1.0 - '@jest/expect@30.1.1': + '@jest/expect@30.1.2': dependencies: - expect: 30.1.1 - jest-snapshot: 30.1.1 + expect: 30.1.2 + jest-snapshot: 30.1.2 transitivePeerDependencies: - supports-color - '@jest/fake-timers@30.1.1': + '@jest/fake-timers@30.1.2': dependencies: '@jest/types': 30.0.5 '@sinonjs/fake-timers': 13.0.5 @@ -4898,10 +4898,10 @@ snapshots: '@jest/get-type@30.1.0': {} - '@jest/globals@30.1.1': + '@jest/globals@30.1.2': dependencies: - '@jest/environment': 30.1.1 - '@jest/expect': 30.1.1 + '@jest/environment': 30.1.2 + '@jest/expect': 30.1.2 '@jest/types': 30.0.5 jest-mock: 30.0.5 transitivePeerDependencies: @@ -4912,12 +4912,12 @@ snapshots: '@types/node': 22.18.0 jest-regex-util: 30.0.1 - '@jest/reporters@30.1.1': + '@jest/reporters@30.1.3': dependencies: '@bcoe/v8-coverage': 0.2.3 - '@jest/console': 30.1.1 - '@jest/test-result': 30.1.1 - '@jest/transform': 30.1.1 + '@jest/console': 30.1.2 + '@jest/test-result': 30.1.3 + '@jest/transform': 30.1.2 '@jest/types': 30.0.5 '@jridgewell/trace-mapping': 0.3.25 '@types/node': 22.18.0 @@ -4944,7 +4944,7 @@ snapshots: dependencies: '@sinclair/typebox': 0.34.33 - '@jest/snapshot-utils@30.1.1': + '@jest/snapshot-utils@30.1.2': dependencies: '@jest/types': 30.0.5 chalk: 4.1.2 @@ -4957,21 +4957,21 @@ snapshots: callsites: 3.1.0 graceful-fs: 4.2.11 - '@jest/test-result@30.1.1': + '@jest/test-result@30.1.3': dependencies: - '@jest/console': 30.1.1 + '@jest/console': 30.1.2 '@jest/types': 30.0.5 '@types/istanbul-lib-coverage': 2.0.6 collect-v8-coverage: 1.0.2 - '@jest/test-sequencer@30.1.1': + '@jest/test-sequencer@30.1.3': dependencies: - '@jest/test-result': 30.1.1 + '@jest/test-result': 30.1.3 graceful-fs: 4.2.11 jest-haste-map: 30.1.0 slash: 3.0.0 - '@jest/transform@30.1.1': + '@jest/transform@30.1.2': dependencies: '@babel/core': 7.27.4 '@jest/types': 30.0.5 @@ -5137,24 +5137,24 @@ snapshots: '@types/babel__core@7.20.5': dependencies: - '@babel/parser': 7.28.3 - '@babel/types': 7.28.2 + '@babel/parser': 7.28.4 + '@babel/types': 7.28.4 '@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.28.2 + '@babel/types': 7.28.4 '@types/babel__template@7.4.4': dependencies: - '@babel/parser': 7.28.3 - '@babel/types': 7.28.2 + '@babel/parser': 7.28.4 + '@babel/types': 7.28.4 '@types/babel__traverse@7.20.6': dependencies: - '@babel/types': 7.28.2 + '@babel/types': 7.28.4 '@types/chai@5.2.2': dependencies: @@ -5524,10 +5524,10 @@ snapshots: auto-bind@4.0.0: {} - babel-jest@30.1.1(@babel/core@7.27.4): + babel-jest@30.1.2(@babel/core@7.27.4): dependencies: '@babel/core': 7.27.4 - '@jest/transform': 30.1.1 + '@jest/transform': 30.1.2 '@types/babel__core': 7.20.5 babel-plugin-istanbul: 7.0.0 babel-preset-jest: 30.0.1(@babel/core@7.27.4) @@ -5550,7 +5550,7 @@ snapshots: babel-plugin-jest-hoist@30.0.1: dependencies: '@babel/template': 7.27.2 - '@babel/types': 7.28.2 + '@babel/types': 7.28.4 '@types/babel__core': 7.20.5 babel-preset-current-node-syntax@1.1.0(@babel/core@7.27.4): @@ -6206,11 +6206,11 @@ snapshots: expect-type@1.2.1: {} - expect@30.1.1: + expect@30.1.2: dependencies: - '@jest/expect-utils': 30.1.1 + '@jest/expect-utils': 30.1.2 '@jest/get-type': 30.1.0 - jest-matcher-utils: 30.1.1 + jest-matcher-utils: 30.1.2 jest-message-util: 30.1.0 jest-mock: 30.0.5 jest-util: 30.0.5 @@ -6582,7 +6582,7 @@ snapshots: istanbul-lib-instrument@6.0.3: dependencies: '@babel/core': 7.27.4 - '@babel/parser': 7.28.3 + '@babel/parser': 7.28.4 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 semver: 7.7.2 @@ -6620,11 +6620,11 @@ snapshots: jest-util: 30.0.5 p-limit: 3.1.0 - jest-circus@30.1.1: + jest-circus@30.1.3: dependencies: - '@jest/environment': 30.1.1 - '@jest/expect': 30.1.1 - '@jest/test-result': 30.1.1 + '@jest/environment': 30.1.2 + '@jest/expect': 30.1.2 + '@jest/test-result': 30.1.3 '@jest/types': 30.0.5 '@types/node': 22.18.0 chalk: 4.1.2 @@ -6632,10 +6632,10 @@ snapshots: dedent: 1.6.0 is-generator-fn: 2.1.0 jest-each: 30.1.0 - jest-matcher-utils: 30.1.1 + jest-matcher-utils: 30.1.2 jest-message-util: 30.1.0 - jest-runtime: 30.1.1 - jest-snapshot: 30.1.1 + jest-runtime: 30.1.3 + jest-snapshot: 30.1.2 jest-util: 30.0.5 p-limit: 3.1.0 pretty-format: 30.0.5 @@ -6646,15 +6646,15 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@30.1.1(@types/node@22.18.0): + jest-cli@30.1.3(@types/node@22.18.0): dependencies: - '@jest/core': 30.1.1 - '@jest/test-result': 30.1.1 + '@jest/core': 30.1.3 + '@jest/test-result': 30.1.3 '@jest/types': 30.0.5 chalk: 4.1.2 exit-x: 0.2.2 import-local: 3.2.0 - jest-config: 30.1.1(@types/node@22.18.0) + jest-config: 30.1.3(@types/node@22.18.0) jest-util: 30.0.5 jest-validate: 30.1.0 yargs: 17.7.2 @@ -6665,25 +6665,25 @@ snapshots: - supports-color - ts-node - jest-config@30.1.1(@types/node@22.18.0): + jest-config@30.1.3(@types/node@22.18.0): dependencies: '@babel/core': 7.27.4 '@jest/get-type': 30.1.0 '@jest/pattern': 30.0.1 - '@jest/test-sequencer': 30.1.1 + '@jest/test-sequencer': 30.1.3 '@jest/types': 30.0.5 - babel-jest: 30.1.1(@babel/core@7.27.4) + babel-jest: 30.1.2(@babel/core@7.27.4) chalk: 4.1.2 ci-info: 4.3.0 deepmerge: 4.3.1 glob: 10.4.5 graceful-fs: 4.2.11 - jest-circus: 30.1.1 + jest-circus: 30.1.3 jest-docblock: 30.0.1 - jest-environment-node: 30.1.1 + jest-environment-node: 30.1.2 jest-regex-util: 30.0.1 - jest-resolve: 30.1.0 - jest-runner: 30.1.1 + jest-resolve: 30.1.3 + jest-runner: 30.1.3 jest-util: 30.0.5 jest-validate: 30.1.0 micromatch: 4.0.8 @@ -6697,7 +6697,7 @@ snapshots: - babel-plugin-macros - supports-color - jest-diff@30.1.1: + jest-diff@30.1.2: dependencies: '@jest/diff-sequences': 30.0.1 '@jest/get-type': 30.1.0 @@ -6716,10 +6716,10 @@ snapshots: jest-util: 30.0.5 pretty-format: 30.0.5 - jest-environment-node@30.1.1: + jest-environment-node@30.1.2: dependencies: - '@jest/environment': 30.1.1 - '@jest/fake-timers': 30.1.1 + '@jest/environment': 30.1.2 + '@jest/fake-timers': 30.1.2 '@jest/types': 30.0.5 '@types/node': 22.18.0 jest-mock: 30.0.5 @@ -6746,11 +6746,11 @@ snapshots: '@jest/get-type': 30.1.0 pretty-format: 30.0.5 - jest-matcher-utils@30.1.1: + jest-matcher-utils@30.1.2: dependencies: '@jest/get-type': 30.1.0 chalk: 4.1.2 - jest-diff: 30.1.1 + jest-diff: 30.1.2 pretty-format: 30.0.5 jest-message-util@30.1.0: @@ -6771,36 +6771,36 @@ snapshots: '@types/node': 22.18.0 jest-util: 30.0.5 - jest-pnp-resolver@1.2.3(jest-resolve@30.1.0): + jest-pnp-resolver@1.2.3(jest-resolve@30.1.3): optionalDependencies: - jest-resolve: 30.1.0 + jest-resolve: 30.1.3 jest-regex-util@30.0.1: {} - jest-resolve-dependencies@30.1.1: + jest-resolve-dependencies@30.1.3: dependencies: jest-regex-util: 30.0.1 - jest-snapshot: 30.1.1 + jest-snapshot: 30.1.2 transitivePeerDependencies: - supports-color - jest-resolve@30.1.0: + jest-resolve@30.1.3: dependencies: chalk: 4.1.2 graceful-fs: 4.2.11 jest-haste-map: 30.1.0 - jest-pnp-resolver: 1.2.3(jest-resolve@30.1.0) + jest-pnp-resolver: 1.2.3(jest-resolve@30.1.3) jest-util: 30.0.5 jest-validate: 30.1.0 slash: 3.0.0 unrs-resolver: 1.7.13 - jest-runner@30.1.1: + jest-runner@30.1.3: dependencies: - '@jest/console': 30.1.1 - '@jest/environment': 30.1.1 - '@jest/test-result': 30.1.1 - '@jest/transform': 30.1.1 + '@jest/console': 30.1.2 + '@jest/environment': 30.1.2 + '@jest/test-result': 30.1.3 + '@jest/transform': 30.1.2 '@jest/types': 30.0.5 '@types/node': 22.18.0 chalk: 4.1.2 @@ -6808,28 +6808,28 @@ snapshots: exit-x: 0.2.2 graceful-fs: 4.2.11 jest-docblock: 30.0.1 - jest-environment-node: 30.1.1 + jest-environment-node: 30.1.2 jest-haste-map: 30.1.0 jest-leak-detector: 30.1.0 jest-message-util: 30.1.0 - jest-resolve: 30.1.0 - jest-runtime: 30.1.1 + jest-resolve: 30.1.3 + jest-runtime: 30.1.3 jest-util: 30.0.5 - jest-watcher: 30.1.1 + jest-watcher: 30.1.3 jest-worker: 30.1.0 p-limit: 3.1.0 source-map-support: 0.5.13 transitivePeerDependencies: - supports-color - jest-runtime@30.1.1: + jest-runtime@30.1.3: dependencies: - '@jest/environment': 30.1.1 - '@jest/fake-timers': 30.1.1 - '@jest/globals': 30.1.1 + '@jest/environment': 30.1.2 + '@jest/fake-timers': 30.1.2 + '@jest/globals': 30.1.2 '@jest/source-map': 30.0.1 - '@jest/test-result': 30.1.1 - '@jest/transform': 30.1.1 + '@jest/test-result': 30.1.3 + '@jest/transform': 30.1.2 '@jest/types': 30.0.5 '@types/node': 22.18.0 chalk: 4.1.2 @@ -6841,32 +6841,32 @@ snapshots: jest-message-util: 30.1.0 jest-mock: 30.0.5 jest-regex-util: 30.0.1 - jest-resolve: 30.1.0 - jest-snapshot: 30.1.1 + jest-resolve: 30.1.3 + jest-snapshot: 30.1.2 jest-util: 30.0.5 slash: 3.0.0 strip-bom: 4.0.0 transitivePeerDependencies: - supports-color - jest-snapshot@30.1.1: + jest-snapshot@30.1.2: dependencies: '@babel/core': 7.27.4 '@babel/generator': 7.27.5 '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.4) '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.27.4) - '@babel/types': 7.28.2 - '@jest/expect-utils': 30.1.1 + '@babel/types': 7.28.4 + '@jest/expect-utils': 30.1.2 '@jest/get-type': 30.1.0 - '@jest/snapshot-utils': 30.1.1 - '@jest/transform': 30.1.1 + '@jest/snapshot-utils': 30.1.2 + '@jest/transform': 30.1.2 '@jest/types': 30.0.5 babel-preset-current-node-syntax: 1.1.0(@babel/core@7.27.4) chalk: 4.1.2 - expect: 30.1.1 + expect: 30.1.2 graceful-fs: 4.2.11 - jest-diff: 30.1.1 - jest-matcher-utils: 30.1.1 + jest-diff: 30.1.2 + jest-matcher-utils: 30.1.2 jest-message-util: 30.1.0 jest-util: 30.0.5 pretty-format: 30.0.5 @@ -6893,9 +6893,9 @@ snapshots: leven: 3.1.0 pretty-format: 30.0.5 - jest-watcher@30.1.1: + jest-watcher@30.1.3: dependencies: - '@jest/test-result': 30.1.1 + '@jest/test-result': 30.1.3 '@jest/types': 30.0.5 '@types/node': 22.18.0 ansi-escapes: 4.3.2 @@ -6912,12 +6912,12 @@ snapshots: merge-stream: 2.0.0 supports-color: 8.1.1 - jest@30.1.1(@types/node@22.18.0): + jest@30.1.3(@types/node@22.18.0): dependencies: - '@jest/core': 30.1.1 + '@jest/core': 30.1.3 '@jest/types': 30.0.5 import-local: 3.2.0 - jest-cli: 30.1.1(@types/node@22.18.0) + jest-cli: 30.1.3(@types/node@22.18.0) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -7998,12 +7998,12 @@ snapshots: ts-dedent@2.2.0: {} - ts-jest@29.4.1(@babel/core@7.27.4)(@jest/transform@30.1.1)(@jest/types@30.0.5)(babel-jest@30.1.1(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.1.1(@types/node@22.18.0))(typescript@5.9.2): + ts-jest@29.4.1(@babel/core@7.27.4)(@jest/transform@30.1.2)(@jest/types@30.0.5)(babel-jest@30.1.2(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.1.3(@types/node@22.18.0))(typescript@5.9.2): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 handlebars: 4.7.8 - jest: 30.1.1(@types/node@22.18.0) + jest: 30.1.3(@types/node@22.18.0) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -8013,9 +8013,9 @@ snapshots: yargs-parser: 21.1.1 optionalDependencies: '@babel/core': 7.27.4 - '@jest/transform': 30.1.1 + '@jest/transform': 30.1.2 '@jest/types': 30.0.5 - babel-jest: 30.1.1(@babel/core@7.27.4) + babel-jest: 30.1.2(@babel/core@7.27.4) jest-util: 30.0.5 ts-log@2.2.7: {} From 1790354a4feb1e6abfe8de50ce443178f5b802fd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 01:40:18 +0000 Subject: [PATCH 041/133] chore(deps): update pnpm to v10.15.1 (#1227) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1dd40685..cc9bc47a 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "graphql-codegen-typescript-validation-schema", "type": "module", "version": "0.17.1", - "packageManager": "pnpm@10.15.0", + "packageManager": "pnpm@10.15.1", "description": "GraphQL Code Generator plugin to generate form validation schema from your GraphQL schema", "respository": { "type": "git", From c430435e8a0e97a13f86d33848514071e2ac7924 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 06:46:14 +0000 Subject: [PATCH 042/133] chore(deps): update dependency @types/node to v22.18.1 (#1225) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 134 ++++++++++++++++++++++++------------------------- 1 file changed, 67 insertions(+), 67 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3d6ed2b2..b475153f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,10 +29,10 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^5.0.0 - version: 5.2.2(@vue/compiler-sfc@3.5.12)(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1)) + version: 5.2.2(@vue/compiler-sfc@3.5.12)(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 5.0.7 - version: 5.0.7(@types/node@22.18.0)(graphql@16.11.0)(typescript@5.9.2) + version: 5.0.7(@types/node@22.18.1)(graphql@16.11.0)(typescript@5.9.2) '@graphql-codegen/typescript': specifier: ^4.0.0 version: 4.1.6(graphql@16.11.0) @@ -44,13 +44,13 @@ importers: version: 2.1.12 '@types/node': specifier: ^22.0.0 - version: 22.18.0 + version: 22.18.1 eslint: specifier: 9.34.0 version: 9.34.0(jiti@2.4.0) jest: specifier: 30.1.3 - version: 30.1.3(@types/node@22.18.0) + version: 30.1.3(@types/node@22.18.1) myzod: specifier: 1.12.1 version: 1.12.1 @@ -62,7 +62,7 @@ importers: version: 2.2.0 ts-jest: specifier: 29.4.1 - version: 29.4.1(@babel/core@7.27.4)(@jest/transform@30.1.2)(@jest/types@30.0.5)(babel-jest@30.1.2(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.1.3(@types/node@22.18.0))(typescript@5.9.2) + version: 29.4.1(@babel/core@7.27.4)(@jest/transform@30.1.2)(@jest/types@30.0.5)(babel-jest@30.1.2(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.1.3(@types/node@22.18.1))(typescript@5.9.2) typescript: specifier: 5.9.2 version: 5.9.2 @@ -71,7 +71,7 @@ importers: version: 1.1.0(typescript@5.9.2) vitest: specifier: ^3.0.0 - version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.0 version: 1.7.0 @@ -1156,8 +1156,8 @@ packages: '@types/ms@2.1.0': resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} - '@types/node@22.18.0': - resolution: {integrity: sha512-m5ObIqwsUp6BZzyiy4RdZpzWGub9bqLJMvZDD0QMXhxjqMHMENlj+SqF5QxoUwaQNFe+8kz8XM8ZQhqkQPTgMQ==} + '@types/node@22.18.1': + resolution: {integrity: sha512-rzSDyhn4cYznVG+PCzGe1lwuMYJrcBS1fc3JqSa2PvtABwWo+dZ1ij5OVok3tqfpEBCBoaR4d7upFJk73HRJDw==} '@types/stack-utils@2.0.3': resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} @@ -3868,7 +3868,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@5.2.2(@vue/compiler-sfc@3.5.12)(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@5.2.2(@vue/compiler-sfc@3.5.12)(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -3877,7 +3877,7 @@ snapshots: '@stylistic/eslint-plugin': 5.3.1(eslint@9.34.0(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) '@typescript-eslint/parser': 8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) - '@vitest/eslint-plugin': 1.3.9(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/eslint-plugin': 1.3.9(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.1.0 cac: 6.7.14 eslint: 9.34.0(jiti@2.4.0) @@ -4375,7 +4375,7 @@ snapshots: graphql: 16.11.0 tslib: 2.6.3 - '@graphql-codegen/cli@5.0.7(@types/node@22.18.0)(graphql@16.11.0)(typescript@5.9.2)': + '@graphql-codegen/cli@5.0.7(@types/node@22.18.1)(graphql@16.11.0)(typescript@5.9.2)': dependencies: '@babel/generator': 7.27.0 '@babel/template': 7.25.9 @@ -4386,12 +4386,12 @@ snapshots: '@graphql-tools/apollo-engine-loader': 8.0.4(graphql@16.11.0) '@graphql-tools/code-file-loader': 8.1.5(graphql@16.11.0) '@graphql-tools/git-loader': 8.0.9(graphql@16.11.0) - '@graphql-tools/github-loader': 8.0.4(@types/node@22.18.0)(graphql@16.11.0) + '@graphql-tools/github-loader': 8.0.4(@types/node@22.18.1)(graphql@16.11.0) '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) - '@graphql-tools/prisma-loader': 8.0.17(@types/node@22.18.0)(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.0)(graphql@16.11.0) + '@graphql-tools/prisma-loader': 8.0.17(@types/node@22.18.1)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.1)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@whatwg-node/fetch': 0.10.1 chalk: 4.1.2 @@ -4399,7 +4399,7 @@ snapshots: debounce: 1.2.1 detect-indent: 6.1.0 graphql: 16.11.0 - graphql-config: 5.1.3(@types/node@22.18.0)(graphql@16.11.0)(typescript@5.9.2) + graphql-config: 5.1.3(@types/node@22.18.1)(graphql@16.11.0)(typescript@5.9.2) inquirer: 8.2.6 is-glob: 4.0.3 jiti: 1.21.6 @@ -4588,14 +4588,14 @@ snapshots: - bufferutil - utf-8-validate - '@graphql-tools/executor-http@1.1.9(@types/node@22.18.0)(graphql@16.11.0)': + '@graphql-tools/executor-http@1.1.9(@types/node@22.18.1)(graphql@16.11.0)': dependencies: '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/fetch': 0.10.1 extract-files: 11.0.0 graphql: 16.11.0 - meros: 1.3.0(@types/node@22.18.0) + meros: 1.3.0(@types/node@22.18.1) tslib: 2.8.1 value-or-promise: 1.0.12 transitivePeerDependencies: @@ -4634,10 +4634,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@graphql-tools/github-loader@8.0.4(@types/node@22.18.0)(graphql@16.11.0)': + '@graphql-tools/github-loader@8.0.4(@types/node@22.18.1)(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.0)(graphql@16.11.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.1)(graphql@16.11.0) '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@whatwg-node/fetch': 0.10.1 @@ -4705,9 +4705,9 @@ snapshots: graphql: 16.11.0 tslib: 2.6.3 - '@graphql-tools/prisma-loader@8.0.17(@types/node@22.18.0)(graphql@16.11.0)': + '@graphql-tools/prisma-loader@8.0.17(@types/node@22.18.1)(graphql@16.11.0)': dependencies: - '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.0)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.1)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@types/js-yaml': 4.0.9 '@whatwg-node/fetch': 0.10.1 @@ -4747,11 +4747,11 @@ snapshots: graphql: 16.11.0 tslib: 2.8.1 - '@graphql-tools/url-loader@8.0.15(@types/node@22.18.0)(graphql@16.11.0)': + '@graphql-tools/url-loader@8.0.15(@types/node@22.18.1)(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/executor-graphql-ws': 1.3.2(graphql@16.11.0) - '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.0)(graphql@16.11.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.1)(graphql@16.11.0) '@graphql-tools/executor-legacy-ws': 1.1.2(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@graphql-tools/wrap': 10.0.16(graphql@16.11.0) @@ -4825,7 +4825,7 @@ snapshots: '@jest/console@30.1.2': dependencies: '@jest/types': 30.0.5 - '@types/node': 22.18.0 + '@types/node': 22.18.1 chalk: 4.1.2 jest-message-util: 30.1.0 jest-util: 30.0.5 @@ -4839,14 +4839,14 @@ snapshots: '@jest/test-result': 30.1.3 '@jest/transform': 30.1.2 '@jest/types': 30.0.5 - '@types/node': 22.18.0 + '@types/node': 22.18.1 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 4.3.0 exit-x: 0.2.2 graceful-fs: 4.2.11 jest-changed-files: 30.0.5 - jest-config: 30.1.3(@types/node@22.18.0) + jest-config: 30.1.3(@types/node@22.18.1) jest-haste-map: 30.1.0 jest-message-util: 30.1.0 jest-regex-util: 30.0.1 @@ -4873,7 +4873,7 @@ snapshots: dependencies: '@jest/fake-timers': 30.1.2 '@jest/types': 30.0.5 - '@types/node': 22.18.0 + '@types/node': 22.18.1 jest-mock: 30.0.5 '@jest/expect-utils@30.1.2': @@ -4891,7 +4891,7 @@ snapshots: dependencies: '@jest/types': 30.0.5 '@sinonjs/fake-timers': 13.0.5 - '@types/node': 22.18.0 + '@types/node': 22.18.1 jest-message-util: 30.1.0 jest-mock: 30.0.5 jest-util: 30.0.5 @@ -4909,7 +4909,7 @@ snapshots: '@jest/pattern@30.0.1': dependencies: - '@types/node': 22.18.0 + '@types/node': 22.18.1 jest-regex-util: 30.0.1 '@jest/reporters@30.1.3': @@ -4920,7 +4920,7 @@ snapshots: '@jest/transform': 30.1.2 '@jest/types': 30.0.5 '@jridgewell/trace-mapping': 0.3.25 - '@types/node': 22.18.0 + '@types/node': 22.18.1 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit-x: 0.2.2 @@ -4997,7 +4997,7 @@ snapshots: '@jest/schemas': 30.0.5 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 22.18.0 + '@types/node': 22.18.1 '@types/yargs': 17.0.33 chalk: 4.1.2 @@ -5192,7 +5192,7 @@ snapshots: '@types/ms@2.1.0': {} - '@types/node@22.18.0': + '@types/node@22.18.1': dependencies: undici-types: 6.21.0 @@ -5202,7 +5202,7 @@ snapshots: '@types/ws@8.5.13': dependencies: - '@types/node': 22.18.0 + '@types/node': 22.18.1 '@types/yargs-parser@21.0.3': {} @@ -5358,14 +5358,14 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.9(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.3.9(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.42.0 '@typescript-eslint/utils': 8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) eslint: 9.34.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.2 - vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1) + vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color @@ -5377,13 +5377,13 @@ snapshots: chai: 5.2.0 tinyrainbow: 2.0.0 - '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@vitest/spy': 3.2.4 estree-walker: 3.0.3 magic-string: 0.30.17 optionalDependencies: - vite: 6.3.5(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1) '@vitest/pretty-format@3.2.4': dependencies: @@ -6389,13 +6389,13 @@ snapshots: dependencies: lodash: 4.17.21 - graphql-config@5.1.3(@types/node@22.18.0)(graphql@16.11.0)(typescript@5.9.2): + graphql-config@5.1.3(@types/node@22.18.1)(graphql@16.11.0)(typescript@5.9.2): dependencies: '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) '@graphql-tools/merge': 9.0.24(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.0)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.1)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) cosmiconfig: 8.3.6(typescript@5.9.2) graphql: 16.11.0 @@ -6626,7 +6626,7 @@ snapshots: '@jest/expect': 30.1.2 '@jest/test-result': 30.1.3 '@jest/types': 30.0.5 - '@types/node': 22.18.0 + '@types/node': 22.18.1 chalk: 4.1.2 co: 4.6.0 dedent: 1.6.0 @@ -6646,7 +6646,7 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@30.1.3(@types/node@22.18.0): + jest-cli@30.1.3(@types/node@22.18.1): dependencies: '@jest/core': 30.1.3 '@jest/test-result': 30.1.3 @@ -6654,7 +6654,7 @@ snapshots: chalk: 4.1.2 exit-x: 0.2.2 import-local: 3.2.0 - jest-config: 30.1.3(@types/node@22.18.0) + jest-config: 30.1.3(@types/node@22.18.1) jest-util: 30.0.5 jest-validate: 30.1.0 yargs: 17.7.2 @@ -6665,7 +6665,7 @@ snapshots: - supports-color - ts-node - jest-config@30.1.3(@types/node@22.18.0): + jest-config@30.1.3(@types/node@22.18.1): dependencies: '@babel/core': 7.27.4 '@jest/get-type': 30.1.0 @@ -6692,7 +6692,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 22.18.0 + '@types/node': 22.18.1 transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -6721,7 +6721,7 @@ snapshots: '@jest/environment': 30.1.2 '@jest/fake-timers': 30.1.2 '@jest/types': 30.0.5 - '@types/node': 22.18.0 + '@types/node': 22.18.1 jest-mock: 30.0.5 jest-util: 30.0.5 jest-validate: 30.1.0 @@ -6729,7 +6729,7 @@ snapshots: jest-haste-map@30.1.0: dependencies: '@jest/types': 30.0.5 - '@types/node': 22.18.0 + '@types/node': 22.18.1 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -6768,7 +6768,7 @@ snapshots: jest-mock@30.0.5: dependencies: '@jest/types': 30.0.5 - '@types/node': 22.18.0 + '@types/node': 22.18.1 jest-util: 30.0.5 jest-pnp-resolver@1.2.3(jest-resolve@30.1.3): @@ -6802,7 +6802,7 @@ snapshots: '@jest/test-result': 30.1.3 '@jest/transform': 30.1.2 '@jest/types': 30.0.5 - '@types/node': 22.18.0 + '@types/node': 22.18.1 chalk: 4.1.2 emittery: 0.13.1 exit-x: 0.2.2 @@ -6831,7 +6831,7 @@ snapshots: '@jest/test-result': 30.1.3 '@jest/transform': 30.1.2 '@jest/types': 30.0.5 - '@types/node': 22.18.0 + '@types/node': 22.18.1 chalk: 4.1.2 cjs-module-lexer: 2.1.0 collect-v8-coverage: 1.0.2 @@ -6878,7 +6878,7 @@ snapshots: jest-util@30.0.5: dependencies: '@jest/types': 30.0.5 - '@types/node': 22.18.0 + '@types/node': 22.18.1 chalk: 4.1.2 ci-info: 4.3.0 graceful-fs: 4.2.11 @@ -6897,7 +6897,7 @@ snapshots: dependencies: '@jest/test-result': 30.1.3 '@jest/types': 30.0.5 - '@types/node': 22.18.0 + '@types/node': 22.18.1 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -6906,18 +6906,18 @@ snapshots: jest-worker@30.1.0: dependencies: - '@types/node': 22.18.0 + '@types/node': 22.18.1 '@ungap/structured-clone': 1.3.0 jest-util: 30.0.5 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@30.1.3(@types/node@22.18.0): + jest@30.1.3(@types/node@22.18.1): dependencies: '@jest/core': 30.1.3 '@jest/types': 30.0.5 import-local: 3.2.0 - jest-cli: 30.1.3(@types/node@22.18.0) + jest-cli: 30.1.3(@types/node@22.18.1) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -7197,9 +7197,9 @@ snapshots: merge2@1.4.1: {} - meros@1.3.0(@types/node@22.18.0): + meros@1.3.0(@types/node@22.18.1): optionalDependencies: - '@types/node': 22.18.0 + '@types/node': 22.18.1 micromark-core-commonmark@2.0.3: dependencies: @@ -7998,12 +7998,12 @@ snapshots: ts-dedent@2.2.0: {} - ts-jest@29.4.1(@babel/core@7.27.4)(@jest/transform@30.1.2)(@jest/types@30.0.5)(babel-jest@30.1.2(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.1.3(@types/node@22.18.0))(typescript@5.9.2): + ts-jest@29.4.1(@babel/core@7.27.4)(@jest/transform@30.1.2)(@jest/types@30.0.5)(babel-jest@30.1.2(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.1.3(@types/node@22.18.1))(typescript@5.9.2): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 handlebars: 4.7.8 - jest: 30.1.3(@types/node@22.18.0) + jest: 30.1.3(@types/node@22.18.1) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -8128,13 +8128,13 @@ snapshots: value-or-promise@1.0.12: {} - vite-node@3.2.4(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1): + vite-node@3.2.4(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1): dependencies: cac: 6.7.14 debug: 4.4.1 es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 6.3.5(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - '@types/node' - jiti @@ -8149,7 +8149,7 @@ snapshots: - tsx - yaml - vite@6.3.5(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1): + vite@6.3.5(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1): dependencies: esbuild: 0.25.5 fdir: 6.4.6(picomatch@4.0.2) @@ -8158,16 +8158,16 @@ snapshots: rollup: 4.43.0 tinyglobby: 0.2.14 optionalDependencies: - '@types/node': 22.18.0 + '@types/node': 22.18.1 fsevents: 2.3.3 jiti: 2.4.0 yaml: 2.8.1 - vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1): + vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1): dependencies: '@types/chai': 5.2.2 '@vitest/expect': 3.2.4 - '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1)) '@vitest/pretty-format': 3.2.4 '@vitest/runner': 3.2.4 '@vitest/snapshot': 3.2.4 @@ -8185,12 +8185,12 @@ snapshots: tinyglobby: 0.2.14 tinypool: 1.1.1 tinyrainbow: 2.0.0 - vite: 6.3.5(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1) - vite-node: 3.2.4(@types/node@22.18.0)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1) + vite-node: 3.2.4(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1) why-is-node-running: 2.3.0 optionalDependencies: '@types/debug': 4.1.12 - '@types/node': 22.18.0 + '@types/node': 22.18.1 transitivePeerDependencies: - jiti - less From b60d51160eeaaaf1f79c7fabb15d718c62f602a5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 10:48:52 +0000 Subject: [PATCH 043/133] chore(deps): update dependency eslint to v9.35.0 (#1228) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 257 +++++++++++++++++++++++-------------------------- 2 files changed, 124 insertions(+), 135 deletions(-) diff --git a/package.json b/package.json index cc9bc47a..0b49b921 100644 --- a/package.json +++ b/package.json @@ -91,7 +91,7 @@ "@tsconfig/recommended": "1.0.10", "@types/graphlib": "^2.1.8", "@types/node": "^22.0.0", - "eslint": "9.34.0", + "eslint": "9.35.0", "jest": "30.1.3", "myzod": "1.12.1", "npm-run-all2": "8.0.4", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b475153f..94fffae0 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^5.0.0 - version: 5.2.2(@vue/compiler-sfc@3.5.12)(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1)) + version: 5.2.2(@vue/compiler-sfc@3.5.12)(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 5.0.7 version: 5.0.7(@types/node@22.18.1)(graphql@16.11.0)(typescript@5.9.2) @@ -46,8 +46,8 @@ importers: specifier: ^22.0.0 version: 22.18.1 eslint: - specifier: 9.34.0 - version: 9.34.0(jiti@2.4.0) + specifier: 9.35.0 + version: 9.35.0(jiti@2.4.0) jest: specifier: 30.1.3 version: 30.1.3(@types/node@22.18.1) @@ -538,12 +538,6 @@ packages: peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 - '@eslint-community/eslint-utils@4.7.0': - resolution: {integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - '@eslint-community/eslint-utils@4.8.0': resolution: {integrity: sha512-MJQFqrZgcW0UNYLGOuQpey/oTN59vyWwplvCGZztn1cKz9agZPPYpJB7h2OMmuu7VLqkvEjN8feFZJmxNF9D+Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -579,8 +573,8 @@ packages: resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/js@9.34.0': - resolution: {integrity: sha512-EoyvqQnBNsV1CWaEJ559rxXL4c8V92gxirbawSmVUOWXlsRxxQXl6LmCpdUblgxgSkDIqKnhzba2SjRTI/A5Rw==} + '@eslint/js@9.35.0': + resolution: {integrity: sha512-30iXE9whjlILfWobBkNerJo+TXYsgVM5ERQwMcMKCHckHflCmf7wXDAHlARoWnh0s1U72WqlbeyE7iAcCzuCPw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/markdown@7.2.0': @@ -2000,8 +1994,8 @@ packages: resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - eslint@9.34.0: - resolution: {integrity: sha512-RNCHRX5EwdrESy3Jc9o8ie8Bog+PeYvvSR8sDGoZxNFTvZ4dlxUB3WzQ3bQMztFrSRODGrLLj8g6OFuGY/aiQg==} + eslint@9.35.0: + resolution: {integrity: sha512-QePbBFMJFjgmlE+cXAlbHZbHpdFVS2E/6vzCy7aKlebddvl1vadiC4JFV5u/wqTkNUwEV8WrQi257jf5f06hrg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true peerDependencies: @@ -3868,44 +3862,44 @@ snapshots: '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@5.2.2(@vue/compiler-sfc@3.5.12)(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@5.2.2(@vue/compiler-sfc@3.5.12)(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 - '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.34.0(jiti@2.4.0)) + '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.35.0(jiti@2.4.0)) '@eslint/markdown': 7.2.0 - '@stylistic/eslint-plugin': 5.3.1(eslint@9.34.0(jiti@2.4.0)) - '@typescript-eslint/eslint-plugin': 8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) - '@typescript-eslint/parser': 8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) - '@vitest/eslint-plugin': 1.3.9(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1)) + '@stylistic/eslint-plugin': 5.3.1(eslint@9.35.0(jiti@2.4.0)) + '@typescript-eslint/eslint-plugin': 8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/parser': 8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2) + '@vitest/eslint-plugin': 1.3.9(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.1.0 cac: 6.7.14 - eslint: 9.34.0(jiti@2.4.0) - eslint-config-flat-gitignore: 2.1.0(eslint@9.34.0(jiti@2.4.0)) + eslint: 9.35.0(jiti@2.4.0) + eslint-config-flat-gitignore: 2.1.0(eslint@9.35.0(jiti@2.4.0)) eslint-flat-config-utils: 2.1.1 - eslint-merge-processors: 2.0.0(eslint@9.34.0(jiti@2.4.0)) - eslint-plugin-antfu: 3.1.1(eslint@9.34.0(jiti@2.4.0)) - eslint-plugin-command: 3.3.1(eslint@9.34.0(jiti@2.4.0)) - eslint-plugin-import-lite: 0.3.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) - eslint-plugin-jsdoc: 52.0.4(eslint@9.34.0(jiti@2.4.0)) - eslint-plugin-jsonc: 2.20.1(eslint@9.34.0(jiti@2.4.0)) - eslint-plugin-n: 17.21.3(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) + eslint-merge-processors: 2.0.0(eslint@9.35.0(jiti@2.4.0)) + eslint-plugin-antfu: 3.1.1(eslint@9.35.0(jiti@2.4.0)) + eslint-plugin-command: 3.3.1(eslint@9.35.0(jiti@2.4.0)) + eslint-plugin-import-lite: 0.3.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2) + eslint-plugin-jsdoc: 52.0.4(eslint@9.35.0(jiti@2.4.0)) + eslint-plugin-jsonc: 2.20.1(eslint@9.35.0(jiti@2.4.0)) + eslint-plugin-n: 17.21.3(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2) eslint-plugin-no-only-tests: 3.3.0 - eslint-plugin-perfectionist: 4.15.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) - eslint-plugin-pnpm: 1.1.1(eslint@9.34.0(jiti@2.4.0)) - eslint-plugin-regexp: 2.10.0(eslint@9.34.0(jiti@2.4.0)) - eslint-plugin-toml: 0.12.0(eslint@9.34.0(jiti@2.4.0)) - eslint-plugin-unicorn: 60.0.0(eslint@9.34.0(jiti@2.4.0)) - eslint-plugin-unused-imports: 4.2.0(@typescript-eslint/eslint-plugin@8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0)) - eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.34.0(jiti@2.4.0))) - eslint-plugin-yml: 1.18.0(eslint@9.34.0(jiti@2.4.0)) - eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.34.0(jiti@2.4.0)) + eslint-plugin-perfectionist: 4.15.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2) + eslint-plugin-pnpm: 1.1.1(eslint@9.35.0(jiti@2.4.0)) + eslint-plugin-regexp: 2.10.0(eslint@9.35.0(jiti@2.4.0)) + eslint-plugin-toml: 0.12.0(eslint@9.35.0(jiti@2.4.0)) + eslint-plugin-unicorn: 60.0.0(eslint@9.35.0(jiti@2.4.0)) + eslint-plugin-unused-imports: 4.2.0(@typescript-eslint/eslint-plugin@8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.35.0(jiti@2.4.0)) + eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.35.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.35.0(jiti@2.4.0))) + eslint-plugin-yml: 1.18.0(eslint@9.35.0(jiti@2.4.0)) + eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.35.0(jiti@2.4.0)) globals: 16.3.0 jsonc-eslint-parser: 2.4.0 local-pkg: 1.1.2 parse-gitignore: 2.0.0 toml-eslint-parser: 0.10.0 - vue-eslint-parser: 10.2.0(eslint@9.34.0(jiti@2.4.0)) + vue-eslint-parser: 10.2.0(eslint@9.35.0(jiti@2.4.0)) yaml-eslint-parser: 1.3.0 transitivePeerDependencies: - '@eslint/json' @@ -4296,27 +4290,22 @@ snapshots: '@esbuild/win32-x64@0.25.5': optional: true - '@eslint-community/eslint-plugin-eslint-comments@4.5.0(eslint@9.34.0(jiti@2.4.0))': + '@eslint-community/eslint-plugin-eslint-comments@4.5.0(eslint@9.35.0(jiti@2.4.0))': dependencies: escape-string-regexp: 4.0.0 - eslint: 9.34.0(jiti@2.4.0) + eslint: 9.35.0(jiti@2.4.0) ignore: 5.3.2 - '@eslint-community/eslint-utils@4.7.0(eslint@9.34.0(jiti@2.4.0))': - dependencies: - eslint: 9.34.0(jiti@2.4.0) - eslint-visitor-keys: 3.4.3 - - '@eslint-community/eslint-utils@4.8.0(eslint@9.34.0(jiti@2.4.0))': + '@eslint-community/eslint-utils@4.8.0(eslint@9.35.0(jiti@2.4.0))': dependencies: - eslint: 9.34.0(jiti@2.4.0) + eslint: 9.35.0(jiti@2.4.0) eslint-visitor-keys: 3.4.3 '@eslint-community/regexpp@4.12.1': {} - '@eslint/compat@1.3.2(eslint@9.34.0(jiti@2.4.0))': + '@eslint/compat@1.3.2(eslint@9.35.0(jiti@2.4.0))': optionalDependencies: - eslint: 9.34.0(jiti@2.4.0) + eslint: 9.35.0(jiti@2.4.0) '@eslint/config-array@0.21.0': dependencies: @@ -4346,7 +4335,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/js@9.34.0': {} + '@eslint/js@9.35.0': {} '@eslint/markdown@7.2.0': dependencies: @@ -5118,11 +5107,11 @@ snapshots: dependencies: '@sinonjs/commons': 3.0.1 - '@stylistic/eslint-plugin@5.3.1(eslint@9.34.0(jiti@2.4.0))': + '@stylistic/eslint-plugin@5.3.1(eslint@9.35.0(jiti@2.4.0))': dependencies: - '@eslint-community/eslint-utils': 4.8.0(eslint@9.34.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.8.0(eslint@9.35.0(jiti@2.4.0)) '@typescript-eslint/types': 8.42.0 - eslint: 9.34.0(jiti@2.4.0) + eslint: 9.35.0(jiti@2.4.0) eslint-visitor-keys: 4.2.1 espree: 10.4.0 estraverse: 5.3.0 @@ -5210,15 +5199,15 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/eslint-plugin@8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/parser': 8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2) '@typescript-eslint/scope-manager': 8.42.0 - '@typescript-eslint/type-utils': 8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) - '@typescript-eslint/utils': 8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/type-utils': 8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/utils': 8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2) '@typescript-eslint/visitor-keys': 8.42.0 - eslint: 9.34.0(jiti@2.4.0) + eslint: 9.35.0(jiti@2.4.0) graphemer: 1.4.0 ignore: 7.0.5 natural-compare: 1.4.0 @@ -5227,14 +5216,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: '@typescript-eslint/scope-manager': 8.42.0 '@typescript-eslint/types': 8.42.0 '@typescript-eslint/typescript-estree': 8.42.0(typescript@5.9.2) '@typescript-eslint/visitor-keys': 8.42.0 debug: 4.4.1 - eslint: 9.34.0(jiti@2.4.0) + eslint: 9.35.0(jiti@2.4.0) typescript: 5.9.2 transitivePeerDependencies: - supports-color @@ -5257,13 +5246,13 @@ snapshots: dependencies: typescript: 5.9.2 - '@typescript-eslint/type-utils@8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/type-utils@8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: '@typescript-eslint/types': 8.42.0 '@typescript-eslint/typescript-estree': 8.42.0(typescript@5.9.2) - '@typescript-eslint/utils': 8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/utils': 8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2) debug: 4.4.1 - eslint: 9.34.0(jiti@2.4.0) + eslint: 9.35.0(jiti@2.4.0) ts-api-utils: 2.1.0(typescript@5.9.2) typescript: 5.9.2 transitivePeerDependencies: @@ -5287,13 +5276,13 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/utils@8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: - '@eslint-community/eslint-utils': 4.8.0(eslint@9.34.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.8.0(eslint@9.35.0(jiti@2.4.0)) '@typescript-eslint/scope-manager': 8.42.0 '@typescript-eslint/types': 8.42.0 '@typescript-eslint/typescript-estree': 8.42.0(typescript@5.9.2) - eslint: 9.34.0(jiti@2.4.0) + eslint: 9.35.0(jiti@2.4.0) typescript: 5.9.2 transitivePeerDependencies: - supports-color @@ -5358,11 +5347,11 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.9(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.3.9(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.42.0 - '@typescript-eslint/utils': 8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) - eslint: 9.34.0(jiti@2.4.0) + '@typescript-eslint/utils': 8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2) + eslint: 9.35.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.2 vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1) @@ -5909,67 +5898,67 @@ snapshots: escape-string-regexp@5.0.0: {} - eslint-compat-utils@0.5.1(eslint@9.34.0(jiti@2.4.0)): + eslint-compat-utils@0.5.1(eslint@9.35.0(jiti@2.4.0)): dependencies: - eslint: 9.34.0(jiti@2.4.0) + eslint: 9.35.0(jiti@2.4.0) semver: 7.7.2 - eslint-compat-utils@0.6.5(eslint@9.34.0(jiti@2.4.0)): + eslint-compat-utils@0.6.5(eslint@9.35.0(jiti@2.4.0)): dependencies: - eslint: 9.34.0(jiti@2.4.0) + eslint: 9.35.0(jiti@2.4.0) semver: 7.7.2 - eslint-config-flat-gitignore@2.1.0(eslint@9.34.0(jiti@2.4.0)): + eslint-config-flat-gitignore@2.1.0(eslint@9.35.0(jiti@2.4.0)): dependencies: - '@eslint/compat': 1.3.2(eslint@9.34.0(jiti@2.4.0)) - eslint: 9.34.0(jiti@2.4.0) + '@eslint/compat': 1.3.2(eslint@9.35.0(jiti@2.4.0)) + eslint: 9.35.0(jiti@2.4.0) eslint-flat-config-utils@2.1.1: dependencies: pathe: 2.0.3 - eslint-json-compat-utils@0.2.1(eslint@9.34.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0): + eslint-json-compat-utils@0.2.1(eslint@9.35.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0): dependencies: - eslint: 9.34.0(jiti@2.4.0) + eslint: 9.35.0(jiti@2.4.0) esquery: 1.6.0 jsonc-eslint-parser: 2.4.0 - eslint-merge-processors@2.0.0(eslint@9.34.0(jiti@2.4.0)): + eslint-merge-processors@2.0.0(eslint@9.35.0(jiti@2.4.0)): dependencies: - eslint: 9.34.0(jiti@2.4.0) + eslint: 9.35.0(jiti@2.4.0) - eslint-plugin-antfu@3.1.1(eslint@9.34.0(jiti@2.4.0)): + eslint-plugin-antfu@3.1.1(eslint@9.35.0(jiti@2.4.0)): dependencies: - eslint: 9.34.0(jiti@2.4.0) + eslint: 9.35.0(jiti@2.4.0) - eslint-plugin-command@3.3.1(eslint@9.34.0(jiti@2.4.0)): + eslint-plugin-command@3.3.1(eslint@9.35.0(jiti@2.4.0)): dependencies: '@es-joy/jsdoccomment': 0.50.2 - eslint: 9.34.0(jiti@2.4.0) + eslint: 9.35.0(jiti@2.4.0) - eslint-plugin-es-x@7.8.0(eslint@9.34.0(jiti@2.4.0)): + eslint-plugin-es-x@7.8.0(eslint@9.35.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.8.0(eslint@9.34.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.8.0(eslint@9.35.0(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.1 - eslint: 9.34.0(jiti@2.4.0) - eslint-compat-utils: 0.5.1(eslint@9.34.0(jiti@2.4.0)) + eslint: 9.35.0(jiti@2.4.0) + eslint-compat-utils: 0.5.1(eslint@9.35.0(jiti@2.4.0)) - eslint-plugin-import-lite@0.3.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2): + eslint-plugin-import-lite@0.3.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2): dependencies: - '@eslint-community/eslint-utils': 4.8.0(eslint@9.34.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.8.0(eslint@9.35.0(jiti@2.4.0)) '@typescript-eslint/types': 8.42.0 - eslint: 9.34.0(jiti@2.4.0) + eslint: 9.35.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.2 - eslint-plugin-jsdoc@52.0.4(eslint@9.34.0(jiti@2.4.0)): + eslint-plugin-jsdoc@52.0.4(eslint@9.35.0(jiti@2.4.0)): dependencies: '@es-joy/jsdoccomment': 0.52.0 are-docs-informative: 0.0.2 comment-parser: 1.4.1 debug: 4.4.1 escape-string-regexp: 4.0.0 - eslint: 9.34.0(jiti@2.4.0) + eslint: 9.35.0(jiti@2.4.0) espree: 10.4.0 esquery: 1.6.0 parse-imports-exports: 0.2.4 @@ -5978,12 +5967,12 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-jsonc@2.20.1(eslint@9.34.0(jiti@2.4.0)): + eslint-plugin-jsonc@2.20.1(eslint@9.35.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.8.0(eslint@9.34.0(jiti@2.4.0)) - eslint: 9.34.0(jiti@2.4.0) - eslint-compat-utils: 0.6.5(eslint@9.34.0(jiti@2.4.0)) - eslint-json-compat-utils: 0.2.1(eslint@9.34.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0) + '@eslint-community/eslint-utils': 4.8.0(eslint@9.35.0(jiti@2.4.0)) + eslint: 9.35.0(jiti@2.4.0) + eslint-compat-utils: 0.6.5(eslint@9.35.0(jiti@2.4.0)) + eslint-json-compat-utils: 0.2.1(eslint@9.35.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0) espree: 10.4.0 graphemer: 1.4.0 jsonc-eslint-parser: 2.4.0 @@ -5992,12 +5981,12 @@ snapshots: transitivePeerDependencies: - '@eslint/json' - eslint-plugin-n@17.21.3(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2): + eslint-plugin-n@17.21.3(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2): dependencies: - '@eslint-community/eslint-utils': 4.8.0(eslint@9.34.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.8.0(eslint@9.35.0(jiti@2.4.0)) enhanced-resolve: 5.18.3 - eslint: 9.34.0(jiti@2.4.0) - eslint-plugin-es-x: 7.8.0(eslint@9.34.0(jiti@2.4.0)) + eslint: 9.35.0(jiti@2.4.0) + eslint-plugin-es-x: 7.8.0(eslint@9.35.0(jiti@2.4.0)) get-tsconfig: 4.10.1 globals: 15.15.0 globrex: 0.1.2 @@ -6009,57 +5998,57 @@ snapshots: eslint-plugin-no-only-tests@3.3.0: {} - eslint-plugin-perfectionist@4.15.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2): + eslint-plugin-perfectionist@4.15.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2): dependencies: '@typescript-eslint/types': 8.42.0 - '@typescript-eslint/utils': 8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) - eslint: 9.34.0(jiti@2.4.0) + '@typescript-eslint/utils': 8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2) + eslint: 9.35.0(jiti@2.4.0) natural-orderby: 5.0.0 transitivePeerDependencies: - supports-color - typescript - eslint-plugin-pnpm@1.1.1(eslint@9.34.0(jiti@2.4.0)): + eslint-plugin-pnpm@1.1.1(eslint@9.35.0(jiti@2.4.0)): dependencies: empathic: 2.0.0 - eslint: 9.34.0(jiti@2.4.0) + eslint: 9.35.0(jiti@2.4.0) jsonc-eslint-parser: 2.4.0 pathe: 2.0.3 pnpm-workspace-yaml: 1.1.1 tinyglobby: 0.2.15 yaml-eslint-parser: 1.3.0 - eslint-plugin-regexp@2.10.0(eslint@9.34.0(jiti@2.4.0)): + eslint-plugin-regexp@2.10.0(eslint@9.35.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.8.0(eslint@9.34.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.8.0(eslint@9.35.0(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.1 comment-parser: 1.4.1 - eslint: 9.34.0(jiti@2.4.0) + eslint: 9.35.0(jiti@2.4.0) jsdoc-type-pratt-parser: 4.8.0 refa: 0.12.1 regexp-ast-analysis: 0.7.1 scslre: 0.3.0 - eslint-plugin-toml@0.12.0(eslint@9.34.0(jiti@2.4.0)): + eslint-plugin-toml@0.12.0(eslint@9.35.0(jiti@2.4.0)): dependencies: debug: 4.4.1 - eslint: 9.34.0(jiti@2.4.0) - eslint-compat-utils: 0.6.5(eslint@9.34.0(jiti@2.4.0)) + eslint: 9.35.0(jiti@2.4.0) + eslint-compat-utils: 0.6.5(eslint@9.35.0(jiti@2.4.0)) lodash: 4.17.21 toml-eslint-parser: 0.10.0 transitivePeerDependencies: - supports-color - eslint-plugin-unicorn@60.0.0(eslint@9.34.0(jiti@2.4.0)): + eslint-plugin-unicorn@60.0.0(eslint@9.35.0(jiti@2.4.0)): dependencies: '@babel/helper-validator-identifier': 7.27.1 - '@eslint-community/eslint-utils': 4.8.0(eslint@9.34.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.8.0(eslint@9.35.0(jiti@2.4.0)) '@eslint/plugin-kit': 0.3.5 change-case: 5.4.4 ci-info: 4.3.0 clean-regexp: 1.0.0 core-js-compat: 3.45.1 - eslint: 9.34.0(jiti@2.4.0) + eslint: 9.35.0(jiti@2.4.0) esquery: 1.6.0 find-up-simple: 1.0.1 globals: 16.3.0 @@ -6072,40 +6061,40 @@ snapshots: semver: 7.7.2 strip-indent: 4.0.0 - eslint-plugin-unused-imports@4.2.0(@typescript-eslint/eslint-plugin@8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0)): + eslint-plugin-unused-imports@4.2.0(@typescript-eslint/eslint-plugin@8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.35.0(jiti@2.4.0)): dependencies: - eslint: 9.34.0(jiti@2.4.0) + eslint: 9.35.0(jiti@2.4.0) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/eslint-plugin': 8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2) - eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.34.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.34.0(jiti@2.4.0))): + eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.35.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.35.0(jiti@2.4.0))): dependencies: - '@eslint-community/eslint-utils': 4.8.0(eslint@9.34.0(jiti@2.4.0)) - eslint: 9.34.0(jiti@2.4.0) + '@eslint-community/eslint-utils': 4.8.0(eslint@9.35.0(jiti@2.4.0)) + eslint: 9.35.0(jiti@2.4.0) natural-compare: 1.4.0 nth-check: 2.1.1 postcss-selector-parser: 6.1.2 semver: 7.7.2 - vue-eslint-parser: 10.2.0(eslint@9.34.0(jiti@2.4.0)) + vue-eslint-parser: 10.2.0(eslint@9.35.0(jiti@2.4.0)) xml-name-validator: 4.0.0 optionalDependencies: - '@typescript-eslint/parser': 8.42.0(eslint@9.34.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/parser': 8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2) - eslint-plugin-yml@1.18.0(eslint@9.34.0(jiti@2.4.0)): + eslint-plugin-yml@1.18.0(eslint@9.35.0(jiti@2.4.0)): dependencies: debug: 4.4.1 escape-string-regexp: 4.0.0 - eslint: 9.34.0(jiti@2.4.0) - eslint-compat-utils: 0.6.5(eslint@9.34.0(jiti@2.4.0)) + eslint: 9.35.0(jiti@2.4.0) + eslint-compat-utils: 0.6.5(eslint@9.35.0(jiti@2.4.0)) natural-compare: 1.4.0 yaml-eslint-parser: 1.3.0 transitivePeerDependencies: - supports-color - eslint-processor-vue-blocks@2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.34.0(jiti@2.4.0)): + eslint-processor-vue-blocks@2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.35.0(jiti@2.4.0)): dependencies: '@vue/compiler-sfc': 3.5.12 - eslint: 9.34.0(jiti@2.4.0) + eslint: 9.35.0(jiti@2.4.0) eslint-scope@8.4.0: dependencies: @@ -6116,15 +6105,15 @@ snapshots: eslint-visitor-keys@4.2.1: {} - eslint@9.34.0(jiti@2.4.0): + eslint@9.35.0(jiti@2.4.0): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.34.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.8.0(eslint@9.35.0(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.1 '@eslint/config-array': 0.21.0 '@eslint/config-helpers': 0.3.1 '@eslint/core': 0.15.2 '@eslint/eslintrc': 3.3.1 - '@eslint/js': 9.34.0 + '@eslint/js': 9.35.0 '@eslint/plugin-kit': 0.3.5 '@humanfs/node': 0.16.6 '@humanwhocodes/module-importer': 1.0.1 @@ -8205,10 +8194,10 @@ snapshots: - tsx - yaml - vue-eslint-parser@10.2.0(eslint@9.34.0(jiti@2.4.0)): + vue-eslint-parser@10.2.0(eslint@9.35.0(jiti@2.4.0)): dependencies: debug: 4.4.1 - eslint: 9.34.0(jiti@2.4.0) + eslint: 9.35.0(jiti@2.4.0) eslint-scope: 8.4.0 eslint-visitor-keys: 4.2.1 espree: 10.4.0 From 0f30683666b865271690a113ff4451c9b33992e2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 10:49:14 +0000 Subject: [PATCH 044/133] fix(deps): update graphqlcodegenerator monorepo (#1229) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 10 +- pnpm-lock.yaml | 1094 ++++++++++++++++++++++++------------------------ 2 files changed, 541 insertions(+), 563 deletions(-) diff --git a/package.json b/package.json index 0b49b921..f61ae64d 100644 --- a/package.json +++ b/package.json @@ -77,17 +77,17 @@ "graphql": "^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" }, "dependencies": { - "@graphql-codegen/plugin-helpers": "^5.0.0", - "@graphql-codegen/schema-ast": "4.1.0", - "@graphql-codegen/visitor-plugin-common": "^5.0.0", + "@graphql-codegen/plugin-helpers": "^6.0.0", + "@graphql-codegen/schema-ast": "5.0.0", + "@graphql-codegen/visitor-plugin-common": "^6.0.0", "@graphql-tools/utils": "^10.0.0", "graphlib": "^2.1.8", "graphql": "^16.6.0" }, "devDependencies": { "@antfu/eslint-config": "^5.0.0", - "@graphql-codegen/cli": "5.0.7", - "@graphql-codegen/typescript": "^4.0.0", + "@graphql-codegen/cli": "6.0.0", + "@graphql-codegen/typescript": "^5.0.0", "@tsconfig/recommended": "1.0.10", "@types/graphlib": "^2.1.8", "@types/node": "^22.0.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 94fffae0..71f771dd 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -9,14 +9,14 @@ importers: .: dependencies: '@graphql-codegen/plugin-helpers': - specifier: ^5.0.0 - version: 5.1.1(graphql@16.11.0) + specifier: ^6.0.0 + version: 6.0.0(graphql@16.11.0) '@graphql-codegen/schema-ast': - specifier: 4.1.0 - version: 4.1.0(graphql@16.11.0) + specifier: 5.0.0 + version: 5.0.0(graphql@16.11.0) '@graphql-codegen/visitor-plugin-common': - specifier: ^5.0.0 - version: 5.8.0(graphql@16.11.0) + specifier: ^6.0.0 + version: 6.0.0(graphql@16.11.0) '@graphql-tools/utils': specifier: ^10.0.0 version: 10.9.1(graphql@16.11.0) @@ -31,11 +31,11 @@ importers: specifier: ^5.0.0 version: 5.2.2(@vue/compiler-sfc@3.5.12)(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': - specifier: 5.0.7 - version: 5.0.7(@types/node@22.18.1)(graphql@16.11.0)(typescript@5.9.2) + specifier: 6.0.0 + version: 6.0.0(@types/node@22.18.1)(graphql@16.11.0)(typescript@5.9.2) '@graphql-codegen/typescript': - specifier: ^4.0.0 - version: 4.1.6(graphql@16.11.0) + specifier: ^5.0.0 + version: 5.0.0(graphql@16.11.0) '@tsconfig/recommended': specifier: 1.0.10 version: 1.0.10 @@ -165,10 +165,6 @@ packages: resolution: {integrity: sha512-bXYxrXFubeYdvB0NhD/NBB3Qi6aZeV20GOWVI47t2dkecCEoneR4NPVcb7abpXDEvejgrUfFtG6vG/zxAKmg+g==} engines: {node: '>=6.9.0'} - '@babel/generator@7.27.0': - resolution: {integrity: sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw==} - engines: {node: '>=6.9.0'} - '@babel/generator@7.27.5': resolution: {integrity: sha512-ZGhA37l0e/g2s1Cnzdix0O3aLYm66eF8aufiVteOgnwxgnRP8GoyMj7VWsgWnQbVKXyge7hqrFh2K2TQM6t1Hw==} engines: {node: '>=6.9.0'} @@ -207,16 +203,6 @@ packages: resolution: {integrity: sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug==} engines: {node: '>=6.9.0'} - '@babel/parser@7.27.0': - resolution: {integrity: sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==} - engines: {node: '>=6.0.0'} - hasBin: true - - '@babel/parser@7.28.0': - resolution: {integrity: sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==} - engines: {node: '>=6.0.0'} - hasBin: true - '@babel/parser@7.28.3': resolution: {integrity: sha512-7+Ey1mAgYqFAx2h0RuoxcQT5+MlG3GTV0TQrgr7/ZliKsm/MNDxVVutlWaziMq7wJNAz8MTqz55XLpWvva6StA==} engines: {node: '>=6.0.0'} @@ -328,10 +314,6 @@ packages: resolution: {integrity: sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==} engines: {node: '>=6.9.0'} - '@babel/template@7.25.9': - resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==} - engines: {node: '>=6.9.0'} - '@babel/template@7.27.2': resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==} engines: {node: '>=6.9.0'} @@ -340,14 +322,6 @@ packages: resolution: {integrity: sha512-oNcu2QbHqts9BtOWJosOVJapWjBDSxGCpFvikNR5TGDYDQf3JwpIoMzIKrvfoti93cLfPJEG4tH9SPVeyCGgdA==} engines: {node: '>=6.9.0'} - '@babel/types@7.27.6': - resolution: {integrity: sha512-ETyHEk2VHHvl9b9jZP5IHPavHYk57EhanlRRuae9XCpb/j5bDCbPPMOBfCWhnl/7EDJz0jEMCi/RhccCE8r1+Q==} - engines: {node: '>=6.9.0'} - - '@babel/types@7.28.1': - resolution: {integrity: sha512-x0LvFTekgSX+83TI28Y9wYPUfzrnl2aT5+5QLnO6v7mSJYtEEevuDRN0F0uSHRk1G1IWZC43o00Y0xDDrpBGPQ==} - engines: {node: '>=6.9.0'} - '@babel/types@7.28.2': resolution: {integrity: sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==} engines: {node: '>=6.9.0'} @@ -589,13 +563,14 @@ packages: resolution: {integrity: sha512-Z5kJ+wU3oA7MMIqVR9tyZRtjYPr4OC004Q4Rw7pgOKUOKkJfZ3O24nz3WYfGRpMDNmcOi3TwQOmgm7B7Tpii0w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@graphql-codegen/add@5.0.3': - resolution: {integrity: sha512-SxXPmramkth8XtBlAHu4H4jYcYXM/o3p01+psU+0NADQowA8jtYkK6MW5rV6T+CxkEaNZItfSmZRPgIuypcqnA==} + '@graphql-codegen/add@6.0.0': + resolution: {integrity: sha512-biFdaURX0KTwEJPQ1wkT6BRgNasqgQ5KbCI1a3zwtLtO7XTo7/vKITPylmiU27K5DSOWYnY/1jfSqUAEBuhZrQ==} + engines: {node: '>=16'} peerDependencies: graphql: ^0.8.0 || ^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-codegen/cli@5.0.7': - resolution: {integrity: sha512-h/sxYvSaWtxZxo8GtaA8SvcHTyViaaPd7dweF/hmRDpaQU1o3iU3EZxlcJ+oLTunU0tSMFsnrIXm/mhXxI11Cw==} + '@graphql-codegen/cli@6.0.0': + resolution: {integrity: sha512-tvchLVCMtorDE+UwgQbrjyaQK16GCZA+QomTxZazRx64ixtgmbEiQV7GhCBy0y0Bo7/tcTJb6sy9G/TL/BgiOg==} engines: {node: '>=16'} hasBin: true peerDependencies: @@ -605,8 +580,8 @@ packages: '@parcel/watcher': optional: true - '@graphql-codegen/client-preset@4.8.2': - resolution: {integrity: sha512-YoH2obkNLorgT7bs5cbveg6A1fM4ZW5AE/CWLaSzViMTAXk51q0z/5+sTrDW2Ft6Or3mTxFLEByCgXhPgAj2Lw==} + '@graphql-codegen/client-preset@5.0.0': + resolution: {integrity: sha512-nVBgJDVahYm/uAVzm2v3tucdqk5iABke+boHPIofj3AzrYZnjTeTvEybqHo9RsEvKyTVKBi6NktkU9fKrOQMQw==} engines: {node: '>=16'} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -615,36 +590,38 @@ packages: graphql-sock: optional: true - '@graphql-codegen/core@4.0.2': - resolution: {integrity: sha512-IZbpkhwVqgizcjNiaVzNAzm/xbWT6YnGgeOLwVjm4KbJn3V2jchVtuzHH09G5/WkkLSk2wgbXNdwjM41JxO6Eg==} + '@graphql-codegen/core@5.0.0': + resolution: {integrity: sha512-vLTEW0m8LbE4xgRwbFwCdYxVkJ1dBlVJbQyLb9Q7bHnVFgHAP982Xo8Uv7FuPBmON+2IbTjkCqhFLHVZbqpvjQ==} + engines: {node: '>=16'} peerDependencies: graphql: ^0.8.0 || ^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-codegen/gql-tag-operations@4.0.17': - resolution: {integrity: sha512-2pnvPdIG6W9OuxkrEZ6hvZd142+O3B13lvhrZ48yyEBh2ujtmKokw0eTwDHtlXUqjVS0I3q7+HB2y12G/m69CA==} + '@graphql-codegen/gql-tag-operations@5.0.0': + resolution: {integrity: sha512-kC2pc/tyzVc1laZtlfuQHqYxF4UqB4YXzAboFfeY1cxrxCh/+H70jHnfA1O4vhPndiRd+XZA8wxPv0hIqDXYaA==} engines: {node: '>=16'} peerDependencies: graphql: ^0.8.0 || ^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-codegen/plugin-helpers@5.1.1': - resolution: {integrity: sha512-28GHODK2HY1NhdyRcPP3sCz0Kqxyfiz7boIZ8qIxFYmpLYnlDgiYok5fhFLVSZihyOpCs4Fa37gVHf/Q4I2FEg==} + '@graphql-codegen/plugin-helpers@6.0.0': + resolution: {integrity: sha512-Z7P89vViJvQakRyMbq/JF2iPLruRFOwOB6IXsuSvV/BptuuEd7fsGPuEf8bdjjDxUY0pJZnFN8oC7jIQ8p9GKA==} engines: {node: '>=16'} peerDependencies: graphql: ^0.8.0 || ^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-codegen/schema-ast@4.1.0': - resolution: {integrity: sha512-kZVn0z+th9SvqxfKYgztA6PM7mhnSZaj4fiuBWvMTqA+QqQ9BBed6Pz41KuD/jr0gJtnlr2A4++/0VlpVbCTmQ==} + '@graphql-codegen/schema-ast@5.0.0': + resolution: {integrity: sha512-jn7Q3PKQc0FxXjbpo9trxzlz/GSFQWxL042l0iC8iSbM/Ar+M7uyBwMtXPsev/3Razk+osQyreghIz0d2+6F7Q==} + engines: {node: '>=16'} peerDependencies: graphql: ^0.8.0 || ^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-codegen/typed-document-node@5.1.1': - resolution: {integrity: sha512-Bp/BrMZDKRwzuVeLv+pSljneqONM7gqu57ZaV34Jbncu2hZWMRDMfizTKghoEwwZbRCYYfJO9tA0sYVVIfI1kg==} + '@graphql-codegen/typed-document-node@6.0.0': + resolution: {integrity: sha512-OYmbadwvjq19yCZjioy901pLI9YV6i7A0fP3MpcJlo2uQVY27RJPcN2NeLfFzXdHr6f5bm9exqB6X1iKimfA2Q==} engines: {node: '>=16'} peerDependencies: graphql: ^0.8.0 || ^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-codegen/typescript-operations@4.6.1': - resolution: {integrity: sha512-k92laxhih7s0WZ8j5WMIbgKwhe64C0As6x+PdcvgZFMudDJ7rPJ/hFqJ9DCRxNjXoHmSjnr6VUuQZq4lT1RzCA==} + '@graphql-codegen/typescript-operations@5.0.0': + resolution: {integrity: sha512-mqgp/lp5v7w+RYj5AJ/BVquP+sgje3EAgg++62ciolOB5zzWT8en09cRdNq4UZfszCYTOtlhCG7NQAAcSae37A==} engines: {node: '>=16'} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -653,14 +630,14 @@ packages: graphql-sock: optional: true - '@graphql-codegen/typescript@4.1.6': - resolution: {integrity: sha512-vpw3sfwf9A7S+kIUjyFxuvrywGxd4lmwmyYnnDVjVE4kSQ6Td3DpqaPTy8aNQ6O96vFoi/bxbZS2BW49PwSUUA==} + '@graphql-codegen/typescript@5.0.0': + resolution: {integrity: sha512-u90SGM6+Rdc3Je1EmVQOrGk5fl7hK1cLR4y5Q1MeUenj0aZFxKno65DCW7RcQpcfebvkPsVGA6y3oS02wPFj6Q==} engines: {node: '>=16'} peerDependencies: graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@graphql-codegen/visitor-plugin-common@5.8.0': - resolution: {integrity: sha512-lC1E1Kmuzi3WZUlYlqB4fP6+CvbKH9J+haU1iWmgsBx5/sO2ROeXJG4Dmt8gP03bI2BwjiwV5WxCEMlyeuzLnA==} + '@graphql-codegen/visitor-plugin-common@6.0.0': + resolution: {integrity: sha512-K05Jv2elOeFstH3i+Ah0Pi9do6NYUvrbdhEkP+UvP9fmIro1hCKwcIEP7j4VFz8mt3gAC3dB5KVJDoyaPUgi4Q==} engines: {node: '>=16'} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -773,12 +750,6 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/prisma-loader@8.0.17': - resolution: {integrity: sha512-fnuTLeQhqRbA156pAyzJYN0KxCjKYRU5bz1q/SKOwElSnAU4k7/G1kyVsWLh7fneY78LoMNH5n+KlFV8iQlnyg==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/relay-operation-optimizer@7.0.19': resolution: {integrity: sha512-xnjLpfzw63yIX1bo+BVh4j1attSwqEkUbpJ+HAhdiSUa3FOQFfpWgijRju+3i87CwhjBANqdTZbcsqLT1hEXig==} engines: {node: '>=16.0.0'} @@ -834,6 +805,136 @@ packages: resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==} engines: {node: '>=18.18'} + '@inquirer/checkbox@4.2.2': + resolution: {integrity: sha512-E+KExNurKcUJJdxmjglTl141EwxWyAHplvsYJQgSwXf8qiNWkTxTuCCqmhFEmbIXd4zLaGMfQFJ6WrZ7fSeV3g==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + + '@inquirer/confirm@5.1.16': + resolution: {integrity: sha512-j1a5VstaK5KQy8Mu8cHmuQvN1Zc62TbLhjJxwHvKPPKEoowSF6h/0UdOpA9DNdWZ+9Inq73+puRq1df6OJ8Sag==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + + '@inquirer/core@10.2.0': + resolution: {integrity: sha512-NyDSjPqhSvpZEMZrLCYUquWNl+XC/moEcVFqS55IEYIYsY0a1cUCevSqk7ctOlnm/RaSBU5psFryNlxcmGrjaA==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + + '@inquirer/editor@4.2.18': + resolution: {integrity: sha512-yeQN3AXjCm7+Hmq5L6Dm2wEDeBRdAZuyZ4I7tWSSanbxDzqM0KqzoDbKM7p4ebllAYdoQuPJS6N71/3L281i6w==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + + '@inquirer/expand@4.0.18': + resolution: {integrity: sha512-xUjteYtavH7HwDMzq4Cn2X4Qsh5NozoDHCJTdoXg9HfZ4w3R6mxV1B9tL7DGJX2eq/zqtsFjhm0/RJIMGlh3ag==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + + '@inquirer/external-editor@1.0.1': + resolution: {integrity: sha512-Oau4yL24d2B5IL4ma4UpbQigkVhzPDXLoqy1ggK4gnHg/stmkffJE4oOXHXF3uz0UEpywG68KcyXsyYpA1Re/Q==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + + '@inquirer/figures@1.0.13': + resolution: {integrity: sha512-lGPVU3yO9ZNqA7vTYz26jny41lE7yoQansmqdMLBEfqaGsmdg7V3W9mK9Pvb5IL4EVZ9GnSDGMO/cJXud5dMaw==} + engines: {node: '>=18'} + + '@inquirer/input@4.2.2': + resolution: {integrity: sha512-hqOvBZj/MhQCpHUuD3MVq18SSoDNHy7wEnQ8mtvs71K8OPZVXJinOzcvQna33dNYLYE4LkA9BlhAhK6MJcsVbw==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + + '@inquirer/number@3.0.18': + resolution: {integrity: sha512-7exgBm52WXZRczsydCVftozFTrrwbG5ySE0GqUd2zLNSBXyIucs2Wnm7ZKLe/aUu6NUg9dg7Q80QIHCdZJiY4A==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + + '@inquirer/password@4.0.18': + resolution: {integrity: sha512-zXvzAGxPQTNk/SbT3carAD4Iqi6A2JS2qtcqQjsL22uvD+JfQzUrDEtPjLL7PLn8zlSNyPdY02IiQjzoL9TStA==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + + '@inquirer/prompts@7.8.4': + resolution: {integrity: sha512-MuxVZ1en1g5oGamXV3DWP89GEkdD54alcfhHd7InUW5BifAdKQEK9SLFa/5hlWbvuhMPlobF0WAx7Okq988Jxg==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + + '@inquirer/rawlist@4.1.6': + resolution: {integrity: sha512-KOZqa3QNr3f0pMnufzL7K+nweFFCCBs6LCXZzXDrVGTyssjLeudn5ySktZYv1XiSqobyHRYYK0c6QsOxJEhXKA==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + + '@inquirer/search@3.1.1': + resolution: {integrity: sha512-TkMUY+A2p2EYVY3GCTItYGvqT6LiLzHBnqsU1rJbrpXUijFfM6zvUx0R4civofVwFCmJZcKqOVwwWAjplKkhxA==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + + '@inquirer/select@4.3.2': + resolution: {integrity: sha512-nwous24r31M+WyDEHV+qckXkepvihxhnyIaod2MG7eCE6G0Zm/HUF6jgN8GXgf4U7AU6SLseKdanY195cwvU6w==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + + '@inquirer/type@3.0.8': + resolution: {integrity: sha512-lg9Whz8onIHRthWaN1Q9EGLa/0LFJjyM8mEUbL1eTi6yMGvBf8gvyDLtxSXztQsxMvhxxNpJYrwa1YHdq+w4Jw==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + '@isaacs/cliui@8.0.2': resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} engines: {node: '>=12'} @@ -1138,9 +1239,6 @@ packages: '@types/istanbul-reports@3.0.4': resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} - '@types/js-yaml@4.0.9': - resolution: {integrity: sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==} - '@types/json-schema@7.0.15': resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} @@ -1393,14 +1491,6 @@ packages: engines: {node: '>=0.4.0'} hasBin: true - agent-base@7.1.1: - resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==} - engines: {node: '>= 14'} - - aggregate-error@3.1.0: - resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} - engines: {node: '>=8'} - ajv@6.12.6: resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} @@ -1408,6 +1498,10 @@ packages: resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} engines: {node: '>=8'} + ansi-escapes@7.0.0: + resolution: {integrity: sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==} + engines: {node: '>=18'} + ansi-regex@5.0.1: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} @@ -1457,10 +1551,6 @@ packages: resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} engines: {node: '>=12'} - astral-regex@2.0.0: - resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} - engines: {node: '>=8'} - auto-bind@4.0.0: resolution: {integrity: sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==} engines: {node: '>=8'} @@ -1493,12 +1583,6 @@ packages: balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - base64-js@1.5.1: - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - - bl@4.1.0: - resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} - boolbase@1.0.0: resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} @@ -1527,9 +1611,6 @@ packages: buffer-from@1.1.2: resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} - buffer@5.7.1: - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} - builtin-modules@5.0.0: resolution: {integrity: sha512-bkXY9WsVpY7CvMhKSR6pZilZu9Ln5WDrKVBUXf2S443etkmEO4V58heTecXcUIsNsi4Rx8JUO4NfX1IcQl4deg==} engines: {node: '>=18.20'} @@ -1590,8 +1671,8 @@ packages: character-entities@2.0.2: resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} - chardet@0.7.0: - resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} + chardet@2.1.0: + resolution: {integrity: sha512-bNFETTG/pM5ryzQ9Ad0lJOTa6HWD/YsScAR3EnCPZRPlQh77JocYktSHOUHelyhm8IARL+o4c4F1bP5KVOjiRA==} check-error@2.1.1: resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} @@ -1608,34 +1689,22 @@ packages: resolution: {integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==} engines: {node: '>=4'} - clean-stack@2.2.0: - resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} - engines: {node: '>=6'} - - cli-cursor@3.1.0: - resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} - engines: {node: '>=8'} - - cli-spinners@2.9.2: - resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} - engines: {node: '>=6'} + cli-cursor@5.0.0: + resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==} + engines: {node: '>=18'} - cli-truncate@2.1.0: - resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} - engines: {node: '>=8'} + cli-truncate@4.0.0: + resolution: {integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==} + engines: {node: '>=18'} - cli-width@3.0.0: - resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} - engines: {node: '>= 10'} + cli-width@4.1.0: + resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==} + engines: {node: '>= 12'} cliui@8.0.1: resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} engines: {node: '>=12'} - clone@1.0.4: - resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} - engines: {node: '>=0.8'} - co@4.6.0: resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} @@ -1688,6 +1757,15 @@ packages: typescript: optional: true + cosmiconfig@9.0.0: + resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} + engines: {node: '>=14'} + peerDependencies: + typescript: '>=4.9.5' + peerDependenciesMeta: + typescript: + optional: true + cross-fetch@3.2.0: resolution: {integrity: sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==} @@ -1707,8 +1785,9 @@ packages: dataloader@2.2.2: resolution: {integrity: sha512-8YnDaaf7N3k/q5HnTJVuzSyLETjoZjVmHc4AeKAzOvKHEFQKcn64OKBfzHYtE9zGjctNM7V9I0MfnUVLpi7M5g==} - debounce@1.2.1: - resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==} + debounce@2.2.0: + resolution: {integrity: sha512-Xks6RUDLZFdz8LIdR6q0MTH44k7FikOmnh5xkSjMig6ch45afc8sjTjRQf3P6ax8dMgcQrYO/AR2RGWURrruqw==} + engines: {node: '>=18'} debug@4.4.1: resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==} @@ -1741,12 +1820,9 @@ packages: resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} engines: {node: '>=0.10.0'} - defaults@1.0.4: - resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} - - dependency-graph@0.11.0: - resolution: {integrity: sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==} - engines: {node: '>= 0.6.0'} + dependency-graph@1.0.0: + resolution: {integrity: sha512-cW3gggJ28HZ/LExwxP2B++aiKxhJXMSIt9K48FOXQkm+vuG5gyatXnLsONRJdzO/7VfjDIiaOOa/bs4l464Lwg==} + engines: {node: '>=4'} dequal@2.0.3: resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} @@ -1770,10 +1846,6 @@ packages: dot-case@3.0.4: resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} - dotenv@16.4.5: - resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==} - engines: {node: '>=12'} - dset@3.1.4: resolution: {integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==} engines: {node: '>=4'} @@ -1788,6 +1860,9 @@ packages: resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} engines: {node: '>=12'} + emoji-regex@10.5.0: + resolution: {integrity: sha512-lb49vf1Xzfx080OKA0o6l8DQQpV+6Vg95zyCJX9VB/BqKYlhG7N4wgROUUHRA+ZPUefLnteQOad7z1kT2bV7bg==} + emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} @@ -1806,6 +1881,14 @@ packages: resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} engines: {node: '>=0.12'} + env-paths@2.2.1: + resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} + engines: {node: '>=6'} + + environment@1.1.0: + resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==} + engines: {node: '>=18'} + error-ex@1.3.2: resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} @@ -2039,6 +2122,9 @@ packages: resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} engines: {node: '>=0.10.0'} + eventemitter3@5.0.1: + resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} + execa@5.1.1: resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} engines: {node: '>=10'} @@ -2058,10 +2144,6 @@ packages: exsolve@1.0.7: resolution: {integrity: sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==} - external-editor@3.1.0: - resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} - engines: {node: '>=4'} - extract-files@11.0.0: resolution: {integrity: sha512-FuoE1qtbJ4bBVvv94CC7s0oTnKUGvQs+Rjf1L2SJFfS+HTVVjhPFtehPdQ0JiGPqVNfSSZvL5yzHHQq2Z4WNhQ==} engines: {node: ^12.20 || >= 14.13} @@ -2117,10 +2199,6 @@ packages: picomatch: optional: true - figures@3.2.0: - resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} - engines: {node: '>=8'} - file-entry-cache@8.0.0: resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} engines: {node: '>=16.0.0'} @@ -2172,6 +2250,10 @@ packages: resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} engines: {node: 6.* || 8.* || >= 10.*} + get-east-asian-width@1.3.1: + resolution: {integrity: sha512-R1QfovbPsKmosqTnPoRFiJ7CF9MLRgb53ChvMZm+r4p76/+8yKDy17qLL2PKInORy2RkZZekuK0efYgmzTkXyQ==} + engines: {node: '>=18'} + get-package-type@0.1.0: resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} engines: {node: '>=8.0.0'} @@ -2244,11 +2326,6 @@ packages: cosmiconfig-toml-loader: optional: true - graphql-request@6.1.0: - resolution: {integrity: sha512-p+XPfS4q7aIpKVcgmnZKhMNqhltk20hfXtkaIkTfjjmiKMJ5xrt5c743cL03y/K7y1rg3WrIC49xGiEQ4mxdNw==} - peerDependencies: - graphql: 14 - 16 - graphql-tag@2.12.6: resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==} engines: {node: '>=10'} @@ -2280,25 +2357,14 @@ packages: html-escaper@2.0.2: resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} - http-proxy-agent@7.0.2: - resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} - engines: {node: '>= 14'} - - https-proxy-agent@7.0.5: - resolution: {integrity: sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==} - engines: {node: '>= 14'} - human-signals@2.1.0: resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} engines: {node: '>=10.17.0'} - iconv-lite@0.4.24: - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + iconv-lite@0.6.3: + resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} engines: {node: '>=0.10.0'} - ieee754@1.2.1: - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} - ignore@5.3.2: resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} engines: {node: '>= 4'} @@ -2328,10 +2394,6 @@ packages: resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} engines: {node: '>=0.8.19'} - indent-string@4.0.0: - resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} - engines: {node: '>=8'} - indent-string@5.0.0: resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==} engines: {node: '>=12'} @@ -2343,10 +2405,6 @@ packages: inherits@2.0.4: resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} - inquirer@8.2.6: - resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==} - engines: {node: '>=12.0.0'} - invariant@2.2.4: resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} @@ -2369,6 +2427,14 @@ packages: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} engines: {node: '>=8'} + is-fullwidth-code-point@4.0.0: + resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==} + engines: {node: '>=12'} + + is-fullwidth-code-point@5.1.0: + resolution: {integrity: sha512-5XHYaSyiqADb4RnZ1Bdad6cPp8Toise4TzEjcOYDHZkTCbKgiUl7WTUCpNWHuxmDt91wnsZBc9xinNzopv3JMQ==} + engines: {node: '>=18'} + is-generator-fn@2.1.0: resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} engines: {node: '>=6'} @@ -2377,10 +2443,6 @@ packages: resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} engines: {node: '>=0.10.0'} - is-interactive@1.0.0: - resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} - engines: {node: '>=8'} - is-lower-case@2.0.2: resolution: {integrity: sha512-bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ==} @@ -2574,17 +2636,10 @@ packages: node-notifier: optional: true - jiti@1.21.6: - resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==} - hasBin: true - jiti@2.4.0: resolution: {integrity: sha512-H5UpaUI+aHOqZXlYOaFP/8AzKsg+guWu+Pr3Y8i7+Y3zr1aXAvCvTAQ1RxSc6oVD8R8c7brgNtTVP91E7upH/g==} hasBin: true - jose@5.9.6: - resolution: {integrity: sha512-AMlnetc9+CV9asI19zHmrgS/WYsWUwCn2R7RzlbJWD7F9eWYUTGyBmU9o6PxngtLGOiDGPRu+Uc4fhKzbpteZQ==} - js-tokens@4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} @@ -2660,14 +2715,9 @@ packages: lines-and-columns@1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - listr2@4.0.5: - resolution: {integrity: sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA==} - engines: {node: '>=12'} - peerDependencies: - enquirer: '>= 2.3.0 < 3' - peerDependenciesMeta: - enquirer: - optional: true + listr2@9.0.3: + resolution: {integrity: sha512-0aeh5HHHgmq1KRdMMDHfhMWQmIT/m7nRDTlxlFqni2Sp0had9baqsjJRvDGdlvgd6NmPE0nPloOipiQJGFtTHQ==} + engines: {node: '>=20.0.0'} local-pkg@1.1.2: resolution: {integrity: sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A==} @@ -2697,9 +2747,9 @@ packages: resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} engines: {node: '>=10'} - log-update@4.0.0: - resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} - engines: {node: '>=10'} + log-update@6.1.0: + resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==} + engines: {node: '>=18'} longest-streak@3.1.0: resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} @@ -2897,6 +2947,10 @@ packages: resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} engines: {node: '>=6'} + mimic-function@5.0.1: + resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==} + engines: {node: '>=18'} + min-indent@1.0.1: resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} engines: {node: '>=4'} @@ -2921,8 +2975,9 @@ packages: ms@2.1.3: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - mute-stream@0.0.8: - resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} + mute-stream@2.0.0: + resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==} + engines: {node: ^18.17.0 || >=20.5.0} myzod@1.12.1: resolution: {integrity: sha512-gcn8HEJ8g247z9EiC3IIuadaUBl3dbn+G7sD5Y3fc00rTy32sNc+HOCRRrt9fu+yCGzeQe5leSmG2k0+TmsnSQ==} @@ -3003,18 +3058,14 @@ packages: resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} engines: {node: '>=6'} + onetime@7.0.0: + resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==} + engines: {node: '>=18'} + optionator@0.9.4: resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} engines: {node: '>= 0.8.0'} - ora@5.4.1: - resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} - engines: {node: '>=10'} - - os-tmpdir@1.0.2: - resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} - engines: {node: '>=0.10.0'} - p-limit@2.3.0: resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} engines: {node: '>=6'} @@ -3031,10 +3082,6 @@ packages: resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} engines: {node: '>=10'} - p-map@4.0.0: - resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} - engines: {node: '>=10'} - p-try@2.2.0: resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} engines: {node: '>=6'} @@ -3194,10 +3241,6 @@ packages: resolution: {integrity: sha512-qpt8EwugBWDw2cgE2W+/3oxC+KTez2uSVR8JU9Q36TXPAGCaozfQUs59v4j4GFpWTaw0i6hAZSvOmu1J0uOEUg==} engines: {node: ^18.17.0 || >=20.5.0} - readable-stream@3.6.2: - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} - engines: {node: '>= 6'} - refa@0.12.1: resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} @@ -3248,9 +3291,9 @@ packages: resolve-pkg-maps@1.0.0: resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} - restore-cursor@3.1.0: - resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} - engines: {node: '>=8'} + restore-cursor@5.1.0: + resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==} + engines: {node: '>=18'} reusify@1.0.4: resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} @@ -3264,19 +3307,9 @@ packages: engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true - run-async@2.4.1: - resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} - engines: {node: '>=0.12.0'} - run-parallel@1.2.0: resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} - rxjs@7.8.1: - resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} - - safe-buffer@5.2.1: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} - safer-buffer@2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} @@ -3284,9 +3317,6 @@ packages: resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==} engines: {node: ^14.0.0 || >=16.0.0} - scuid@1.1.0: - resolution: {integrity: sha512-MuCAyrGZcTLfQoH2XoBlQ8C6bzwN88XT/0slOGz0pn8+gIP85BOAfYa44ZXQUTOwRwPU0QvgU+V+OSajl/59Xg==} - semver@6.3.1: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true @@ -3333,13 +3363,13 @@ packages: resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} engines: {node: '>=8'} - slice-ansi@3.0.0: - resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} - engines: {node: '>=8'} + slice-ansi@5.0.0: + resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==} + engines: {node: '>=12'} - slice-ansi@4.0.0: - resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} - engines: {node: '>=10'} + slice-ansi@7.1.0: + resolution: {integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==} + engines: {node: '>=18'} snake-case@3.0.4: resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} @@ -3399,8 +3429,9 @@ packages: resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} engines: {node: '>=12'} - string_decoder@1.3.0: - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + string-width@7.2.0: + resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} + engines: {node: '>=18'} strip-ansi@6.0.1: resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} @@ -3452,9 +3483,6 @@ packages: resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} engines: {node: '>=8'} - through@2.3.8: - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} - tiny-case@1.0.3: resolution: {integrity: sha512-Eet/eeMhkO6TX8mnUteS9zgPbUMQa4I6Kkp5ORiBD5476/m+PIRiumP5tmh5ioJpH7k51Kehawy2UDfsnxxY8Q==} @@ -3490,10 +3518,6 @@ packages: title-case@3.0.3: resolution: {integrity: sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==} - tmp@0.0.33: - resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} - engines: {node: '>=0.6.0'} - tmpl@1.0.5: resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} @@ -3744,9 +3768,6 @@ packages: walker@1.0.8: resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} - wcwidth@1.0.1: - resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} - webidl-conversions@3.0.1: resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} @@ -3787,6 +3808,10 @@ packages: resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} engines: {node: '>=12'} + wrap-ansi@9.0.0: + resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==} + engines: {node: '>=18'} + wrappy@1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} @@ -3817,18 +3842,10 @@ packages: yallist@3.1.1: resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} - yaml-ast-parser@0.0.43: - resolution: {integrity: sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==} - yaml-eslint-parser@1.3.0: resolution: {integrity: sha512-E/+VitOorXSLiAqtTd7Yqax0/pAS3xaYMP+AUUJGOK1OZG3rhcj9fcJOM5HJ2VrP1FrStVCWr1muTfQCdj4tAA==} engines: {node: ^14.17.0 || >=16.0.0} - yaml@2.8.0: - resolution: {integrity: sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ==} - engines: {node: '>= 14.6'} - hasBin: true - yaml@2.8.1: resolution: {integrity: sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==} engines: {node: '>= 14.6'} @@ -3846,6 +3863,10 @@ packages: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} + yoctocolors-cjs@2.1.3: + resolution: {integrity: sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw==} + engines: {node: '>=18'} + yup@1.7.0: resolution: {integrity: sha512-VJce62dBd+JQvoc+fCVq+KZfPHr+hXaxCcVgotfwWvlR0Ja3ffYKaJBT8rptPOSKOGJDCUnW2C2JWpud7aRP6Q==} @@ -3915,8 +3936,8 @@ snapshots: '@ardatan/relay-compiler@12.0.3(graphql@16.11.0)': dependencies: - '@babel/generator': 7.27.0 - '@babel/parser': 7.27.0 + '@babel/generator': 7.27.5 + '@babel/parser': 7.28.4 '@babel/runtime': 7.27.0 chalk: 4.1.2 fb-watchman: 2.0.2 @@ -3963,14 +3984,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/generator@7.27.0': - dependencies: - '@babel/parser': 7.28.0 - '@babel/types': 7.28.1 - '@jridgewell/gen-mapping': 0.3.8 - '@jridgewell/trace-mapping': 0.3.25 - jsesc: 3.1.0 - '@babel/generator@7.27.5': dependencies: '@babel/parser': 7.28.4 @@ -4016,14 +4029,6 @@ snapshots: '@babel/template': 7.27.2 '@babel/types': 7.28.4 - '@babel/parser@7.27.0': - dependencies: - '@babel/types': 7.28.4 - - '@babel/parser@7.28.0': - dependencies: - '@babel/types': 7.28.1 - '@babel/parser@7.28.3': dependencies: '@babel/types': 7.28.2 @@ -4126,23 +4131,17 @@ snapshots: dependencies: regenerator-runtime: 0.14.1 - '@babel/template@7.25.9': - dependencies: - '@babel/code-frame': 7.27.1 - '@babel/parser': 7.28.0 - '@babel/types': 7.28.1 - '@babel/template@7.27.2': dependencies: '@babel/code-frame': 7.27.1 - '@babel/parser': 7.28.3 - '@babel/types': 7.28.2 + '@babel/parser': 7.28.4 + '@babel/types': 7.28.4 '@babel/traverse@7.27.4': dependencies: '@babel/code-frame': 7.27.1 '@babel/generator': 7.27.5 - '@babel/parser': 7.28.0 + '@babel/parser': 7.28.4 '@babel/template': 7.27.2 '@babel/types': 7.28.2 debug: 4.4.1 @@ -4150,16 +4149,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/types@7.27.6': - dependencies: - '@babel/helper-string-parser': 7.27.1 - '@babel/helper-validator-identifier': 7.27.1 - - '@babel/types@7.28.1': - dependencies: - '@babel/helper-string-parser': 7.27.1 - '@babel/helper-validator-identifier': 7.27.1 - '@babel/types@7.28.2': dependencies: '@babel/helper-string-parser': 7.27.1 @@ -4358,20 +4347,20 @@ snapshots: '@eslint/core': 0.15.2 levn: 0.4.1 - '@graphql-codegen/add@5.0.3(graphql@16.11.0)': + '@graphql-codegen/add@6.0.0(graphql@16.11.0)': dependencies: - '@graphql-codegen/plugin-helpers': 5.1.1(graphql@16.11.0) + '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) graphql: 16.11.0 tslib: 2.6.3 - '@graphql-codegen/cli@5.0.7(@types/node@22.18.1)(graphql@16.11.0)(typescript@5.9.2)': + '@graphql-codegen/cli@6.0.0(@types/node@22.18.1)(graphql@16.11.0)(typescript@5.9.2)': dependencies: - '@babel/generator': 7.27.0 - '@babel/template': 7.25.9 - '@babel/types': 7.27.6 - '@graphql-codegen/client-preset': 4.8.2(graphql@16.11.0) - '@graphql-codegen/core': 4.0.2(graphql@16.11.0) - '@graphql-codegen/plugin-helpers': 5.1.1(graphql@16.11.0) + '@babel/generator': 7.27.5 + '@babel/template': 7.27.2 + '@babel/types': 7.28.4 + '@graphql-codegen/client-preset': 5.0.0(graphql@16.11.0) + '@graphql-codegen/core': 5.0.0(graphql@16.11.0) + '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) '@graphql-tools/apollo-engine-loader': 8.0.4(graphql@16.11.0) '@graphql-tools/code-file-loader': 8.1.5(graphql@16.11.0) '@graphql-tools/git-loader': 8.0.9(graphql@16.11.0) @@ -4379,51 +4368,49 @@ snapshots: '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) - '@graphql-tools/prisma-loader': 8.0.17(@types/node@22.18.1)(graphql@16.11.0) '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.1)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@inquirer/prompts': 7.8.4(@types/node@22.18.1) '@whatwg-node/fetch': 0.10.1 chalk: 4.1.2 - cosmiconfig: 8.3.6(typescript@5.9.2) - debounce: 1.2.1 + cosmiconfig: 9.0.0(typescript@5.9.2) + debounce: 2.2.0 detect-indent: 6.1.0 graphql: 16.11.0 graphql-config: 5.1.3(@types/node@22.18.1)(graphql@16.11.0)(typescript@5.9.2) - inquirer: 8.2.6 is-glob: 4.0.3 - jiti: 1.21.6 + jiti: 2.4.0 json-to-pretty-yaml: 1.2.2 - listr2: 4.0.5 + listr2: 9.0.3 log-symbols: 4.1.0 micromatch: 4.0.8 shell-quote: 1.8.1 string-env-interpolation: 1.0.1 ts-log: 2.2.7 tslib: 2.8.1 - yaml: 2.8.0 + yaml: 2.8.1 yargs: 17.7.2 transitivePeerDependencies: - '@types/node' - bufferutil - cosmiconfig-toml-loader - encoding - - enquirer - graphql-sock - supports-color - typescript - utf-8-validate - '@graphql-codegen/client-preset@4.8.2(graphql@16.11.0)': + '@graphql-codegen/client-preset@5.0.0(graphql@16.11.0)': dependencies: '@babel/helper-plugin-utils': 7.27.1 '@babel/template': 7.27.2 - '@graphql-codegen/add': 5.0.3(graphql@16.11.0) - '@graphql-codegen/gql-tag-operations': 4.0.17(graphql@16.11.0) - '@graphql-codegen/plugin-helpers': 5.1.1(graphql@16.11.0) - '@graphql-codegen/typed-document-node': 5.1.1(graphql@16.11.0) - '@graphql-codegen/typescript': 4.1.6(graphql@16.11.0) - '@graphql-codegen/typescript-operations': 4.6.1(graphql@16.11.0) - '@graphql-codegen/visitor-plugin-common': 5.8.0(graphql@16.11.0) + '@graphql-codegen/add': 6.0.0(graphql@16.11.0) + '@graphql-codegen/gql-tag-operations': 5.0.0(graphql@16.11.0) + '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) + '@graphql-codegen/typed-document-node': 6.0.0(graphql@16.11.0) + '@graphql-codegen/typescript': 5.0.0(graphql@16.11.0) + '@graphql-codegen/typescript-operations': 5.0.0(graphql@16.11.0) + '@graphql-codegen/visitor-plugin-common': 6.0.0(graphql@16.11.0) '@graphql-tools/documents': 1.0.1(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@graphql-typed-document-node/core': 3.2.0(graphql@16.11.0) @@ -4432,18 +4419,18 @@ snapshots: transitivePeerDependencies: - encoding - '@graphql-codegen/core@4.0.2(graphql@16.11.0)': + '@graphql-codegen/core@5.0.0(graphql@16.11.0)': dependencies: - '@graphql-codegen/plugin-helpers': 5.1.1(graphql@16.11.0) + '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) '@graphql-tools/schema': 10.0.23(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) graphql: 16.11.0 tslib: 2.6.3 - '@graphql-codegen/gql-tag-operations@4.0.17(graphql@16.11.0)': + '@graphql-codegen/gql-tag-operations@5.0.0(graphql@16.11.0)': dependencies: - '@graphql-codegen/plugin-helpers': 5.1.1(graphql@16.11.0) - '@graphql-codegen/visitor-plugin-common': 5.8.0(graphql@16.11.0) + '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) + '@graphql-codegen/visitor-plugin-common': 6.0.0(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) auto-bind: 4.0.0 graphql: 16.11.0 @@ -4451,7 +4438,7 @@ snapshots: transitivePeerDependencies: - encoding - '@graphql-codegen/plugin-helpers@5.1.1(graphql@16.11.0)': + '@graphql-codegen/plugin-helpers@6.0.0(graphql@16.11.0)': dependencies: '@graphql-tools/utils': 10.9.1(graphql@16.11.0) change-case-all: 1.0.15 @@ -4461,17 +4448,17 @@ snapshots: lodash: 4.17.21 tslib: 2.6.3 - '@graphql-codegen/schema-ast@4.1.0(graphql@16.11.0)': + '@graphql-codegen/schema-ast@5.0.0(graphql@16.11.0)': dependencies: - '@graphql-codegen/plugin-helpers': 5.1.1(graphql@16.11.0) + '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) graphql: 16.11.0 tslib: 2.6.3 - '@graphql-codegen/typed-document-node@5.1.1(graphql@16.11.0)': + '@graphql-codegen/typed-document-node@6.0.0(graphql@16.11.0)': dependencies: - '@graphql-codegen/plugin-helpers': 5.1.1(graphql@16.11.0) - '@graphql-codegen/visitor-plugin-common': 5.8.0(graphql@16.11.0) + '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) + '@graphql-codegen/visitor-plugin-common': 6.0.0(graphql@16.11.0) auto-bind: 4.0.0 change-case-all: 1.0.15 graphql: 16.11.0 @@ -4479,37 +4466,37 @@ snapshots: transitivePeerDependencies: - encoding - '@graphql-codegen/typescript-operations@4.6.1(graphql@16.11.0)': + '@graphql-codegen/typescript-operations@5.0.0(graphql@16.11.0)': dependencies: - '@graphql-codegen/plugin-helpers': 5.1.1(graphql@16.11.0) - '@graphql-codegen/typescript': 4.1.6(graphql@16.11.0) - '@graphql-codegen/visitor-plugin-common': 5.8.0(graphql@16.11.0) + '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) + '@graphql-codegen/typescript': 5.0.0(graphql@16.11.0) + '@graphql-codegen/visitor-plugin-common': 6.0.0(graphql@16.11.0) auto-bind: 4.0.0 graphql: 16.11.0 tslib: 2.6.3 transitivePeerDependencies: - encoding - '@graphql-codegen/typescript@4.1.6(graphql@16.11.0)': + '@graphql-codegen/typescript@5.0.0(graphql@16.11.0)': dependencies: - '@graphql-codegen/plugin-helpers': 5.1.1(graphql@16.11.0) - '@graphql-codegen/schema-ast': 4.1.0(graphql@16.11.0) - '@graphql-codegen/visitor-plugin-common': 5.8.0(graphql@16.11.0) + '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) + '@graphql-codegen/schema-ast': 5.0.0(graphql@16.11.0) + '@graphql-codegen/visitor-plugin-common': 6.0.0(graphql@16.11.0) auto-bind: 4.0.0 graphql: 16.11.0 tslib: 2.6.3 transitivePeerDependencies: - encoding - '@graphql-codegen/visitor-plugin-common@5.8.0(graphql@16.11.0)': + '@graphql-codegen/visitor-plugin-common@6.0.0(graphql@16.11.0)': dependencies: - '@graphql-codegen/plugin-helpers': 5.1.1(graphql@16.11.0) + '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) '@graphql-tools/optimize': 2.0.0(graphql@16.11.0) '@graphql-tools/relay-operation-optimizer': 7.0.19(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) auto-bind: 4.0.0 change-case-all: 1.0.15 - dependency-graph: 0.11.0 + dependency-graph: 1.0.0 graphql: 16.11.0 graphql-tag: 2.12.6(graphql@16.11.0) parse-filepath: 1.0.2 @@ -4650,10 +4637,10 @@ snapshots: '@graphql-tools/graphql-tag-pluck@8.3.4(graphql@16.11.0)': dependencies: '@babel/core': 7.27.4 - '@babel/parser': 7.28.0 + '@babel/parser': 7.28.4 '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.27.4) '@babel/traverse': 7.27.4 - '@babel/types': 7.28.1 + '@babel/types': 7.28.4 '@graphql-tools/utils': 10.9.1(graphql@16.11.0) graphql: 16.11.0 tslib: 2.8.1 @@ -4692,40 +4679,14 @@ snapshots: '@graphql-tools/optimize@2.0.0(graphql@16.11.0)': dependencies: graphql: 16.11.0 - tslib: 2.6.3 - - '@graphql-tools/prisma-loader@8.0.17(@types/node@22.18.1)(graphql@16.11.0)': - dependencies: - '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.1)(graphql@16.11.0) - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) - '@types/js-yaml': 4.0.9 - '@whatwg-node/fetch': 0.10.1 - chalk: 4.1.2 - debug: 4.4.1 - dotenv: 16.4.5 - graphql: 16.11.0 - graphql-request: 6.1.0(graphql@16.11.0) - http-proxy-agent: 7.0.2 - https-proxy-agent: 7.0.5 - jose: 5.9.6 - js-yaml: 4.1.0 - lodash: 4.17.21 - scuid: 1.1.0 tslib: 2.8.1 - yaml-ast-parser: 0.0.43 - transitivePeerDependencies: - - '@types/node' - - bufferutil - - encoding - - supports-color - - utf-8-validate '@graphql-tools/relay-operation-optimizer@7.0.19(graphql@16.11.0)': dependencies: '@ardatan/relay-compiler': 12.0.3(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) graphql: 16.11.0 - tslib: 2.6.3 + tslib: 2.8.1 transitivePeerDependencies: - encoding @@ -4792,6 +4753,129 @@ snapshots: '@humanwhocodes/retry@0.4.2': {} + '@inquirer/checkbox@4.2.2(@types/node@22.18.1)': + dependencies: + '@inquirer/core': 10.2.0(@types/node@22.18.1) + '@inquirer/figures': 1.0.13 + '@inquirer/type': 3.0.8(@types/node@22.18.1) + ansi-escapes: 4.3.2 + yoctocolors-cjs: 2.1.3 + optionalDependencies: + '@types/node': 22.18.1 + + '@inquirer/confirm@5.1.16(@types/node@22.18.1)': + dependencies: + '@inquirer/core': 10.2.0(@types/node@22.18.1) + '@inquirer/type': 3.0.8(@types/node@22.18.1) + optionalDependencies: + '@types/node': 22.18.1 + + '@inquirer/core@10.2.0(@types/node@22.18.1)': + dependencies: + '@inquirer/figures': 1.0.13 + '@inquirer/type': 3.0.8(@types/node@22.18.1) + ansi-escapes: 4.3.2 + cli-width: 4.1.0 + mute-stream: 2.0.0 + signal-exit: 4.1.0 + wrap-ansi: 6.2.0 + yoctocolors-cjs: 2.1.3 + optionalDependencies: + '@types/node': 22.18.1 + + '@inquirer/editor@4.2.18(@types/node@22.18.1)': + dependencies: + '@inquirer/core': 10.2.0(@types/node@22.18.1) + '@inquirer/external-editor': 1.0.1(@types/node@22.18.1) + '@inquirer/type': 3.0.8(@types/node@22.18.1) + optionalDependencies: + '@types/node': 22.18.1 + + '@inquirer/expand@4.0.18(@types/node@22.18.1)': + dependencies: + '@inquirer/core': 10.2.0(@types/node@22.18.1) + '@inquirer/type': 3.0.8(@types/node@22.18.1) + yoctocolors-cjs: 2.1.3 + optionalDependencies: + '@types/node': 22.18.1 + + '@inquirer/external-editor@1.0.1(@types/node@22.18.1)': + dependencies: + chardet: 2.1.0 + iconv-lite: 0.6.3 + optionalDependencies: + '@types/node': 22.18.1 + + '@inquirer/figures@1.0.13': {} + + '@inquirer/input@4.2.2(@types/node@22.18.1)': + dependencies: + '@inquirer/core': 10.2.0(@types/node@22.18.1) + '@inquirer/type': 3.0.8(@types/node@22.18.1) + optionalDependencies: + '@types/node': 22.18.1 + + '@inquirer/number@3.0.18(@types/node@22.18.1)': + dependencies: + '@inquirer/core': 10.2.0(@types/node@22.18.1) + '@inquirer/type': 3.0.8(@types/node@22.18.1) + optionalDependencies: + '@types/node': 22.18.1 + + '@inquirer/password@4.0.18(@types/node@22.18.1)': + dependencies: + '@inquirer/core': 10.2.0(@types/node@22.18.1) + '@inquirer/type': 3.0.8(@types/node@22.18.1) + ansi-escapes: 4.3.2 + optionalDependencies: + '@types/node': 22.18.1 + + '@inquirer/prompts@7.8.4(@types/node@22.18.1)': + dependencies: + '@inquirer/checkbox': 4.2.2(@types/node@22.18.1) + '@inquirer/confirm': 5.1.16(@types/node@22.18.1) + '@inquirer/editor': 4.2.18(@types/node@22.18.1) + '@inquirer/expand': 4.0.18(@types/node@22.18.1) + '@inquirer/input': 4.2.2(@types/node@22.18.1) + '@inquirer/number': 3.0.18(@types/node@22.18.1) + '@inquirer/password': 4.0.18(@types/node@22.18.1) + '@inquirer/rawlist': 4.1.6(@types/node@22.18.1) + '@inquirer/search': 3.1.1(@types/node@22.18.1) + '@inquirer/select': 4.3.2(@types/node@22.18.1) + optionalDependencies: + '@types/node': 22.18.1 + + '@inquirer/rawlist@4.1.6(@types/node@22.18.1)': + dependencies: + '@inquirer/core': 10.2.0(@types/node@22.18.1) + '@inquirer/type': 3.0.8(@types/node@22.18.1) + yoctocolors-cjs: 2.1.3 + optionalDependencies: + '@types/node': 22.18.1 + + '@inquirer/search@3.1.1(@types/node@22.18.1)': + dependencies: + '@inquirer/core': 10.2.0(@types/node@22.18.1) + '@inquirer/figures': 1.0.13 + '@inquirer/type': 3.0.8(@types/node@22.18.1) + yoctocolors-cjs: 2.1.3 + optionalDependencies: + '@types/node': 22.18.1 + + '@inquirer/select@4.3.2(@types/node@22.18.1)': + dependencies: + '@inquirer/core': 10.2.0(@types/node@22.18.1) + '@inquirer/figures': 1.0.13 + '@inquirer/type': 3.0.8(@types/node@22.18.1) + ansi-escapes: 4.3.2 + yoctocolors-cjs: 2.1.3 + optionalDependencies: + '@types/node': 22.18.1 + + '@inquirer/type@3.0.8(@types/node@22.18.1)': + optionalDependencies: + '@types/node': 22.18.1 + '@isaacs/cliui@8.0.2': dependencies: string-width: 5.1.2 @@ -5171,8 +5255,6 @@ snapshots: dependencies: '@types/istanbul-lib-report': 3.0.3 - '@types/js-yaml@4.0.9': {} - '@types/json-schema@7.0.15': {} '@types/mdast@4.0.4': @@ -5454,17 +5536,6 @@ snapshots: acorn@8.15.0: {} - agent-base@7.1.1: - dependencies: - debug: 4.4.1 - transitivePeerDependencies: - - supports-color - - aggregate-error@3.1.0: - dependencies: - clean-stack: 2.2.0 - indent-string: 4.0.0 - ajv@6.12.6: dependencies: fast-deep-equal: 3.1.3 @@ -5476,6 +5547,10 @@ snapshots: dependencies: type-fest: 0.21.3 + ansi-escapes@7.0.0: + dependencies: + environment: 1.1.0 + ansi-regex@5.0.1: {} ansi-regex@6.1.0: {} @@ -5509,8 +5584,6 @@ snapshots: assertion-error@2.0.1: {} - astral-regex@2.0.0: {} - auto-bind@4.0.0: {} babel-jest@30.1.2(@babel/core@7.27.4): @@ -5569,14 +5642,6 @@ snapshots: balanced-match@1.0.2: {} - base64-js@1.5.1: {} - - bl@4.1.0: - dependencies: - buffer: 5.7.1 - inherits: 2.0.4 - readable-stream: 3.6.2 - boolbase@1.0.0: {} brace-expansion@1.1.11: @@ -5609,11 +5674,6 @@ snapshots: buffer-from@1.1.2: {} - buffer@5.7.1: - dependencies: - base64-js: 1.5.1 - ieee754: 1.2.1 - builtin-modules@5.0.0: {} busboy@1.6.0: @@ -5627,7 +5687,7 @@ snapshots: camel-case@4.1.2: dependencies: pascal-case: 3.1.2 - tslib: 2.6.3 + tslib: 2.8.1 camelcase@5.3.1: {} @@ -5638,7 +5698,7 @@ snapshots: 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 ccount@2.0.1: {} @@ -5682,7 +5742,7 @@ snapshots: path-case: 3.0.4 sentence-case: 3.0.4 snake-case: 3.0.4 - tslib: 2.6.3 + tslib: 2.8.1 change-case@5.4.4: {} @@ -5690,7 +5750,7 @@ snapshots: character-entities@2.0.2: {} - chardet@0.7.0: {} + chardet@2.1.0: {} check-error@2.1.1: {} @@ -5702,20 +5762,16 @@ snapshots: dependencies: escape-string-regexp: 1.0.5 - clean-stack@2.2.0: {} - - cli-cursor@3.1.0: + cli-cursor@5.0.0: dependencies: - restore-cursor: 3.1.0 - - cli-spinners@2.9.2: {} + restore-cursor: 5.1.0 - cli-truncate@2.1.0: + cli-truncate@4.0.0: dependencies: - slice-ansi: 3.0.0 - string-width: 4.2.3 + slice-ansi: 5.0.0 + string-width: 7.2.0 - cli-width@3.0.0: {} + cli-width@4.1.0: {} cliui@8.0.1: dependencies: @@ -5723,8 +5779,6 @@ snapshots: strip-ansi: 6.0.1 wrap-ansi: 7.0.0 - clone@1.0.4: {} - co@4.6.0: {} collect-v8-coverage@1.0.2: {} @@ -5750,7 +5804,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 convert-source-map@2.0.0: {} @@ -5768,6 +5822,15 @@ snapshots: optionalDependencies: typescript: 5.9.2 + cosmiconfig@9.0.0(typescript@5.9.2): + dependencies: + env-paths: 2.2.1 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + parse-json: 5.2.0 + optionalDependencies: + typescript: 5.9.2 + cross-fetch@3.2.0: dependencies: node-fetch: 2.7.0 @@ -5788,7 +5851,7 @@ snapshots: dataloader@2.2.2: {} - debounce@1.2.1: {} + debounce@2.2.0: {} debug@4.4.1: dependencies: @@ -5806,11 +5869,7 @@ snapshots: deepmerge@4.3.1: {} - defaults@1.0.4: - dependencies: - clone: 1.0.4 - - dependency-graph@0.11.0: {} + dependency-graph@1.0.0: {} dequal@2.0.3: {} @@ -5829,9 +5888,7 @@ snapshots: dot-case@3.0.4: dependencies: no-case: 3.0.4 - tslib: 2.6.3 - - dotenv@16.4.5: {} + tslib: 2.8.1 dset@3.1.4: {} @@ -5841,6 +5898,8 @@ snapshots: emittery@0.13.1: {} + emoji-regex@10.5.0: {} + emoji-regex@8.0.0: {} emoji-regex@9.2.2: {} @@ -5854,6 +5913,10 @@ snapshots: entities@4.5.0: {} + env-paths@2.2.1: {} + + environment@1.1.0: {} + error-ex@1.3.2: dependencies: is-arrayish: 0.2.1 @@ -6179,6 +6242,8 @@ snapshots: esutils@2.0.3: {} + eventemitter3@5.0.1: {} + execa@5.1.1: dependencies: cross-spawn: 7.0.6 @@ -6206,12 +6271,6 @@ snapshots: exsolve@1.0.7: {} - external-editor@3.1.0: - dependencies: - chardet: 0.7.0 - iconv-lite: 0.4.24 - tmp: 0.0.33 - extract-files@11.0.0: {} fast-decode-uri-component@1.0.1: {} @@ -6268,10 +6327,6 @@ snapshots: optionalDependencies: picomatch: 4.0.3 - figures@3.2.0: - dependencies: - escape-string-regexp: 1.0.5 - file-entry-cache@8.0.0: dependencies: flat-cache: 4.0.1 @@ -6315,6 +6370,8 @@ snapshots: get-caller-file@2.0.5: {} + get-east-asian-width@1.3.1: {} + get-package-type@0.1.0: {} get-stream@6.0.1: {} @@ -6399,18 +6456,10 @@ snapshots: - typescript - utf-8-validate - graphql-request@6.1.0(graphql@16.11.0): - dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.11.0) - cross-fetch: 3.2.0 - graphql: 16.11.0 - transitivePeerDependencies: - - encoding - graphql-tag@2.12.6(graphql@16.11.0): dependencies: graphql: 16.11.0 - tslib: 2.6.3 + tslib: 2.8.1 graphql-ws@5.16.0(graphql@16.11.0): dependencies: @@ -6432,32 +6481,16 @@ snapshots: header-case@2.0.4: dependencies: capital-case: 1.0.4 - tslib: 2.6.3 + tslib: 2.8.1 html-escaper@2.0.2: {} - http-proxy-agent@7.0.2: - dependencies: - agent-base: 7.1.1 - debug: 4.4.1 - transitivePeerDependencies: - - supports-color - - https-proxy-agent@7.0.5: - dependencies: - agent-base: 7.1.1 - debug: 4.4.1 - transitivePeerDependencies: - - supports-color - human-signals@2.1.0: {} - iconv-lite@0.4.24: + iconv-lite@0.6.3: dependencies: safer-buffer: 2.1.2 - ieee754@1.2.1: {} - ignore@5.3.2: {} ignore@7.0.5: {} @@ -6478,8 +6511,6 @@ snapshots: imurmurhash@0.1.4: {} - indent-string@4.0.0: {} - indent-string@5.0.0: {} inflight@1.0.6: @@ -6489,24 +6520,6 @@ snapshots: inherits@2.0.4: {} - inquirer@8.2.6: - dependencies: - ansi-escapes: 4.3.2 - chalk: 4.1.2 - cli-cursor: 3.1.0 - cli-width: 3.0.0 - external-editor: 3.1.0 - figures: 3.2.0 - lodash: 4.17.21 - mute-stream: 0.0.8 - ora: 5.4.1 - run-async: 2.4.1 - rxjs: 7.8.1 - string-width: 4.2.3 - strip-ansi: 6.0.1 - through: 2.3.8 - wrap-ansi: 6.2.0 - invariant@2.2.4: dependencies: loose-envify: 1.4.0 @@ -6526,17 +6539,21 @@ snapshots: is-fullwidth-code-point@3.0.0: {} + is-fullwidth-code-point@4.0.0: {} + + is-fullwidth-code-point@5.1.0: + dependencies: + get-east-asian-width: 1.3.1 + is-generator-fn@2.1.0: {} is-glob@4.0.3: dependencies: is-extglob: 2.1.1 - is-interactive@1.0.0: {} - is-lower-case@2.0.2: dependencies: - tslib: 2.6.3 + tslib: 2.8.1 is-number@7.0.0: {} @@ -6554,7 +6571,7 @@ snapshots: is-upper-case@2.0.2: dependencies: - tslib: 2.6.3 + tslib: 2.8.1 is-windows@1.0.2: {} @@ -6914,12 +6931,8 @@ snapshots: - supports-color - ts-node - jiti@1.21.6: {} - jiti@2.4.0: {} - jose@5.9.6: {} - js-tokens@4.0.0: {} js-tokens@9.0.1: {} @@ -6978,16 +6991,14 @@ snapshots: lines-and-columns@1.2.4: {} - listr2@4.0.5: + listr2@9.0.3: dependencies: - cli-truncate: 2.1.0 + cli-truncate: 4.0.0 colorette: 2.0.20 - log-update: 4.0.0 - p-map: 4.0.0 + eventemitter3: 5.0.1 + log-update: 6.1.0 rfdc: 1.4.1 - rxjs: 7.8.1 - through: 2.3.8 - wrap-ansi: 7.0.0 + wrap-ansi: 9.0.0 local-pkg@1.1.2: dependencies: @@ -7016,12 +7027,13 @@ snapshots: chalk: 4.1.2 is-unicode-supported: 0.1.0 - log-update@4.0.0: + log-update@6.1.0: dependencies: - ansi-escapes: 4.3.2 - cli-cursor: 3.1.0 - slice-ansi: 4.0.0 - wrap-ansi: 6.2.0 + ansi-escapes: 7.0.0 + cli-cursor: 5.0.0 + slice-ansi: 7.1.0 + strip-ansi: 7.1.0 + wrap-ansi: 9.0.0 longest-streak@3.1.0: {} @@ -7033,11 +7045,11 @@ snapshots: lower-case-first@2.0.2: dependencies: - tslib: 2.6.3 + tslib: 2.8.1 lower-case@2.0.2: dependencies: - tslib: 2.6.3 + tslib: 2.8.1 lru-cache@10.4.3: {} @@ -7395,6 +7407,8 @@ snapshots: mimic-fn@2.1.0: {} + mimic-function@5.0.1: {} + min-indent@1.0.1: {} minimatch@3.1.2: @@ -7418,7 +7432,7 @@ snapshots: ms@2.1.3: {} - mute-stream@0.0.8: {} + mute-stream@2.0.0: {} myzod@1.12.1: {} @@ -7435,7 +7449,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: @@ -7484,6 +7498,10 @@ snapshots: dependencies: mimic-fn: 2.1.0 + onetime@7.0.0: + dependencies: + mimic-function: 5.0.1 + optionator@0.9.4: dependencies: deep-is: 0.1.4 @@ -7493,20 +7511,6 @@ snapshots: type-check: 0.4.0 word-wrap: 1.2.5 - ora@5.4.1: - dependencies: - bl: 4.1.0 - chalk: 4.1.2 - cli-cursor: 3.1.0 - cli-spinners: 2.9.2 - is-interactive: 1.0.0 - is-unicode-supported: 0.1.0 - log-symbols: 4.1.0 - strip-ansi: 6.0.1 - wcwidth: 1.0.1 - - os-tmpdir@1.0.2: {} - p-limit@2.3.0: dependencies: p-try: 2.2.0 @@ -7523,10 +7527,6 @@ snapshots: dependencies: p-limit: 3.1.0 - p-map@4.0.0: - dependencies: - aggregate-error: 3.1.0 - p-try@2.2.0: {} package-json-from-dist@1.0.1: {} @@ -7536,7 +7536,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: @@ -7566,12 +7566,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@4.0.0: {} @@ -7670,12 +7670,6 @@ snapshots: json-parse-even-better-errors: 4.0.0 npm-normalize-package-bin: 4.0.0 - readable-stream@3.6.2: - dependencies: - inherits: 2.0.4 - string_decoder: 1.3.0 - util-deprecate: 1.0.2 - refa@0.12.1: dependencies: '@eslint-community/regexpp': 4.12.1 @@ -7719,10 +7713,10 @@ snapshots: resolve-pkg-maps@1.0.0: {} - restore-cursor@3.1.0: + restore-cursor@5.1.0: dependencies: - onetime: 5.1.2 - signal-exit: 3.0.7 + onetime: 7.0.0 + signal-exit: 4.1.0 reusify@1.0.4: {} @@ -7754,18 +7748,10 @@ snapshots: '@rollup/rollup-win32-x64-msvc': 4.43.0 fsevents: 2.3.3 - run-async@2.4.1: {} - run-parallel@1.2.0: dependencies: queue-microtask: 1.2.3 - rxjs@7.8.1: - dependencies: - tslib: 2.8.1 - - safe-buffer@5.2.1: {} - safer-buffer@2.1.2: {} scslre@0.3.0: @@ -7774,8 +7760,6 @@ snapshots: refa: 0.12.1 regexp-ast-analysis: 0.7.1 - scuid@1.1.0: {} - semver@6.3.1: {} semver@7.7.2: {} @@ -7783,7 +7767,7 @@ snapshots: 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 setimmediate@1.0.5: {} @@ -7808,22 +7792,20 @@ snapshots: slash@3.0.0: {} - slice-ansi@3.0.0: + slice-ansi@5.0.0: dependencies: - ansi-styles: 4.3.0 - astral-regex: 2.0.0 - is-fullwidth-code-point: 3.0.0 + ansi-styles: 6.2.1 + is-fullwidth-code-point: 4.0.0 - slice-ansi@4.0.0: + slice-ansi@7.1.0: dependencies: - ansi-styles: 4.3.0 - astral-regex: 2.0.0 - is-fullwidth-code-point: 3.0.0 + ansi-styles: 6.2.1 + is-fullwidth-code-point: 5.1.0 snake-case@3.0.4: dependencies: dot-case: 3.0.4 - tslib: 2.6.3 + tslib: 2.8.1 source-map-js@1.2.1: {} @@ -7845,7 +7827,7 @@ snapshots: sponge-case@1.0.1: dependencies: - tslib: 2.6.3 + tslib: 2.8.1 sprintf-js@1.0.3: {} @@ -7878,9 +7860,11 @@ snapshots: emoji-regex: 9.2.2 strip-ansi: 7.1.0 - string_decoder@1.3.0: + string-width@7.2.0: dependencies: - safe-buffer: 5.2.1 + emoji-regex: 10.5.0 + get-east-asian-width: 1.3.1 + strip-ansi: 7.1.0 strip-ansi@6.0.1: dependencies: @@ -7914,7 +7898,7 @@ snapshots: swap-case@2.0.2: dependencies: - tslib: 2.6.3 + tslib: 2.8.1 synckit@0.11.11: dependencies: @@ -7928,8 +7912,6 @@ snapshots: glob: 7.2.3 minimatch: 3.1.2 - through@2.3.8: {} - tiny-case@1.0.3: {} tinybench@2.9.0: {} @@ -7956,11 +7938,7 @@ snapshots: title-case@3.0.3: dependencies: - tslib: 2.6.3 - - tmp@0.0.33: - dependencies: - os-tmpdir: 1.0.2 + tslib: 2.8.1 tmpl@1.0.5: {} @@ -8091,11 +8069,11 @@ snapshots: upper-case-first@2.0.2: dependencies: - tslib: 2.6.3 + tslib: 2.8.1 upper-case@2.0.2: dependencies: - tslib: 2.6.3 + tslib: 2.8.1 uri-js@4.4.1: dependencies: @@ -8210,10 +8188,6 @@ snapshots: dependencies: makeerror: 1.0.12 - wcwidth@1.0.1: - dependencies: - defaults: 1.0.4 - webidl-conversions@3.0.1: {} whatwg-url@5.0.0: @@ -8256,6 +8230,12 @@ snapshots: string-width: 5.1.2 strip-ansi: 7.1.0 + wrap-ansi@9.0.0: + dependencies: + ansi-styles: 6.2.1 + string-width: 7.2.0 + strip-ansi: 7.1.0 + wrappy@1.0.2: {} write-file-atomic@5.0.1: @@ -8271,15 +8251,11 @@ snapshots: yallist@3.1.1: {} - yaml-ast-parser@0.0.43: {} - yaml-eslint-parser@1.3.0: dependencies: eslint-visitor-keys: 3.4.3 yaml: 2.8.1 - yaml@2.8.0: {} - yaml@2.8.1: {} yargs-parser@21.1.1: {} @@ -8296,6 +8272,8 @@ snapshots: yocto-queue@0.1.0: {} + yoctocolors-cjs@2.1.3: {} + yup@1.7.0: dependencies: property-expr: 2.0.6 From 37b2f06768324024f34248810f7ae3d7ab5bc25a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 13:45:40 +0000 Subject: [PATCH 045/133] chore(deps): update dependency @antfu/eslint-config to v5.3.0 (#1230) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 110 +++++++++++++++++++++++++++++++------------------ 1 file changed, 70 insertions(+), 40 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 71f771dd..87fbee58 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^5.0.0 - version: 5.2.2(@vue/compiler-sfc@3.5.12)(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1)) + version: 5.3.0(@vue/compiler-sfc@3.5.12)(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.0 version: 6.0.0(@types/node@22.18.1)(graphql@16.11.0)(typescript@5.9.2) @@ -85,8 +85,8 @@ packages: resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - '@antfu/eslint-config@5.2.2': - resolution: {integrity: sha512-oQO9apvnJ5Fke1k20QL+HwxErwTowK3IWMCwQbWww68Yh9xz4UtZo/hrQ6McHTqxd5YhsVq9y4PZQNN4ltoSLQ==} + '@antfu/eslint-config@5.3.0': + resolution: {integrity: sha512-VzBemSi453rd06lF6gG6VkpP3HH7XKTf+sK6frSrGm7uMFkN57jry1XB074tQRKB3qOjhpsx3kKpWtOv9e5FnQ==} hasBin: true peerDependencies: '@eslint-react/eslint-plugin': ^1.38.4 @@ -352,8 +352,8 @@ packages: resolution: {integrity: sha512-YAdE/IJSpwbOTiaURNCKECdAwqrJuFiZhylmesBcIRawtYKnBR2wxPhoIewMg+Yu+QuYvHfJNReWpoxGBKOChA==} engines: {node: '>=18'} - '@es-joy/jsdoccomment@0.52.0': - resolution: {integrity: sha512-BXuN7BII+8AyNtn57euU2Yxo9yA/KUDNzrpXyi3pfqKmBhhysR6ZWOebFh3vyPoqA3/j1SOvGgucElMGwlXing==} + '@es-joy/jsdoccomment@0.56.0': + resolution: {integrity: sha512-c6EW+aA1w2rjqOMjbL93nZlwxp6c1Ln06vTYs5FjRRhmJXK8V/OrSXdT+pUr4aRYgjCgu8/OkiZr0tzeVrRSbw==} engines: {node: '>=20.11.0'} '@esbuild/aix-ppc64@0.25.5': @@ -518,6 +518,12 @@ packages: peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + '@eslint-community/eslint-utils@4.9.0': + resolution: {integrity: sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==} + 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.12.1': resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} @@ -1798,6 +1804,15 @@ packages: supports-color: optional: true + debug@4.4.2: + resolution: {integrity: sha512-IQeXCZhGRpFiLI3MYlCGLjNssUBiE8G21RMyNH35KFsxIvhrMeh5jXuG82woDZrYX9pgqHs+GF5js2Ducn4y4A==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + decode-named-character-reference@1.2.0: resolution: {integrity: sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==} @@ -1982,8 +1997,8 @@ packages: typescript: optional: true - eslint-plugin-jsdoc@52.0.4: - resolution: {integrity: sha512-be5OzGlLExvcK13Il3noU7/v7WmAQGenTmCaBKf1pwVtPOb6X+PGFVnJad0QhMj4KKf45XjE4hbsBxv25q1fTg==} + eslint-plugin-jsdoc@54.7.0: + resolution: {integrity: sha512-u5Na4he2+6kY1rWqxzbQaAwJL3/tDCuT5ElDRc5UJ9stOeQeQ5L1JJ1kRRu7ldYMlOHMCJLsY8Mg/Tu3ExdZiQ==} engines: {node: '>=20.11.0'} peerDependencies: eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 @@ -2027,8 +2042,8 @@ packages: peerDependencies: eslint: '>=6.0.0' - eslint-plugin-unicorn@60.0.0: - resolution: {integrity: sha512-QUzTefvP8stfSXsqKQ+vBQSEsXIlAiCduS/V1Em+FKgL9c21U/IIm20/e3MFy1jyCf14tHAhqC1sX8OTy6VUCg==} + eslint-plugin-unicorn@61.0.2: + resolution: {integrity: sha512-zLihukvneYT7f74GNbVJXfWIiNQmkc/a9vYBTE4qPkQZswolWNdu+Wsp9sIXno1JOzdn6OUwLPd19ekXVkahRA==} engines: {node: ^20.10.0 || >=21.0.0} peerDependencies: eslint: '>=9.29.0' @@ -2662,6 +2677,10 @@ packages: resolution: {integrity: sha512-iZ8Bdb84lWRuGHamRXFyML07r21pcwBrLkHEuHgEY5UbCouBwv7ECknDRKzsQIXMiqpPymqtIf8TC/shYKB5rw==} engines: {node: '>=12.0.0'} + jsdoc-type-pratt-parser@5.1.1: + resolution: {integrity: sha512-DYYlVP1fe4QBMh2xTIs20/YeTz2GYVbWAEZweHSZD+qQ/Cx2d5RShuhhsdk64eTjNq0FeVnteP/qVOgaywSRbg==} + engines: {node: '>=12.0.0'} + jsesc@3.0.2: resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} engines: {node: '>=6'} @@ -2776,8 +2795,8 @@ packages: magic-string@0.30.17: resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} - magic-string@0.30.18: - resolution: {integrity: sha512-yi8swmWbO17qHhwIBNeeZxTceJMeBvWJaId6dyvTSOwTipqeHhMhOrz6513r1sOKnpvQ7zkhlG8tPrpilwTxHQ==} + magic-string@0.30.19: + resolution: {integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==} make-dir@4.0.0: resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} @@ -3883,7 +3902,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@5.2.2(@vue/compiler-sfc@3.5.12)(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@5.3.0(@vue/compiler-sfc@3.5.12)(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -3902,7 +3921,7 @@ snapshots: eslint-plugin-antfu: 3.1.1(eslint@9.35.0(jiti@2.4.0)) eslint-plugin-command: 3.3.1(eslint@9.35.0(jiti@2.4.0)) eslint-plugin-import-lite: 0.3.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2) - eslint-plugin-jsdoc: 52.0.4(eslint@9.35.0(jiti@2.4.0)) + eslint-plugin-jsdoc: 54.7.0(eslint@9.35.0(jiti@2.4.0)) eslint-plugin-jsonc: 2.20.1(eslint@9.35.0(jiti@2.4.0)) eslint-plugin-n: 17.21.3(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2) eslint-plugin-no-only-tests: 3.3.0 @@ -3910,7 +3929,7 @@ snapshots: eslint-plugin-pnpm: 1.1.1(eslint@9.35.0(jiti@2.4.0)) eslint-plugin-regexp: 2.10.0(eslint@9.35.0(jiti@2.4.0)) eslint-plugin-toml: 0.12.0(eslint@9.35.0(jiti@2.4.0)) - eslint-plugin-unicorn: 60.0.0(eslint@9.35.0(jiti@2.4.0)) + eslint-plugin-unicorn: 61.0.2(eslint@9.35.0(jiti@2.4.0)) eslint-plugin-unused-imports: 4.2.0(@typescript-eslint/eslint-plugin@8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.35.0(jiti@2.4.0)) eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.35.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.35.0(jiti@2.4.0))) eslint-plugin-yml: 1.18.0(eslint@9.35.0(jiti@2.4.0)) @@ -4144,7 +4163,7 @@ snapshots: '@babel/parser': 7.28.4 '@babel/template': 7.27.2 '@babel/types': 7.28.2 - debug: 4.4.1 + debug: 4.4.2 globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -4196,13 +4215,13 @@ snapshots: esquery: 1.6.0 jsdoc-type-pratt-parser: 4.1.0 - '@es-joy/jsdoccomment@0.52.0': + '@es-joy/jsdoccomment@0.56.0': dependencies: '@types/estree': 1.0.8 '@typescript-eslint/types': 8.42.0 comment-parser: 1.4.1 esquery: 1.6.0 - jsdoc-type-pratt-parser: 4.1.0 + jsdoc-type-pratt-parser: 5.1.1 '@esbuild/aix-ppc64@0.25.5': optional: true @@ -4290,6 +4309,11 @@ snapshots: eslint: 9.35.0(jiti@2.4.0) eslint-visitor-keys: 3.4.3 + '@eslint-community/eslint-utils@4.9.0(eslint@9.35.0(jiti@2.4.0))': + dependencies: + eslint: 9.35.0(jiti@2.4.0) + eslint-visitor-keys: 3.4.3 + '@eslint-community/regexpp@4.12.1': {} '@eslint/compat@1.3.2(eslint@9.35.0(jiti@2.4.0))': @@ -5193,7 +5217,7 @@ snapshots: '@stylistic/eslint-plugin@5.3.1(eslint@9.35.0(jiti@2.4.0))': dependencies: - '@eslint-community/eslint-utils': 4.8.0(eslint@9.35.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.4.0)) '@typescript-eslint/types': 8.42.0 eslint: 9.35.0(jiti@2.4.0) eslint-visitor-keys: 4.2.1 @@ -5304,7 +5328,7 @@ snapshots: '@typescript-eslint/types': 8.42.0 '@typescript-eslint/typescript-estree': 8.42.0(typescript@5.9.2) '@typescript-eslint/visitor-keys': 8.42.0 - debug: 4.4.1 + debug: 4.4.2 eslint: 9.35.0(jiti@2.4.0) typescript: 5.9.2 transitivePeerDependencies: @@ -5314,7 +5338,7 @@ snapshots: dependencies: '@typescript-eslint/tsconfig-utils': 8.42.0(typescript@5.9.2) '@typescript-eslint/types': 8.42.0 - debug: 4.4.1 + debug: 4.4.2 typescript: 5.9.2 transitivePeerDependencies: - supports-color @@ -5333,7 +5357,7 @@ snapshots: '@typescript-eslint/types': 8.42.0 '@typescript-eslint/typescript-estree': 8.42.0(typescript@5.9.2) '@typescript-eslint/utils': 8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2) - debug: 4.4.1 + debug: 4.4.2 eslint: 9.35.0(jiti@2.4.0) ts-api-utils: 2.1.0(typescript@5.9.2) typescript: 5.9.2 @@ -5348,7 +5372,7 @@ snapshots: '@typescript-eslint/tsconfig-utils': 8.42.0(typescript@5.9.2) '@typescript-eslint/types': 8.42.0 '@typescript-eslint/visitor-keys': 8.42.0 - debug: 4.4.1 + debug: 4.4.2 fast-glob: 3.3.3 is-glob: 4.0.3 minimatch: 9.0.5 @@ -5360,7 +5384,7 @@ snapshots: '@typescript-eslint/utils@8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: - '@eslint-community/eslint-utils': 4.8.0(eslint@9.35.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.4.0)) '@typescript-eslint/scope-manager': 8.42.0 '@typescript-eslint/types': 8.42.0 '@typescript-eslint/typescript-estree': 8.42.0(typescript@5.9.2) @@ -5503,7 +5527,7 @@ snapshots: '@vue/compiler-ssr': 3.5.12 '@vue/shared': 3.5.12 estree-walker: 2.0.2 - magic-string: 0.30.18 + magic-string: 0.30.19 postcss: 8.5.6 source-map-js: 1.2.1 @@ -5857,6 +5881,10 @@ snapshots: dependencies: ms: 2.1.3 + debug@4.4.2: + dependencies: + ms: 2.1.3 + decode-named-character-reference@1.2.0: dependencies: character-entities: 2.0.2 @@ -6001,25 +6029,25 @@ snapshots: eslint-plugin-es-x@7.8.0(eslint@9.35.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.8.0(eslint@9.35.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.1 eslint: 9.35.0(jiti@2.4.0) eslint-compat-utils: 0.5.1(eslint@9.35.0(jiti@2.4.0)) eslint-plugin-import-lite@0.3.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2): dependencies: - '@eslint-community/eslint-utils': 4.8.0(eslint@9.35.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.4.0)) '@typescript-eslint/types': 8.42.0 eslint: 9.35.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.2 - eslint-plugin-jsdoc@52.0.4(eslint@9.35.0(jiti@2.4.0)): + eslint-plugin-jsdoc@54.7.0(eslint@9.35.0(jiti@2.4.0)): dependencies: - '@es-joy/jsdoccomment': 0.52.0 + '@es-joy/jsdoccomment': 0.56.0 are-docs-informative: 0.0.2 comment-parser: 1.4.1 - debug: 4.4.1 + debug: 4.4.2 escape-string-regexp: 4.0.0 eslint: 9.35.0(jiti@2.4.0) espree: 10.4.0 @@ -6032,7 +6060,7 @@ snapshots: eslint-plugin-jsonc@2.20.1(eslint@9.35.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.8.0(eslint@9.35.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.4.0)) eslint: 9.35.0(jiti@2.4.0) eslint-compat-utils: 0.6.5(eslint@9.35.0(jiti@2.4.0)) eslint-json-compat-utils: 0.2.1(eslint@9.35.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0) @@ -6046,7 +6074,7 @@ snapshots: eslint-plugin-n@17.21.3(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2): dependencies: - '@eslint-community/eslint-utils': 4.8.0(eslint@9.35.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.4.0)) enhanced-resolve: 5.18.3 eslint: 9.35.0(jiti@2.4.0) eslint-plugin-es-x: 7.8.0(eslint@9.35.0(jiti@2.4.0)) @@ -6083,7 +6111,7 @@ snapshots: eslint-plugin-regexp@2.10.0(eslint@9.35.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.8.0(eslint@9.35.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.1 comment-parser: 1.4.1 eslint: 9.35.0(jiti@2.4.0) @@ -6094,7 +6122,7 @@ snapshots: eslint-plugin-toml@0.12.0(eslint@9.35.0(jiti@2.4.0)): dependencies: - debug: 4.4.1 + debug: 4.4.2 eslint: 9.35.0(jiti@2.4.0) eslint-compat-utils: 0.6.5(eslint@9.35.0(jiti@2.4.0)) lodash: 4.17.21 @@ -6102,10 +6130,10 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-unicorn@60.0.0(eslint@9.35.0(jiti@2.4.0)): + eslint-plugin-unicorn@61.0.2(eslint@9.35.0(jiti@2.4.0)): dependencies: '@babel/helper-validator-identifier': 7.27.1 - '@eslint-community/eslint-utils': 4.8.0(eslint@9.35.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.4.0)) '@eslint/plugin-kit': 0.3.5 change-case: 5.4.4 ci-info: 4.3.0 @@ -6132,7 +6160,7 @@ snapshots: eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.35.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.35.0(jiti@2.4.0))): dependencies: - '@eslint-community/eslint-utils': 4.8.0(eslint@9.35.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.4.0)) eslint: 9.35.0(jiti@2.4.0) natural-compare: 1.4.0 nth-check: 2.1.1 @@ -6145,7 +6173,7 @@ snapshots: eslint-plugin-yml@1.18.0(eslint@9.35.0(jiti@2.4.0)): dependencies: - debug: 4.4.1 + debug: 4.4.2 escape-string-regexp: 4.0.0 eslint: 9.35.0(jiti@2.4.0) eslint-compat-utils: 0.6.5(eslint@9.35.0(jiti@2.4.0)) @@ -6950,6 +6978,8 @@ snapshots: jsdoc-type-pratt-parser@4.8.0: {} + jsdoc-type-pratt-parser@5.1.1: {} + jsesc@3.0.2: {} jsesc@3.1.0: {} @@ -7061,7 +7091,7 @@ snapshots: dependencies: '@jridgewell/sourcemap-codec': 1.5.0 - magic-string@0.30.18: + magic-string@0.30.19: dependencies: '@jridgewell/sourcemap-codec': 1.5.5 @@ -7381,7 +7411,7 @@ snapshots: micromark@4.0.2: dependencies: '@types/debug': 4.1.12 - debug: 4.4.1 + debug: 4.4.2 decode-named-character-reference: 1.2.0 devlop: 1.1.0 micromark-core-commonmark: 2.0.3 @@ -8174,7 +8204,7 @@ snapshots: vue-eslint-parser@10.2.0(eslint@9.35.0(jiti@2.4.0)): dependencies: - debug: 4.4.1 + debug: 4.4.2 eslint: 9.35.0(jiti@2.4.0) eslint-scope: 8.4.0 eslint-visitor-keys: 4.2.1 From 316ed57405db7b4a928337ab2f33f5f9877ec89a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 15 Sep 2025 03:38:54 +0000 Subject: [PATCH 046/133] chore(deps): update dependency zod to v4.1.8 (#1231) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f61ae64d..a56ec2d6 100644 --- a/package.json +++ b/package.json @@ -101,6 +101,6 @@ "valibot": "1.1.0", "vitest": "^3.0.0", "yup": "1.7.0", - "zod": "4.1.5" + "zod": "4.1.8" } } From 963f09464c4b45fc54b8fd72bcf98fdde577f05a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 15 Sep 2025 03:39:11 +0000 Subject: [PATCH 047/133] chore(deps): update pnpm to v10.16.1 (#1232) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a56ec2d6..f50b4e15 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "graphql-codegen-typescript-validation-schema", "type": "module", "version": "0.17.1", - "packageManager": "pnpm@10.15.1", + "packageManager": "pnpm@10.16.1", "description": "GraphQL Code Generator plugin to generate form validation schema from your GraphQL schema", "respository": { "type": "git", From fba2c178587ffae9374aca32a03534f79ce017d1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 15 Sep 2025 23:07:46 +0000 Subject: [PATCH 048/133] chore(deps): update dependency ts-jest to v29.4.2 (#1233) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f50b4e15..c26459dd 100644 --- a/package.json +++ b/package.json @@ -96,7 +96,7 @@ "myzod": "1.12.1", "npm-run-all2": "8.0.4", "ts-dedent": "^2.2.0", - "ts-jest": "29.4.1", + "ts-jest": "29.4.2", "typescript": "5.9.2", "valibot": "1.1.0", "vitest": "^3.0.0", From f7485c42802135201b8062b66113b9ae748bcab8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 18 Sep 2025 04:15:35 +0000 Subject: [PATCH 049/133] chore(deps): update dependency zod to v4.1.9 (#1234) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c26459dd..f0c14cca 100644 --- a/package.json +++ b/package.json @@ -101,6 +101,6 @@ "valibot": "1.1.0", "vitest": "^3.0.0", "yup": "1.7.0", - "zod": "4.1.8" + "zod": "4.1.9" } } From f849b2849c80874e4e3606710bd8ac342cd63f0a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 18 Sep 2025 04:15:50 +0000 Subject: [PATCH 050/133] chore(deps): update pnpm to v10.17.0 (#1235) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f0c14cca..0e2abb81 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "graphql-codegen-typescript-validation-schema", "type": "module", "version": "0.17.1", - "packageManager": "pnpm@10.16.1", + "packageManager": "pnpm@10.17.0", "description": "GraphQL Code Generator plugin to generate form validation schema from your GraphQL schema", "respository": { "type": "git", From c15f9d8b9f63c816c41cfd2918f52483fb651bb1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 18 Sep 2025 09:43:32 +0000 Subject: [PATCH 051/133] chore(deps): update dependency ts-jest to v29.4.3 (#1236) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0e2abb81..d6670d85 100644 --- a/package.json +++ b/package.json @@ -96,7 +96,7 @@ "myzod": "1.12.1", "npm-run-all2": "8.0.4", "ts-dedent": "^2.2.0", - "ts-jest": "29.4.2", + "ts-jest": "29.4.3", "typescript": "5.9.2", "valibot": "1.1.0", "vitest": "^3.0.0", From 280bf83c3b697450919c04783042522e55216a4d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 19 Sep 2025 18:05:58 +0000 Subject: [PATCH 052/133] chore(deps): update dependency ts-jest to v29.4.4 (#1238) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d6670d85..26e7accd 100644 --- a/package.json +++ b/package.json @@ -96,7 +96,7 @@ "myzod": "1.12.1", "npm-run-all2": "8.0.4", "ts-dedent": "^2.2.0", - "ts-jest": "29.4.3", + "ts-jest": "29.4.4", "typescript": "5.9.2", "valibot": "1.1.0", "vitest": "^3.0.0", From e8d1b4da6936e907d048486b70eed115ca8b02d8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 20 Sep 2025 03:05:47 +0000 Subject: [PATCH 053/133] chore(deps): update dependency eslint to v9.36.0 (#1239) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 26e7accd..d3b5db47 100644 --- a/package.json +++ b/package.json @@ -91,7 +91,7 @@ "@tsconfig/recommended": "1.0.10", "@types/graphlib": "^2.1.8", "@types/node": "^22.0.0", - "eslint": "9.35.0", + "eslint": "9.36.0", "jest": "30.1.3", "myzod": "1.12.1", "npm-run-all2": "8.0.4", From 00b1ce22978eb15989128c3539af9aebd6b9cc44 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 20 Sep 2025 04:23:44 +0000 Subject: [PATCH 054/133] chore(deps): update dependency @types/node to v22.18.6 (#1240) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 607 ++++++++++++++++++++++++------------------------- 1 file changed, 295 insertions(+), 312 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 87fbee58..761fd216 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,10 +29,10 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^5.0.0 - version: 5.3.0(@vue/compiler-sfc@3.5.12)(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1)) + version: 5.3.0(@vue/compiler-sfc@3.5.12)(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.0 - version: 6.0.0(@types/node@22.18.1)(graphql@16.11.0)(typescript@5.9.2) + version: 6.0.0(@types/node@22.18.6)(graphql@16.11.0)(typescript@5.9.2) '@graphql-codegen/typescript': specifier: ^5.0.0 version: 5.0.0(graphql@16.11.0) @@ -44,13 +44,13 @@ importers: version: 2.1.12 '@types/node': specifier: ^22.0.0 - version: 22.18.1 + version: 22.18.6 eslint: - specifier: 9.35.0 - version: 9.35.0(jiti@2.4.0) + specifier: 9.36.0 + version: 9.36.0(jiti@2.4.0) jest: specifier: 30.1.3 - version: 30.1.3(@types/node@22.18.1) + version: 30.1.3(@types/node@22.18.6) myzod: specifier: 1.12.1 version: 1.12.1 @@ -61,8 +61,8 @@ importers: specifier: ^2.2.0 version: 2.2.0 ts-jest: - specifier: 29.4.1 - version: 29.4.1(@babel/core@7.27.4)(@jest/transform@30.1.2)(@jest/types@30.0.5)(babel-jest@30.1.2(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.1.3(@types/node@22.18.1))(typescript@5.9.2) + specifier: 29.4.4 + version: 29.4.4(@babel/core@7.27.4)(@jest/transform@30.1.2)(@jest/types@30.0.5)(babel-jest@30.1.2(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.1.3(@types/node@22.18.6))(typescript@5.9.2) typescript: specifier: 5.9.2 version: 5.9.2 @@ -71,13 +71,13 @@ importers: version: 1.1.0(typescript@5.9.2) vitest: specifier: ^3.0.0 - version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.0 version: 1.7.0 zod: - specifier: 4.1.5 - version: 4.1.5 + specifier: 4.1.9 + version: 4.1.9 packages: @@ -512,12 +512,6 @@ packages: peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 - '@eslint-community/eslint-utils@4.8.0': - resolution: {integrity: sha512-MJQFqrZgcW0UNYLGOuQpey/oTN59vyWwplvCGZztn1cKz9agZPPYpJB7h2OMmuu7VLqkvEjN8feFZJmxNF9D+Q==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - '@eslint-community/eslint-utils@4.9.0': resolution: {integrity: sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -553,8 +547,8 @@ packages: resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/js@9.35.0': - resolution: {integrity: sha512-30iXE9whjlILfWobBkNerJo+TXYsgVM5ERQwMcMKCHckHflCmf7wXDAHlARoWnh0s1U72WqlbeyE7iAcCzuCPw==} + '@eslint/js@9.36.0': + resolution: {integrity: sha512-uhCbYtYynH30iZErszX78U+nR3pJU3RHGQ57NXy5QupD4SBVwDeU8TNBy+MjMngc1UyIW9noKqsRqfjQTBU2dw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/markdown@7.2.0': @@ -795,20 +789,16 @@ packages: resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} engines: {node: '>=18.18.0'} - '@humanfs/node@0.16.6': - resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==} + '@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/retry@0.3.1': - resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==} - engines: {node: '>=18.18'} - - '@humanwhocodes/retry@0.4.2': - resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==} + '@humanwhocodes/retry@0.4.3': + resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==} engines: {node: '>=18.18'} '@inquirer/checkbox@4.2.2': @@ -1254,8 +1244,8 @@ packages: '@types/ms@2.1.0': resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} - '@types/node@22.18.1': - resolution: {integrity: sha512-rzSDyhn4cYznVG+PCzGe1lwuMYJrcBS1fc3JqSa2PvtABwWo+dZ1ij5OVok3tqfpEBCBoaR4d7upFJk73HRJDw==} + '@types/node@22.18.6': + resolution: {integrity: sha512-r8uszLPpeIWbNKtvWRt/DbVi5zbqZyj1PTmhRMqBMvDnaz1QpmSKujUtJLrqGZeoM8v72MfYggDceY4K1itzWQ==} '@types/stack-utils@2.0.3': resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} @@ -1592,8 +1582,8 @@ packages: boolbase@1.0.0: resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} - brace-expansion@1.1.11: - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + brace-expansion@1.1.12: + resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==} brace-expansion@2.0.2: resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==} @@ -1804,8 +1794,8 @@ packages: supports-color: optional: true - debug@4.4.2: - resolution: {integrity: sha512-IQeXCZhGRpFiLI3MYlCGLjNssUBiE8G21RMyNH35KFsxIvhrMeh5jXuG82woDZrYX9pgqHs+GF5js2Ducn4y4A==} + debug@4.4.3: + resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} engines: {node: '>=6.0'} peerDependencies: supports-color: '*' @@ -2092,8 +2082,8 @@ packages: resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - eslint@9.35.0: - resolution: {integrity: sha512-QePbBFMJFjgmlE+cXAlbHZbHpdFVS2E/6vzCy7aKlebddvl1vadiC4JFV5u/wqTkNUwEV8WrQi257jf5f06hrg==} + eslint@9.36.0: + resolution: {integrity: sha512-hB4FIzXovouYzwzECDcUkJ4OcfOEkXTv2zRY6B9bkwjx/cprAq0uvm1nl7zvQ0/TsUk0zQiN4uPfJpB9m+rPMQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true peerDependencies: @@ -2238,8 +2228,8 @@ packages: resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} engines: {node: '>=16'} - flatted@3.3.1: - resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} + flatted@3.3.3: + resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==} foreground-child@3.3.1: resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==} @@ -2392,8 +2382,8 @@ packages: resolution: {integrity: sha512-AizQPcaofEtO11RZhPPHBOJRdo/20MKQF9mBLnVkBoyHi1/zXK8fzVdnEpSV9gxqtnh6Qomfp3F0xT5qP/vThw==} engines: {node: '>=0.8.0'} - import-fresh@3.3.0: - resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + import-fresh@3.3.1: + resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} engines: {node: '>=6'} import-from@4.0.0: @@ -3569,8 +3559,8 @@ packages: resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} engines: {node: '>=6.10'} - ts-jest@29.4.1: - resolution: {integrity: sha512-SaeUtjfpg9Uqu8IbeDKtdaS0g8lS6FT6OzM3ezrDfErPJPHNDo/Ey+VFGP1bQIDfagYDLyRpd7O15XpG1Es2Uw==} + ts-jest@29.4.4: + resolution: {integrity: sha512-ccVcRABct5ZELCT5U0+DZwkXMCcOCLi2doHRrKy1nK/s7J7bch6TzJMsrY09WxgUUIP/ITfmcDS8D2yl63rnXw==} engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: @@ -3889,8 +3879,8 @@ packages: yup@1.7.0: resolution: {integrity: sha512-VJce62dBd+JQvoc+fCVq+KZfPHr+hXaxCcVgotfwWvlR0Ja3ffYKaJBT8rptPOSKOGJDCUnW2C2JWpud7aRP6Q==} - zod@4.1.5: - resolution: {integrity: sha512-rcUUZqlLJgBC33IT3PNMgsCq6TzLQEG/Ei/KTCU0PedSWRMAXoOUN+4t/0H+Q8bdnLPdqUYnvboJT0bn/229qg==} + zod@4.1.9: + resolution: {integrity: sha512-HI32jTq0AUAC125z30E8bQNz0RQ+9Uc+4J7V97gLYjZVKRjeydPgGt6dvQzFrav7MYOUGFqqOGiHpA/fdbd0cQ==} zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} @@ -3902,44 +3892,44 @@ snapshots: '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@5.3.0(@vue/compiler-sfc@3.5.12)(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@5.3.0(@vue/compiler-sfc@3.5.12)(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 - '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.35.0(jiti@2.4.0)) + '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.36.0(jiti@2.4.0)) '@eslint/markdown': 7.2.0 - '@stylistic/eslint-plugin': 5.3.1(eslint@9.35.0(jiti@2.4.0)) - '@typescript-eslint/eslint-plugin': 8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2) - '@typescript-eslint/parser': 8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2) - '@vitest/eslint-plugin': 1.3.9(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1)) + '@stylistic/eslint-plugin': 5.3.1(eslint@9.36.0(jiti@2.4.0)) + '@typescript-eslint/eslint-plugin': 8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/parser': 8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) + '@vitest/eslint-plugin': 1.3.9(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.1.0 cac: 6.7.14 - eslint: 9.35.0(jiti@2.4.0) - eslint-config-flat-gitignore: 2.1.0(eslint@9.35.0(jiti@2.4.0)) + eslint: 9.36.0(jiti@2.4.0) + eslint-config-flat-gitignore: 2.1.0(eslint@9.36.0(jiti@2.4.0)) eslint-flat-config-utils: 2.1.1 - eslint-merge-processors: 2.0.0(eslint@9.35.0(jiti@2.4.0)) - eslint-plugin-antfu: 3.1.1(eslint@9.35.0(jiti@2.4.0)) - eslint-plugin-command: 3.3.1(eslint@9.35.0(jiti@2.4.0)) - eslint-plugin-import-lite: 0.3.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2) - eslint-plugin-jsdoc: 54.7.0(eslint@9.35.0(jiti@2.4.0)) - eslint-plugin-jsonc: 2.20.1(eslint@9.35.0(jiti@2.4.0)) - eslint-plugin-n: 17.21.3(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2) + eslint-merge-processors: 2.0.0(eslint@9.36.0(jiti@2.4.0)) + eslint-plugin-antfu: 3.1.1(eslint@9.36.0(jiti@2.4.0)) + eslint-plugin-command: 3.3.1(eslint@9.36.0(jiti@2.4.0)) + eslint-plugin-import-lite: 0.3.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) + eslint-plugin-jsdoc: 54.7.0(eslint@9.36.0(jiti@2.4.0)) + eslint-plugin-jsonc: 2.20.1(eslint@9.36.0(jiti@2.4.0)) + eslint-plugin-n: 17.21.3(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) eslint-plugin-no-only-tests: 3.3.0 - eslint-plugin-perfectionist: 4.15.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2) - eslint-plugin-pnpm: 1.1.1(eslint@9.35.0(jiti@2.4.0)) - eslint-plugin-regexp: 2.10.0(eslint@9.35.0(jiti@2.4.0)) - eslint-plugin-toml: 0.12.0(eslint@9.35.0(jiti@2.4.0)) - eslint-plugin-unicorn: 61.0.2(eslint@9.35.0(jiti@2.4.0)) - eslint-plugin-unused-imports: 4.2.0(@typescript-eslint/eslint-plugin@8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.35.0(jiti@2.4.0)) - eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.35.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.35.0(jiti@2.4.0))) - eslint-plugin-yml: 1.18.0(eslint@9.35.0(jiti@2.4.0)) - eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.35.0(jiti@2.4.0)) + eslint-plugin-perfectionist: 4.15.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) + eslint-plugin-pnpm: 1.1.1(eslint@9.36.0(jiti@2.4.0)) + eslint-plugin-regexp: 2.10.0(eslint@9.36.0(jiti@2.4.0)) + eslint-plugin-toml: 0.12.0(eslint@9.36.0(jiti@2.4.0)) + eslint-plugin-unicorn: 61.0.2(eslint@9.36.0(jiti@2.4.0)) + eslint-plugin-unused-imports: 4.2.0(@typescript-eslint/eslint-plugin@8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0)) + eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.36.0(jiti@2.4.0))) + eslint-plugin-yml: 1.18.0(eslint@9.36.0(jiti@2.4.0)) + eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.36.0(jiti@2.4.0)) globals: 16.3.0 jsonc-eslint-parser: 2.4.0 local-pkg: 1.1.2 parse-gitignore: 2.0.0 toml-eslint-parser: 0.10.0 - vue-eslint-parser: 10.2.0(eslint@9.35.0(jiti@2.4.0)) + vue-eslint-parser: 10.2.0(eslint@9.36.0(jiti@2.4.0)) yaml-eslint-parser: 1.3.0 transitivePeerDependencies: - '@eslint/json' @@ -3996,7 +3986,7 @@ snapshots: '@babel/traverse': 7.27.4 '@babel/types': 7.28.2 convert-source-map: 2.0.0 - debug: 4.4.1 + debug: 4.4.3 gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -4163,7 +4153,7 @@ snapshots: '@babel/parser': 7.28.4 '@babel/template': 7.27.2 '@babel/types': 7.28.2 - debug: 4.4.2 + debug: 4.4.3 globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -4298,32 +4288,27 @@ snapshots: '@esbuild/win32-x64@0.25.5': optional: true - '@eslint-community/eslint-plugin-eslint-comments@4.5.0(eslint@9.35.0(jiti@2.4.0))': + '@eslint-community/eslint-plugin-eslint-comments@4.5.0(eslint@9.36.0(jiti@2.4.0))': dependencies: escape-string-regexp: 4.0.0 - eslint: 9.35.0(jiti@2.4.0) + eslint: 9.36.0(jiti@2.4.0) ignore: 5.3.2 - '@eslint-community/eslint-utils@4.8.0(eslint@9.35.0(jiti@2.4.0))': + '@eslint-community/eslint-utils@4.9.0(eslint@9.36.0(jiti@2.4.0))': dependencies: - eslint: 9.35.0(jiti@2.4.0) - eslint-visitor-keys: 3.4.3 - - '@eslint-community/eslint-utils@4.9.0(eslint@9.35.0(jiti@2.4.0))': - dependencies: - eslint: 9.35.0(jiti@2.4.0) + eslint: 9.36.0(jiti@2.4.0) eslint-visitor-keys: 3.4.3 '@eslint-community/regexpp@4.12.1': {} - '@eslint/compat@1.3.2(eslint@9.35.0(jiti@2.4.0))': + '@eslint/compat@1.3.2(eslint@9.36.0(jiti@2.4.0))': optionalDependencies: - eslint: 9.35.0(jiti@2.4.0) + eslint: 9.36.0(jiti@2.4.0) '@eslint/config-array@0.21.0': dependencies: '@eslint/object-schema': 2.1.6 - debug: 4.4.1 + debug: 4.4.3 minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -4337,18 +4322,18 @@ snapshots: '@eslint/eslintrc@3.3.1': dependencies: ajv: 6.12.6 - debug: 4.4.1 + debug: 4.4.3 espree: 10.4.0 globals: 14.0.0 ignore: 5.3.2 - import-fresh: 3.3.0 + import-fresh: 3.3.1 js-yaml: 4.1.0 minimatch: 3.1.2 strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color - '@eslint/js@9.35.0': {} + '@eslint/js@9.36.0': {} '@eslint/markdown@7.2.0': dependencies: @@ -4377,7 +4362,7 @@ snapshots: graphql: 16.11.0 tslib: 2.6.3 - '@graphql-codegen/cli@6.0.0(@types/node@22.18.1)(graphql@16.11.0)(typescript@5.9.2)': + '@graphql-codegen/cli@6.0.0(@types/node@22.18.6)(graphql@16.11.0)(typescript@5.9.2)': dependencies: '@babel/generator': 7.27.5 '@babel/template': 7.27.2 @@ -4388,20 +4373,20 @@ snapshots: '@graphql-tools/apollo-engine-loader': 8.0.4(graphql@16.11.0) '@graphql-tools/code-file-loader': 8.1.5(graphql@16.11.0) '@graphql-tools/git-loader': 8.0.9(graphql@16.11.0) - '@graphql-tools/github-loader': 8.0.4(@types/node@22.18.1)(graphql@16.11.0) + '@graphql-tools/github-loader': 8.0.4(@types/node@22.18.6)(graphql@16.11.0) '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.1)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.6)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) - '@inquirer/prompts': 7.8.4(@types/node@22.18.1) + '@inquirer/prompts': 7.8.4(@types/node@22.18.6) '@whatwg-node/fetch': 0.10.1 chalk: 4.1.2 cosmiconfig: 9.0.0(typescript@5.9.2) debounce: 2.2.0 detect-indent: 6.1.0 graphql: 16.11.0 - graphql-config: 5.1.3(@types/node@22.18.1)(graphql@16.11.0)(typescript@5.9.2) + graphql-config: 5.1.3(@types/node@22.18.6)(graphql@16.11.0)(typescript@5.9.2) is-glob: 4.0.3 jiti: 2.4.0 json-to-pretty-yaml: 1.2.2 @@ -4588,14 +4573,14 @@ snapshots: - bufferutil - utf-8-validate - '@graphql-tools/executor-http@1.1.9(@types/node@22.18.1)(graphql@16.11.0)': + '@graphql-tools/executor-http@1.1.9(@types/node@22.18.6)(graphql@16.11.0)': dependencies: '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/fetch': 0.10.1 extract-files: 11.0.0 graphql: 16.11.0 - meros: 1.3.0(@types/node@22.18.1) + meros: 1.3.0(@types/node@22.18.6) tslib: 2.8.1 value-or-promise: 1.0.12 transitivePeerDependencies: @@ -4634,10 +4619,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@graphql-tools/github-loader@8.0.4(@types/node@22.18.1)(graphql@16.11.0)': + '@graphql-tools/github-loader@8.0.4(@types/node@22.18.6)(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.1)(graphql@16.11.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.6)(graphql@16.11.0) '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@whatwg-node/fetch': 0.10.1 @@ -4721,11 +4706,11 @@ snapshots: graphql: 16.11.0 tslib: 2.8.1 - '@graphql-tools/url-loader@8.0.15(@types/node@22.18.1)(graphql@16.11.0)': + '@graphql-tools/url-loader@8.0.15(@types/node@22.18.6)(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/executor-graphql-ws': 1.3.2(graphql@16.11.0) - '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.1)(graphql@16.11.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.6)(graphql@16.11.0) '@graphql-tools/executor-legacy-ws': 1.1.2(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@graphql-tools/wrap': 10.0.16(graphql@16.11.0) @@ -4766,38 +4751,36 @@ snapshots: '@humanfs/core@0.19.1': {} - '@humanfs/node@0.16.6': + '@humanfs/node@0.16.7': dependencies: '@humanfs/core': 0.19.1 - '@humanwhocodes/retry': 0.3.1 + '@humanwhocodes/retry': 0.4.3 '@humanwhocodes/module-importer@1.0.1': {} - '@humanwhocodes/retry@0.3.1': {} + '@humanwhocodes/retry@0.4.3': {} - '@humanwhocodes/retry@0.4.2': {} - - '@inquirer/checkbox@4.2.2(@types/node@22.18.1)': + '@inquirer/checkbox@4.2.2(@types/node@22.18.6)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.1) + '@inquirer/core': 10.2.0(@types/node@22.18.6) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.1) + '@inquirer/type': 3.0.8(@types/node@22.18.6) ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.1 + '@types/node': 22.18.6 - '@inquirer/confirm@5.1.16(@types/node@22.18.1)': + '@inquirer/confirm@5.1.16(@types/node@22.18.6)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.1) - '@inquirer/type': 3.0.8(@types/node@22.18.1) + '@inquirer/core': 10.2.0(@types/node@22.18.6) + '@inquirer/type': 3.0.8(@types/node@22.18.6) optionalDependencies: - '@types/node': 22.18.1 + '@types/node': 22.18.6 - '@inquirer/core@10.2.0(@types/node@22.18.1)': + '@inquirer/core@10.2.0(@types/node@22.18.6)': dependencies: '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.1) + '@inquirer/type': 3.0.8(@types/node@22.18.6) ansi-escapes: 4.3.2 cli-width: 4.1.0 mute-stream: 2.0.0 @@ -4805,100 +4788,100 @@ snapshots: wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.1 + '@types/node': 22.18.6 - '@inquirer/editor@4.2.18(@types/node@22.18.1)': + '@inquirer/editor@4.2.18(@types/node@22.18.6)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.1) - '@inquirer/external-editor': 1.0.1(@types/node@22.18.1) - '@inquirer/type': 3.0.8(@types/node@22.18.1) + '@inquirer/core': 10.2.0(@types/node@22.18.6) + '@inquirer/external-editor': 1.0.1(@types/node@22.18.6) + '@inquirer/type': 3.0.8(@types/node@22.18.6) optionalDependencies: - '@types/node': 22.18.1 + '@types/node': 22.18.6 - '@inquirer/expand@4.0.18(@types/node@22.18.1)': + '@inquirer/expand@4.0.18(@types/node@22.18.6)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.1) - '@inquirer/type': 3.0.8(@types/node@22.18.1) + '@inquirer/core': 10.2.0(@types/node@22.18.6) + '@inquirer/type': 3.0.8(@types/node@22.18.6) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.1 + '@types/node': 22.18.6 - '@inquirer/external-editor@1.0.1(@types/node@22.18.1)': + '@inquirer/external-editor@1.0.1(@types/node@22.18.6)': dependencies: chardet: 2.1.0 iconv-lite: 0.6.3 optionalDependencies: - '@types/node': 22.18.1 + '@types/node': 22.18.6 '@inquirer/figures@1.0.13': {} - '@inquirer/input@4.2.2(@types/node@22.18.1)': + '@inquirer/input@4.2.2(@types/node@22.18.6)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.1) - '@inquirer/type': 3.0.8(@types/node@22.18.1) + '@inquirer/core': 10.2.0(@types/node@22.18.6) + '@inquirer/type': 3.0.8(@types/node@22.18.6) optionalDependencies: - '@types/node': 22.18.1 + '@types/node': 22.18.6 - '@inquirer/number@3.0.18(@types/node@22.18.1)': + '@inquirer/number@3.0.18(@types/node@22.18.6)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.1) - '@inquirer/type': 3.0.8(@types/node@22.18.1) + '@inquirer/core': 10.2.0(@types/node@22.18.6) + '@inquirer/type': 3.0.8(@types/node@22.18.6) optionalDependencies: - '@types/node': 22.18.1 + '@types/node': 22.18.6 - '@inquirer/password@4.0.18(@types/node@22.18.1)': + '@inquirer/password@4.0.18(@types/node@22.18.6)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.1) - '@inquirer/type': 3.0.8(@types/node@22.18.1) + '@inquirer/core': 10.2.0(@types/node@22.18.6) + '@inquirer/type': 3.0.8(@types/node@22.18.6) ansi-escapes: 4.3.2 optionalDependencies: - '@types/node': 22.18.1 - - '@inquirer/prompts@7.8.4(@types/node@22.18.1)': - dependencies: - '@inquirer/checkbox': 4.2.2(@types/node@22.18.1) - '@inquirer/confirm': 5.1.16(@types/node@22.18.1) - '@inquirer/editor': 4.2.18(@types/node@22.18.1) - '@inquirer/expand': 4.0.18(@types/node@22.18.1) - '@inquirer/input': 4.2.2(@types/node@22.18.1) - '@inquirer/number': 3.0.18(@types/node@22.18.1) - '@inquirer/password': 4.0.18(@types/node@22.18.1) - '@inquirer/rawlist': 4.1.6(@types/node@22.18.1) - '@inquirer/search': 3.1.1(@types/node@22.18.1) - '@inquirer/select': 4.3.2(@types/node@22.18.1) + '@types/node': 22.18.6 + + '@inquirer/prompts@7.8.4(@types/node@22.18.6)': + dependencies: + '@inquirer/checkbox': 4.2.2(@types/node@22.18.6) + '@inquirer/confirm': 5.1.16(@types/node@22.18.6) + '@inquirer/editor': 4.2.18(@types/node@22.18.6) + '@inquirer/expand': 4.0.18(@types/node@22.18.6) + '@inquirer/input': 4.2.2(@types/node@22.18.6) + '@inquirer/number': 3.0.18(@types/node@22.18.6) + '@inquirer/password': 4.0.18(@types/node@22.18.6) + '@inquirer/rawlist': 4.1.6(@types/node@22.18.6) + '@inquirer/search': 3.1.1(@types/node@22.18.6) + '@inquirer/select': 4.3.2(@types/node@22.18.6) optionalDependencies: - '@types/node': 22.18.1 + '@types/node': 22.18.6 - '@inquirer/rawlist@4.1.6(@types/node@22.18.1)': + '@inquirer/rawlist@4.1.6(@types/node@22.18.6)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.1) - '@inquirer/type': 3.0.8(@types/node@22.18.1) + '@inquirer/core': 10.2.0(@types/node@22.18.6) + '@inquirer/type': 3.0.8(@types/node@22.18.6) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.1 + '@types/node': 22.18.6 - '@inquirer/search@3.1.1(@types/node@22.18.1)': + '@inquirer/search@3.1.1(@types/node@22.18.6)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.1) + '@inquirer/core': 10.2.0(@types/node@22.18.6) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.1) + '@inquirer/type': 3.0.8(@types/node@22.18.6) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.1 + '@types/node': 22.18.6 - '@inquirer/select@4.3.2(@types/node@22.18.1)': + '@inquirer/select@4.3.2(@types/node@22.18.6)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.1) + '@inquirer/core': 10.2.0(@types/node@22.18.6) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.1) + '@inquirer/type': 3.0.8(@types/node@22.18.6) ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.1 + '@types/node': 22.18.6 - '@inquirer/type@3.0.8(@types/node@22.18.1)': + '@inquirer/type@3.0.8(@types/node@22.18.6)': optionalDependencies: - '@types/node': 22.18.1 + '@types/node': 22.18.6 '@isaacs/cliui@8.0.2': dependencies: @@ -4922,7 +4905,7 @@ snapshots: '@jest/console@30.1.2': dependencies: '@jest/types': 30.0.5 - '@types/node': 22.18.1 + '@types/node': 22.18.6 chalk: 4.1.2 jest-message-util: 30.1.0 jest-util: 30.0.5 @@ -4936,14 +4919,14 @@ snapshots: '@jest/test-result': 30.1.3 '@jest/transform': 30.1.2 '@jest/types': 30.0.5 - '@types/node': 22.18.1 + '@types/node': 22.18.6 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 4.3.0 exit-x: 0.2.2 graceful-fs: 4.2.11 jest-changed-files: 30.0.5 - jest-config: 30.1.3(@types/node@22.18.1) + jest-config: 30.1.3(@types/node@22.18.6) jest-haste-map: 30.1.0 jest-message-util: 30.1.0 jest-regex-util: 30.0.1 @@ -4970,7 +4953,7 @@ snapshots: dependencies: '@jest/fake-timers': 30.1.2 '@jest/types': 30.0.5 - '@types/node': 22.18.1 + '@types/node': 22.18.6 jest-mock: 30.0.5 '@jest/expect-utils@30.1.2': @@ -4988,7 +4971,7 @@ snapshots: dependencies: '@jest/types': 30.0.5 '@sinonjs/fake-timers': 13.0.5 - '@types/node': 22.18.1 + '@types/node': 22.18.6 jest-message-util: 30.1.0 jest-mock: 30.0.5 jest-util: 30.0.5 @@ -5006,7 +4989,7 @@ snapshots: '@jest/pattern@30.0.1': dependencies: - '@types/node': 22.18.1 + '@types/node': 22.18.6 jest-regex-util: 30.0.1 '@jest/reporters@30.1.3': @@ -5017,7 +5000,7 @@ snapshots: '@jest/transform': 30.1.2 '@jest/types': 30.0.5 '@jridgewell/trace-mapping': 0.3.25 - '@types/node': 22.18.1 + '@types/node': 22.18.6 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit-x: 0.2.2 @@ -5094,7 +5077,7 @@ snapshots: '@jest/schemas': 30.0.5 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 22.18.1 + '@types/node': 22.18.6 '@types/yargs': 17.0.33 chalk: 4.1.2 @@ -5215,11 +5198,11 @@ snapshots: dependencies: '@sinonjs/commons': 3.0.1 - '@stylistic/eslint-plugin@5.3.1(eslint@9.35.0(jiti@2.4.0))': + '@stylistic/eslint-plugin@5.3.1(eslint@9.36.0(jiti@2.4.0))': dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.4.0)) '@typescript-eslint/types': 8.42.0 - eslint: 9.35.0(jiti@2.4.0) + eslint: 9.36.0(jiti@2.4.0) eslint-visitor-keys: 4.2.1 espree: 10.4.0 estraverse: 5.3.0 @@ -5287,7 +5270,7 @@ snapshots: '@types/ms@2.1.0': {} - '@types/node@22.18.1': + '@types/node@22.18.6': dependencies: undici-types: 6.21.0 @@ -5297,7 +5280,7 @@ snapshots: '@types/ws@8.5.13': dependencies: - '@types/node': 22.18.1 + '@types/node': 22.18.6 '@types/yargs-parser@21.0.3': {} @@ -5305,15 +5288,15 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/eslint-plugin@8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/parser': 8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) '@typescript-eslint/scope-manager': 8.42.0 - '@typescript-eslint/type-utils': 8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2) - '@typescript-eslint/utils': 8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/type-utils': 8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/utils': 8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) '@typescript-eslint/visitor-keys': 8.42.0 - eslint: 9.35.0(jiti@2.4.0) + eslint: 9.36.0(jiti@2.4.0) graphemer: 1.4.0 ignore: 7.0.5 natural-compare: 1.4.0 @@ -5322,14 +5305,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/parser@8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: '@typescript-eslint/scope-manager': 8.42.0 '@typescript-eslint/types': 8.42.0 '@typescript-eslint/typescript-estree': 8.42.0(typescript@5.9.2) '@typescript-eslint/visitor-keys': 8.42.0 - debug: 4.4.2 - eslint: 9.35.0(jiti@2.4.0) + debug: 4.4.3 + eslint: 9.36.0(jiti@2.4.0) typescript: 5.9.2 transitivePeerDependencies: - supports-color @@ -5338,7 +5321,7 @@ snapshots: dependencies: '@typescript-eslint/tsconfig-utils': 8.42.0(typescript@5.9.2) '@typescript-eslint/types': 8.42.0 - debug: 4.4.2 + debug: 4.4.3 typescript: 5.9.2 transitivePeerDependencies: - supports-color @@ -5352,13 +5335,13 @@ snapshots: dependencies: typescript: 5.9.2 - '@typescript-eslint/type-utils@8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/type-utils@8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: '@typescript-eslint/types': 8.42.0 '@typescript-eslint/typescript-estree': 8.42.0(typescript@5.9.2) - '@typescript-eslint/utils': 8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2) - debug: 4.4.2 - eslint: 9.35.0(jiti@2.4.0) + '@typescript-eslint/utils': 8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) + debug: 4.4.3 + eslint: 9.36.0(jiti@2.4.0) ts-api-utils: 2.1.0(typescript@5.9.2) typescript: 5.9.2 transitivePeerDependencies: @@ -5372,7 +5355,7 @@ snapshots: '@typescript-eslint/tsconfig-utils': 8.42.0(typescript@5.9.2) '@typescript-eslint/types': 8.42.0 '@typescript-eslint/visitor-keys': 8.42.0 - debug: 4.4.2 + debug: 4.4.3 fast-glob: 3.3.3 is-glob: 4.0.3 minimatch: 9.0.5 @@ -5382,13 +5365,13 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/utils@8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.4.0)) '@typescript-eslint/scope-manager': 8.42.0 '@typescript-eslint/types': 8.42.0 '@typescript-eslint/typescript-estree': 8.42.0(typescript@5.9.2) - eslint: 9.35.0(jiti@2.4.0) + eslint: 9.36.0(jiti@2.4.0) typescript: 5.9.2 transitivePeerDependencies: - supports-color @@ -5453,14 +5436,14 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.9(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.3.9(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.42.0 - '@typescript-eslint/utils': 8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2) - eslint: 9.35.0(jiti@2.4.0) + '@typescript-eslint/utils': 8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) + eslint: 9.36.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.2 - vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1) + vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color @@ -5472,13 +5455,13 @@ snapshots: chai: 5.2.0 tinyrainbow: 2.0.0 - '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@vitest/spy': 3.2.4 estree-walker: 3.0.3 magic-string: 0.30.17 optionalDependencies: - vite: 6.3.5(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1) '@vitest/pretty-format@3.2.4': dependencies: @@ -5668,7 +5651,7 @@ snapshots: boolbase@1.0.0: {} - brace-expansion@1.1.11: + brace-expansion@1.1.12: dependencies: balanced-match: 1.0.2 concat-map: 0.0.1 @@ -5839,7 +5822,7 @@ snapshots: cosmiconfig@8.3.6(typescript@5.9.2): dependencies: - import-fresh: 3.3.0 + import-fresh: 3.3.1 js-yaml: 4.1.0 parse-json: 5.2.0 path-type: 4.0.0 @@ -5849,7 +5832,7 @@ snapshots: cosmiconfig@9.0.0(typescript@5.9.2): dependencies: env-paths: 2.2.1 - import-fresh: 3.3.0 + import-fresh: 3.3.1 js-yaml: 4.1.0 parse-json: 5.2.0 optionalDependencies: @@ -5881,7 +5864,7 @@ snapshots: dependencies: ms: 2.1.3 - debug@4.4.2: + debug@4.4.3: dependencies: ms: 2.1.3 @@ -5989,67 +5972,67 @@ snapshots: escape-string-regexp@5.0.0: {} - eslint-compat-utils@0.5.1(eslint@9.35.0(jiti@2.4.0)): + eslint-compat-utils@0.5.1(eslint@9.36.0(jiti@2.4.0)): dependencies: - eslint: 9.35.0(jiti@2.4.0) + eslint: 9.36.0(jiti@2.4.0) semver: 7.7.2 - eslint-compat-utils@0.6.5(eslint@9.35.0(jiti@2.4.0)): + eslint-compat-utils@0.6.5(eslint@9.36.0(jiti@2.4.0)): dependencies: - eslint: 9.35.0(jiti@2.4.0) + eslint: 9.36.0(jiti@2.4.0) semver: 7.7.2 - eslint-config-flat-gitignore@2.1.0(eslint@9.35.0(jiti@2.4.0)): + eslint-config-flat-gitignore@2.1.0(eslint@9.36.0(jiti@2.4.0)): dependencies: - '@eslint/compat': 1.3.2(eslint@9.35.0(jiti@2.4.0)) - eslint: 9.35.0(jiti@2.4.0) + '@eslint/compat': 1.3.2(eslint@9.36.0(jiti@2.4.0)) + eslint: 9.36.0(jiti@2.4.0) eslint-flat-config-utils@2.1.1: dependencies: pathe: 2.0.3 - eslint-json-compat-utils@0.2.1(eslint@9.35.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0): + eslint-json-compat-utils@0.2.1(eslint@9.36.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0): dependencies: - eslint: 9.35.0(jiti@2.4.0) + eslint: 9.36.0(jiti@2.4.0) esquery: 1.6.0 jsonc-eslint-parser: 2.4.0 - eslint-merge-processors@2.0.0(eslint@9.35.0(jiti@2.4.0)): + eslint-merge-processors@2.0.0(eslint@9.36.0(jiti@2.4.0)): dependencies: - eslint: 9.35.0(jiti@2.4.0) + eslint: 9.36.0(jiti@2.4.0) - eslint-plugin-antfu@3.1.1(eslint@9.35.0(jiti@2.4.0)): + eslint-plugin-antfu@3.1.1(eslint@9.36.0(jiti@2.4.0)): dependencies: - eslint: 9.35.0(jiti@2.4.0) + eslint: 9.36.0(jiti@2.4.0) - eslint-plugin-command@3.3.1(eslint@9.35.0(jiti@2.4.0)): + eslint-plugin-command@3.3.1(eslint@9.36.0(jiti@2.4.0)): dependencies: '@es-joy/jsdoccomment': 0.50.2 - eslint: 9.35.0(jiti@2.4.0) + eslint: 9.36.0(jiti@2.4.0) - eslint-plugin-es-x@7.8.0(eslint@9.35.0(jiti@2.4.0)): + eslint-plugin-es-x@7.8.0(eslint@9.36.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.1 - eslint: 9.35.0(jiti@2.4.0) - eslint-compat-utils: 0.5.1(eslint@9.35.0(jiti@2.4.0)) + eslint: 9.36.0(jiti@2.4.0) + eslint-compat-utils: 0.5.1(eslint@9.36.0(jiti@2.4.0)) - eslint-plugin-import-lite@0.3.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2): + eslint-plugin-import-lite@0.3.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.4.0)) '@typescript-eslint/types': 8.42.0 - eslint: 9.35.0(jiti@2.4.0) + eslint: 9.36.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.2 - eslint-plugin-jsdoc@54.7.0(eslint@9.35.0(jiti@2.4.0)): + eslint-plugin-jsdoc@54.7.0(eslint@9.36.0(jiti@2.4.0)): dependencies: '@es-joy/jsdoccomment': 0.56.0 are-docs-informative: 0.0.2 comment-parser: 1.4.1 - debug: 4.4.2 + debug: 4.4.3 escape-string-regexp: 4.0.0 - eslint: 9.35.0(jiti@2.4.0) + eslint: 9.36.0(jiti@2.4.0) espree: 10.4.0 esquery: 1.6.0 parse-imports-exports: 0.2.4 @@ -6058,12 +6041,12 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-jsonc@2.20.1(eslint@9.35.0(jiti@2.4.0)): + eslint-plugin-jsonc@2.20.1(eslint@9.36.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.4.0)) - eslint: 9.35.0(jiti@2.4.0) - eslint-compat-utils: 0.6.5(eslint@9.35.0(jiti@2.4.0)) - eslint-json-compat-utils: 0.2.1(eslint@9.35.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.4.0)) + eslint: 9.36.0(jiti@2.4.0) + eslint-compat-utils: 0.6.5(eslint@9.36.0(jiti@2.4.0)) + eslint-json-compat-utils: 0.2.1(eslint@9.36.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0) espree: 10.4.0 graphemer: 1.4.0 jsonc-eslint-parser: 2.4.0 @@ -6072,12 +6055,12 @@ snapshots: transitivePeerDependencies: - '@eslint/json' - eslint-plugin-n@17.21.3(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2): + eslint-plugin-n@17.21.3(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.4.0)) enhanced-resolve: 5.18.3 - eslint: 9.35.0(jiti@2.4.0) - eslint-plugin-es-x: 7.8.0(eslint@9.35.0(jiti@2.4.0)) + eslint: 9.36.0(jiti@2.4.0) + eslint-plugin-es-x: 7.8.0(eslint@9.36.0(jiti@2.4.0)) get-tsconfig: 4.10.1 globals: 15.15.0 globrex: 0.1.2 @@ -6089,57 +6072,57 @@ snapshots: eslint-plugin-no-only-tests@3.3.0: {} - eslint-plugin-perfectionist@4.15.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2): + eslint-plugin-perfectionist@4.15.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2): dependencies: '@typescript-eslint/types': 8.42.0 - '@typescript-eslint/utils': 8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2) - eslint: 9.35.0(jiti@2.4.0) + '@typescript-eslint/utils': 8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) + eslint: 9.36.0(jiti@2.4.0) natural-orderby: 5.0.0 transitivePeerDependencies: - supports-color - typescript - eslint-plugin-pnpm@1.1.1(eslint@9.35.0(jiti@2.4.0)): + eslint-plugin-pnpm@1.1.1(eslint@9.36.0(jiti@2.4.0)): dependencies: empathic: 2.0.0 - eslint: 9.35.0(jiti@2.4.0) + eslint: 9.36.0(jiti@2.4.0) jsonc-eslint-parser: 2.4.0 pathe: 2.0.3 pnpm-workspace-yaml: 1.1.1 tinyglobby: 0.2.15 yaml-eslint-parser: 1.3.0 - eslint-plugin-regexp@2.10.0(eslint@9.35.0(jiti@2.4.0)): + eslint-plugin-regexp@2.10.0(eslint@9.36.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.1 comment-parser: 1.4.1 - eslint: 9.35.0(jiti@2.4.0) + eslint: 9.36.0(jiti@2.4.0) jsdoc-type-pratt-parser: 4.8.0 refa: 0.12.1 regexp-ast-analysis: 0.7.1 scslre: 0.3.0 - eslint-plugin-toml@0.12.0(eslint@9.35.0(jiti@2.4.0)): + eslint-plugin-toml@0.12.0(eslint@9.36.0(jiti@2.4.0)): dependencies: - debug: 4.4.2 - eslint: 9.35.0(jiti@2.4.0) - eslint-compat-utils: 0.6.5(eslint@9.35.0(jiti@2.4.0)) + debug: 4.4.3 + eslint: 9.36.0(jiti@2.4.0) + eslint-compat-utils: 0.6.5(eslint@9.36.0(jiti@2.4.0)) lodash: 4.17.21 toml-eslint-parser: 0.10.0 transitivePeerDependencies: - supports-color - eslint-plugin-unicorn@61.0.2(eslint@9.35.0(jiti@2.4.0)): + eslint-plugin-unicorn@61.0.2(eslint@9.36.0(jiti@2.4.0)): dependencies: '@babel/helper-validator-identifier': 7.27.1 - '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.4.0)) '@eslint/plugin-kit': 0.3.5 change-case: 5.4.4 ci-info: 4.3.0 clean-regexp: 1.0.0 core-js-compat: 3.45.1 - eslint: 9.35.0(jiti@2.4.0) + eslint: 9.36.0(jiti@2.4.0) esquery: 1.6.0 find-up-simple: 1.0.1 globals: 16.3.0 @@ -6152,40 +6135,40 @@ snapshots: semver: 7.7.2 strip-indent: 4.0.0 - eslint-plugin-unused-imports@4.2.0(@typescript-eslint/eslint-plugin@8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.35.0(jiti@2.4.0)): + eslint-plugin-unused-imports@4.2.0(@typescript-eslint/eslint-plugin@8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0)): dependencies: - eslint: 9.35.0(jiti@2.4.0) + eslint: 9.36.0(jiti@2.4.0) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/eslint-plugin': 8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) - eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.35.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.35.0(jiti@2.4.0))): + eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.36.0(jiti@2.4.0))): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.4.0)) - eslint: 9.35.0(jiti@2.4.0) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.4.0)) + eslint: 9.36.0(jiti@2.4.0) natural-compare: 1.4.0 nth-check: 2.1.1 postcss-selector-parser: 6.1.2 semver: 7.7.2 - vue-eslint-parser: 10.2.0(eslint@9.35.0(jiti@2.4.0)) + vue-eslint-parser: 10.2.0(eslint@9.36.0(jiti@2.4.0)) xml-name-validator: 4.0.0 optionalDependencies: - '@typescript-eslint/parser': 8.42.0(eslint@9.35.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/parser': 8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) - eslint-plugin-yml@1.18.0(eslint@9.35.0(jiti@2.4.0)): + eslint-plugin-yml@1.18.0(eslint@9.36.0(jiti@2.4.0)): dependencies: - debug: 4.4.2 + debug: 4.4.3 escape-string-regexp: 4.0.0 - eslint: 9.35.0(jiti@2.4.0) - eslint-compat-utils: 0.6.5(eslint@9.35.0(jiti@2.4.0)) + eslint: 9.36.0(jiti@2.4.0) + eslint-compat-utils: 0.6.5(eslint@9.36.0(jiti@2.4.0)) natural-compare: 1.4.0 yaml-eslint-parser: 1.3.0 transitivePeerDependencies: - supports-color - eslint-processor-vue-blocks@2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.35.0(jiti@2.4.0)): + eslint-processor-vue-blocks@2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.36.0(jiti@2.4.0)): dependencies: '@vue/compiler-sfc': 3.5.12 - eslint: 9.35.0(jiti@2.4.0) + eslint: 9.36.0(jiti@2.4.0) eslint-scope@8.4.0: dependencies: @@ -6196,25 +6179,25 @@ snapshots: eslint-visitor-keys@4.2.1: {} - eslint@9.35.0(jiti@2.4.0): + eslint@9.36.0(jiti@2.4.0): dependencies: - '@eslint-community/eslint-utils': 4.8.0(eslint@9.35.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.1 '@eslint/config-array': 0.21.0 '@eslint/config-helpers': 0.3.1 '@eslint/core': 0.15.2 '@eslint/eslintrc': 3.3.1 - '@eslint/js': 9.35.0 + '@eslint/js': 9.36.0 '@eslint/plugin-kit': 0.3.5 - '@humanfs/node': 0.16.6 + '@humanfs/node': 0.16.7 '@humanwhocodes/module-importer': 1.0.1 - '@humanwhocodes/retry': 0.4.2 + '@humanwhocodes/retry': 0.4.3 '@types/estree': 1.0.8 '@types/json-schema': 7.0.15 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.6 - debug: 4.4.1 + debug: 4.4.3 escape-string-regexp: 4.0.0 eslint-scope: 8.4.0 eslint-visitor-keys: 4.2.1 @@ -6377,10 +6360,10 @@ snapshots: flat-cache@4.0.1: dependencies: - flatted: 3.3.1 + flatted: 3.3.3 keyv: 4.5.4 - flatted@3.3.1: {} + flatted@3.3.3: {} foreground-child@3.3.1: dependencies: @@ -6463,13 +6446,13 @@ snapshots: dependencies: lodash: 4.17.21 - graphql-config@5.1.3(@types/node@22.18.1)(graphql@16.11.0)(typescript@5.9.2): + graphql-config@5.1.3(@types/node@22.18.6)(graphql@16.11.0)(typescript@5.9.2): dependencies: '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) '@graphql-tools/merge': 9.0.24(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.1)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.6)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) cosmiconfig: 8.3.6(typescript@5.9.2) graphql: 16.11.0 @@ -6525,7 +6508,7 @@ snapshots: immutable@3.7.6: {} - import-fresh@3.3.0: + import-fresh@3.3.1: dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 @@ -6632,7 +6615,7 @@ snapshots: istanbul-lib-source-maps@5.0.6: dependencies: '@jridgewell/trace-mapping': 0.3.25 - debug: 4.4.1 + debug: 4.4.3 istanbul-lib-coverage: 3.2.2 transitivePeerDependencies: - supports-color @@ -6660,7 +6643,7 @@ snapshots: '@jest/expect': 30.1.2 '@jest/test-result': 30.1.3 '@jest/types': 30.0.5 - '@types/node': 22.18.1 + '@types/node': 22.18.6 chalk: 4.1.2 co: 4.6.0 dedent: 1.6.0 @@ -6680,7 +6663,7 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@30.1.3(@types/node@22.18.1): + jest-cli@30.1.3(@types/node@22.18.6): dependencies: '@jest/core': 30.1.3 '@jest/test-result': 30.1.3 @@ -6688,7 +6671,7 @@ snapshots: chalk: 4.1.2 exit-x: 0.2.2 import-local: 3.2.0 - jest-config: 30.1.3(@types/node@22.18.1) + jest-config: 30.1.3(@types/node@22.18.6) jest-util: 30.0.5 jest-validate: 30.1.0 yargs: 17.7.2 @@ -6699,7 +6682,7 @@ snapshots: - supports-color - ts-node - jest-config@30.1.3(@types/node@22.18.1): + jest-config@30.1.3(@types/node@22.18.6): dependencies: '@babel/core': 7.27.4 '@jest/get-type': 30.1.0 @@ -6726,7 +6709,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 22.18.1 + '@types/node': 22.18.6 transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -6755,7 +6738,7 @@ snapshots: '@jest/environment': 30.1.2 '@jest/fake-timers': 30.1.2 '@jest/types': 30.0.5 - '@types/node': 22.18.1 + '@types/node': 22.18.6 jest-mock: 30.0.5 jest-util: 30.0.5 jest-validate: 30.1.0 @@ -6763,7 +6746,7 @@ snapshots: jest-haste-map@30.1.0: dependencies: '@jest/types': 30.0.5 - '@types/node': 22.18.1 + '@types/node': 22.18.6 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -6802,7 +6785,7 @@ snapshots: jest-mock@30.0.5: dependencies: '@jest/types': 30.0.5 - '@types/node': 22.18.1 + '@types/node': 22.18.6 jest-util: 30.0.5 jest-pnp-resolver@1.2.3(jest-resolve@30.1.3): @@ -6836,7 +6819,7 @@ snapshots: '@jest/test-result': 30.1.3 '@jest/transform': 30.1.2 '@jest/types': 30.0.5 - '@types/node': 22.18.1 + '@types/node': 22.18.6 chalk: 4.1.2 emittery: 0.13.1 exit-x: 0.2.2 @@ -6865,7 +6848,7 @@ snapshots: '@jest/test-result': 30.1.3 '@jest/transform': 30.1.2 '@jest/types': 30.0.5 - '@types/node': 22.18.1 + '@types/node': 22.18.6 chalk: 4.1.2 cjs-module-lexer: 2.1.0 collect-v8-coverage: 1.0.2 @@ -6912,7 +6895,7 @@ snapshots: jest-util@30.0.5: dependencies: '@jest/types': 30.0.5 - '@types/node': 22.18.1 + '@types/node': 22.18.6 chalk: 4.1.2 ci-info: 4.3.0 graceful-fs: 4.2.11 @@ -6931,7 +6914,7 @@ snapshots: dependencies: '@jest/test-result': 30.1.3 '@jest/types': 30.0.5 - '@types/node': 22.18.1 + '@types/node': 22.18.6 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -6940,18 +6923,18 @@ snapshots: jest-worker@30.1.0: dependencies: - '@types/node': 22.18.1 + '@types/node': 22.18.6 '@ungap/structured-clone': 1.3.0 jest-util: 30.0.5 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@30.1.3(@types/node@22.18.1): + jest@30.1.3(@types/node@22.18.6): dependencies: '@jest/core': 30.1.3 '@jest/types': 30.0.5 import-local: 3.2.0 - jest-cli: 30.1.3(@types/node@22.18.1) + jest-cli: 30.1.3(@types/node@22.18.6) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -7228,9 +7211,9 @@ snapshots: merge2@1.4.1: {} - meros@1.3.0(@types/node@22.18.1): + meros@1.3.0(@types/node@22.18.6): optionalDependencies: - '@types/node': 22.18.1 + '@types/node': 22.18.6 micromark-core-commonmark@2.0.3: dependencies: @@ -7411,7 +7394,7 @@ snapshots: micromark@4.0.2: dependencies: '@types/debug': 4.1.12 - debug: 4.4.2 + debug: 4.4.3 decode-named-character-reference: 1.2.0 devlop: 1.1.0 micromark-core-commonmark: 2.0.3 @@ -7443,7 +7426,7 @@ snapshots: minimatch@3.1.2: dependencies: - brace-expansion: 1.1.11 + brace-expansion: 1.1.12 minimatch@9.0.5: dependencies: @@ -7995,12 +7978,12 @@ snapshots: ts-dedent@2.2.0: {} - ts-jest@29.4.1(@babel/core@7.27.4)(@jest/transform@30.1.2)(@jest/types@30.0.5)(babel-jest@30.1.2(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.1.3(@types/node@22.18.1))(typescript@5.9.2): + ts-jest@29.4.4(@babel/core@7.27.4)(@jest/transform@30.1.2)(@jest/types@30.0.5)(babel-jest@30.1.2(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.1.3(@types/node@22.18.6))(typescript@5.9.2): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 handlebars: 4.7.8 - jest: 30.1.3(@types/node@22.18.1) + jest: 30.1.3(@types/node@22.18.6) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -8125,13 +8108,13 @@ snapshots: value-or-promise@1.0.12: {} - vite-node@3.2.4(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1): + vite-node@3.2.4(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1): dependencies: cac: 6.7.14 debug: 4.4.1 es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 6.3.5(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - '@types/node' - jiti @@ -8146,7 +8129,7 @@ snapshots: - tsx - yaml - vite@6.3.5(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1): + vite@6.3.5(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1): dependencies: esbuild: 0.25.5 fdir: 6.4.6(picomatch@4.0.2) @@ -8155,16 +8138,16 @@ snapshots: rollup: 4.43.0 tinyglobby: 0.2.14 optionalDependencies: - '@types/node': 22.18.1 + '@types/node': 22.18.6 fsevents: 2.3.3 jiti: 2.4.0 yaml: 2.8.1 - vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1): + vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1): dependencies: '@types/chai': 5.2.2 '@vitest/expect': 3.2.4 - '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1)) '@vitest/pretty-format': 3.2.4 '@vitest/runner': 3.2.4 '@vitest/snapshot': 3.2.4 @@ -8182,12 +8165,12 @@ snapshots: tinyglobby: 0.2.14 tinypool: 1.1.1 tinyrainbow: 2.0.0 - vite: 6.3.5(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1) - vite-node: 3.2.4(@types/node@22.18.1)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1) + vite-node: 3.2.4(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1) why-is-node-running: 2.3.0 optionalDependencies: '@types/debug': 4.1.12 - '@types/node': 22.18.1 + '@types/node': 22.18.6 transitivePeerDependencies: - jiti - less @@ -8202,10 +8185,10 @@ snapshots: - tsx - yaml - vue-eslint-parser@10.2.0(eslint@9.35.0(jiti@2.4.0)): + vue-eslint-parser@10.2.0(eslint@9.36.0(jiti@2.4.0)): dependencies: - debug: 4.4.2 - eslint: 9.35.0(jiti@2.4.0) + debug: 4.4.3 + eslint: 9.36.0(jiti@2.4.0) eslint-scope: 8.4.0 eslint-visitor-keys: 4.2.1 espree: 10.4.0 @@ -8311,6 +8294,6 @@ snapshots: toposort: 2.0.2 type-fest: 2.19.0 - zod@4.1.5: {} + zod@4.1.9: {} zwitch@2.0.4: {} From 5bc9ad55b244e04cba182d9b9d087a18e3312958 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 20 Sep 2025 08:35:03 +0000 Subject: [PATCH 055/133] chore(deps): update dependency @antfu/eslint-config to v5.4.1 (#1241) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 288 ++++++++++++++++++++++++++++--------------------- 1 file changed, 167 insertions(+), 121 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 761fd216..f6972aaf 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^5.0.0 - version: 5.3.0(@vue/compiler-sfc@3.5.12)(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1)) + version: 5.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.0 version: 6.0.0(@types/node@22.18.6)(graphql@16.11.0)(typescript@5.9.2) @@ -85,8 +85,8 @@ packages: resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - '@antfu/eslint-config@5.3.0': - resolution: {integrity: sha512-VzBemSi453rd06lF6gG6VkpP3HH7XKTf+sK6frSrGm7uMFkN57jry1XB074tQRKB3qOjhpsx3kKpWtOv9e5FnQ==} + '@antfu/eslint-config@5.4.1': + resolution: {integrity: sha512-x7BiNkxJRlXXs8tIvg0CgMuNo5IZVWkGLMJotCtCtzWUHW78Pmm8PvtXhvLBbTc8683GGBK616MMztWLh4RNjA==} hasBin: true peerDependencies: '@eslint-react/eslint-plugin': ^1.38.4 @@ -352,8 +352,8 @@ packages: resolution: {integrity: sha512-YAdE/IJSpwbOTiaURNCKECdAwqrJuFiZhylmesBcIRawtYKnBR2wxPhoIewMg+Yu+QuYvHfJNReWpoxGBKOChA==} engines: {node: '>=18'} - '@es-joy/jsdoccomment@0.56.0': - resolution: {integrity: sha512-c6EW+aA1w2rjqOMjbL93nZlwxp6c1Ln06vTYs5FjRRhmJXK8V/OrSXdT+pUr4aRYgjCgu8/OkiZr0tzeVrRSbw==} + '@es-joy/jsdoccomment@0.58.0': + resolution: {integrity: sha512-smMc5pDht/UVsCD3hhw/a/e/p8m0RdRYiluXToVfd+d4yaQQh7nn9bACjkk6nXJvat7EWPAxuFkMEFfrxeGa3Q==} engines: {node: '>=20.11.0'} '@esbuild/aix-ppc64@0.25.5': @@ -1184,8 +1184,8 @@ packages: '@sinonjs/fake-timers@13.0.5': resolution: {integrity: sha512-36/hTbH2uaWuGVERyC6da9YwGWnzUZXuPro/F2LfsdOsLnCojz/iSH8MxUt/FD2S5XBSVPhmArFUXcpCQ2Hkiw==} - '@stylistic/eslint-plugin@5.3.1': - resolution: {integrity: sha512-Ykums1VYonM0TgkD0VteVq9mrlO2FhF48MDJnPyv3MktIB2ydtuhlO0AfWm7xnW1kyf5bjOqA6xc7JjviuVTxg==} + '@stylistic/eslint-plugin@5.4.0': + resolution: {integrity: sha512-UG8hdElzuBDzIbjG1QDwnYH0MQ73YLXDFHgZzB4Zh/YJfnw8XNsloVtytqzx0I2Qky9THSdpTmi8Vjn/pf/Lew==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: '>=9.0.0' @@ -1262,63 +1262,63 @@ packages: '@types/yargs@17.0.33': resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==} - '@typescript-eslint/eslint-plugin@8.42.0': - resolution: {integrity: sha512-Aq2dPqsQkxHOLfb2OPv43RnIvfj05nw8v/6n3B2NABIPpHnjQnaLo9QGMTvml+tv4korl/Cjfrb/BYhoL8UUTQ==} + '@typescript-eslint/eslint-plugin@8.44.0': + resolution: {integrity: sha512-EGDAOGX+uwwekcS0iyxVDmRV9HX6FLSM5kzrAToLTsr9OWCIKG/y3lQheCq18yZ5Xh78rRKJiEpP0ZaCs4ryOQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - '@typescript-eslint/parser': ^8.42.0 + '@typescript-eslint/parser': ^8.44.0 eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/parser@8.42.0': - resolution: {integrity: sha512-r1XG74QgShUgXph1BYseJ+KZd17bKQib/yF3SR+demvytiRXrwd12Blnz5eYGm8tXaeRdd4x88MlfwldHoudGg==} + '@typescript-eslint/parser@8.44.0': + resolution: {integrity: sha512-VGMpFQGUQWYT9LfnPcX8ouFojyrZ/2w3K5BucvxL/spdNehccKhB4jUyB1yBCXpr2XFm0jkECxgrpXBW2ipoAw==} 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/project-service@8.42.0': - resolution: {integrity: sha512-vfVpLHAhbPjilrabtOSNcUDmBboQNrJUiNAGoImkZKnMjs2TIcWG33s4Ds0wY3/50aZmTMqJa6PiwkwezaAklg==} + '@typescript-eslint/project-service@8.44.0': + resolution: {integrity: sha512-ZeaGNraRsq10GuEohKTo4295Z/SuGcSq2LzfGlqiuEvfArzo/VRrT0ZaJsVPuKZ55lVbNk8U6FcL+ZMH8CoyVA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/scope-manager@8.42.0': - resolution: {integrity: sha512-51+x9o78NBAVgQzOPd17DkNTnIzJ8T/O2dmMBLoK9qbY0Gm52XJcdJcCl18ExBMiHo6jPMErUQWUv5RLE51zJw==} + '@typescript-eslint/scope-manager@8.44.0': + resolution: {integrity: sha512-87Jv3E+al8wpD+rIdVJm/ItDBe/Im09zXIjFoipOjr5gHUhJmTzfFLuTJ/nPTMc2Srsroy4IBXwcTCHyRR7KzA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/tsconfig-utils@8.42.0': - resolution: {integrity: sha512-kHeFUOdwAJfUmYKjR3CLgZSglGHjbNTi1H8sTYRYV2xX6eNz4RyJ2LIgsDLKf8Yi0/GL1WZAC/DgZBeBft8QAQ==} + '@typescript-eslint/tsconfig-utils@8.44.0': + resolution: {integrity: sha512-x5Y0+AuEPqAInc6yd0n5DAcvtoQ/vyaGwuX5HE9n6qAefk1GaedqrLQF8kQGylLUb9pnZyLf+iEiL9fr8APDtQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/type-utils@8.42.0': - resolution: {integrity: sha512-9KChw92sbPTYVFw3JLRH1ockhyR3zqqn9lQXol3/YbI6jVxzWoGcT3AsAW0mu1MY0gYtsXnUGV/AKpkAj5tVlQ==} + '@typescript-eslint/type-utils@8.44.0': + resolution: {integrity: sha512-9cwsoSxJ8Sak67Be/hD2RNt/fsqmWnNE1iHohG8lxqLSNY8xNfyY7wloo5zpW3Nu9hxVgURevqfcH6vvKCt6yg==} 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/types@8.42.0': - resolution: {integrity: sha512-LdtAWMiFmbRLNP7JNeY0SqEtJvGMYSzfiWBSmx+VSZ1CH+1zyl8Mmw1TT39OrtsRvIYShjJWzTDMPWZJCpwBlw==} + '@typescript-eslint/types@8.44.0': + resolution: {integrity: sha512-ZSl2efn44VsYM0MfDQe68RKzBz75NPgLQXuGypmym6QVOWL5kegTZuZ02xRAT9T+onqvM6T8CdQk0OwYMB6ZvA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/typescript-estree@8.42.0': - resolution: {integrity: sha512-ku/uYtT4QXY8sl9EDJETD27o3Ewdi72hcXg1ah/kkUgBvAYHLwj2ofswFFNXS+FL5G+AGkxBtvGt8pFBHKlHsQ==} + '@typescript-eslint/typescript-estree@8.44.0': + resolution: {integrity: sha512-lqNj6SgnGcQZwL4/SBJ3xdPEfcBuhCG8zdcwCPgYcmiPLgokiNDKlbPzCwEwu7m279J/lBYWtDYL+87OEfn8Jw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/utils@8.42.0': - resolution: {integrity: sha512-JnIzu7H3RH5BrKC4NoZqRfmjqCIS1u3hGZltDYJgkVdqAezl4L9d1ZLw+36huCujtSBSAirGINF/S4UxOcR+/g==} + '@typescript-eslint/utils@8.44.0': + resolution: {integrity: sha512-nktOlVcg3ALo0mYlV+L7sWUD58KG4CMj1rb2HUVOO4aL3K/6wcD+NERqd0rrA5Vg06b42YhF6cFxeixsp9Riqg==} 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/visitor-keys@8.42.0': - resolution: {integrity: sha512-3WbiuzoEowaEn8RSnhJBrxSwX8ULYE9CXaPepS2C2W3NSA5NNIvBaslpBSBElPq0UGr0xVJlXFWOAKIkyylydQ==} + '@typescript-eslint/visitor-keys@8.44.0': + resolution: {integrity: sha512-zaz9u8EJ4GBmnehlrpoKvj/E3dNbuQ7q0ucyZImm3cLqJ8INTc970B1qEqDX/Rzq65r3TvVTN7kHWPBoyW7DWw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@ungap/structured-clone@1.3.0': @@ -1409,8 +1409,8 @@ packages: cpu: [x64] os: [win32] - '@vitest/eslint-plugin@1.3.9': - resolution: {integrity: sha512-wsNe7xy44ovm/h9ISDkDNcv0aOnUsaOYDqan2y6qCFAUQ0odFr6df/+FdGKHZN+mCM+SvIDWoXuvm5T5V3Kh6w==} + '@vitest/eslint-plugin@1.3.12': + resolution: {integrity: sha512-cSEyUYGj8j8SLqKrzN7BlfsJ3wG67eRT25819PXuyoSBogLXiyagdKx4MHWHV1zv+EEuyMXsEKkBEKzXpxyBrg==} peerDependencies: eslint: '>= 8.57.0' typescript: '>= 5.0.0' @@ -1579,6 +1579,10 @@ packages: balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + baseline-browser-mapping@2.8.6: + resolution: {integrity: sha512-wrH5NNqren/QMtKUEEJf7z86YjfqW/2uw3IL3/xpqZUC95SSVIFXYQeeGjL6FT/X68IROu6RMehZQS5foy2BXw==} + hasBin: true + boolbase@1.0.0: resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} @@ -1597,6 +1601,11 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true + browserslist@4.26.2: + resolution: {integrity: sha512-ECFzp6uFOSB+dcZ5BK/IBaGWssbSYBHvuMeMt3MMFyhI0Z8SqGgEkBLARgpRH3hutIgPVsALcMwbDrJqPxQ65A==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + bs-logger@0.2.6: resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} engines: {node: '>= 6'} @@ -1637,6 +1646,9 @@ packages: caniuse-lite@1.0.30001741: resolution: {integrity: sha512-QGUGitqsc8ARjLdgAfxETDhRbJ0REsP6O3I96TAth/mVjh2cYzN2u+3AzPP3aVSm2FehEItaJw1xd+IGBXWeSw==} + caniuse-lite@1.0.30001743: + resolution: {integrity: sha512-e6Ojr7RV14Un7dz6ASD0aZDmQPT/A+eZU+nuTNfjqmRrmkmQlnTNWH0SKmqagx9PeW87UVqapSurtAXifmtdmw==} + capital-case@1.0.4: resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} @@ -1861,6 +1873,9 @@ packages: electron-to-chromium@1.5.214: resolution: {integrity: sha512-TpvUNdha+X3ybfU78NoQatKvQEm1oq3lf2QbnmCEdw+Bd9RuIAY+hJTvq1avzHM0f7EJfnH3vbCnbzKzisc/9Q==} + electron-to-chromium@1.5.222: + resolution: {integrity: sha512-gA7psSwSwQRE60CEoLz6JBCQPIxNeuzB2nL8vE03GK/OHxlvykbLyeiumQy1iH5C2f3YbRAZpGCMT12a/9ih9w==} + emittery@0.13.1: resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} engines: {node: '>=12'} @@ -1942,8 +1957,8 @@ packages: peerDependencies: eslint: ^9.5.0 - eslint-flat-config-utils@2.1.1: - resolution: {integrity: sha512-K8eaPkBemHkfbYsZH7z4lZ/tt6gNSsVh535Wh9W9gQBS2WjvfUbbVr2NZR3L1yiRCLuOEimYfPxCxODczD4Opg==} + eslint-flat-config-utils@2.1.4: + resolution: {integrity: sha512-bEnmU5gqzS+4O+id9vrbP43vByjF+8KOs+QuuV4OlqAuXmnRW2zfI/Rza1fQvdihQ5h4DUo0NqFAiViD4mSrzQ==} eslint-json-compat-utils@0.2.1: resolution: {integrity: sha512-YzEodbDyW8DX8bImKhAcCeu/L31Dd/70Bidx2Qex9OFUtgzXLqtfWL4Hr5fM/aCCB8QUZLuJur0S9k6UfgFkfg==} @@ -1987,8 +2002,8 @@ packages: typescript: optional: true - eslint-plugin-jsdoc@54.7.0: - resolution: {integrity: sha512-u5Na4he2+6kY1rWqxzbQaAwJL3/tDCuT5ElDRc5UJ9stOeQeQ5L1JJ1kRRu7ldYMlOHMCJLsY8Mg/Tu3ExdZiQ==} + eslint-plugin-jsdoc@59.1.0: + resolution: {integrity: sha512-sg9mzjjzfnMynyY4W8FDiQv3i8eFcKVEHDt4Xh7MLskP3QkMt2z6p7FuzSw7jJSKFues6RaK2GWvmkB1FLPxXg==} engines: {node: '>=20.11.0'} peerDependencies: eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 @@ -1999,8 +2014,8 @@ packages: peerDependencies: eslint: '>=6.0.0' - eslint-plugin-n@17.21.3: - resolution: {integrity: sha512-MtxYjDZhMQgsWRm/4xYLL0i2EhusWT7itDxlJ80l1NND2AL2Vi5Mvneqv/ikG9+zpran0VsVRXTEHrpLmUZRNw==} + eslint-plugin-n@17.23.1: + resolution: {integrity: sha512-68PealUpYoHOBh332JLLD9Sj7OQUDkFpmcfqt8R9sySfFSeuGJjMTJQvCRRB96zO3A/PELRLkPrzsHmzEFQQ5A==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: '>=8.23.0' @@ -2301,8 +2316,8 @@ packages: resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==} engines: {node: '>=18'} - globals@16.3.0: - resolution: {integrity: sha512-bqWEnJ1Nt3neqx2q5SFfGS8r/ahumIakg3HcwtNlrVlwXIeNumWn/c7Pn/wKzGhf6SaW6H6uWXLqC30STCMchQ==} + globals@16.4.0: + resolution: {integrity: sha512-ob/2LcVVaVGCYN+r14cnwnoDPUufjiYgSqRhiFD0Q1iI4Odora5RE8Iv1D24hAz5oMophRGkGz+yuvQmmUMnMw==} engines: {node: '>=18'} globby@11.1.0: @@ -2667,8 +2682,8 @@ packages: resolution: {integrity: sha512-iZ8Bdb84lWRuGHamRXFyML07r21pcwBrLkHEuHgEY5UbCouBwv7ECknDRKzsQIXMiqpPymqtIf8TC/shYKB5rw==} engines: {node: '>=12.0.0'} - jsdoc-type-pratt-parser@5.1.1: - resolution: {integrity: sha512-DYYlVP1fe4QBMh2xTIs20/YeTz2GYVbWAEZweHSZD+qQ/Cx2d5RShuhhsdk64eTjNq0FeVnteP/qVOgaywSRbg==} + jsdoc-type-pratt-parser@5.4.0: + resolution: {integrity: sha512-F9GQ+F1ZU6qvSrZV8fNFpjDNf614YzR2eF6S0+XbDjAcUI28FSoXnYZFjQmb1kFx3rrJb5PnxUH3/Yti6fcM+g==} engines: {node: '>=12.0.0'} jsesc@3.0.2: @@ -2960,10 +2975,6 @@ packages: resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==} engines: {node: '>=18'} - min-indent@1.0.1: - resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} - engines: {node: '>=4'} - minimatch@3.1.2: resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} @@ -3029,6 +3040,9 @@ packages: node-releases@2.0.20: resolution: {integrity: sha512-7gK6zSXEH6neM212JgfYFXe+GmZQM+fia5SsusuBIUgnPheLFBmIPhtFoAQRj8/7wASYQnbDlHPVwY0BefoFgA==} + node-releases@2.0.21: + resolution: {integrity: sha512-5b0pgg78U3hwXkCM8Z9b2FJdPZlr9Psr9V2gQPESdGHqbntyFJKFW4r5TeWGFzafGY3hzs1JC62VEQMbl1JFkw==} + normalize-path@2.1.1: resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==} engines: {node: '>=0.10.0'} @@ -3060,6 +3074,9 @@ packages: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} + object-deep-merge@1.0.5: + resolution: {integrity: sha512-3DioFgOzetbxbeUq8pB2NunXo8V0n4EvqsWM/cJoI6IA9zghd7cl/2pBOuWRf4dlvA+fcg5ugFMZaN2/RuoaGg==} + once@1.4.0: resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} @@ -3458,8 +3475,8 @@ packages: resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} engines: {node: '>=6'} - strip-indent@4.0.0: - resolution: {integrity: sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==} + strip-indent@4.1.0: + resolution: {integrity: sha512-OA95x+JPmL7kc7zCu+e+TeYxEiaIyndRx0OrBcK2QPPH09oAndr2ALvymxWA+Lx1PYYvFUm4O63pRkdJAaW96w==} engines: {node: '>=12'} strip-json-comments@3.1.1: @@ -3611,6 +3628,10 @@ packages: resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} engines: {node: '>=12.20'} + type-fest@4.2.0: + resolution: {integrity: sha512-5zknd7Dss75pMSED270A1RQS3KloqRJA9XbXLe0eCxyw7xXFb3rd+9B0UQ/0E+LQT6lnrLviEolYORlRWamn4w==} + engines: {node: '>=16'} + type-fest@4.41.0: resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==} engines: {node: '>=16'} @@ -3892,39 +3913,39 @@ snapshots: '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@5.3.0(@vue/compiler-sfc@3.5.12)(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@5.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.36.0(jiti@2.4.0)) '@eslint/markdown': 7.2.0 - '@stylistic/eslint-plugin': 5.3.1(eslint@9.36.0(jiti@2.4.0)) - '@typescript-eslint/eslint-plugin': 8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) - '@typescript-eslint/parser': 8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) - '@vitest/eslint-plugin': 1.3.9(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1)) + '@stylistic/eslint-plugin': 5.4.0(eslint@9.36.0(jiti@2.4.0)) + '@typescript-eslint/eslint-plugin': 8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/parser': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) + '@vitest/eslint-plugin': 1.3.12(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.1.0 cac: 6.7.14 eslint: 9.36.0(jiti@2.4.0) eslint-config-flat-gitignore: 2.1.0(eslint@9.36.0(jiti@2.4.0)) - eslint-flat-config-utils: 2.1.1 + eslint-flat-config-utils: 2.1.4 eslint-merge-processors: 2.0.0(eslint@9.36.0(jiti@2.4.0)) eslint-plugin-antfu: 3.1.1(eslint@9.36.0(jiti@2.4.0)) eslint-plugin-command: 3.3.1(eslint@9.36.0(jiti@2.4.0)) eslint-plugin-import-lite: 0.3.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) - eslint-plugin-jsdoc: 54.7.0(eslint@9.36.0(jiti@2.4.0)) + eslint-plugin-jsdoc: 59.1.0(eslint@9.36.0(jiti@2.4.0)) eslint-plugin-jsonc: 2.20.1(eslint@9.36.0(jiti@2.4.0)) - eslint-plugin-n: 17.21.3(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) + eslint-plugin-n: 17.23.1(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) eslint-plugin-no-only-tests: 3.3.0 eslint-plugin-perfectionist: 4.15.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) eslint-plugin-pnpm: 1.1.1(eslint@9.36.0(jiti@2.4.0)) eslint-plugin-regexp: 2.10.0(eslint@9.36.0(jiti@2.4.0)) eslint-plugin-toml: 0.12.0(eslint@9.36.0(jiti@2.4.0)) eslint-plugin-unicorn: 61.0.2(eslint@9.36.0(jiti@2.4.0)) - eslint-plugin-unused-imports: 4.2.0(@typescript-eslint/eslint-plugin@8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0)) - eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.36.0(jiti@2.4.0))) + eslint-plugin-unused-imports: 4.2.0(@typescript-eslint/eslint-plugin@8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0)) + eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.36.0(jiti@2.4.0))) eslint-plugin-yml: 1.18.0(eslint@9.36.0(jiti@2.4.0)) eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.36.0(jiti@2.4.0)) - globals: 16.3.0 + globals: 16.4.0 jsonc-eslint-parser: 2.4.0 local-pkg: 1.1.2 parse-gitignore: 2.0.0 @@ -4200,18 +4221,18 @@ snapshots: '@es-joy/jsdoccomment@0.50.2': dependencies: '@types/estree': 1.0.8 - '@typescript-eslint/types': 8.42.0 + '@typescript-eslint/types': 8.44.0 comment-parser: 1.4.1 esquery: 1.6.0 jsdoc-type-pratt-parser: 4.1.0 - '@es-joy/jsdoccomment@0.56.0': + '@es-joy/jsdoccomment@0.58.0': dependencies: '@types/estree': 1.0.8 - '@typescript-eslint/types': 8.42.0 + '@typescript-eslint/types': 8.44.0 comment-parser: 1.4.1 esquery: 1.6.0 - jsdoc-type-pratt-parser: 5.1.1 + jsdoc-type-pratt-parser: 5.4.0 '@esbuild/aix-ppc64@0.25.5': optional: true @@ -5198,10 +5219,10 @@ snapshots: dependencies: '@sinonjs/commons': 3.0.1 - '@stylistic/eslint-plugin@5.3.1(eslint@9.36.0(jiti@2.4.0))': + '@stylistic/eslint-plugin@5.4.0(eslint@9.36.0(jiti@2.4.0))': dependencies: '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.4.0)) - '@typescript-eslint/types': 8.42.0 + '@typescript-eslint/types': 8.44.0 eslint: 9.36.0(jiti@2.4.0) eslint-visitor-keys: 4.2.1 espree: 10.4.0 @@ -5288,14 +5309,14 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/eslint-plugin@8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) - '@typescript-eslint/scope-manager': 8.42.0 - '@typescript-eslint/type-utils': 8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) - '@typescript-eslint/utils': 8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) - '@typescript-eslint/visitor-keys': 8.42.0 + '@typescript-eslint/parser': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/scope-manager': 8.44.0 + '@typescript-eslint/type-utils': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/utils': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/visitor-keys': 8.44.0 eslint: 9.36.0(jiti@2.4.0) graphemer: 1.4.0 ignore: 7.0.5 @@ -5305,41 +5326,41 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: - '@typescript-eslint/scope-manager': 8.42.0 - '@typescript-eslint/types': 8.42.0 - '@typescript-eslint/typescript-estree': 8.42.0(typescript@5.9.2) - '@typescript-eslint/visitor-keys': 8.42.0 + '@typescript-eslint/scope-manager': 8.44.0 + '@typescript-eslint/types': 8.44.0 + '@typescript-eslint/typescript-estree': 8.44.0(typescript@5.9.2) + '@typescript-eslint/visitor-keys': 8.44.0 debug: 4.4.3 eslint: 9.36.0(jiti@2.4.0) typescript: 5.9.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/project-service@8.42.0(typescript@5.9.2)': + '@typescript-eslint/project-service@8.44.0(typescript@5.9.2)': dependencies: - '@typescript-eslint/tsconfig-utils': 8.42.0(typescript@5.9.2) - '@typescript-eslint/types': 8.42.0 + '@typescript-eslint/tsconfig-utils': 8.44.0(typescript@5.9.2) + '@typescript-eslint/types': 8.44.0 debug: 4.4.3 typescript: 5.9.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@8.42.0': + '@typescript-eslint/scope-manager@8.44.0': dependencies: - '@typescript-eslint/types': 8.42.0 - '@typescript-eslint/visitor-keys': 8.42.0 + '@typescript-eslint/types': 8.44.0 + '@typescript-eslint/visitor-keys': 8.44.0 - '@typescript-eslint/tsconfig-utils@8.42.0(typescript@5.9.2)': + '@typescript-eslint/tsconfig-utils@8.44.0(typescript@5.9.2)': dependencies: typescript: 5.9.2 - '@typescript-eslint/type-utils@8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/type-utils@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: - '@typescript-eslint/types': 8.42.0 - '@typescript-eslint/typescript-estree': 8.42.0(typescript@5.9.2) - '@typescript-eslint/utils': 8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/types': 8.44.0 + '@typescript-eslint/typescript-estree': 8.44.0(typescript@5.9.2) + '@typescript-eslint/utils': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) debug: 4.4.3 eslint: 9.36.0(jiti@2.4.0) ts-api-utils: 2.1.0(typescript@5.9.2) @@ -5347,14 +5368,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/types@8.42.0': {} + '@typescript-eslint/types@8.44.0': {} - '@typescript-eslint/typescript-estree@8.42.0(typescript@5.9.2)': + '@typescript-eslint/typescript-estree@8.44.0(typescript@5.9.2)': dependencies: - '@typescript-eslint/project-service': 8.42.0(typescript@5.9.2) - '@typescript-eslint/tsconfig-utils': 8.42.0(typescript@5.9.2) - '@typescript-eslint/types': 8.42.0 - '@typescript-eslint/visitor-keys': 8.42.0 + '@typescript-eslint/project-service': 8.44.0(typescript@5.9.2) + '@typescript-eslint/tsconfig-utils': 8.44.0(typescript@5.9.2) + '@typescript-eslint/types': 8.44.0 + '@typescript-eslint/visitor-keys': 8.44.0 debug: 4.4.3 fast-glob: 3.3.3 is-glob: 4.0.3 @@ -5365,20 +5386,20 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/utils@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)': dependencies: '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.4.0)) - '@typescript-eslint/scope-manager': 8.42.0 - '@typescript-eslint/types': 8.42.0 - '@typescript-eslint/typescript-estree': 8.42.0(typescript@5.9.2) + '@typescript-eslint/scope-manager': 8.44.0 + '@typescript-eslint/types': 8.44.0 + '@typescript-eslint/typescript-estree': 8.44.0(typescript@5.9.2) eslint: 9.36.0(jiti@2.4.0) typescript: 5.9.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/visitor-keys@8.42.0': + '@typescript-eslint/visitor-keys@8.44.0': dependencies: - '@typescript-eslint/types': 8.42.0 + '@typescript-eslint/types': 8.44.0 eslint-visitor-keys: 4.2.1 '@ungap/structured-clone@1.3.0': {} @@ -5436,10 +5457,10 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.9(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.3.12(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1))': dependencies: - '@typescript-eslint/scope-manager': 8.42.0 - '@typescript-eslint/utils': 8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/scope-manager': 8.44.0 + '@typescript-eslint/utils': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) eslint: 9.36.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.2 @@ -5649,6 +5670,8 @@ snapshots: balanced-match@1.0.2: {} + baseline-browser-mapping@2.8.6: {} + boolbase@1.0.0: {} brace-expansion@1.1.12: @@ -5671,6 +5694,14 @@ snapshots: node-releases: 2.0.20 update-browserslist-db: 1.1.3(browserslist@4.25.4) + browserslist@4.26.2: + dependencies: + baseline-browser-mapping: 2.8.6 + caniuse-lite: 1.0.30001743 + electron-to-chromium: 1.5.222 + node-releases: 2.0.21 + update-browserslist-db: 1.1.3(browserslist@4.26.2) + bs-logger@0.2.6: dependencies: fast-json-stable-stringify: 2.1.0 @@ -5702,6 +5733,8 @@ snapshots: caniuse-lite@1.0.30001741: {} + caniuse-lite@1.0.30001743: {} + capital-case@1.0.4: dependencies: no-case: 3.0.4 @@ -5818,7 +5851,7 @@ snapshots: core-js-compat@3.45.1: dependencies: - browserslist: 4.25.4 + browserslist: 4.26.2 cosmiconfig@8.3.6(typescript@5.9.2): dependencies: @@ -5907,6 +5940,8 @@ snapshots: electron-to-chromium@1.5.214: {} + electron-to-chromium@1.5.222: {} + emittery@0.13.1: {} emoji-regex@10.5.0: {} @@ -5987,7 +6022,7 @@ snapshots: '@eslint/compat': 1.3.2(eslint@9.36.0(jiti@2.4.0)) eslint: 9.36.0(jiti@2.4.0) - eslint-flat-config-utils@2.1.1: + eslint-flat-config-utils@2.1.4: dependencies: pathe: 2.0.3 @@ -6020,14 +6055,14 @@ snapshots: eslint-plugin-import-lite@0.3.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2): dependencies: '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.4.0)) - '@typescript-eslint/types': 8.42.0 + '@typescript-eslint/types': 8.44.0 eslint: 9.36.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.2 - eslint-plugin-jsdoc@54.7.0(eslint@9.36.0(jiti@2.4.0)): + eslint-plugin-jsdoc@59.1.0(eslint@9.36.0(jiti@2.4.0)): dependencies: - '@es-joy/jsdoccomment': 0.56.0 + '@es-joy/jsdoccomment': 0.58.0 are-docs-informative: 0.0.2 comment-parser: 1.4.1 debug: 4.4.3 @@ -6035,6 +6070,7 @@ snapshots: eslint: 9.36.0(jiti@2.4.0) espree: 10.4.0 esquery: 1.6.0 + object-deep-merge: 1.0.5 parse-imports-exports: 0.2.4 semver: 7.7.2 spdx-expression-parse: 4.0.0 @@ -6055,7 +6091,7 @@ snapshots: transitivePeerDependencies: - '@eslint/json' - eslint-plugin-n@17.21.3(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2): + eslint-plugin-n@17.23.1(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2): dependencies: '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.4.0)) enhanced-resolve: 5.18.3 @@ -6074,8 +6110,8 @@ snapshots: eslint-plugin-perfectionist@4.15.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2): dependencies: - '@typescript-eslint/types': 8.42.0 - '@typescript-eslint/utils': 8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/types': 8.44.0 + '@typescript-eslint/utils': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) eslint: 9.36.0(jiti@2.4.0) natural-orderby: 5.0.0 transitivePeerDependencies: @@ -6125,7 +6161,7 @@ snapshots: eslint: 9.36.0(jiti@2.4.0) esquery: 1.6.0 find-up-simple: 1.0.1 - globals: 16.3.0 + globals: 16.4.0 indent-string: 5.0.0 is-builtin-module: 5.0.0 jsesc: 3.1.0 @@ -6133,15 +6169,15 @@ snapshots: regexp-tree: 0.1.27 regjsparser: 0.12.0 semver: 7.7.2 - strip-indent: 4.0.0 + strip-indent: 4.1.0 - eslint-plugin-unused-imports@4.2.0(@typescript-eslint/eslint-plugin@8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0)): + eslint-plugin-unused-imports@4.2.0(@typescript-eslint/eslint-plugin@8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0)): dependencies: eslint: 9.36.0(jiti@2.4.0) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.42.0(@typescript-eslint/parser@8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/eslint-plugin': 8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) - eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.36.0(jiti@2.4.0))): + eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.36.0(jiti@2.4.0))): dependencies: '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.4.0)) eslint: 9.36.0(jiti@2.4.0) @@ -6152,7 +6188,7 @@ snapshots: vue-eslint-parser: 10.2.0(eslint@9.36.0(jiti@2.4.0)) xml-name-validator: 4.0.0 optionalDependencies: - '@typescript-eslint/parser': 8.42.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/parser': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) eslint-plugin-yml@1.18.0(eslint@9.36.0(jiti@2.4.0)): dependencies: @@ -6425,7 +6461,7 @@ snapshots: globals@15.15.0: {} - globals@16.3.0: {} + globals@16.4.0: {} globby@11.1.0: dependencies: @@ -6961,7 +6997,7 @@ snapshots: jsdoc-type-pratt-parser@4.8.0: {} - jsdoc-type-pratt-parser@5.1.1: {} + jsdoc-type-pratt-parser@5.4.0: {} jsesc@3.0.2: {} @@ -7422,8 +7458,6 @@ snapshots: mimic-function@5.0.1: {} - min-indent@1.0.1: {} - minimatch@3.1.2: dependencies: brace-expansion: 1.1.12 @@ -7472,6 +7506,8 @@ snapshots: node-releases@2.0.20: {} + node-releases@2.0.21: {} + normalize-path@2.1.1: dependencies: remove-trailing-separator: 1.1.0 @@ -7503,6 +7539,10 @@ snapshots: object-assign@4.1.1: {} + object-deep-merge@1.0.5: + dependencies: + type-fest: 4.2.0 + once@1.4.0: dependencies: wrappy: 1.0.2 @@ -7891,9 +7931,7 @@ snapshots: strip-final-newline@2.0.0: {} - strip-indent@4.0.0: - dependencies: - min-indent: 1.0.1 + strip-indent@4.1.0: {} strip-json-comments@3.1.1: {} @@ -8014,6 +8052,8 @@ snapshots: type-fest@2.19.0: {} + type-fest@4.2.0: {} + type-fest@4.41.0: {} typescript@5.9.2: {} @@ -8080,6 +8120,12 @@ snapshots: escalade: 3.2.0 picocolors: 1.1.1 + update-browserslist-db@1.1.3(browserslist@4.26.2): + dependencies: + browserslist: 4.26.2 + escalade: 3.2.0 + picocolors: 1.1.1 + upper-case-first@2.0.2: dependencies: tslib: 2.8.1 From dcafc33e62b916f115dfb58510d0ff86d1b64886 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 20 Sep 2025 18:00:58 +0000 Subject: [PATCH 056/133] chore(deps): update dependency zod to v4.1.11 (#1242) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index d3b5db47..3a77ed17 100644 --- a/package.json +++ b/package.json @@ -101,6 +101,6 @@ "valibot": "1.1.0", "vitest": "^3.0.0", "yup": "1.7.0", - "zod": "4.1.9" + "zod": "4.1.11" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f6972aaf..81719022 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -76,8 +76,8 @@ importers: specifier: 1.7.0 version: 1.7.0 zod: - specifier: 4.1.9 - version: 4.1.9 + specifier: 4.1.11 + version: 4.1.11 packages: @@ -3900,8 +3900,8 @@ packages: yup@1.7.0: resolution: {integrity: sha512-VJce62dBd+JQvoc+fCVq+KZfPHr+hXaxCcVgotfwWvlR0Ja3ffYKaJBT8rptPOSKOGJDCUnW2C2JWpud7aRP6Q==} - zod@4.1.9: - resolution: {integrity: sha512-HI32jTq0AUAC125z30E8bQNz0RQ+9Uc+4J7V97gLYjZVKRjeydPgGt6dvQzFrav7MYOUGFqqOGiHpA/fdbd0cQ==} + zod@4.1.11: + resolution: {integrity: sha512-WPsqwxITS2tzx1bzhIKsEs19ABD5vmCVa4xBo2tq/SrV4RNZtfws1EnCWQXM6yh8bD08a1idvkB5MZSBiZsjwg==} zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} @@ -8340,6 +8340,6 @@ snapshots: toposort: 2.0.2 type-fest: 2.19.0 - zod@4.1.9: {} + zod@4.1.11: {} zwitch@2.0.4: {} From 8f56fe11f4f90872f99340951d3f7ff32c7e532b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 21 Sep 2025 16:31:42 +0000 Subject: [PATCH 057/133] chore(deps): update dependency yup to v1.7.1 (#1243) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 3a77ed17..ff0822b6 100644 --- a/package.json +++ b/package.json @@ -100,7 +100,7 @@ "typescript": "5.9.2", "valibot": "1.1.0", "vitest": "^3.0.0", - "yup": "1.7.0", + "yup": "1.7.1", "zod": "4.1.11" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 81719022..001bd1c4 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -73,8 +73,8 @@ importers: specifier: ^3.0.0 version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1) yup: - specifier: 1.7.0 - version: 1.7.0 + specifier: 1.7.1 + version: 1.7.1 zod: specifier: 4.1.11 version: 4.1.11 @@ -3897,8 +3897,8 @@ packages: resolution: {integrity: sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw==} engines: {node: '>=18'} - yup@1.7.0: - resolution: {integrity: sha512-VJce62dBd+JQvoc+fCVq+KZfPHr+hXaxCcVgotfwWvlR0Ja3ffYKaJBT8rptPOSKOGJDCUnW2C2JWpud7aRP6Q==} + yup@1.7.1: + resolution: {integrity: sha512-GKHFX2nXul2/4Dtfxhozv701jLQHdf6J34YDh2cEkpqoo8le5Mg6/LrdseVLrFarmFygZTlfIhHx/QKfb/QWXw==} zod@4.1.11: resolution: {integrity: sha512-WPsqwxITS2tzx1bzhIKsEs19ABD5vmCVa4xBo2tq/SrV4RNZtfws1EnCWQXM6yh8bD08a1idvkB5MZSBiZsjwg==} @@ -8333,7 +8333,7 @@ snapshots: yoctocolors-cjs@2.1.3: {} - yup@1.7.0: + yup@1.7.1: dependencies: property-expr: 2.0.6 tiny-case: 1.0.3 From b3e693a1fd82d3c42458db195f0c8823e5044750 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 22 Sep 2025 14:42:01 +0000 Subject: [PATCH 058/133] chore(deps): update pnpm to v10.17.1 (#1244) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ff0822b6..a2727e02 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "graphql-codegen-typescript-validation-schema", "type": "module", "version": "0.17.1", - "packageManager": "pnpm@10.17.0", + "packageManager": "pnpm@10.17.1", "description": "GraphQL Code Generator plugin to generate form validation schema from your GraphQL schema", "respository": { "type": "git", From 18b4f76516e2f7e4a7bb22f2074c78289b291a4b Mon Sep 17 00:00:00 2001 From: Kei Kamikawa Date: Tue, 23 Sep 2025 13:43:40 +0900 Subject: [PATCH 059/133] 0.18.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1d3cb57f..d19b2c23 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "graphql-codegen-typescript-validation-schema", "type": "module", - "version": "0.17.1", + "version": "0.18.0", "packageManager": "pnpm@10.17.1", "description": "GraphQL Code Generator plugin to generate form validation schema from your GraphQL schema", "respository": { From 393b697bd7c76b5b98febf8adf604e0c8da95632 Mon Sep 17 00:00:00 2001 From: Code-Hex Date: Tue, 23 Sep 2025 05:43:12 +0000 Subject: [PATCH 060/133] Apply auto lint-fix changes --- src/valibot/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/valibot/index.ts b/src/valibot/index.ts index 76408d17..722c7ecd 100644 --- a/src/valibot/index.ts +++ b/src/valibot/index.ts @@ -10,11 +10,11 @@ import type { TypeNode, UnionTypeDefinitionNode, } from 'graphql'; -import { isEnumType, isScalarType } from 'graphql'; import type { ValidationSchemaPluginConfig } from '../config.js'; import type { Visitor } from '../visitor.js'; - import { DeclarationBlock, indent } from '@graphql-codegen/visitor-plugin-common'; + +import { isEnumType, isScalarType } from 'graphql'; import { buildApiForValibot, formatDirectiveConfig } from '../directive.js'; import { InterfaceTypeDefinitionBuilder, From 350deb96159186624d326078fd094e0d3fa1ed53 Mon Sep 17 00:00:00 2001 From: Kei Kamikawa Date: Tue, 23 Sep 2025 14:40:59 +0900 Subject: [PATCH 061/133] fix #907 for zodv4 --- src/zodv4/index.ts | 22 +++++++++++++--------- tests/zodv4.spec.ts | 20 ++++++++++---------- 2 files changed, 23 insertions(+), 19 deletions(-) diff --git a/src/zodv4/index.ts b/src/zodv4/index.ts index d74c4cb0..38e1aabe 100644 --- a/src/zodv4/index.ts +++ b/src/zodv4/index.ts @@ -16,13 +16,14 @@ import type { Visitor } from '../visitor.js'; import { resolveExternalModuleAndFn } from '@graphql-codegen/plugin-helpers'; import { convertNameParts, DeclarationBlock, indent } from '@graphql-codegen/visitor-plugin-common'; import { + isEnumType, + isScalarType, Kind, } from 'graphql'; import { buildApi, formatDirectiveConfig } from '../directive.js'; import { escapeGraphQLCharacters, InterfaceTypeDefinitionBuilder, - isInput, isListType, isNamedType, isNonNullType, @@ -275,22 +276,22 @@ export class ZodV4SchemaVisitor extends BaseSchemaVisitor { function generateFieldZodSchema(config: ValidationSchemaPluginConfig, visitor: Visitor, field: InputValueDefinitionNode | FieldDefinitionNode, indentCount: number): string { const gen = generateFieldTypeZodSchema(config, visitor, field, field.type); - return indent(`${field.name.value}: ${maybeLazy(field.type, gen)}`, indentCount); + return indent(`${field.name.value}: ${maybeLazy(visitor, field.type, gen)}`, indentCount); } function generateFieldTypeZodSchema(config: ValidationSchemaPluginConfig, visitor: Visitor, field: InputValueDefinitionNode | FieldDefinitionNode, type: TypeNode, parentType?: TypeNode): string { if (isListType(type)) { const gen = generateFieldTypeZodSchema(config, visitor, field, type.type, type); if (!isNonNullType(parentType)) { - const arrayGen = `z.array(${maybeLazy(type.type, gen)})`; + const arrayGen = `z.array(${maybeLazy(visitor, type.type, gen)})`; const maybeLazyGen = applyDirectives(config, field, arrayGen); return `${maybeLazyGen}.nullish()`; } - return `z.array(${maybeLazy(type.type, gen)})`; + return `z.array(${maybeLazy(visitor, type.type, gen)})`; } if (isNonNullType(type)) { const gen = generateFieldTypeZodSchema(config, visitor, field, type.type, type); - return maybeLazy(type.type, gen); + return maybeLazy(visitor, type.type, gen); } if (isNamedType(type)) { const gen = generateNameNodeZodSchema(config, visitor, type.name); @@ -371,11 +372,14 @@ function generateNameNodeZodSchema(config: ValidationSchemaPluginConfig, visitor } } -function maybeLazy(type: TypeNode, schema: string): string { - if (isNamedType(type) && isInput(type.name.value)) - return `z.lazy(() => ${schema})`; +function maybeLazy(visitor: Visitor, type: TypeNode, schema: string): string { + if (!isNamedType(type)) { + return schema; + } - return schema; + const schemaType = visitor.getType(type.name.value); + const isComplexType = !isScalarType(schemaType) && !isEnumType(schemaType); + return isComplexType ? `z.lazy(() => ${schema})` : schema; } function zod4Scalar(config: ValidationSchemaPluginConfig, visitor: Visitor, scalarName: string): string { diff --git a/tests/zodv4.spec.ts b/tests/zodv4.spec.ts index 2cc2a0c4..9b784890 100644 --- a/tests/zodv4.spec.ts +++ b/tests/zodv4.spec.ts @@ -1336,7 +1336,7 @@ describe('zodv4', () => { export function BookSchema(): z.ZodObject> { return z.object({ __typename: z.literal('Book').optional(), - author: AuthorSchema().nullish(), + author: z.lazy(() => AuthorSchema().nullish()), title: z.string().nullish() }) } @@ -1344,7 +1344,7 @@ describe('zodv4', () => { export function AuthorSchema(): z.ZodObject> { return z.object({ __typename: z.literal('Author').optional(), - books: z.array(BookSchema().nullable()).nullish(), + books: z.array(z.lazy(() => BookSchema().nullable())).nullish(), name: z.string().nullish() }) } @@ -1621,7 +1621,7 @@ describe('zodv4', () => { export function GeometrySchema(): z.ZodObject> { return z.object({ __typename: z.literal('Geometry').optional(), - shape: ShapeSchema().nullish() + shape: z.lazy(() => ShapeSchema().nullish()) }) } " @@ -1772,7 +1772,7 @@ describe('zodv4', () => { export const GeometrySchema: z.ZodObject> = z.object({ __typename: z.literal('Geometry').optional(), - shape: ShapeSchema.nullish() + shape: z.lazy(() => ShapeSchema.nullish()) }); " `) @@ -1924,14 +1924,14 @@ describe('zodv4', () => { export function BookSchema(): z.ZodObject> { return z.object({ - author: AuthorSchema().nullish(), + author: z.lazy(() => AuthorSchema().nullish()), title: z.string().nullish() }) } export function AuthorSchema(): z.ZodObject> { return z.object({ - books: z.array(BookSchema().nullable()).nullish(), + books: z.array(z.lazy(() => BookSchema().nullable())).nullish(), name: z.string().nullish() }) } @@ -1987,7 +1987,7 @@ describe('zodv4', () => { export function BookSchema(): z.ZodObject> { return z.object({ title: z.string(), - author: AuthorSchema() + author: z.lazy(() => AuthorSchema()) }) } @@ -1995,7 +1995,7 @@ describe('zodv4', () => { return z.object({ __typename: z.literal('Textbook').optional(), title: z.string(), - author: AuthorSchema(), + author: z.lazy(() => AuthorSchema()), courses: z.array(z.string()) }) } @@ -2004,7 +2004,7 @@ describe('zodv4', () => { return z.object({ __typename: z.literal('ColoringBook').optional(), title: z.string(), - author: AuthorSchema(), + author: z.lazy(() => AuthorSchema()), colors: z.array(z.string()) }) } @@ -2012,7 +2012,7 @@ describe('zodv4', () => { export function AuthorSchema(): z.ZodObject> { return z.object({ __typename: z.literal('Author').optional(), - books: z.array(BookSchema()).nullish(), + books: z.array(z.lazy(() => BookSchema())).nullish(), name: z.string().nullish() }) } From 36a4d5e63ec0e51bd90c709714e082bc938c2b03 Mon Sep 17 00:00:00 2001 From: Kei Kamikawa Date: Tue, 23 Sep 2025 14:41:11 +0900 Subject: [PATCH 062/133] regenerated example schema --- example/myzod/schemas.ts | 9 ++++++++- example/test.graphql | 4 ++++ example/types.ts | 5 +++++ example/valibot/schemas.ts | 9 ++++++++- example/yup/schemas.ts | 9 ++++++++- example/zod/schemas.ts | 9 ++++++++- example/zodv4/schemas.ts | 11 +++++++++-- 7 files changed, 50 insertions(+), 6 deletions(-) diff --git a/example/myzod/schemas.ts b/example/myzod/schemas.ts index 3a47f823..50bfda38 100644 --- a/example/myzod/schemas.ts +++ b/example/myzod/schemas.ts @@ -1,5 +1,5 @@ import * as myzod from 'myzod' -import { Admin, AttributeInput, ButtonComponentType, ComponentInput, DropDownComponentInput, EventArgumentInput, EventInput, EventOptionType, Guest, HttpInput, HttpMethod, LayoutInput, MyType, MyTypeFooArgs, Namer, PageInput, PageType, User } from '../types' +import { Admin, AttributeInput, ButtonComponentType, Comment, ComponentInput, DropDownComponentInput, EventArgumentInput, EventInput, EventOptionType, Guest, HttpInput, HttpMethod, LayoutInput, MyType, MyTypeFooArgs, Namer, PageInput, PageType, User } from '../types' export const definedNonNullAnySchema = myzod.object({}); @@ -25,6 +25,13 @@ export function AttributeInputSchema(): myzod.Type { }) } +export function CommentSchema(): myzod.Type { + return myzod.object({ + __typename: myzod.literal('Comment').optional(), + replies: myzod.array(myzod.lazy(() => CommentSchema())).optional().nullable() + }) +} + export function ComponentInputSchema(): myzod.Type { return myzod.object({ child: myzod.lazy(() => ComponentInputSchema().optional().nullable()), diff --git a/example/test.graphql b/example/test.graphql index eb3a699e..0322defd 100644 --- a/example/test.graphql +++ b/example/test.graphql @@ -121,3 +121,7 @@ directive @constraint( multipleOf: Float uniqueTypeName: String ) on INPUT_FIELD_DEFINITION | FIELD_DEFINITION + +type Comment { + replies: [Comment!] +} diff --git a/example/types.ts b/example/types.ts index d1c67290..9c0aec8b 100644 --- a/example/types.ts +++ b/example/types.ts @@ -31,6 +31,11 @@ export enum ButtonComponentType { Submit = 'SUBMIT' } +export type Comment = { + __typename?: 'Comment'; + replies?: Maybe>; +}; + export type ComponentInput = { child?: InputMaybe; childrens?: InputMaybe>>; diff --git a/example/valibot/schemas.ts b/example/valibot/schemas.ts index dbc09340..464f3eb9 100644 --- a/example/valibot/schemas.ts +++ b/example/valibot/schemas.ts @@ -1,5 +1,5 @@ import * as v from 'valibot' -import { Admin, AttributeInput, ButtonComponentType, ComponentInput, DropDownComponentInput, EventArgumentInput, EventInput, EventOptionType, Guest, HttpInput, HttpMethod, LayoutInput, MyType, MyTypeFooArgs, Namer, PageInput, PageType, User } from '../types' +import { Admin, AttributeInput, ButtonComponentType, Comment, ComponentInput, DropDownComponentInput, EventArgumentInput, EventInput, EventOptionType, Guest, HttpInput, HttpMethod, LayoutInput, MyType, MyTypeFooArgs, Namer, PageInput, PageType, User } from '../types' export const ButtonComponentTypeSchema = v.enum_(ButtonComponentType); @@ -23,6 +23,13 @@ export function AttributeInputSchema(): v.GenericSchema { }) } +export function CommentSchema(): v.GenericSchema { + return v.object({ + __typename: v.optional(v.literal('Comment')), + replies: v.nullish(v.array(v.lazy(() => CommentSchema()))) + }) +} + export function ComponentInputSchema(): v.GenericSchema { return v.object({ child: v.lazy(() => v.nullish(ComponentInputSchema())), diff --git a/example/yup/schemas.ts b/example/yup/schemas.ts index d78a3abd..ea99660a 100644 --- a/example/yup/schemas.ts +++ b/example/yup/schemas.ts @@ -1,5 +1,5 @@ import * as yup from 'yup' -import { Admin, AttributeInput, ButtonComponentType, ComponentInput, DropDownComponentInput, EventArgumentInput, EventInput, EventOptionType, Guest, HttpInput, HttpMethod, LayoutInput, MyType, MyTypeFooArgs, Namer, PageInput, PageType, User, UserKind } from '../types' +import { Admin, AttributeInput, ButtonComponentType, Comment, ComponentInput, DropDownComponentInput, EventArgumentInput, EventInput, EventOptionType, Guest, HttpInput, HttpMethod, LayoutInput, MyType, MyTypeFooArgs, Namer, PageInput, PageType, User, UserKind } from '../types' export const ButtonComponentTypeSchema = yup.string().oneOf(Object.values(ButtonComponentType)).defined(); @@ -29,6 +29,13 @@ export function AttributeInputSchema(): yup.ObjectSchema { }) } +export function CommentSchema(): yup.ObjectSchema { + return yup.object({ + __typename: yup.string<'Comment'>().optional(), + replies: yup.array(yup.lazy(() => CommentSchema().nonNullable())).defined().nullable().optional() + }) +} + export function ComponentInputSchema(): yup.ObjectSchema { return yup.object({ child: yup.lazy(() => ComponentInputSchema()).optional(), diff --git a/example/zod/schemas.ts b/example/zod/schemas.ts index 1cb9d68f..72e3a47a 100644 --- a/example/zod/schemas.ts +++ b/example/zod/schemas.ts @@ -1,5 +1,5 @@ import { z } from 'zod/v3' -import { Admin, AttributeInput, ButtonComponentType, ComponentInput, DropDownComponentInput, EventArgumentInput, EventInput, EventOptionType, Guest, HttpInput, HttpMethod, LayoutInput, MyType, MyTypeFooArgs, Namer, PageInput, PageType, User } from '../types' +import { Admin, AttributeInput, ButtonComponentType, Comment, ComponentInput, DropDownComponentInput, EventArgumentInput, EventInput, EventOptionType, Guest, HttpInput, HttpMethod, LayoutInput, MyType, MyTypeFooArgs, Namer, PageInput, PageType, User } from '../types' type Properties = Required<{ [K in keyof T]: z.ZodType; @@ -33,6 +33,13 @@ export function AttributeInputSchema(): z.ZodObject> }) } +export function CommentSchema(): z.ZodObject> { + return z.object({ + __typename: z.literal('Comment').optional(), + replies: z.array(z.lazy(() => CommentSchema())).nullish() + }) +} + export function ComponentInputSchema(): z.ZodObject> { return z.object({ child: z.lazy(() => ComponentInputSchema().nullish()), diff --git a/example/zodv4/schemas.ts b/example/zodv4/schemas.ts index 237ae4d0..3b8b3023 100644 --- a/example/zodv4/schemas.ts +++ b/example/zodv4/schemas.ts @@ -1,5 +1,5 @@ import * as z from 'zod' -import { Admin, AttributeInput, ButtonComponentType, ComponentInput, DropDownComponentInput, EventArgumentInput, EventInput, EventOptionType, Guest, HttpInput, HttpMethod, LayoutInput, MyType, MyTypeFooArgs, Namer, PageInput, PageType, User } from '../types' +import { Admin, AttributeInput, ButtonComponentType, Comment, ComponentInput, DropDownComponentInput, EventArgumentInput, EventInput, EventOptionType, Guest, HttpInput, HttpMethod, LayoutInput, MyType, MyTypeFooArgs, Namer, PageInput, PageType, User } from '../types' type Properties = Required<{ [K in keyof T]: z.ZodType; @@ -33,6 +33,13 @@ export function AttributeInputSchema(): z.ZodObject> }) } +export function CommentSchema(): z.ZodObject> { + return z.object({ + __typename: z.literal('Comment').optional(), + replies: z.array(z.lazy(() => CommentSchema())).nullish() + }) +} + export function ComponentInputSchema(): z.ZodObject> { return z.object({ child: z.lazy(() => ComponentInputSchema().nullish()), @@ -128,7 +135,7 @@ export function UserSchema(): z.ZodObject> { createdAt: definedNonNullAnySchema.nullish(), email: z.string().nullish(), id: z.string().nullish(), - kind: UserKindSchema().nullish(), + kind: z.lazy(() => UserKindSchema().nullish()), name: z.string().nullish(), password: z.string().nullish(), updatedAt: definedNonNullAnySchema.nullish() From ba103485bd1ede5b60e40f0a2c7eeeb4c6acf5fc Mon Sep 17 00:00:00 2001 From: Kei Kamikawa Date: Tue, 23 Sep 2025 14:47:54 +0900 Subject: [PATCH 063/133] 0.18.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d19b2c23..24781370 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "graphql-codegen-typescript-validation-schema", "type": "module", - "version": "0.18.0", + "version": "0.18.1", "packageManager": "pnpm@10.17.1", "description": "GraphQL Code Generator plugin to generate form validation schema from your GraphQL schema", "respository": { From 480dc2a6ea6d947bcb125afed11ca3648d423bee Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 28 Sep 2025 08:53:10 +0000 Subject: [PATCH 064/133] chore(deps): update dependency jest to v30.2.0 (#1246) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 673 +++++++++++++++++++++++-------------------------- 2 files changed, 311 insertions(+), 364 deletions(-) diff --git a/package.json b/package.json index 24781370..d3ae8853 100644 --- a/package.json +++ b/package.json @@ -94,7 +94,7 @@ "@types/graphlib": "^2.1.8", "@types/node": "^22.0.0", "eslint": "9.36.0", - "jest": "30.1.3", + "jest": "30.2.0", "myzod": "1.12.1", "npm-run-all2": "8.0.4", "ts-dedent": "^2.2.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 001bd1c4..88a300d2 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -49,8 +49,8 @@ importers: specifier: 9.36.0 version: 9.36.0(jiti@2.4.0) jest: - specifier: 30.1.3 - version: 30.1.3(@types/node@22.18.6) + specifier: 30.2.0 + version: 30.2.0(@types/node@22.18.6) myzod: specifier: 1.12.1 version: 1.12.1 @@ -62,7 +62,7 @@ importers: version: 2.2.0 ts-jest: specifier: 29.4.4 - version: 29.4.4(@babel/core@7.27.4)(@jest/transform@30.1.2)(@jest/types@30.0.5)(babel-jest@30.1.2(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.1.3(@types/node@22.18.6))(typescript@5.9.2) + version: 29.4.4(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.6))(typescript@5.9.2) typescript: specifier: 5.9.2 version: 5.9.2 @@ -203,11 +203,6 @@ packages: resolution: {integrity: sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug==} engines: {node: '>=6.9.0'} - '@babel/parser@7.28.3': - resolution: {integrity: sha512-7+Ey1mAgYqFAx2h0RuoxcQT5+MlG3GTV0TQrgr7/ZliKsm/MNDxVVutlWaziMq7wJNAz8MTqz55XLpWvva6StA==} - engines: {node: '>=6.0.0'} - hasBin: true - '@babel/parser@7.28.4': resolution: {integrity: sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==} engines: {node: '>=6.0.0'} @@ -322,10 +317,6 @@ packages: resolution: {integrity: sha512-oNcu2QbHqts9BtOWJosOVJapWjBDSxGCpFvikNR5TGDYDQf3JwpIoMzIKrvfoti93cLfPJEG4tH9SPVeyCGgdA==} engines: {node: '>=6.9.0'} - '@babel/types@7.28.2': - resolution: {integrity: sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==} - engines: {node: '>=6.9.0'} - '@babel/types@7.28.4': resolution: {integrity: sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==} engines: {node: '>=6.9.0'} @@ -943,12 +934,12 @@ packages: resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} engines: {node: '>=8'} - '@jest/console@30.1.2': - resolution: {integrity: sha512-BGMAxj8VRmoD0MoA/jo9alMXSRoqW8KPeqOfEo1ncxnRLatTBCpRoOwlwlEMdudp68Q6WSGwYrrLtTGOh8fLzw==} + '@jest/console@30.2.0': + resolution: {integrity: sha512-+O1ifRjkvYIkBqASKWgLxrpEhQAAE7hY77ALLUufSk5717KfOShg6IbqLmdsLMPdUiFvA2kTs0R7YZy+l0IzZQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/core@30.1.3': - resolution: {integrity: sha512-LIQz7NEDDO1+eyOA2ZmkiAyYvZuo6s1UxD/e2IHldR6D7UYogVq3arTmli07MkENLq6/3JEQjp0mA8rrHHJ8KQ==} + '@jest/core@30.2.0': + resolution: {integrity: sha512-03W6IhuhjqTlpzh/ojut/pDB2LPRygyWX8ExpgHtQA8H/3K7+1vKmcINx5UzeOX1se6YEsBsOHQ1CRzf3fOwTQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -960,36 +951,36 @@ packages: resolution: {integrity: sha512-n5H8QLDJ47QqbCNn5SuFjCRDrOLEZ0h8vAHCK5RL9Ls7Xa8AQLa/YxAc9UjFqoEDM48muwtBGjtMY5cr0PLDCw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/environment@30.1.2': - resolution: {integrity: sha512-N8t1Ytw4/mr9uN28OnVf0SYE2dGhaIxOVYcwsf9IInBKjvofAjbFRvedvBBlyTYk2knbJTiEjEJ2PyyDIBnd9w==} + '@jest/environment@30.2.0': + resolution: {integrity: sha512-/QPTL7OBJQ5ac09UDRa3EQes4gt1FTEG/8jZ/4v5IVzx+Cv7dLxlVIvfvSVRiiX2drWyXeBjkMSR8hvOWSog5g==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/expect-utils@30.1.2': - resolution: {integrity: sha512-HXy1qT/bfdjCv7iC336ExbqqYtZvljrV8odNdso7dWK9bSeHtLlvwWWC3YSybSPL03Gg5rug6WLCZAZFH72m0A==} + '@jest/expect-utils@30.2.0': + resolution: {integrity: sha512-1JnRfhqpD8HGpOmQp180Fo9Zt69zNtC+9lR+kT7NVL05tNXIi+QC8Csz7lfidMoVLPD3FnOtcmp0CEFnxExGEA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/expect@30.1.2': - resolution: {integrity: sha512-tyaIExOwQRCxPCGNC05lIjWJztDwk2gPDNSDGg1zitXJJ8dC3++G/CRjE5mb2wQsf89+lsgAgqxxNpDLiCViTA==} + '@jest/expect@30.2.0': + resolution: {integrity: sha512-V9yxQK5erfzx99Sf+7LbhBwNWEZ9eZay8qQ9+JSC0TrMR1pMDHLMY+BnVPacWU6Jamrh252/IKo4F1Xn/zfiqA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/fake-timers@30.1.2': - resolution: {integrity: sha512-Beljfv9AYkr9K+ETX9tvV61rJTY706BhBUtiaepQHeEGfe0DbpvUA5Z3fomwc5Xkhns6NWrcFDZn+72fLieUnA==} + '@jest/fake-timers@30.2.0': + resolution: {integrity: sha512-HI3tRLjRxAbBy0VO8dqqm7Hb2mIa8d5bg/NJkyQcOk7V118ObQML8RC5luTF/Zsg4474a+gDvhce7eTnP4GhYw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} '@jest/get-type@30.1.0': resolution: {integrity: sha512-eMbZE2hUnx1WV0pmURZY9XoXPkUYjpc55mb0CrhtdWLtzMQPFvu/rZkTLZFTsdaVQa+Tr4eWAteqcUzoawq/uA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/globals@30.1.2': - resolution: {integrity: sha512-teNTPZ8yZe3ahbYnvnVRDeOjr+3pu2uiAtNtrEsiMjVPPj+cXd5E/fr8BL7v/T7F31vYdEHrI5cC/2OoO/vM9A==} + '@jest/globals@30.2.0': + resolution: {integrity: sha512-b63wmnKPaK+6ZZfpYhz9K61oybvbI1aMcIs80++JI1O1rR1vaxHUCNqo3ITu6NU0d4V34yZFoHMn/uoKr/Rwfw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} '@jest/pattern@30.0.1': resolution: {integrity: sha512-gWp7NfQW27LaBQz3TITS8L7ZCQ0TLvtmI//4OwlQRx4rnWxcPNIYjxZpDcN4+UlGxgm3jS5QPz8IPTCkb59wZA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/reporters@30.1.3': - resolution: {integrity: sha512-VWEQmJWfXMOrzdFEOyGjUEOuVXllgZsoPtEHZzfdNz18RmzJ5nlR6kp8hDdY8dDS1yGOXAY7DHT+AOHIPSBV0w==} + '@jest/reporters@30.2.0': + resolution: {integrity: sha512-DRyW6baWPqKMa9CzeiBjHwjd8XeAyco2Vt8XbcLFjiwCOEKOvy82GJ8QQnJE9ofsxCMPjH4MfH8fCWIHHDKpAQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -1001,28 +992,28 @@ packages: resolution: {integrity: sha512-DmdYgtezMkh3cpU8/1uyXakv3tJRcmcXxBOcO0tbaozPwpmh4YMsnWrQm9ZmZMfa5ocbxzbFk6O4bDPEc/iAnA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/snapshot-utils@30.1.2': - resolution: {integrity: sha512-vHoMTpimcPSR7OxS2S0V1Cpg8eKDRxucHjoWl5u4RQcnxqQrV3avETiFpl8etn4dqxEGarBeHbIBety/f8mLXw==} + '@jest/snapshot-utils@30.2.0': + resolution: {integrity: sha512-0aVxM3RH6DaiLcjj/b0KrIBZhSX1373Xci4l3cW5xiUWPctZ59zQ7jj4rqcJQ/Z8JuN/4wX3FpJSa3RssVvCug==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} '@jest/source-map@30.0.1': resolution: {integrity: sha512-MIRWMUUR3sdbP36oyNyhbThLHyJ2eEDClPCiHVbrYAe5g3CHRArIVpBw7cdSB5fr+ofSfIb2Tnsw8iEHL0PYQg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/test-result@30.1.3': - resolution: {integrity: sha512-P9IV8T24D43cNRANPPokn7tZh0FAFnYS2HIfi5vK18CjRkTDR9Y3e1BoEcAJnl4ghZZF4Ecda4M/k41QkvurEQ==} + '@jest/test-result@30.2.0': + resolution: {integrity: sha512-RF+Z+0CCHkARz5HT9mcQCBulb1wgCP3FBvl9VFokMX27acKphwyQsNuWH3c+ojd1LeWBLoTYoxF0zm6S/66mjg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/test-sequencer@30.1.3': - resolution: {integrity: sha512-82J+hzC0qeQIiiZDThh+YUadvshdBswi5nuyXlEmXzrhw5ZQSRHeQ5LpVMD/xc8B3wPePvs6VMzHnntxL+4E3w==} + '@jest/test-sequencer@30.2.0': + resolution: {integrity: sha512-wXKgU/lk8fKXMu/l5Hog1R61bL4q5GCdT6OJvdAFz1P+QrpoFuLU68eoKuVc4RbrTtNnTL5FByhWdLgOPSph+Q==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/transform@30.1.2': - resolution: {integrity: sha512-UYYFGifSgfjujf1Cbd3iU/IQoSd6uwsj8XHj5DSDf5ERDcWMdJOPTkHWXj4U+Z/uMagyOQZ6Vne8C4nRIrCxqA==} + '@jest/transform@30.2.0': + resolution: {integrity: sha512-XsauDV82o5qXbhalKxD7p4TZYYdwcaEXC77PPD2HixEFF+6YGppjrAAQurTl2ECWcEomHBMMNS9AH3kcCFx8jA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - '@jest/types@30.0.5': - resolution: {integrity: sha512-aREYa3aku9SSnea4aX6bhKn4bgv3AXkgijoQgbYV3yvbiGt6z+MQ85+6mIhx9DsKW2BuB/cLR/A+tcMThx+KLQ==} + '@jest/types@30.2.0': + resolution: {integrity: sha512-H9xg1/sfVvyfU7o3zMfBEjQ1gcsdeTMgqHoYdN79tuLqfTtuu7WckRA1R5whDwOzxaZAeMKTYWqP+WCAi0CHsg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} '@jridgewell/gen-mapping@0.3.8': @@ -1551,30 +1542,30 @@ packages: resolution: {integrity: sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==} engines: {node: '>=8'} - babel-jest@30.1.2: - resolution: {integrity: sha512-IQCus1rt9kaSh7PQxLYRY5NmkNrNlU2TpabzwV7T2jljnpdHOcmnYYv8QmE04Li4S3a2Lj8/yXyET5pBarPr6g==} + babel-jest@30.2.0: + resolution: {integrity: sha512-0YiBEOxWqKkSQWL9nNGGEgndoeL0ZpWrbLMNL5u/Kaxrli3Eaxlt3ZtIDktEvXt4L/R9r3ODr2zKwGM/2BjxVw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} peerDependencies: - '@babel/core': ^7.11.0 + '@babel/core': ^7.11.0 || ^8.0.0-0 - babel-plugin-istanbul@7.0.0: - resolution: {integrity: sha512-C5OzENSx/A+gt7t4VH1I2XsflxyPUmXRFPKBxt33xncdOmq7oROVM3bZv9Ysjjkv8OJYDMa+tKuKMvqU/H3xdw==} + babel-plugin-istanbul@7.0.1: + resolution: {integrity: sha512-D8Z6Qm8jCvVXtIRkBnqNHX0zJ37rQcFJ9u8WOS6tkYOsRdHBzypCstaxWiu5ZIlqQtviRYbgnRLSoCEvjqcqbA==} engines: {node: '>=12'} - babel-plugin-jest-hoist@30.0.1: - resolution: {integrity: sha512-zTPME3pI50NsFW8ZBaVIOeAxzEY7XHlmWeXXu9srI+9kNfzCUTy8MFan46xOGZY8NZThMqq+e3qZUKsvXbasnQ==} + babel-plugin-jest-hoist@30.2.0: + resolution: {integrity: sha512-ftzhzSGMUnOzcCXd6WHdBGMyuwy15Wnn0iyyWGKgBDLxf9/s5ABuraCSpBX2uG0jUg4rqJnxsLc5+oYBqoxVaA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - babel-preset-current-node-syntax@1.1.0: - resolution: {integrity: sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==} + babel-preset-current-node-syntax@1.2.0: + resolution: {integrity: sha512-E/VlAEzRrsLEb2+dv8yp3bo4scof3l9nR4lrld+Iy5NyVqgVYUJnDAmunkhPMisRI32Qc4iRiz425d8vM++2fg==} peerDependencies: - '@babel/core': ^7.0.0 + '@babel/core': ^7.0.0 || ^8.0.0-0 - babel-preset-jest@30.0.1: - resolution: {integrity: sha512-+YHejD5iTWI46cZmcc/YtX4gaKBtdqCHCVfuVinizVpbmyjO3zYmeuyFdfA8duRqQZfgCAMlsfmkVbJ+e2MAJw==} + babel-preset-jest@30.2.0: + resolution: {integrity: sha512-US4Z3NOieAQumwFnYdUWKvUKh8+YSnS/gB3t6YBiz0bskpu7Pine8pPCheNxlPEW4wnUkma2a94YuW2q3guvCQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} peerDependencies: - '@babel/core': ^7.11.0 + '@babel/core': ^7.11.0 || ^8.0.0-beta.1 balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} @@ -1596,11 +1587,6 @@ packages: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} - browserslist@4.25.4: - resolution: {integrity: sha512-4jYpcjabC606xJ3kw2QwGEZKX0Aw7sgQdZCvIK9dhVSPh76BKo+C+btT1RRofH7B+8iNpEbgGNVWiLki5q93yg==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - browserslist@4.26.2: resolution: {integrity: sha512-ECFzp6uFOSB+dcZ5BK/IBaGWssbSYBHvuMeMt3MMFyhI0Z8SqGgEkBLARgpRH3hutIgPVsALcMwbDrJqPxQ65A==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} @@ -1643,9 +1629,6 @@ packages: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} - caniuse-lite@1.0.30001741: - resolution: {integrity: sha512-QGUGitqsc8ARjLdgAfxETDhRbJ0REsP6O3I96TAth/mVjh2cYzN2u+3AzPP3aVSm2FehEItaJw1xd+IGBXWeSw==} - caniuse-lite@1.0.30001743: resolution: {integrity: sha512-e6Ojr7RV14Un7dz6ASD0aZDmQPT/A+eZU+nuTNfjqmRrmkmQlnTNWH0SKmqagx9PeW87UVqapSurtAXifmtdmw==} @@ -1870,9 +1853,6 @@ packages: eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - electron-to-chromium@1.5.214: - resolution: {integrity: sha512-TpvUNdha+X3ybfU78NoQatKvQEm1oq3lf2QbnmCEdw+Bd9RuIAY+hJTvq1avzHM0f7EJfnH3vbCnbzKzisc/9Q==} - electron-to-chromium@1.5.222: resolution: {integrity: sha512-gA7psSwSwQRE60CEoLz6JBCQPIxNeuzB2nL8vE03GK/OHxlvykbLyeiumQy1iH5C2f3YbRAZpGCMT12a/9ih9w==} @@ -2157,8 +2137,8 @@ packages: resolution: {integrity: sha512-/kP8CAwxzLVEeFrMm4kMmy4CCDlpipyA7MYLVrdJIkV0fYF0UaigQHRsxHiuY/GEea+bh4KSv3TIlgr+2UL6bw==} engines: {node: '>=12.0.0'} - expect@30.1.2: - resolution: {integrity: sha512-xvHszRavo28ejws8FpemjhwswGj4w/BetHIL8cU49u4sGyXDw2+p3YbeDbj6xzlxi6kWTjIRSTJ+9sNXPnF0Zg==} + expect@30.2.0: + resolution: {integrity: sha512-u/feCi0GPsI+988gU2FLcsHyAHTU0MX1Wg68NhAnN7z/+C5wqG+CY8J53N9ioe8RXgaoz0nBR/TYMf3AycUuPw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} exsolve@1.0.7: @@ -2528,16 +2508,16 @@ packages: jackspeak@3.4.3: resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} - jest-changed-files@30.0.5: - resolution: {integrity: sha512-bGl2Ntdx0eAwXuGpdLdVYVr5YQHnSZlQ0y9HVDu565lCUAe9sj6JOtBbMmBBikGIegne9piDDIOeiLVoqTkz4A==} + jest-changed-files@30.2.0: + resolution: {integrity: sha512-L8lR1ChrRnSdfeOvTrwZMlnWV8G/LLjQ0nG9MBclwWZidA2N5FviRki0Bvh20WRMOX31/JYvzdqTJrk5oBdydQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-circus@30.1.3: - resolution: {integrity: sha512-Yf3dnhRON2GJT4RYzM89t/EXIWNxKTpWTL9BfF3+geFetWP4XSvJjiU1vrWplOiUkmq8cHLiwuhz+XuUp9DscA==} + jest-circus@30.2.0: + resolution: {integrity: sha512-Fh0096NC3ZkFx05EP2OXCxJAREVxj1BcW/i6EWqqymcgYKWjyyDpral3fMxVcHXg6oZM7iULer9wGRFvfpl+Tg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-cli@30.1.3: - resolution: {integrity: sha512-G8E2Ol3OKch1DEeIBl41NP7OiC6LBhfg25Btv+idcusmoUSpqUkbrneMqbW9lVpI/rCKb/uETidb7DNteheuAQ==} + jest-cli@30.2.0: + resolution: {integrity: sha512-Os9ukIvADX/A9sLt6Zse3+nmHtHaE6hqOsjQtNiugFTbKRHYIYtZXNGNK9NChseXy7djFPjndX1tL0sCTlfpAA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: @@ -2546,8 +2526,8 @@ packages: node-notifier: optional: true - jest-config@30.1.3: - resolution: {integrity: sha512-M/f7gqdQEPgZNA181Myz+GXCe8jXcJsGjCMXUzRj22FIXsZOyHNte84e0exntOvdPaeh9tA0w+B8qlP2fAezfw==} + jest-config@30.2.0: + resolution: {integrity: sha512-g4WkyzFQVWHtu6uqGmQR4CQxz/CH3yDSlhzXMWzNjDx843gYjReZnMRanjRCq5XZFuQrGDxgUaiYWE8BRfVckA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} peerDependencies: '@types/node': '*' @@ -2561,40 +2541,40 @@ packages: ts-node: optional: true - jest-diff@30.1.2: - resolution: {integrity: sha512-4+prq+9J61mOVXCa4Qp8ZjavdxzrWQXrI80GNxP8f4tkI2syPuPrJgdRPZRrfUTRvIoUwcmNLbqEJy9W800+NQ==} + jest-diff@30.2.0: + resolution: {integrity: sha512-dQHFo3Pt4/NLlG5z4PxZ/3yZTZ1C7s9hveiOj+GCN+uT109NC2QgsoVZsVOAvbJ3RgKkvyLGXZV9+piDpWbm6A==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-docblock@30.0.1: - resolution: {integrity: sha512-/vF78qn3DYphAaIc3jy4gA7XSAz167n9Bm/wn/1XhTLW7tTBIzXtCJpb/vcmc73NIIeeohCbdL94JasyXUZsGA==} + jest-docblock@30.2.0: + resolution: {integrity: sha512-tR/FFgZKS1CXluOQzZvNH3+0z9jXr3ldGSD8bhyuxvlVUwbeLOGynkunvlTMxchC5urrKndYiwCFC0DLVjpOCA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-each@30.1.0: - resolution: {integrity: sha512-A+9FKzxPluqogNahpCv04UJvcZ9B3HamqpDNWNKDjtxVRYB8xbZLFuCr8JAJFpNp83CA0anGQFlpQna9Me+/tQ==} + jest-each@30.2.0: + resolution: {integrity: sha512-lpWlJlM7bCUf1mfmuqTA8+j2lNURW9eNafOy99knBM01i5CQeY5UH1vZjgT9071nDJac1M4XsbyI44oNOdhlDQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-environment-node@30.1.2: - resolution: {integrity: sha512-w8qBiXtqGWJ9xpJIA98M0EIoq079GOQRQUyse5qg1plShUCQ0Ek1VTTcczqKrn3f24TFAgFtT+4q3aOXvjbsuA==} + jest-environment-node@30.2.0: + resolution: {integrity: sha512-ElU8v92QJ9UrYsKrxDIKCxu6PfNj4Hdcktcn0JX12zqNdqWHB0N+hwOnnBBXvjLd2vApZtuLUGs1QSY+MsXoNA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-haste-map@30.1.0: - resolution: {integrity: sha512-JLeM84kNjpRkggcGpQLsV7B8W4LNUWz7oDNVnY1Vjj22b5/fAb3kk3htiD+4Na8bmJmjJR7rBtS2Rmq/NEcADg==} + jest-haste-map@30.2.0: + resolution: {integrity: sha512-sQA/jCb9kNt+neM0anSj6eZhLZUIhQgwDt7cPGjumgLM4rXsfb9kpnlacmvZz3Q5tb80nS+oG/if+NBKrHC+Xw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-leak-detector@30.1.0: - resolution: {integrity: sha512-AoFvJzwxK+4KohH60vRuHaqXfWmeBATFZpzpmzNmYTtmRMiyGPVhkXpBqxUQunw+dQB48bDf4NpUs6ivVbRv1g==} + jest-leak-detector@30.2.0: + resolution: {integrity: sha512-M6jKAjyzjHG0SrQgwhgZGy9hFazcudwCNovY/9HPIicmNSBuockPSedAP9vlPK6ONFJ1zfyH/M2/YYJxOz5cdQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-matcher-utils@30.1.2: - resolution: {integrity: sha512-7ai16hy4rSbDjvPTuUhuV8nyPBd6EX34HkBsBcBX2lENCuAQ0qKCPb/+lt8OSWUa9WWmGYLy41PrEzkwRwoGZQ==} + jest-matcher-utils@30.2.0: + resolution: {integrity: sha512-dQ94Nq4dbzmUWkQ0ANAWS9tBRfqCrn0bV9AMYdOi/MHW726xn7eQmMeRTpX2ViC00bpNaWXq+7o4lIQ3AX13Hg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-message-util@30.1.0: - resolution: {integrity: sha512-HizKDGG98cYkWmaLUHChq4iN+oCENohQLb7Z5guBPumYs+/etonmNFlg1Ps6yN9LTPyZn+M+b/9BbnHx3WTMDg==} + jest-message-util@30.2.0: + resolution: {integrity: sha512-y4DKFLZ2y6DxTWD4cDe07RglV88ZiNEdlRfGtqahfbIjfsw1nMCPx49Uev4IA/hWn3sDKyAnSPwoYSsAEdcimw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-mock@30.0.5: - resolution: {integrity: sha512-Od7TyasAAQX/6S+QCbN6vZoWOMwlTtzzGuxJku1GhGanAjz9y+QsQkpScDmETvdc9aSXyJ/Op4rhpMYBWW91wQ==} + jest-mock@30.2.0: + resolution: {integrity: sha512-JNNNl2rj4b5ICpmAcq+WbLH83XswjPbjH4T7yvGzfAGCPh1rw+xVNbtk+FnRslvt9lkCcdn9i1oAoKUuFsOxRw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} jest-pnp-resolver@1.2.3: @@ -2610,44 +2590,44 @@ packages: resolution: {integrity: sha512-jHEQgBXAgc+Gh4g0p3bCevgRCVRkB4VB70zhoAE48gxeSr1hfUOsM/C2WoJgVL7Eyg//hudYENbm3Ne+/dRVVA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-resolve-dependencies@30.1.3: - resolution: {integrity: sha512-DNfq3WGmuRyHRHfEet+Zm3QOmVFtIarUOQHHryKPc0YL9ROfgWZxl4+aZq/VAzok2SS3gZdniP+dO4zgo59hBg==} + jest-resolve-dependencies@30.2.0: + resolution: {integrity: sha512-xTOIGug/0RmIe3mmCqCT95yO0vj6JURrn1TKWlNbhiAefJRWINNPgwVkrVgt/YaerPzY3iItufd80v3lOrFJ2w==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-resolve@30.1.3: - resolution: {integrity: sha512-DI4PtTqzw9GwELFS41sdMK32Ajp3XZQ8iygeDMWkxlRhm7uUTOFSZFVZABFuxr0jvspn8MAYy54NxZCsuCTSOw==} + jest-resolve@30.2.0: + resolution: {integrity: sha512-TCrHSxPlx3tBY3hWNtRQKbtgLhsXa1WmbJEqBlTBrGafd5fiQFByy2GNCEoGR+Tns8d15GaL9cxEzKOO3GEb2A==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-runner@30.1.3: - resolution: {integrity: sha512-dd1ORcxQraW44Uz029TtXj85W11yvLpDuIzNOlofrC8GN+SgDlgY4BvyxJiVeuabA1t6idjNbX59jLd2oplOGQ==} + jest-runner@30.2.0: + resolution: {integrity: sha512-PqvZ2B2XEyPEbclp+gV6KO/F1FIFSbIwewRgmROCMBo/aZ6J1w8Qypoj2pEOcg3G2HzLlaP6VUtvwCI8dM3oqQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-runtime@30.1.3: - resolution: {integrity: sha512-WS8xgjuNSphdIGnleQcJ3AKE4tBKOVP+tKhCD0u+Tb2sBmsU8DxfbBpZX7//+XOz81zVs4eFpJQwBNji2Y07DA==} + jest-runtime@30.2.0: + resolution: {integrity: sha512-p1+GVX/PJqTucvsmERPMgCPvQJpFt4hFbM+VN3n8TMo47decMUcJbt+rgzwrEme0MQUA/R+1de2axftTHkKckg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-snapshot@30.1.2: - resolution: {integrity: sha512-4q4+6+1c8B6Cy5pGgFvjDy/Pa6VYRiGu0yQafKkJ9u6wQx4G5PqI2QR6nxTl43yy7IWsINwz6oT4o6tD12a8Dg==} + jest-snapshot@30.2.0: + resolution: {integrity: sha512-5WEtTy2jXPFypadKNpbNkZ72puZCa6UjSr/7djeecHWOu7iYhSXSnHScT8wBz3Rn8Ena5d5RYRcsyKIeqG1IyA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-util@30.0.5: - resolution: {integrity: sha512-pvyPWssDZR0FlfMxCBoc0tvM8iUEskaRFALUtGQYzVEAqisAztmy+R8LnU14KT4XA0H/a5HMVTXat1jLne010g==} + jest-util@30.2.0: + resolution: {integrity: sha512-QKNsM0o3Xe6ISQU869e+DhG+4CK/48aHYdJZGlFQVTjnbvgpcKyxpzk29fGiO7i/J8VENZ+d2iGnSsvmuHywlA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-validate@30.1.0: - resolution: {integrity: sha512-7P3ZlCFW/vhfQ8pE7zW6Oi4EzvuB4sgR72Q1INfW9m0FGo0GADYlPwIkf4CyPq7wq85g+kPMtPOHNAdWHeBOaA==} + jest-validate@30.2.0: + resolution: {integrity: sha512-FBGWi7dP2hpdi8nBoWxSsLvBFewKAg0+uSQwBaof4Y4DPgBabXgpSYC5/lR7VmnIlSpASmCi/ntRWPbv7089Pw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-watcher@30.1.3: - resolution: {integrity: sha512-6jQUZCP1BTL2gvG9E4YF06Ytq4yMb4If6YoQGRR6PpjtqOXSP3sKe2kqwB6SQ+H9DezOfZaSLnmka1NtGm3fCQ==} + jest-watcher@30.2.0: + resolution: {integrity: sha512-PYxa28dxJ9g777pGm/7PrbnMeA0Jr7osHP9bS7eJy9DuAjMgdGtxgf0uKMyoIsTWAkIbUW5hSDdJ3urmgXBqxg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest-worker@30.1.0: - resolution: {integrity: sha512-uvWcSjlwAAgIu133Tt77A05H7RIk3Ho8tZL50bQM2AkvLdluw9NG48lRCl3Dt+MOH719n/0nnb5YxUwcuJiKRA==} + jest-worker@30.2.0: + resolution: {integrity: sha512-0Q4Uk8WF7BUwqXHuAjc23vmopWJw5WH7w2tqBoUOZpOjW/ZnR44GXXd1r82RvnmI2GZge3ivrYXk/BE2+VtW2g==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - jest@30.1.3: - resolution: {integrity: sha512-Ry+p2+NLk6u8Agh5yVqELfUJvRfV51hhVBRIB5yZPY7mU0DGBmOuFG5GebZbMbm86cdQNK0fhJuDX8/1YorISQ==} + jest@30.2.0: + resolution: {integrity: sha512-F26gjC0yWN8uAA5m5Ss8ZQf5nDHWGlN/xWZIh8S5SRbsEKBovwZhxGd6LJlbZYxBgCYOtreSUyb8hpXyGC5O4A==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: @@ -3037,9 +3017,6 @@ packages: node-int64@0.4.0: resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} - node-releases@2.0.20: - resolution: {integrity: sha512-7gK6zSXEH6neM212JgfYFXe+GmZQM+fia5SsusuBIUgnPheLFBmIPhtFoAQRj8/7wASYQnbDlHPVwY0BefoFgA==} - node-releases@2.0.21: resolution: {integrity: sha512-5b0pgg78U3hwXkCM8Z9b2FJdPZlr9Psr9V2gQPESdGHqbntyFJKFW4r5TeWGFzafGY3hzs1JC62VEQMbl1JFkw==} @@ -3237,8 +3214,8 @@ packages: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} engines: {node: '>= 0.8.0'} - pretty-format@30.0.5: - resolution: {integrity: sha512-D1tKtYvByrBkFLe2wHJl2bwMJIiT8rW+XA+TiataH79/FszLQMrpGEvzUVkzPau7OCO0Qnrhpe87PqtOAIB8Yw==} + pretty-format@30.2.0: + resolution: {integrity: sha512-9uBdv/B4EefsuAL+pWqueZyZS2Ba+LxfFeQ9DN14HU4bN8bhaxKdkpjpB6fs9+pSjIBu+FXQHImEg8j/Lw0+vA==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} promise@7.3.1: @@ -4002,10 +3979,10 @@ snapshots: '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.4) '@babel/helpers': 7.27.6 - '@babel/parser': 7.28.3 + '@babel/parser': 7.28.4 '@babel/template': 7.27.2 '@babel/traverse': 7.27.4 - '@babel/types': 7.28.2 + '@babel/types': 7.28.4 convert-source-map: 2.0.0 debug: 4.4.3 gensync: 1.0.0-beta.2 @@ -4026,7 +4003,7 @@ snapshots: dependencies: '@babel/compat-data': 7.27.5 '@babel/helper-validator-option': 7.27.1 - browserslist: 4.25.4 + browserslist: 4.26.2 lru-cache: 5.1.1 semver: 6.3.1 @@ -4059,10 +4036,6 @@ snapshots: '@babel/template': 7.27.2 '@babel/types': 7.28.4 - '@babel/parser@7.28.3': - dependencies: - '@babel/types': 7.28.2 - '@babel/parser@7.28.4': dependencies: '@babel/types': 7.28.4 @@ -4173,17 +4146,12 @@ snapshots: '@babel/generator': 7.27.5 '@babel/parser': 7.28.4 '@babel/template': 7.27.2 - '@babel/types': 7.28.2 + '@babel/types': 7.28.4 debug: 4.4.3 globals: 11.12.0 transitivePeerDependencies: - supports-color - '@babel/types@7.28.2': - dependencies: - '@babel/helper-string-parser': 7.27.1 - '@babel/helper-validator-identifier': 7.27.1 - '@babel/types@7.28.4': dependencies: '@babel/helper-string-parser': 7.27.1 @@ -4923,44 +4891,44 @@ snapshots: '@istanbuljs/schema@0.1.3': {} - '@jest/console@30.1.2': + '@jest/console@30.2.0': dependencies: - '@jest/types': 30.0.5 + '@jest/types': 30.2.0 '@types/node': 22.18.6 chalk: 4.1.2 - jest-message-util: 30.1.0 - jest-util: 30.0.5 + jest-message-util: 30.2.0 + jest-util: 30.2.0 slash: 3.0.0 - '@jest/core@30.1.3': + '@jest/core@30.2.0': dependencies: - '@jest/console': 30.1.2 + '@jest/console': 30.2.0 '@jest/pattern': 30.0.1 - '@jest/reporters': 30.1.3 - '@jest/test-result': 30.1.3 - '@jest/transform': 30.1.2 - '@jest/types': 30.0.5 + '@jest/reporters': 30.2.0 + '@jest/test-result': 30.2.0 + '@jest/transform': 30.2.0 + '@jest/types': 30.2.0 '@types/node': 22.18.6 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 4.3.0 exit-x: 0.2.2 graceful-fs: 4.2.11 - jest-changed-files: 30.0.5 - jest-config: 30.1.3(@types/node@22.18.6) - jest-haste-map: 30.1.0 - jest-message-util: 30.1.0 + jest-changed-files: 30.2.0 + jest-config: 30.2.0(@types/node@22.18.6) + jest-haste-map: 30.2.0 + jest-message-util: 30.2.0 jest-regex-util: 30.0.1 - jest-resolve: 30.1.3 - jest-resolve-dependencies: 30.1.3 - jest-runner: 30.1.3 - jest-runtime: 30.1.3 - jest-snapshot: 30.1.2 - jest-util: 30.0.5 - jest-validate: 30.1.0 - jest-watcher: 30.1.3 + jest-resolve: 30.2.0 + jest-resolve-dependencies: 30.2.0 + jest-runner: 30.2.0 + jest-runtime: 30.2.0 + jest-snapshot: 30.2.0 + jest-util: 30.2.0 + jest-validate: 30.2.0 + jest-watcher: 30.2.0 micromatch: 4.0.8 - pretty-format: 30.0.5 + pretty-format: 30.2.0 slash: 3.0.0 transitivePeerDependencies: - babel-plugin-macros @@ -4970,41 +4938,41 @@ snapshots: '@jest/diff-sequences@30.0.1': {} - '@jest/environment@30.1.2': + '@jest/environment@30.2.0': dependencies: - '@jest/fake-timers': 30.1.2 - '@jest/types': 30.0.5 + '@jest/fake-timers': 30.2.0 + '@jest/types': 30.2.0 '@types/node': 22.18.6 - jest-mock: 30.0.5 + jest-mock: 30.2.0 - '@jest/expect-utils@30.1.2': + '@jest/expect-utils@30.2.0': dependencies: '@jest/get-type': 30.1.0 - '@jest/expect@30.1.2': + '@jest/expect@30.2.0': dependencies: - expect: 30.1.2 - jest-snapshot: 30.1.2 + expect: 30.2.0 + jest-snapshot: 30.2.0 transitivePeerDependencies: - supports-color - '@jest/fake-timers@30.1.2': + '@jest/fake-timers@30.2.0': dependencies: - '@jest/types': 30.0.5 + '@jest/types': 30.2.0 '@sinonjs/fake-timers': 13.0.5 '@types/node': 22.18.6 - jest-message-util: 30.1.0 - jest-mock: 30.0.5 - jest-util: 30.0.5 + jest-message-util: 30.2.0 + jest-mock: 30.2.0 + jest-util: 30.2.0 '@jest/get-type@30.1.0': {} - '@jest/globals@30.1.2': + '@jest/globals@30.2.0': dependencies: - '@jest/environment': 30.1.2 - '@jest/expect': 30.1.2 - '@jest/types': 30.0.5 - jest-mock: 30.0.5 + '@jest/environment': 30.2.0 + '@jest/expect': 30.2.0 + '@jest/types': 30.2.0 + jest-mock: 30.2.0 transitivePeerDependencies: - supports-color @@ -5013,13 +4981,13 @@ snapshots: '@types/node': 22.18.6 jest-regex-util: 30.0.1 - '@jest/reporters@30.1.3': + '@jest/reporters@30.2.0': dependencies: '@bcoe/v8-coverage': 0.2.3 - '@jest/console': 30.1.2 - '@jest/test-result': 30.1.3 - '@jest/transform': 30.1.2 - '@jest/types': 30.0.5 + '@jest/console': 30.2.0 + '@jest/test-result': 30.2.0 + '@jest/transform': 30.2.0 + '@jest/types': 30.2.0 '@jridgewell/trace-mapping': 0.3.25 '@types/node': 22.18.6 chalk: 4.1.2 @@ -5032,9 +5000,9 @@ snapshots: istanbul-lib-report: 3.0.1 istanbul-lib-source-maps: 5.0.6 istanbul-reports: 3.1.7 - jest-message-util: 30.1.0 - jest-util: 30.0.5 - jest-worker: 30.1.0 + jest-message-util: 30.2.0 + jest-util: 30.2.0 + jest-worker: 30.2.0 slash: 3.0.0 string-length: 4.0.2 v8-to-istanbul: 9.3.0 @@ -5045,9 +5013,9 @@ snapshots: dependencies: '@sinclair/typebox': 0.34.33 - '@jest/snapshot-utils@30.1.2': + '@jest/snapshot-utils@30.2.0': dependencies: - '@jest/types': 30.0.5 + '@jest/types': 30.2.0 chalk: 4.1.2 graceful-fs: 4.2.11 natural-compare: 1.4.0 @@ -5058,33 +5026,33 @@ snapshots: callsites: 3.1.0 graceful-fs: 4.2.11 - '@jest/test-result@30.1.3': + '@jest/test-result@30.2.0': dependencies: - '@jest/console': 30.1.2 - '@jest/types': 30.0.5 + '@jest/console': 30.2.0 + '@jest/types': 30.2.0 '@types/istanbul-lib-coverage': 2.0.6 collect-v8-coverage: 1.0.2 - '@jest/test-sequencer@30.1.3': + '@jest/test-sequencer@30.2.0': dependencies: - '@jest/test-result': 30.1.3 + '@jest/test-result': 30.2.0 graceful-fs: 4.2.11 - jest-haste-map: 30.1.0 + jest-haste-map: 30.2.0 slash: 3.0.0 - '@jest/transform@30.1.2': + '@jest/transform@30.2.0': dependencies: '@babel/core': 7.27.4 - '@jest/types': 30.0.5 + '@jest/types': 30.2.0 '@jridgewell/trace-mapping': 0.3.25 - babel-plugin-istanbul: 7.0.0 + babel-plugin-istanbul: 7.0.1 chalk: 4.1.2 convert-source-map: 2.0.0 fast-json-stable-stringify: 2.1.0 graceful-fs: 4.2.11 - jest-haste-map: 30.1.0 + jest-haste-map: 30.2.0 jest-regex-util: 30.0.1 - jest-util: 30.0.5 + jest-util: 30.2.0 micromatch: 4.0.8 pirates: 4.0.7 slash: 3.0.0 @@ -5092,7 +5060,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@jest/types@30.0.5': + '@jest/types@30.2.0': dependencies: '@jest/pattern': 30.0.1 '@jest/schemas': 30.0.5 @@ -5105,7 +5073,7 @@ snapshots: '@jridgewell/gen-mapping@0.3.8': dependencies: '@jridgewell/set-array': 1.2.1 - '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/sourcemap-codec': 1.5.5 '@jridgewell/trace-mapping': 0.3.25 '@jridgewell/resolve-uri@3.1.2': {} @@ -5614,20 +5582,20 @@ snapshots: auto-bind@4.0.0: {} - babel-jest@30.1.2(@babel/core@7.27.4): + babel-jest@30.2.0(@babel/core@7.27.4): dependencies: '@babel/core': 7.27.4 - '@jest/transform': 30.1.2 + '@jest/transform': 30.2.0 '@types/babel__core': 7.20.5 - babel-plugin-istanbul: 7.0.0 - babel-preset-jest: 30.0.1(@babel/core@7.27.4) + babel-plugin-istanbul: 7.0.1 + babel-preset-jest: 30.2.0(@babel/core@7.27.4) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 transitivePeerDependencies: - supports-color - babel-plugin-istanbul@7.0.0: + babel-plugin-istanbul@7.0.1: dependencies: '@babel/helper-plugin-utils': 7.27.1 '@istanbuljs/load-nyc-config': 1.1.0 @@ -5637,13 +5605,11 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-jest-hoist@30.0.1: + babel-plugin-jest-hoist@30.2.0: dependencies: - '@babel/template': 7.27.2 - '@babel/types': 7.28.4 '@types/babel__core': 7.20.5 - babel-preset-current-node-syntax@1.1.0(@babel/core@7.27.4): + babel-preset-current-node-syntax@1.2.0(@babel/core@7.27.4): dependencies: '@babel/core': 7.27.4 '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.27.4) @@ -5662,11 +5628,11 @@ snapshots: '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.27.4) '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.27.4) - babel-preset-jest@30.0.1(@babel/core@7.27.4): + babel-preset-jest@30.2.0(@babel/core@7.27.4): dependencies: '@babel/core': 7.27.4 - babel-plugin-jest-hoist: 30.0.1 - babel-preset-current-node-syntax: 1.1.0(@babel/core@7.27.4) + babel-plugin-jest-hoist: 30.2.0 + babel-preset-current-node-syntax: 1.2.0(@babel/core@7.27.4) balanced-match@1.0.2: {} @@ -5687,13 +5653,6 @@ snapshots: dependencies: fill-range: 7.1.1 - browserslist@4.25.4: - dependencies: - caniuse-lite: 1.0.30001741 - electron-to-chromium: 1.5.214 - node-releases: 2.0.20 - update-browserslist-db: 1.1.3(browserslist@4.25.4) - browserslist@4.26.2: dependencies: baseline-browser-mapping: 2.8.6 @@ -5731,8 +5690,6 @@ snapshots: camelcase@6.3.0: {} - caniuse-lite@1.0.30001741: {} - caniuse-lite@1.0.30001743: {} capital-case@1.0.4: @@ -5938,8 +5895,6 @@ snapshots: eastasianwidth@0.2.0: {} - electron-to-chromium@1.5.214: {} - electron-to-chromium@1.5.222: {} emittery@0.13.1: {} @@ -6307,14 +6262,14 @@ snapshots: expect-type@1.2.1: {} - expect@30.1.2: + expect@30.2.0: dependencies: - '@jest/expect-utils': 30.1.2 + '@jest/expect-utils': 30.2.0 '@jest/get-type': 30.1.0 - jest-matcher-utils: 30.1.2 - jest-message-util: 30.1.0 - jest-mock: 30.0.5 - jest-util: 30.0.5 + jest-matcher-utils: 30.2.0 + jest-message-util: 30.2.0 + jest-mock: 30.2.0 + jest-util: 30.2.0 exsolve@1.0.7: {} @@ -6667,31 +6622,31 @@ snapshots: optionalDependencies: '@pkgjs/parseargs': 0.11.0 - jest-changed-files@30.0.5: + jest-changed-files@30.2.0: dependencies: execa: 5.1.1 - jest-util: 30.0.5 + jest-util: 30.2.0 p-limit: 3.1.0 - jest-circus@30.1.3: + jest-circus@30.2.0: dependencies: - '@jest/environment': 30.1.2 - '@jest/expect': 30.1.2 - '@jest/test-result': 30.1.3 - '@jest/types': 30.0.5 + '@jest/environment': 30.2.0 + '@jest/expect': 30.2.0 + '@jest/test-result': 30.2.0 + '@jest/types': 30.2.0 '@types/node': 22.18.6 chalk: 4.1.2 co: 4.6.0 dedent: 1.6.0 is-generator-fn: 2.1.0 - jest-each: 30.1.0 - jest-matcher-utils: 30.1.2 - jest-message-util: 30.1.0 - jest-runtime: 30.1.3 - jest-snapshot: 30.1.2 - jest-util: 30.0.5 + jest-each: 30.2.0 + jest-matcher-utils: 30.2.0 + jest-message-util: 30.2.0 + jest-runtime: 30.2.0 + jest-snapshot: 30.2.0 + jest-util: 30.2.0 p-limit: 3.1.0 - pretty-format: 30.0.5 + pretty-format: 30.2.0 pure-rand: 7.0.1 slash: 3.0.0 stack-utils: 2.0.6 @@ -6699,17 +6654,17 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@30.1.3(@types/node@22.18.6): + jest-cli@30.2.0(@types/node@22.18.6): dependencies: - '@jest/core': 30.1.3 - '@jest/test-result': 30.1.3 - '@jest/types': 30.0.5 + '@jest/core': 30.2.0 + '@jest/test-result': 30.2.0 + '@jest/types': 30.2.0 chalk: 4.1.2 exit-x: 0.2.2 import-local: 3.2.0 - jest-config: 30.1.3(@types/node@22.18.6) - jest-util: 30.0.5 - jest-validate: 30.1.0 + jest-config: 30.2.0(@types/node@22.18.6) + jest-util: 30.2.0 + jest-validate: 30.2.0 yargs: 17.7.2 transitivePeerDependencies: - '@types/node' @@ -6718,30 +6673,30 @@ snapshots: - supports-color - ts-node - jest-config@30.1.3(@types/node@22.18.6): + jest-config@30.2.0(@types/node@22.18.6): dependencies: '@babel/core': 7.27.4 '@jest/get-type': 30.1.0 '@jest/pattern': 30.0.1 - '@jest/test-sequencer': 30.1.3 - '@jest/types': 30.0.5 - babel-jest: 30.1.2(@babel/core@7.27.4) + '@jest/test-sequencer': 30.2.0 + '@jest/types': 30.2.0 + babel-jest: 30.2.0(@babel/core@7.27.4) chalk: 4.1.2 ci-info: 4.3.0 deepmerge: 4.3.1 glob: 10.4.5 graceful-fs: 4.2.11 - jest-circus: 30.1.3 - jest-docblock: 30.0.1 - jest-environment-node: 30.1.2 + jest-circus: 30.2.0 + jest-docblock: 30.2.0 + jest-environment-node: 30.2.0 jest-regex-util: 30.0.1 - jest-resolve: 30.1.3 - jest-runner: 30.1.3 - jest-util: 30.0.5 - jest-validate: 30.1.0 + jest-resolve: 30.2.0 + jest-runner: 30.2.0 + jest-util: 30.2.0 + jest-validate: 30.2.0 micromatch: 4.0.8 parse-json: 5.2.0 - pretty-format: 30.0.5 + pretty-format: 30.2.0 slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: @@ -6750,227 +6705,227 @@ snapshots: - babel-plugin-macros - supports-color - jest-diff@30.1.2: + jest-diff@30.2.0: dependencies: '@jest/diff-sequences': 30.0.1 '@jest/get-type': 30.1.0 chalk: 4.1.2 - pretty-format: 30.0.5 + pretty-format: 30.2.0 - jest-docblock@30.0.1: + jest-docblock@30.2.0: dependencies: detect-newline: 3.1.0 - jest-each@30.1.0: + jest-each@30.2.0: dependencies: '@jest/get-type': 30.1.0 - '@jest/types': 30.0.5 + '@jest/types': 30.2.0 chalk: 4.1.2 - jest-util: 30.0.5 - pretty-format: 30.0.5 + jest-util: 30.2.0 + pretty-format: 30.2.0 - jest-environment-node@30.1.2: + jest-environment-node@30.2.0: dependencies: - '@jest/environment': 30.1.2 - '@jest/fake-timers': 30.1.2 - '@jest/types': 30.0.5 + '@jest/environment': 30.2.0 + '@jest/fake-timers': 30.2.0 + '@jest/types': 30.2.0 '@types/node': 22.18.6 - jest-mock: 30.0.5 - jest-util: 30.0.5 - jest-validate: 30.1.0 + jest-mock: 30.2.0 + jest-util: 30.2.0 + jest-validate: 30.2.0 - jest-haste-map@30.1.0: + jest-haste-map@30.2.0: dependencies: - '@jest/types': 30.0.5 + '@jest/types': 30.2.0 '@types/node': 22.18.6 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 jest-regex-util: 30.0.1 - jest-util: 30.0.5 - jest-worker: 30.1.0 + jest-util: 30.2.0 + jest-worker: 30.2.0 micromatch: 4.0.8 walker: 1.0.8 optionalDependencies: fsevents: 2.3.3 - jest-leak-detector@30.1.0: + jest-leak-detector@30.2.0: dependencies: '@jest/get-type': 30.1.0 - pretty-format: 30.0.5 + pretty-format: 30.2.0 - jest-matcher-utils@30.1.2: + jest-matcher-utils@30.2.0: dependencies: '@jest/get-type': 30.1.0 chalk: 4.1.2 - jest-diff: 30.1.2 - pretty-format: 30.0.5 + jest-diff: 30.2.0 + pretty-format: 30.2.0 - jest-message-util@30.1.0: + jest-message-util@30.2.0: dependencies: '@babel/code-frame': 7.27.1 - '@jest/types': 30.0.5 + '@jest/types': 30.2.0 '@types/stack-utils': 2.0.3 chalk: 4.1.2 graceful-fs: 4.2.11 micromatch: 4.0.8 - pretty-format: 30.0.5 + pretty-format: 30.2.0 slash: 3.0.0 stack-utils: 2.0.6 - jest-mock@30.0.5: + jest-mock@30.2.0: dependencies: - '@jest/types': 30.0.5 + '@jest/types': 30.2.0 '@types/node': 22.18.6 - jest-util: 30.0.5 + jest-util: 30.2.0 - jest-pnp-resolver@1.2.3(jest-resolve@30.1.3): + jest-pnp-resolver@1.2.3(jest-resolve@30.2.0): optionalDependencies: - jest-resolve: 30.1.3 + jest-resolve: 30.2.0 jest-regex-util@30.0.1: {} - jest-resolve-dependencies@30.1.3: + jest-resolve-dependencies@30.2.0: dependencies: jest-regex-util: 30.0.1 - jest-snapshot: 30.1.2 + jest-snapshot: 30.2.0 transitivePeerDependencies: - supports-color - jest-resolve@30.1.3: + jest-resolve@30.2.0: dependencies: chalk: 4.1.2 graceful-fs: 4.2.11 - jest-haste-map: 30.1.0 - jest-pnp-resolver: 1.2.3(jest-resolve@30.1.3) - jest-util: 30.0.5 - jest-validate: 30.1.0 + jest-haste-map: 30.2.0 + jest-pnp-resolver: 1.2.3(jest-resolve@30.2.0) + jest-util: 30.2.0 + jest-validate: 30.2.0 slash: 3.0.0 unrs-resolver: 1.7.13 - jest-runner@30.1.3: + jest-runner@30.2.0: dependencies: - '@jest/console': 30.1.2 - '@jest/environment': 30.1.2 - '@jest/test-result': 30.1.3 - '@jest/transform': 30.1.2 - '@jest/types': 30.0.5 + '@jest/console': 30.2.0 + '@jest/environment': 30.2.0 + '@jest/test-result': 30.2.0 + '@jest/transform': 30.2.0 + '@jest/types': 30.2.0 '@types/node': 22.18.6 chalk: 4.1.2 emittery: 0.13.1 exit-x: 0.2.2 graceful-fs: 4.2.11 - jest-docblock: 30.0.1 - jest-environment-node: 30.1.2 - jest-haste-map: 30.1.0 - jest-leak-detector: 30.1.0 - jest-message-util: 30.1.0 - jest-resolve: 30.1.3 - jest-runtime: 30.1.3 - jest-util: 30.0.5 - jest-watcher: 30.1.3 - jest-worker: 30.1.0 + jest-docblock: 30.2.0 + jest-environment-node: 30.2.0 + jest-haste-map: 30.2.0 + jest-leak-detector: 30.2.0 + jest-message-util: 30.2.0 + jest-resolve: 30.2.0 + jest-runtime: 30.2.0 + jest-util: 30.2.0 + jest-watcher: 30.2.0 + jest-worker: 30.2.0 p-limit: 3.1.0 source-map-support: 0.5.13 transitivePeerDependencies: - supports-color - jest-runtime@30.1.3: + jest-runtime@30.2.0: dependencies: - '@jest/environment': 30.1.2 - '@jest/fake-timers': 30.1.2 - '@jest/globals': 30.1.2 + '@jest/environment': 30.2.0 + '@jest/fake-timers': 30.2.0 + '@jest/globals': 30.2.0 '@jest/source-map': 30.0.1 - '@jest/test-result': 30.1.3 - '@jest/transform': 30.1.2 - '@jest/types': 30.0.5 + '@jest/test-result': 30.2.0 + '@jest/transform': 30.2.0 + '@jest/types': 30.2.0 '@types/node': 22.18.6 chalk: 4.1.2 cjs-module-lexer: 2.1.0 collect-v8-coverage: 1.0.2 glob: 10.4.5 graceful-fs: 4.2.11 - jest-haste-map: 30.1.0 - jest-message-util: 30.1.0 - jest-mock: 30.0.5 + jest-haste-map: 30.2.0 + jest-message-util: 30.2.0 + jest-mock: 30.2.0 jest-regex-util: 30.0.1 - jest-resolve: 30.1.3 - jest-snapshot: 30.1.2 - jest-util: 30.0.5 + jest-resolve: 30.2.0 + jest-snapshot: 30.2.0 + jest-util: 30.2.0 slash: 3.0.0 strip-bom: 4.0.0 transitivePeerDependencies: - supports-color - jest-snapshot@30.1.2: + jest-snapshot@30.2.0: dependencies: '@babel/core': 7.27.4 '@babel/generator': 7.27.5 '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.4) '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.27.4) '@babel/types': 7.28.4 - '@jest/expect-utils': 30.1.2 + '@jest/expect-utils': 30.2.0 '@jest/get-type': 30.1.0 - '@jest/snapshot-utils': 30.1.2 - '@jest/transform': 30.1.2 - '@jest/types': 30.0.5 - babel-preset-current-node-syntax: 1.1.0(@babel/core@7.27.4) + '@jest/snapshot-utils': 30.2.0 + '@jest/transform': 30.2.0 + '@jest/types': 30.2.0 + babel-preset-current-node-syntax: 1.2.0(@babel/core@7.27.4) chalk: 4.1.2 - expect: 30.1.2 + expect: 30.2.0 graceful-fs: 4.2.11 - jest-diff: 30.1.2 - jest-matcher-utils: 30.1.2 - jest-message-util: 30.1.0 - jest-util: 30.0.5 - pretty-format: 30.0.5 + jest-diff: 30.2.0 + jest-matcher-utils: 30.2.0 + jest-message-util: 30.2.0 + jest-util: 30.2.0 + pretty-format: 30.2.0 semver: 7.7.2 synckit: 0.11.11 transitivePeerDependencies: - supports-color - jest-util@30.0.5: + jest-util@30.2.0: dependencies: - '@jest/types': 30.0.5 + '@jest/types': 30.2.0 '@types/node': 22.18.6 chalk: 4.1.2 ci-info: 4.3.0 graceful-fs: 4.2.11 picomatch: 4.0.3 - jest-validate@30.1.0: + jest-validate@30.2.0: dependencies: '@jest/get-type': 30.1.0 - '@jest/types': 30.0.5 + '@jest/types': 30.2.0 camelcase: 6.3.0 chalk: 4.1.2 leven: 3.1.0 - pretty-format: 30.0.5 + pretty-format: 30.2.0 - jest-watcher@30.1.3: + jest-watcher@30.2.0: dependencies: - '@jest/test-result': 30.1.3 - '@jest/types': 30.0.5 + '@jest/test-result': 30.2.0 + '@jest/types': 30.2.0 '@types/node': 22.18.6 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 - jest-util: 30.0.5 + jest-util: 30.2.0 string-length: 4.0.2 - jest-worker@30.1.0: + jest-worker@30.2.0: dependencies: '@types/node': 22.18.6 '@ungap/structured-clone': 1.3.0 - jest-util: 30.0.5 + jest-util: 30.2.0 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@30.1.3(@types/node@22.18.6): + jest@30.2.0(@types/node@22.18.6): dependencies: - '@jest/core': 30.1.3 - '@jest/types': 30.0.5 + '@jest/core': 30.2.0 + '@jest/types': 30.2.0 import-local: 3.2.0 - jest-cli: 30.1.3(@types/node@22.18.6) + jest-cli: 30.2.0(@types/node@22.18.6) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -7504,8 +7459,6 @@ snapshots: node-int64@0.4.0: {} - node-releases@2.0.20: {} - node-releases@2.0.21: {} normalize-path@2.1.1: @@ -7696,7 +7649,7 @@ snapshots: prelude-ls@1.2.1: {} - pretty-format@30.0.5: + pretty-format@30.2.0: dependencies: '@jest/schemas': 30.0.5 ansi-styles: 5.2.0 @@ -8016,12 +7969,12 @@ snapshots: ts-dedent@2.2.0: {} - ts-jest@29.4.4(@babel/core@7.27.4)(@jest/transform@30.1.2)(@jest/types@30.0.5)(babel-jest@30.1.2(@babel/core@7.27.4))(jest-util@30.0.5)(jest@30.1.3(@types/node@22.18.6))(typescript@5.9.2): + ts-jest@29.4.4(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.6))(typescript@5.9.2): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 handlebars: 4.7.8 - jest: 30.1.3(@types/node@22.18.6) + jest: 30.2.0(@types/node@22.18.6) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -8031,10 +7984,10 @@ snapshots: yargs-parser: 21.1.1 optionalDependencies: '@babel/core': 7.27.4 - '@jest/transform': 30.1.2 - '@jest/types': 30.0.5 - babel-jest: 30.1.2(@babel/core@7.27.4) - jest-util: 30.0.5 + '@jest/transform': 30.2.0 + '@jest/types': 30.2.0 + babel-jest: 30.2.0(@babel/core@7.27.4) + jest-util: 30.2.0 ts-log@2.2.7: {} @@ -8114,12 +8067,6 @@ snapshots: '@unrs/resolver-binding-win32-ia32-msvc': 1.7.13 '@unrs/resolver-binding-win32-x64-msvc': 1.7.13 - update-browserslist-db@1.1.3(browserslist@4.25.4): - dependencies: - browserslist: 4.25.4 - escalade: 3.2.0 - picocolors: 1.1.1 - update-browserslist-db@1.1.3(browserslist@4.26.2): dependencies: browserslist: 4.26.2 From 9152acc7ba7b0cec2904cdc9b6cb8f7142282c3d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 29 Sep 2025 18:00:35 +0000 Subject: [PATCH 065/133] chore(deps): update graphqlcodegenerator monorepo (#1247) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 153 +++++++++++++++++++++++++++++++------------------ 1 file changed, 98 insertions(+), 55 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 88a300d2..d7155a0e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -16,7 +16,7 @@ importers: version: 5.0.0(graphql@16.11.0) '@graphql-codegen/visitor-plugin-common': specifier: ^6.0.0 - version: 6.0.0(graphql@16.11.0) + version: 6.0.1(graphql@16.11.0) '@graphql-tools/utils': specifier: ^10.0.0 version: 10.9.1(graphql@16.11.0) @@ -35,7 +35,7 @@ importers: version: 6.0.0(@types/node@22.18.6)(graphql@16.11.0)(typescript@5.9.2) '@graphql-codegen/typescript': specifier: ^5.0.0 - version: 5.0.0(graphql@16.11.0) + version: 5.0.1(graphql@16.11.0) '@tsconfig/recommended': specifier: 1.0.10 version: 1.0.10 @@ -169,6 +169,10 @@ packages: resolution: {integrity: sha512-ZGhA37l0e/g2s1Cnzdix0O3aLYm66eF8aufiVteOgnwxgnRP8GoyMj7VWsgWnQbVKXyge7hqrFh2K2TQM6t1Hw==} engines: {node: '>=6.9.0'} + '@babel/generator@7.28.3': + resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==} + engines: {node: '>=6.9.0'} + '@babel/helper-compilation-targets@7.27.2': resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==} engines: {node: '>=6.9.0'} @@ -305,8 +309,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/runtime@7.27.0': - resolution: {integrity: sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==} + '@babel/runtime@7.28.4': + resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==} engines: {node: '>=6.9.0'} '@babel/template@7.27.2': @@ -621,8 +625,8 @@ packages: graphql-sock: optional: true - '@graphql-codegen/typescript@5.0.0': - resolution: {integrity: sha512-u90SGM6+Rdc3Je1EmVQOrGk5fl7hK1cLR4y5Q1MeUenj0aZFxKno65DCW7RcQpcfebvkPsVGA6y3oS02wPFj6Q==} + '@graphql-codegen/typescript@5.0.1': + resolution: {integrity: sha512-GqAl4pxFdWTvW1h+Ume7djrucYwt03wiaS88m4ErG+tHsJaR2ZCtoHOo+B4bh7KIuBKap14/xOZG0qY/ThWAhg==} engines: {node: '>=16'} peerDependencies: graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -633,6 +637,12 @@ packages: peerDependencies: graphql: ^0.8.0 || ^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-codegen/visitor-plugin-common@6.0.1': + resolution: {integrity: sha512-3gopoUYXn26PSj2UdCWmYj0QiRVD5qR3eDiXx72OQcN1Vb8qj6VfOWB+NDuD1Q1sgVYbCQVKgj92ERsSW1xH9Q==} + engines: {node: '>=16'} + peerDependencies: + graphql: ^0.8.0 || ^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-tools/apollo-engine-loader@8.0.4': resolution: {integrity: sha512-dwFhFDvqRr1+UkSPVYciz202a0TInKe1at+eS3YYoirg2FacaCuQDeGWG4w3rLJQXKnGhFAdFUfgBMt2ZqXxYA==} engines: {node: '>=16.0.0'} @@ -741,8 +751,8 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/relay-operation-optimizer@7.0.19': - resolution: {integrity: sha512-xnjLpfzw63yIX1bo+BVh4j1attSwqEkUbpJ+HAhdiSUa3FOQFfpWgijRju+3i87CwhjBANqdTZbcsqLT1hEXig==} + '@graphql-tools/relay-operation-optimizer@7.0.21': + resolution: {integrity: sha512-vMdU0+XfeBh9RCwPqRsr3A05hPA3MsahFn/7OAwXzMySA5EVnSH5R4poWNs3h1a0yT0tDPLhxORhK7qJdSWj2A==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -1016,6 +1026,9 @@ packages: resolution: {integrity: sha512-H9xg1/sfVvyfU7o3zMfBEjQ1gcsdeTMgqHoYdN79tuLqfTtuu7WckRA1R5whDwOzxaZAeMKTYWqP+WCAi0CHsg==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + '@jridgewell/gen-mapping@0.3.13': + resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} + '@jridgewell/gen-mapping@0.3.8': resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==} engines: {node: '>=6.0.0'} @@ -1037,6 +1050,9 @@ packages: '@jridgewell/trace-mapping@0.3.25': resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + '@jridgewell/trace-mapping@0.3.31': + resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} + '@kamilkisiela/fast-url-parser@1.1.4': resolution: {integrity: sha512-gbkePEBupNydxCelHCESvFSFM8XPh1Zs/OAVRW/rKpEqPAl5PbOM90Si8mv9bvnR53uPD2s/FiRxdvSejpRJew==} @@ -3248,9 +3264,6 @@ packages: resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - regenerator-runtime@0.14.1: - resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} - regexp-ast-analysis@0.7.1: resolution: {integrity: sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} @@ -3618,8 +3631,8 @@ packages: engines: {node: '>=14.17'} hasBin: true - ua-parser-js@1.0.40: - resolution: {integrity: sha512-z6PJ8Lml+v3ichVojCiB8toQJBuwR42ySM4ezjXIqXK3M0HczmKQ3LF4rhU55PfD99KEEXQG6yb7iOMyvYuHew==} + ua-parser-js@1.0.41: + resolution: {integrity: sha512-LbBDqdIC5s8iROCUjMbW1f5dJQTEFB1+KO9ogbvlb3nm9n4YHa5p4KTvFPWvh2Hs8gZMBuiB1/8+pdfe/tDPug==} hasBin: true ufo@1.6.1: @@ -3887,7 +3900,7 @@ snapshots: '@ampproject/remapping@2.3.0': dependencies: - '@jridgewell/gen-mapping': 0.3.8 + '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.25 '@antfu/eslint-config@5.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1))': @@ -3943,9 +3956,9 @@ snapshots: '@ardatan/relay-compiler@12.0.3(graphql@16.11.0)': dependencies: - '@babel/generator': 7.27.5 + '@babel/generator': 7.28.3 '@babel/parser': 7.28.4 - '@babel/runtime': 7.27.0 + '@babel/runtime': 7.28.4 chalk: 4.1.2 fb-watchman: 2.0.2 graphql: 16.11.0 @@ -3999,6 +4012,14 @@ snapshots: '@jridgewell/trace-mapping': 0.3.25 jsesc: 3.1.0 + '@babel/generator@7.28.3': + dependencies: + '@babel/parser': 7.28.4 + '@babel/types': 7.28.4 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 + jsesc: 3.1.0 + '@babel/helper-compilation-targets@7.27.2': dependencies: '@babel/compat-data': 7.27.5 @@ -4130,9 +4151,7 @@ snapshots: '@babel/core': 7.27.4 '@babel/helper-plugin-utils': 7.27.1 - '@babel/runtime@7.27.0': - dependencies: - regenerator-runtime: 0.14.1 + '@babel/runtime@7.28.4': {} '@babel/template@7.27.2': dependencies: @@ -4406,9 +4425,9 @@ snapshots: '@graphql-codegen/gql-tag-operations': 5.0.0(graphql@16.11.0) '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) '@graphql-codegen/typed-document-node': 6.0.0(graphql@16.11.0) - '@graphql-codegen/typescript': 5.0.0(graphql@16.11.0) + '@graphql-codegen/typescript': 5.0.1(graphql@16.11.0) '@graphql-codegen/typescript-operations': 5.0.0(graphql@16.11.0) - '@graphql-codegen/visitor-plugin-common': 6.0.0(graphql@16.11.0) + '@graphql-codegen/visitor-plugin-common': 6.0.1(graphql@16.11.0) '@graphql-tools/documents': 1.0.1(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@graphql-typed-document-node/core': 3.2.0(graphql@16.11.0) @@ -4467,7 +4486,7 @@ snapshots: '@graphql-codegen/typescript-operations@5.0.0(graphql@16.11.0)': dependencies: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) - '@graphql-codegen/typescript': 5.0.0(graphql@16.11.0) + '@graphql-codegen/typescript': 5.0.1(graphql@16.11.0) '@graphql-codegen/visitor-plugin-common': 6.0.0(graphql@16.11.0) auto-bind: 4.0.0 graphql: 16.11.0 @@ -4475,11 +4494,11 @@ snapshots: transitivePeerDependencies: - encoding - '@graphql-codegen/typescript@5.0.0(graphql@16.11.0)': + '@graphql-codegen/typescript@5.0.1(graphql@16.11.0)': dependencies: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) '@graphql-codegen/schema-ast': 5.0.0(graphql@16.11.0) - '@graphql-codegen/visitor-plugin-common': 6.0.0(graphql@16.11.0) + '@graphql-codegen/visitor-plugin-common': 6.0.1(graphql@16.11.0) auto-bind: 4.0.0 graphql: 16.11.0 tslib: 2.6.3 @@ -4490,7 +4509,23 @@ snapshots: dependencies: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) '@graphql-tools/optimize': 2.0.0(graphql@16.11.0) - '@graphql-tools/relay-operation-optimizer': 7.0.19(graphql@16.11.0) + '@graphql-tools/relay-operation-optimizer': 7.0.21(graphql@16.11.0) + '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + auto-bind: 4.0.0 + change-case-all: 1.0.15 + dependency-graph: 1.0.0 + graphql: 16.11.0 + graphql-tag: 2.12.6(graphql@16.11.0) + parse-filepath: 1.0.2 + tslib: 2.6.3 + transitivePeerDependencies: + - encoding + + '@graphql-codegen/visitor-plugin-common@6.0.1(graphql@16.11.0)': + dependencies: + '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) + '@graphql-tools/optimize': 2.0.0(graphql@16.11.0) + '@graphql-tools/relay-operation-optimizer': 7.0.21(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) auto-bind: 4.0.0 change-case-all: 1.0.15 @@ -4677,14 +4712,14 @@ snapshots: '@graphql-tools/optimize@2.0.0(graphql@16.11.0)': dependencies: graphql: 16.11.0 - tslib: 2.8.1 + tslib: 2.6.3 - '@graphql-tools/relay-operation-optimizer@7.0.19(graphql@16.11.0)': + '@graphql-tools/relay-operation-optimizer@7.0.21(graphql@16.11.0)': dependencies: '@ardatan/relay-compiler': 12.0.3(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) graphql: 16.11.0 - tslib: 2.8.1 + tslib: 2.6.3 transitivePeerDependencies: - encoding @@ -5070,6 +5105,11 @@ snapshots: '@types/yargs': 17.0.33 chalk: 4.1.2 + '@jridgewell/gen-mapping@0.3.13': + dependencies: + '@jridgewell/sourcemap-codec': 1.5.5 + '@jridgewell/trace-mapping': 0.3.31 + '@jridgewell/gen-mapping@0.3.8': dependencies: '@jridgewell/set-array': 1.2.1 @@ -5089,6 +5129,11 @@ snapshots: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.5.5 + '@jridgewell/trace-mapping@0.3.31': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.5 + '@kamilkisiela/fast-url-parser@1.1.4': {} '@napi-rs/wasm-runtime@0.2.11': @@ -5684,7 +5729,7 @@ snapshots: camel-case@4.1.2: dependencies: pascal-case: 3.1.2 - tslib: 2.8.1 + tslib: 2.6.3 camelcase@5.3.1: {} @@ -5695,7 +5740,7 @@ snapshots: capital-case@1.0.4: dependencies: no-case: 3.0.4 - tslib: 2.8.1 + tslib: 2.6.3 upper-case-first: 2.0.2 ccount@2.0.1: {} @@ -5739,7 +5784,7 @@ snapshots: path-case: 3.0.4 sentence-case: 3.0.4 snake-case: 3.0.4 - tslib: 2.8.1 + tslib: 2.6.3 change-case@5.4.4: {} @@ -5801,7 +5846,7 @@ snapshots: constant-case@3.0.4: dependencies: no-case: 3.0.4 - tslib: 2.8.1 + tslib: 2.6.3 upper-case: 2.0.2 convert-source-map@2.0.0: {} @@ -5889,7 +5934,7 @@ snapshots: dot-case@3.0.4: dependencies: no-case: 3.0.4 - tslib: 2.8.1 + tslib: 2.6.3 dset@3.1.4: {} @@ -6317,7 +6362,7 @@ snapshots: object-assign: 4.1.1 promise: 7.3.1 setimmediate: 1.0.5 - ua-parser-js: 1.0.40 + ua-parser-js: 1.0.41 transitivePeerDependencies: - encoding @@ -6461,7 +6506,7 @@ snapshots: graphql-tag@2.12.6(graphql@16.11.0): dependencies: graphql: 16.11.0 - tslib: 2.8.1 + tslib: 2.6.3 graphql-ws@5.16.0(graphql@16.11.0): dependencies: @@ -6483,7 +6528,7 @@ snapshots: header-case@2.0.4: dependencies: capital-case: 1.0.4 - tslib: 2.8.1 + tslib: 2.6.3 html-escaper@2.0.2: {} @@ -6555,7 +6600,7 @@ snapshots: is-lower-case@2.0.2: dependencies: - tslib: 2.8.1 + tslib: 2.6.3 is-number@7.0.0: {} @@ -6573,7 +6618,7 @@ snapshots: is-upper-case@2.0.2: dependencies: - tslib: 2.8.1 + tslib: 2.6.3 is-windows@1.0.2: {} @@ -7049,11 +7094,11 @@ snapshots: lower-case-first@2.0.2: dependencies: - tslib: 2.8.1 + tslib: 2.6.3 lower-case@2.0.2: dependencies: - tslib: 2.8.1 + tslib: 2.6.3 lru-cache@10.4.3: {} @@ -7451,7 +7496,7 @@ snapshots: no-case@3.0.4: dependencies: lower-case: 2.0.2 - tslib: 2.8.1 + tslib: 2.6.3 node-fetch@2.7.0: dependencies: @@ -7542,7 +7587,7 @@ snapshots: param-case@3.0.4: dependencies: dot-case: 3.0.4 - tslib: 2.8.1 + tslib: 2.6.3 parent-module@1.0.1: dependencies: @@ -7572,12 +7617,12 @@ snapshots: pascal-case@3.1.2: dependencies: no-case: 3.0.4 - tslib: 2.8.1 + tslib: 2.6.3 path-case@3.0.4: dependencies: dot-case: 3.0.4 - tslib: 2.8.1 + tslib: 2.6.3 path-exists@4.0.0: {} @@ -7680,8 +7725,6 @@ snapshots: dependencies: '@eslint-community/regexpp': 4.12.1 - regenerator-runtime@0.14.1: {} - regexp-ast-analysis@0.7.1: dependencies: '@eslint-community/regexpp': 4.12.1 @@ -7695,7 +7738,7 @@ snapshots: relay-runtime@12.0.0: dependencies: - '@babel/runtime': 7.27.0 + '@babel/runtime': 7.28.4 fbjs: 3.0.5 invariant: 2.2.4 transitivePeerDependencies: @@ -7773,7 +7816,7 @@ snapshots: sentence-case@3.0.4: dependencies: no-case: 3.0.4 - tslib: 2.8.1 + tslib: 2.6.3 upper-case-first: 2.0.2 setimmediate@1.0.5: {} @@ -7811,7 +7854,7 @@ snapshots: snake-case@3.0.4: dependencies: dot-case: 3.0.4 - tslib: 2.8.1 + tslib: 2.6.3 source-map-js@1.2.1: {} @@ -7833,7 +7876,7 @@ snapshots: sponge-case@1.0.1: dependencies: - tslib: 2.8.1 + tslib: 2.6.3 sprintf-js@1.0.3: {} @@ -7902,7 +7945,7 @@ snapshots: swap-case@2.0.2: dependencies: - tslib: 2.8.1 + tslib: 2.6.3 synckit@0.11.11: dependencies: @@ -7942,7 +7985,7 @@ snapshots: title-case@3.0.3: dependencies: - tslib: 2.8.1 + tslib: 2.6.3 tmpl@1.0.5: {} @@ -8011,7 +8054,7 @@ snapshots: typescript@5.9.2: {} - ua-parser-js@1.0.40: {} + ua-parser-js@1.0.41: {} ufo@1.6.1: {} @@ -8075,11 +8118,11 @@ snapshots: upper-case-first@2.0.2: dependencies: - tslib: 2.8.1 + tslib: 2.6.3 upper-case@2.0.2: dependencies: - tslib: 2.8.1 + tslib: 2.6.3 uri-js@4.4.1: dependencies: From d1457f426d24fc273c3fa82f798e09a9f13b9d03 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 29 Sep 2025 23:27:04 +0000 Subject: [PATCH 066/133] chore(deps): update dependency @types/node to v22.18.7 (#1248) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 254 ++++++++++++++++++++++++------------------------- 1 file changed, 127 insertions(+), 127 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d7155a0e..7ead0adf 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,10 +29,10 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^5.0.0 - version: 5.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1)) + version: 5.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.0 - version: 6.0.0(@types/node@22.18.6)(graphql@16.11.0)(typescript@5.9.2) + version: 6.0.0(@types/node@22.18.7)(graphql@16.11.0)(typescript@5.9.2) '@graphql-codegen/typescript': specifier: ^5.0.0 version: 5.0.1(graphql@16.11.0) @@ -44,13 +44,13 @@ importers: version: 2.1.12 '@types/node': specifier: ^22.0.0 - version: 22.18.6 + version: 22.18.7 eslint: specifier: 9.36.0 version: 9.36.0(jiti@2.4.0) jest: specifier: 30.2.0 - version: 30.2.0(@types/node@22.18.6) + version: 30.2.0(@types/node@22.18.7) myzod: specifier: 1.12.1 version: 1.12.1 @@ -62,7 +62,7 @@ importers: version: 2.2.0 ts-jest: specifier: 29.4.4 - version: 29.4.4(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.6))(typescript@5.9.2) + version: 29.4.4(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.7))(typescript@5.9.2) typescript: specifier: 5.9.2 version: 5.9.2 @@ -71,7 +71,7 @@ importers: version: 1.1.0(typescript@5.9.2) vitest: specifier: ^3.0.0 - version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.1 version: 1.7.1 @@ -1251,8 +1251,8 @@ packages: '@types/ms@2.1.0': resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} - '@types/node@22.18.6': - resolution: {integrity: sha512-r8uszLPpeIWbNKtvWRt/DbVi5zbqZyj1PTmhRMqBMvDnaz1QpmSKujUtJLrqGZeoM8v72MfYggDceY4K1itzWQ==} + '@types/node@22.18.7': + resolution: {integrity: sha512-3E97nlWEVp2V6J7aMkR8eOnw/w0pArPwf/5/W0865f+xzBoGL/ZuHkTAKAGN7cOWNwd+sG+hZOqj+fjzeHS75g==} '@types/stack-utils@2.0.3': resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} @@ -3903,7 +3903,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@5.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@5.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -3912,7 +3912,7 @@ snapshots: '@stylistic/eslint-plugin': 5.4.0(eslint@9.36.0(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) '@typescript-eslint/parser': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) - '@vitest/eslint-plugin': 1.3.12(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/eslint-plugin': 1.3.12(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.1.0 cac: 6.7.14 eslint: 9.36.0(jiti@2.4.0) @@ -4370,7 +4370,7 @@ snapshots: graphql: 16.11.0 tslib: 2.6.3 - '@graphql-codegen/cli@6.0.0(@types/node@22.18.6)(graphql@16.11.0)(typescript@5.9.2)': + '@graphql-codegen/cli@6.0.0(@types/node@22.18.7)(graphql@16.11.0)(typescript@5.9.2)': dependencies: '@babel/generator': 7.27.5 '@babel/template': 7.27.2 @@ -4381,20 +4381,20 @@ snapshots: '@graphql-tools/apollo-engine-loader': 8.0.4(graphql@16.11.0) '@graphql-tools/code-file-loader': 8.1.5(graphql@16.11.0) '@graphql-tools/git-loader': 8.0.9(graphql@16.11.0) - '@graphql-tools/github-loader': 8.0.4(@types/node@22.18.6)(graphql@16.11.0) + '@graphql-tools/github-loader': 8.0.4(@types/node@22.18.7)(graphql@16.11.0) '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.6)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.7)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) - '@inquirer/prompts': 7.8.4(@types/node@22.18.6) + '@inquirer/prompts': 7.8.4(@types/node@22.18.7) '@whatwg-node/fetch': 0.10.1 chalk: 4.1.2 cosmiconfig: 9.0.0(typescript@5.9.2) debounce: 2.2.0 detect-indent: 6.1.0 graphql: 16.11.0 - graphql-config: 5.1.3(@types/node@22.18.6)(graphql@16.11.0)(typescript@5.9.2) + graphql-config: 5.1.3(@types/node@22.18.7)(graphql@16.11.0)(typescript@5.9.2) is-glob: 4.0.3 jiti: 2.4.0 json-to-pretty-yaml: 1.2.2 @@ -4597,14 +4597,14 @@ snapshots: - bufferutil - utf-8-validate - '@graphql-tools/executor-http@1.1.9(@types/node@22.18.6)(graphql@16.11.0)': + '@graphql-tools/executor-http@1.1.9(@types/node@22.18.7)(graphql@16.11.0)': dependencies: '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/fetch': 0.10.1 extract-files: 11.0.0 graphql: 16.11.0 - meros: 1.3.0(@types/node@22.18.6) + meros: 1.3.0(@types/node@22.18.7) tslib: 2.8.1 value-or-promise: 1.0.12 transitivePeerDependencies: @@ -4643,10 +4643,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@graphql-tools/github-loader@8.0.4(@types/node@22.18.6)(graphql@16.11.0)': + '@graphql-tools/github-loader@8.0.4(@types/node@22.18.7)(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.6)(graphql@16.11.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.7)(graphql@16.11.0) '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@whatwg-node/fetch': 0.10.1 @@ -4730,11 +4730,11 @@ snapshots: graphql: 16.11.0 tslib: 2.8.1 - '@graphql-tools/url-loader@8.0.15(@types/node@22.18.6)(graphql@16.11.0)': + '@graphql-tools/url-loader@8.0.15(@types/node@22.18.7)(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/executor-graphql-ws': 1.3.2(graphql@16.11.0) - '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.6)(graphql@16.11.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.7)(graphql@16.11.0) '@graphql-tools/executor-legacy-ws': 1.1.2(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@graphql-tools/wrap': 10.0.16(graphql@16.11.0) @@ -4784,27 +4784,27 @@ snapshots: '@humanwhocodes/retry@0.4.3': {} - '@inquirer/checkbox@4.2.2(@types/node@22.18.6)': + '@inquirer/checkbox@4.2.2(@types/node@22.18.7)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.6) + '@inquirer/core': 10.2.0(@types/node@22.18.7) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.6) + '@inquirer/type': 3.0.8(@types/node@22.18.7) ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.6 + '@types/node': 22.18.7 - '@inquirer/confirm@5.1.16(@types/node@22.18.6)': + '@inquirer/confirm@5.1.16(@types/node@22.18.7)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.6) - '@inquirer/type': 3.0.8(@types/node@22.18.6) + '@inquirer/core': 10.2.0(@types/node@22.18.7) + '@inquirer/type': 3.0.8(@types/node@22.18.7) optionalDependencies: - '@types/node': 22.18.6 + '@types/node': 22.18.7 - '@inquirer/core@10.2.0(@types/node@22.18.6)': + '@inquirer/core@10.2.0(@types/node@22.18.7)': dependencies: '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.6) + '@inquirer/type': 3.0.8(@types/node@22.18.7) ansi-escapes: 4.3.2 cli-width: 4.1.0 mute-stream: 2.0.0 @@ -4812,100 +4812,100 @@ snapshots: wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.6 + '@types/node': 22.18.7 - '@inquirer/editor@4.2.18(@types/node@22.18.6)': + '@inquirer/editor@4.2.18(@types/node@22.18.7)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.6) - '@inquirer/external-editor': 1.0.1(@types/node@22.18.6) - '@inquirer/type': 3.0.8(@types/node@22.18.6) + '@inquirer/core': 10.2.0(@types/node@22.18.7) + '@inquirer/external-editor': 1.0.1(@types/node@22.18.7) + '@inquirer/type': 3.0.8(@types/node@22.18.7) optionalDependencies: - '@types/node': 22.18.6 + '@types/node': 22.18.7 - '@inquirer/expand@4.0.18(@types/node@22.18.6)': + '@inquirer/expand@4.0.18(@types/node@22.18.7)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.6) - '@inquirer/type': 3.0.8(@types/node@22.18.6) + '@inquirer/core': 10.2.0(@types/node@22.18.7) + '@inquirer/type': 3.0.8(@types/node@22.18.7) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.6 + '@types/node': 22.18.7 - '@inquirer/external-editor@1.0.1(@types/node@22.18.6)': + '@inquirer/external-editor@1.0.1(@types/node@22.18.7)': dependencies: chardet: 2.1.0 iconv-lite: 0.6.3 optionalDependencies: - '@types/node': 22.18.6 + '@types/node': 22.18.7 '@inquirer/figures@1.0.13': {} - '@inquirer/input@4.2.2(@types/node@22.18.6)': + '@inquirer/input@4.2.2(@types/node@22.18.7)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.6) - '@inquirer/type': 3.0.8(@types/node@22.18.6) + '@inquirer/core': 10.2.0(@types/node@22.18.7) + '@inquirer/type': 3.0.8(@types/node@22.18.7) optionalDependencies: - '@types/node': 22.18.6 + '@types/node': 22.18.7 - '@inquirer/number@3.0.18(@types/node@22.18.6)': + '@inquirer/number@3.0.18(@types/node@22.18.7)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.6) - '@inquirer/type': 3.0.8(@types/node@22.18.6) + '@inquirer/core': 10.2.0(@types/node@22.18.7) + '@inquirer/type': 3.0.8(@types/node@22.18.7) optionalDependencies: - '@types/node': 22.18.6 + '@types/node': 22.18.7 - '@inquirer/password@4.0.18(@types/node@22.18.6)': + '@inquirer/password@4.0.18(@types/node@22.18.7)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.6) - '@inquirer/type': 3.0.8(@types/node@22.18.6) + '@inquirer/core': 10.2.0(@types/node@22.18.7) + '@inquirer/type': 3.0.8(@types/node@22.18.7) ansi-escapes: 4.3.2 optionalDependencies: - '@types/node': 22.18.6 - - '@inquirer/prompts@7.8.4(@types/node@22.18.6)': - dependencies: - '@inquirer/checkbox': 4.2.2(@types/node@22.18.6) - '@inquirer/confirm': 5.1.16(@types/node@22.18.6) - '@inquirer/editor': 4.2.18(@types/node@22.18.6) - '@inquirer/expand': 4.0.18(@types/node@22.18.6) - '@inquirer/input': 4.2.2(@types/node@22.18.6) - '@inquirer/number': 3.0.18(@types/node@22.18.6) - '@inquirer/password': 4.0.18(@types/node@22.18.6) - '@inquirer/rawlist': 4.1.6(@types/node@22.18.6) - '@inquirer/search': 3.1.1(@types/node@22.18.6) - '@inquirer/select': 4.3.2(@types/node@22.18.6) + '@types/node': 22.18.7 + + '@inquirer/prompts@7.8.4(@types/node@22.18.7)': + dependencies: + '@inquirer/checkbox': 4.2.2(@types/node@22.18.7) + '@inquirer/confirm': 5.1.16(@types/node@22.18.7) + '@inquirer/editor': 4.2.18(@types/node@22.18.7) + '@inquirer/expand': 4.0.18(@types/node@22.18.7) + '@inquirer/input': 4.2.2(@types/node@22.18.7) + '@inquirer/number': 3.0.18(@types/node@22.18.7) + '@inquirer/password': 4.0.18(@types/node@22.18.7) + '@inquirer/rawlist': 4.1.6(@types/node@22.18.7) + '@inquirer/search': 3.1.1(@types/node@22.18.7) + '@inquirer/select': 4.3.2(@types/node@22.18.7) optionalDependencies: - '@types/node': 22.18.6 + '@types/node': 22.18.7 - '@inquirer/rawlist@4.1.6(@types/node@22.18.6)': + '@inquirer/rawlist@4.1.6(@types/node@22.18.7)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.6) - '@inquirer/type': 3.0.8(@types/node@22.18.6) + '@inquirer/core': 10.2.0(@types/node@22.18.7) + '@inquirer/type': 3.0.8(@types/node@22.18.7) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.6 + '@types/node': 22.18.7 - '@inquirer/search@3.1.1(@types/node@22.18.6)': + '@inquirer/search@3.1.1(@types/node@22.18.7)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.6) + '@inquirer/core': 10.2.0(@types/node@22.18.7) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.6) + '@inquirer/type': 3.0.8(@types/node@22.18.7) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.6 + '@types/node': 22.18.7 - '@inquirer/select@4.3.2(@types/node@22.18.6)': + '@inquirer/select@4.3.2(@types/node@22.18.7)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.6) + '@inquirer/core': 10.2.0(@types/node@22.18.7) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.6) + '@inquirer/type': 3.0.8(@types/node@22.18.7) ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.6 + '@types/node': 22.18.7 - '@inquirer/type@3.0.8(@types/node@22.18.6)': + '@inquirer/type@3.0.8(@types/node@22.18.7)': optionalDependencies: - '@types/node': 22.18.6 + '@types/node': 22.18.7 '@isaacs/cliui@8.0.2': dependencies: @@ -4929,7 +4929,7 @@ snapshots: '@jest/console@30.2.0': dependencies: '@jest/types': 30.2.0 - '@types/node': 22.18.6 + '@types/node': 22.18.7 chalk: 4.1.2 jest-message-util: 30.2.0 jest-util: 30.2.0 @@ -4943,14 +4943,14 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.6 + '@types/node': 22.18.7 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 4.3.0 exit-x: 0.2.2 graceful-fs: 4.2.11 jest-changed-files: 30.2.0 - jest-config: 30.2.0(@types/node@22.18.6) + jest-config: 30.2.0(@types/node@22.18.7) jest-haste-map: 30.2.0 jest-message-util: 30.2.0 jest-regex-util: 30.0.1 @@ -4977,7 +4977,7 @@ snapshots: dependencies: '@jest/fake-timers': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.6 + '@types/node': 22.18.7 jest-mock: 30.2.0 '@jest/expect-utils@30.2.0': @@ -4995,7 +4995,7 @@ snapshots: dependencies: '@jest/types': 30.2.0 '@sinonjs/fake-timers': 13.0.5 - '@types/node': 22.18.6 + '@types/node': 22.18.7 jest-message-util: 30.2.0 jest-mock: 30.2.0 jest-util: 30.2.0 @@ -5013,7 +5013,7 @@ snapshots: '@jest/pattern@30.0.1': dependencies: - '@types/node': 22.18.6 + '@types/node': 22.18.7 jest-regex-util: 30.0.1 '@jest/reporters@30.2.0': @@ -5024,7 +5024,7 @@ snapshots: '@jest/transform': 30.2.0 '@jest/types': 30.2.0 '@jridgewell/trace-mapping': 0.3.25 - '@types/node': 22.18.6 + '@types/node': 22.18.7 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit-x: 0.2.2 @@ -5101,7 +5101,7 @@ snapshots: '@jest/schemas': 30.0.5 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 22.18.6 + '@types/node': 22.18.7 '@types/yargs': 17.0.33 chalk: 4.1.2 @@ -5304,7 +5304,7 @@ snapshots: '@types/ms@2.1.0': {} - '@types/node@22.18.6': + '@types/node@22.18.7': dependencies: undici-types: 6.21.0 @@ -5314,7 +5314,7 @@ snapshots: '@types/ws@8.5.13': dependencies: - '@types/node': 22.18.6 + '@types/node': 22.18.7 '@types/yargs-parser@21.0.3': {} @@ -5470,14 +5470,14 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.12(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.3.12(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.44.0 '@typescript-eslint/utils': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) eslint: 9.36.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.2 - vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1) + vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color @@ -5489,13 +5489,13 @@ snapshots: chai: 5.2.0 tinyrainbow: 2.0.0 - '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@vitest/spy': 3.2.4 estree-walker: 3.0.3 magic-string: 0.30.17 optionalDependencies: - vite: 6.3.5(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1) '@vitest/pretty-format@3.2.4': dependencies: @@ -6482,13 +6482,13 @@ snapshots: dependencies: lodash: 4.17.21 - graphql-config@5.1.3(@types/node@22.18.6)(graphql@16.11.0)(typescript@5.9.2): + graphql-config@5.1.3(@types/node@22.18.7)(graphql@16.11.0)(typescript@5.9.2): dependencies: '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) '@graphql-tools/merge': 9.0.24(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.6)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.7)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) cosmiconfig: 8.3.6(typescript@5.9.2) graphql: 16.11.0 @@ -6679,7 +6679,7 @@ snapshots: '@jest/expect': 30.2.0 '@jest/test-result': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.6 + '@types/node': 22.18.7 chalk: 4.1.2 co: 4.6.0 dedent: 1.6.0 @@ -6699,7 +6699,7 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@30.2.0(@types/node@22.18.6): + jest-cli@30.2.0(@types/node@22.18.7): dependencies: '@jest/core': 30.2.0 '@jest/test-result': 30.2.0 @@ -6707,7 +6707,7 @@ snapshots: chalk: 4.1.2 exit-x: 0.2.2 import-local: 3.2.0 - jest-config: 30.2.0(@types/node@22.18.6) + jest-config: 30.2.0(@types/node@22.18.7) jest-util: 30.2.0 jest-validate: 30.2.0 yargs: 17.7.2 @@ -6718,7 +6718,7 @@ snapshots: - supports-color - ts-node - jest-config@30.2.0(@types/node@22.18.6): + jest-config@30.2.0(@types/node@22.18.7): dependencies: '@babel/core': 7.27.4 '@jest/get-type': 30.1.0 @@ -6745,7 +6745,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 22.18.6 + '@types/node': 22.18.7 transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -6774,7 +6774,7 @@ snapshots: '@jest/environment': 30.2.0 '@jest/fake-timers': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.6 + '@types/node': 22.18.7 jest-mock: 30.2.0 jest-util: 30.2.0 jest-validate: 30.2.0 @@ -6782,7 +6782,7 @@ snapshots: jest-haste-map@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 22.18.6 + '@types/node': 22.18.7 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -6821,7 +6821,7 @@ snapshots: jest-mock@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 22.18.6 + '@types/node': 22.18.7 jest-util: 30.2.0 jest-pnp-resolver@1.2.3(jest-resolve@30.2.0): @@ -6855,7 +6855,7 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.6 + '@types/node': 22.18.7 chalk: 4.1.2 emittery: 0.13.1 exit-x: 0.2.2 @@ -6884,7 +6884,7 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.6 + '@types/node': 22.18.7 chalk: 4.1.2 cjs-module-lexer: 2.1.0 collect-v8-coverage: 1.0.2 @@ -6931,7 +6931,7 @@ snapshots: jest-util@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 22.18.6 + '@types/node': 22.18.7 chalk: 4.1.2 ci-info: 4.3.0 graceful-fs: 4.2.11 @@ -6950,7 +6950,7 @@ snapshots: dependencies: '@jest/test-result': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.6 + '@types/node': 22.18.7 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -6959,18 +6959,18 @@ snapshots: jest-worker@30.2.0: dependencies: - '@types/node': 22.18.6 + '@types/node': 22.18.7 '@ungap/structured-clone': 1.3.0 jest-util: 30.2.0 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@30.2.0(@types/node@22.18.6): + jest@30.2.0(@types/node@22.18.7): dependencies: '@jest/core': 30.2.0 '@jest/types': 30.2.0 import-local: 3.2.0 - jest-cli: 30.2.0(@types/node@22.18.6) + jest-cli: 30.2.0(@types/node@22.18.7) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -7247,9 +7247,9 @@ snapshots: merge2@1.4.1: {} - meros@1.3.0(@types/node@22.18.6): + meros@1.3.0(@types/node@22.18.7): optionalDependencies: - '@types/node': 22.18.6 + '@types/node': 22.18.7 micromark-core-commonmark@2.0.3: dependencies: @@ -8012,12 +8012,12 @@ snapshots: ts-dedent@2.2.0: {} - ts-jest@29.4.4(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.6))(typescript@5.9.2): + ts-jest@29.4.4(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.7))(typescript@5.9.2): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 handlebars: 4.7.8 - jest: 30.2.0(@types/node@22.18.6) + jest: 30.2.0(@types/node@22.18.7) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -8144,13 +8144,13 @@ snapshots: value-or-promise@1.0.12: {} - vite-node@3.2.4(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1): + vite-node@3.2.4(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1): dependencies: cac: 6.7.14 debug: 4.4.1 es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 6.3.5(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - '@types/node' - jiti @@ -8165,7 +8165,7 @@ snapshots: - tsx - yaml - vite@6.3.5(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1): + vite@6.3.5(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1): dependencies: esbuild: 0.25.5 fdir: 6.4.6(picomatch@4.0.2) @@ -8174,16 +8174,16 @@ snapshots: rollup: 4.43.0 tinyglobby: 0.2.14 optionalDependencies: - '@types/node': 22.18.6 + '@types/node': 22.18.7 fsevents: 2.3.3 jiti: 2.4.0 yaml: 2.8.1 - vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1): + vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1): dependencies: '@types/chai': 5.2.2 '@vitest/expect': 3.2.4 - '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1)) '@vitest/pretty-format': 3.2.4 '@vitest/runner': 3.2.4 '@vitest/snapshot': 3.2.4 @@ -8201,12 +8201,12 @@ snapshots: tinyglobby: 0.2.14 tinypool: 1.1.1 tinyrainbow: 2.0.0 - vite: 6.3.5(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1) - vite-node: 3.2.4(@types/node@22.18.6)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1) + vite-node: 3.2.4(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1) why-is-node-running: 2.3.0 optionalDependencies: '@types/debug': 4.1.12 - '@types/node': 22.18.6 + '@types/node': 22.18.7 transitivePeerDependencies: - jiti - less From ce43cd61b0b633fffaef03030e9a85b8c3743c33 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 30 Sep 2025 22:44:18 +0000 Subject: [PATCH 067/133] chore(deps): update dependency typescript to v5.9.3 (#1249) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 150 ++++++++++++++++++++++++------------------------- 2 files changed, 76 insertions(+), 76 deletions(-) diff --git a/package.json b/package.json index d3ae8853..7579cdf4 100644 --- a/package.json +++ b/package.json @@ -99,7 +99,7 @@ "npm-run-all2": "8.0.4", "ts-dedent": "^2.2.0", "ts-jest": "29.4.4", - "typescript": "5.9.2", + "typescript": "5.9.3", "valibot": "1.1.0", "vitest": "^3.0.0", "yup": "1.7.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7ead0adf..82099d96 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,10 +29,10 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^5.0.0 - version: 5.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1)) + version: 5.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.0 - version: 6.0.0(@types/node@22.18.7)(graphql@16.11.0)(typescript@5.9.2) + version: 6.0.0(@types/node@22.18.7)(graphql@16.11.0)(typescript@5.9.3) '@graphql-codegen/typescript': specifier: ^5.0.0 version: 5.0.1(graphql@16.11.0) @@ -62,13 +62,13 @@ importers: version: 2.2.0 ts-jest: specifier: 29.4.4 - version: 29.4.4(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.7))(typescript@5.9.2) + version: 29.4.4(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.7))(typescript@5.9.3) typescript: - specifier: 5.9.2 - version: 5.9.2 + specifier: 5.9.3 + version: 5.9.3 valibot: specifier: 1.1.0 - version: 1.1.0(typescript@5.9.2) + version: 1.1.0(typescript@5.9.3) vitest: specifier: ^3.0.0 version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1) @@ -3626,8 +3626,8 @@ packages: resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==} engines: {node: '>=16'} - typescript@5.9.2: - resolution: {integrity: sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==} + typescript@5.9.3: + resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==} engines: {node: '>=14.17'} hasBin: true @@ -3903,16 +3903,16 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@5.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@5.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.36.0(jiti@2.4.0)) '@eslint/markdown': 7.2.0 '@stylistic/eslint-plugin': 5.4.0(eslint@9.36.0(jiti@2.4.0)) - '@typescript-eslint/eslint-plugin': 8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) - '@typescript-eslint/parser': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) - '@vitest/eslint-plugin': 1.3.12(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1)) + '@typescript-eslint/eslint-plugin': 8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/parser': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3) + '@vitest/eslint-plugin': 1.3.12(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.1.0 cac: 6.7.14 eslint: 9.36.0(jiti@2.4.0) @@ -3921,18 +3921,18 @@ snapshots: eslint-merge-processors: 2.0.0(eslint@9.36.0(jiti@2.4.0)) eslint-plugin-antfu: 3.1.1(eslint@9.36.0(jiti@2.4.0)) eslint-plugin-command: 3.3.1(eslint@9.36.0(jiti@2.4.0)) - eslint-plugin-import-lite: 0.3.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) + eslint-plugin-import-lite: 0.3.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3) eslint-plugin-jsdoc: 59.1.0(eslint@9.36.0(jiti@2.4.0)) eslint-plugin-jsonc: 2.20.1(eslint@9.36.0(jiti@2.4.0)) - eslint-plugin-n: 17.23.1(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) + eslint-plugin-n: 17.23.1(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3) eslint-plugin-no-only-tests: 3.3.0 - eslint-plugin-perfectionist: 4.15.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) + eslint-plugin-perfectionist: 4.15.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3) eslint-plugin-pnpm: 1.1.1(eslint@9.36.0(jiti@2.4.0)) eslint-plugin-regexp: 2.10.0(eslint@9.36.0(jiti@2.4.0)) eslint-plugin-toml: 0.12.0(eslint@9.36.0(jiti@2.4.0)) eslint-plugin-unicorn: 61.0.2(eslint@9.36.0(jiti@2.4.0)) - eslint-plugin-unused-imports: 4.2.0(@typescript-eslint/eslint-plugin@8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0)) - eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.36.0(jiti@2.4.0))) + eslint-plugin-unused-imports: 4.2.0(@typescript-eslint/eslint-plugin@8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.36.0(jiti@2.4.0)) + eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.36.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.36.0(jiti@2.4.0))) eslint-plugin-yml: 1.18.0(eslint@9.36.0(jiti@2.4.0)) eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.36.0(jiti@2.4.0)) globals: 16.4.0 @@ -4370,7 +4370,7 @@ snapshots: graphql: 16.11.0 tslib: 2.6.3 - '@graphql-codegen/cli@6.0.0(@types/node@22.18.7)(graphql@16.11.0)(typescript@5.9.2)': + '@graphql-codegen/cli@6.0.0(@types/node@22.18.7)(graphql@16.11.0)(typescript@5.9.3)': dependencies: '@babel/generator': 7.27.5 '@babel/template': 7.27.2 @@ -4390,11 +4390,11 @@ snapshots: '@inquirer/prompts': 7.8.4(@types/node@22.18.7) '@whatwg-node/fetch': 0.10.1 chalk: 4.1.2 - cosmiconfig: 9.0.0(typescript@5.9.2) + cosmiconfig: 9.0.0(typescript@5.9.3) debounce: 2.2.0 detect-indent: 6.1.0 graphql: 16.11.0 - graphql-config: 5.1.3(@types/node@22.18.7)(graphql@16.11.0)(typescript@5.9.2) + graphql-config: 5.1.3(@types/node@22.18.7)(graphql@16.11.0)(typescript@5.9.3) is-glob: 4.0.3 jiti: 2.4.0 json-to-pretty-yaml: 1.2.2 @@ -5322,41 +5322,41 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/eslint-plugin@8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/parser': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/scope-manager': 8.44.0 - '@typescript-eslint/type-utils': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) - '@typescript-eslint/utils': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/type-utils': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/utils': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/visitor-keys': 8.44.0 eslint: 9.36.0(jiti@2.4.0) graphemer: 1.4.0 ignore: 7.0.5 natural-compare: 1.4.0 - ts-api-utils: 2.1.0(typescript@5.9.2) - typescript: 5.9.2 + ts-api-utils: 2.1.0(typescript@5.9.3) + typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3)': dependencies: '@typescript-eslint/scope-manager': 8.44.0 '@typescript-eslint/types': 8.44.0 - '@typescript-eslint/typescript-estree': 8.44.0(typescript@5.9.2) + '@typescript-eslint/typescript-estree': 8.44.0(typescript@5.9.3) '@typescript-eslint/visitor-keys': 8.44.0 debug: 4.4.3 eslint: 9.36.0(jiti@2.4.0) - typescript: 5.9.2 + typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/project-service@8.44.0(typescript@5.9.2)': + '@typescript-eslint/project-service@8.44.0(typescript@5.9.3)': dependencies: - '@typescript-eslint/tsconfig-utils': 8.44.0(typescript@5.9.2) + '@typescript-eslint/tsconfig-utils': 8.44.0(typescript@5.9.3) '@typescript-eslint/types': 8.44.0 debug: 4.4.3 - typescript: 5.9.2 + typescript: 5.9.3 transitivePeerDependencies: - supports-color @@ -5365,28 +5365,28 @@ snapshots: '@typescript-eslint/types': 8.44.0 '@typescript-eslint/visitor-keys': 8.44.0 - '@typescript-eslint/tsconfig-utils@8.44.0(typescript@5.9.2)': + '@typescript-eslint/tsconfig-utils@8.44.0(typescript@5.9.3)': dependencies: - typescript: 5.9.2 + typescript: 5.9.3 - '@typescript-eslint/type-utils@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/type-utils@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3)': dependencies: '@typescript-eslint/types': 8.44.0 - '@typescript-eslint/typescript-estree': 8.44.0(typescript@5.9.2) - '@typescript-eslint/utils': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/typescript-estree': 8.44.0(typescript@5.9.3) + '@typescript-eslint/utils': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3) debug: 4.4.3 eslint: 9.36.0(jiti@2.4.0) - ts-api-utils: 2.1.0(typescript@5.9.2) - typescript: 5.9.2 + ts-api-utils: 2.1.0(typescript@5.9.3) + typescript: 5.9.3 transitivePeerDependencies: - supports-color '@typescript-eslint/types@8.44.0': {} - '@typescript-eslint/typescript-estree@8.44.0(typescript@5.9.2)': + '@typescript-eslint/typescript-estree@8.44.0(typescript@5.9.3)': dependencies: - '@typescript-eslint/project-service': 8.44.0(typescript@5.9.2) - '@typescript-eslint/tsconfig-utils': 8.44.0(typescript@5.9.2) + '@typescript-eslint/project-service': 8.44.0(typescript@5.9.3) + '@typescript-eslint/tsconfig-utils': 8.44.0(typescript@5.9.3) '@typescript-eslint/types': 8.44.0 '@typescript-eslint/visitor-keys': 8.44.0 debug: 4.4.3 @@ -5394,19 +5394,19 @@ snapshots: is-glob: 4.0.3 minimatch: 9.0.5 semver: 7.7.2 - ts-api-utils: 2.1.0(typescript@5.9.2) - typescript: 5.9.2 + ts-api-utils: 2.1.0(typescript@5.9.3) + typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)': + '@typescript-eslint/utils@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3)': dependencies: '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.4.0)) '@typescript-eslint/scope-manager': 8.44.0 '@typescript-eslint/types': 8.44.0 - '@typescript-eslint/typescript-estree': 8.44.0(typescript@5.9.2) + '@typescript-eslint/typescript-estree': 8.44.0(typescript@5.9.3) eslint: 9.36.0(jiti@2.4.0) - typescript: 5.9.2 + typescript: 5.9.3 transitivePeerDependencies: - supports-color @@ -5470,13 +5470,13 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.12(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.3.12(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.44.0 - '@typescript-eslint/utils': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/utils': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3) eslint: 9.36.0(jiti@2.4.0) optionalDependencies: - typescript: 5.9.2 + typescript: 5.9.3 vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color @@ -5855,23 +5855,23 @@ snapshots: dependencies: browserslist: 4.26.2 - cosmiconfig@8.3.6(typescript@5.9.2): + cosmiconfig@8.3.6(typescript@5.9.3): dependencies: import-fresh: 3.3.1 js-yaml: 4.1.0 parse-json: 5.2.0 path-type: 4.0.0 optionalDependencies: - typescript: 5.9.2 + typescript: 5.9.3 - cosmiconfig@9.0.0(typescript@5.9.2): + cosmiconfig@9.0.0(typescript@5.9.3): dependencies: env-paths: 2.2.1 import-fresh: 3.3.1 js-yaml: 4.1.0 parse-json: 5.2.0 optionalDependencies: - typescript: 5.9.2 + typescript: 5.9.3 cross-fetch@3.2.0: dependencies: @@ -6052,13 +6052,13 @@ snapshots: eslint: 9.36.0(jiti@2.4.0) eslint-compat-utils: 0.5.1(eslint@9.36.0(jiti@2.4.0)) - eslint-plugin-import-lite@0.3.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2): + eslint-plugin-import-lite@0.3.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3): dependencies: '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.4.0)) '@typescript-eslint/types': 8.44.0 eslint: 9.36.0(jiti@2.4.0) optionalDependencies: - typescript: 5.9.2 + typescript: 5.9.3 eslint-plugin-jsdoc@59.1.0(eslint@9.36.0(jiti@2.4.0)): dependencies: @@ -6091,7 +6091,7 @@ snapshots: transitivePeerDependencies: - '@eslint/json' - eslint-plugin-n@17.23.1(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2): + eslint-plugin-n@17.23.1(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3): dependencies: '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.4.0)) enhanced-resolve: 5.18.3 @@ -6102,16 +6102,16 @@ snapshots: globrex: 0.1.2 ignore: 5.3.2 semver: 7.7.2 - ts-declaration-location: 1.0.7(typescript@5.9.2) + ts-declaration-location: 1.0.7(typescript@5.9.3) transitivePeerDependencies: - typescript eslint-plugin-no-only-tests@3.3.0: {} - eslint-plugin-perfectionist@4.15.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2): + eslint-plugin-perfectionist@4.15.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3): dependencies: '@typescript-eslint/types': 8.44.0 - '@typescript-eslint/utils': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/utils': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3) eslint: 9.36.0(jiti@2.4.0) natural-orderby: 5.0.0 transitivePeerDependencies: @@ -6171,13 +6171,13 @@ snapshots: semver: 7.7.2 strip-indent: 4.1.0 - eslint-plugin-unused-imports@4.2.0(@typescript-eslint/eslint-plugin@8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0)): + eslint-plugin-unused-imports@4.2.0(@typescript-eslint/eslint-plugin@8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.36.0(jiti@2.4.0)): dependencies: eslint: 9.36.0(jiti@2.4.0) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/eslint-plugin': 8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.36.0(jiti@2.4.0))): + eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.36.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.36.0(jiti@2.4.0))): dependencies: '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.4.0)) eslint: 9.36.0(jiti@2.4.0) @@ -6188,7 +6188,7 @@ snapshots: vue-eslint-parser: 10.2.0(eslint@9.36.0(jiti@2.4.0)) xml-name-validator: 4.0.0 optionalDependencies: - '@typescript-eslint/parser': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.2) + '@typescript-eslint/parser': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3) eslint-plugin-yml@1.18.0(eslint@9.36.0(jiti@2.4.0)): dependencies: @@ -6482,7 +6482,7 @@ snapshots: dependencies: lodash: 4.17.21 - graphql-config@5.1.3(@types/node@22.18.7)(graphql@16.11.0)(typescript@5.9.2): + graphql-config@5.1.3(@types/node@22.18.7)(graphql@16.11.0)(typescript@5.9.3): dependencies: '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) @@ -6490,7 +6490,7 @@ snapshots: '@graphql-tools/merge': 9.0.24(graphql@16.11.0) '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.7)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) - cosmiconfig: 8.3.6(typescript@5.9.2) + cosmiconfig: 8.3.6(typescript@5.9.3) graphql: 16.11.0 jiti: 2.4.0 minimatch: 9.0.5 @@ -8001,18 +8001,18 @@ snapshots: tr46@0.0.3: {} - ts-api-utils@2.1.0(typescript@5.9.2): + ts-api-utils@2.1.0(typescript@5.9.3): dependencies: - typescript: 5.9.2 + typescript: 5.9.3 - ts-declaration-location@1.0.7(typescript@5.9.2): + ts-declaration-location@1.0.7(typescript@5.9.3): dependencies: picomatch: 4.0.3 - typescript: 5.9.2 + typescript: 5.9.3 ts-dedent@2.2.0: {} - ts-jest@29.4.4(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.7))(typescript@5.9.2): + ts-jest@29.4.4(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.7))(typescript@5.9.3): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 @@ -8023,7 +8023,7 @@ snapshots: make-error: 1.3.6 semver: 7.7.2 type-fest: 4.41.0 - typescript: 5.9.2 + typescript: 5.9.3 yargs-parser: 21.1.1 optionalDependencies: '@babel/core': 7.27.4 @@ -8052,7 +8052,7 @@ snapshots: type-fest@4.41.0: {} - typescript@5.9.2: {} + typescript@5.9.3: {} ua-parser-js@1.0.41: {} @@ -8138,9 +8138,9 @@ snapshots: '@types/istanbul-lib-coverage': 2.0.6 convert-source-map: 2.0.0 - valibot@1.1.0(typescript@5.9.2): + valibot@1.1.0(typescript@5.9.3): optionalDependencies: - typescript: 5.9.2 + typescript: 5.9.3 value-or-promise@1.0.12: {} From 0a384e1df4868b29b3e68a78fbf5cebe4a6a0210 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 1 Oct 2025 03:01:25 +0000 Subject: [PATCH 068/133] chore(deps): update dependency @types/node to v22.18.8 (#1250) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 254 ++++++++++++++++++++++++------------------------- 1 file changed, 127 insertions(+), 127 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 82099d96..02db0643 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,10 +29,10 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^5.0.0 - version: 5.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1)) + version: 5.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.0 - version: 6.0.0(@types/node@22.18.7)(graphql@16.11.0)(typescript@5.9.3) + version: 6.0.0(@types/node@22.18.8)(graphql@16.11.0)(typescript@5.9.3) '@graphql-codegen/typescript': specifier: ^5.0.0 version: 5.0.1(graphql@16.11.0) @@ -44,13 +44,13 @@ importers: version: 2.1.12 '@types/node': specifier: ^22.0.0 - version: 22.18.7 + version: 22.18.8 eslint: specifier: 9.36.0 version: 9.36.0(jiti@2.4.0) jest: specifier: 30.2.0 - version: 30.2.0(@types/node@22.18.7) + version: 30.2.0(@types/node@22.18.8) myzod: specifier: 1.12.1 version: 1.12.1 @@ -62,7 +62,7 @@ importers: version: 2.2.0 ts-jest: specifier: 29.4.4 - version: 29.4.4(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.7))(typescript@5.9.3) + version: 29.4.4(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.8))(typescript@5.9.3) typescript: specifier: 5.9.3 version: 5.9.3 @@ -71,7 +71,7 @@ importers: version: 1.1.0(typescript@5.9.3) vitest: specifier: ^3.0.0 - version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.1 version: 1.7.1 @@ -1251,8 +1251,8 @@ packages: '@types/ms@2.1.0': resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} - '@types/node@22.18.7': - resolution: {integrity: sha512-3E97nlWEVp2V6J7aMkR8eOnw/w0pArPwf/5/W0865f+xzBoGL/ZuHkTAKAGN7cOWNwd+sG+hZOqj+fjzeHS75g==} + '@types/node@22.18.8': + resolution: {integrity: sha512-pAZSHMiagDR7cARo/cch1f3rXy0AEXwsVsVH09FcyeJVAzCnGgmYis7P3JidtTUjyadhTeSo8TgRPswstghDaw==} '@types/stack-utils@2.0.3': resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} @@ -3903,7 +3903,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@5.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@5.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -3912,7 +3912,7 @@ snapshots: '@stylistic/eslint-plugin': 5.4.0(eslint@9.36.0(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/parser': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.3.12(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/eslint-plugin': 1.3.12(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.1.0 cac: 6.7.14 eslint: 9.36.0(jiti@2.4.0) @@ -4370,7 +4370,7 @@ snapshots: graphql: 16.11.0 tslib: 2.6.3 - '@graphql-codegen/cli@6.0.0(@types/node@22.18.7)(graphql@16.11.0)(typescript@5.9.3)': + '@graphql-codegen/cli@6.0.0(@types/node@22.18.8)(graphql@16.11.0)(typescript@5.9.3)': dependencies: '@babel/generator': 7.27.5 '@babel/template': 7.27.2 @@ -4381,20 +4381,20 @@ snapshots: '@graphql-tools/apollo-engine-loader': 8.0.4(graphql@16.11.0) '@graphql-tools/code-file-loader': 8.1.5(graphql@16.11.0) '@graphql-tools/git-loader': 8.0.9(graphql@16.11.0) - '@graphql-tools/github-loader': 8.0.4(@types/node@22.18.7)(graphql@16.11.0) + '@graphql-tools/github-loader': 8.0.4(@types/node@22.18.8)(graphql@16.11.0) '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.7)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.8)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) - '@inquirer/prompts': 7.8.4(@types/node@22.18.7) + '@inquirer/prompts': 7.8.4(@types/node@22.18.8) '@whatwg-node/fetch': 0.10.1 chalk: 4.1.2 cosmiconfig: 9.0.0(typescript@5.9.3) debounce: 2.2.0 detect-indent: 6.1.0 graphql: 16.11.0 - graphql-config: 5.1.3(@types/node@22.18.7)(graphql@16.11.0)(typescript@5.9.3) + graphql-config: 5.1.3(@types/node@22.18.8)(graphql@16.11.0)(typescript@5.9.3) is-glob: 4.0.3 jiti: 2.4.0 json-to-pretty-yaml: 1.2.2 @@ -4597,14 +4597,14 @@ snapshots: - bufferutil - utf-8-validate - '@graphql-tools/executor-http@1.1.9(@types/node@22.18.7)(graphql@16.11.0)': + '@graphql-tools/executor-http@1.1.9(@types/node@22.18.8)(graphql@16.11.0)': dependencies: '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/fetch': 0.10.1 extract-files: 11.0.0 graphql: 16.11.0 - meros: 1.3.0(@types/node@22.18.7) + meros: 1.3.0(@types/node@22.18.8) tslib: 2.8.1 value-or-promise: 1.0.12 transitivePeerDependencies: @@ -4643,10 +4643,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@graphql-tools/github-loader@8.0.4(@types/node@22.18.7)(graphql@16.11.0)': + '@graphql-tools/github-loader@8.0.4(@types/node@22.18.8)(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.7)(graphql@16.11.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.8)(graphql@16.11.0) '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@whatwg-node/fetch': 0.10.1 @@ -4730,11 +4730,11 @@ snapshots: graphql: 16.11.0 tslib: 2.8.1 - '@graphql-tools/url-loader@8.0.15(@types/node@22.18.7)(graphql@16.11.0)': + '@graphql-tools/url-loader@8.0.15(@types/node@22.18.8)(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/executor-graphql-ws': 1.3.2(graphql@16.11.0) - '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.7)(graphql@16.11.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.8)(graphql@16.11.0) '@graphql-tools/executor-legacy-ws': 1.1.2(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@graphql-tools/wrap': 10.0.16(graphql@16.11.0) @@ -4784,27 +4784,27 @@ snapshots: '@humanwhocodes/retry@0.4.3': {} - '@inquirer/checkbox@4.2.2(@types/node@22.18.7)': + '@inquirer/checkbox@4.2.2(@types/node@22.18.8)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.7) + '@inquirer/core': 10.2.0(@types/node@22.18.8) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.7) + '@inquirer/type': 3.0.8(@types/node@22.18.8) ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.7 + '@types/node': 22.18.8 - '@inquirer/confirm@5.1.16(@types/node@22.18.7)': + '@inquirer/confirm@5.1.16(@types/node@22.18.8)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.7) - '@inquirer/type': 3.0.8(@types/node@22.18.7) + '@inquirer/core': 10.2.0(@types/node@22.18.8) + '@inquirer/type': 3.0.8(@types/node@22.18.8) optionalDependencies: - '@types/node': 22.18.7 + '@types/node': 22.18.8 - '@inquirer/core@10.2.0(@types/node@22.18.7)': + '@inquirer/core@10.2.0(@types/node@22.18.8)': dependencies: '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.7) + '@inquirer/type': 3.0.8(@types/node@22.18.8) ansi-escapes: 4.3.2 cli-width: 4.1.0 mute-stream: 2.0.0 @@ -4812,100 +4812,100 @@ snapshots: wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.7 + '@types/node': 22.18.8 - '@inquirer/editor@4.2.18(@types/node@22.18.7)': + '@inquirer/editor@4.2.18(@types/node@22.18.8)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.7) - '@inquirer/external-editor': 1.0.1(@types/node@22.18.7) - '@inquirer/type': 3.0.8(@types/node@22.18.7) + '@inquirer/core': 10.2.0(@types/node@22.18.8) + '@inquirer/external-editor': 1.0.1(@types/node@22.18.8) + '@inquirer/type': 3.0.8(@types/node@22.18.8) optionalDependencies: - '@types/node': 22.18.7 + '@types/node': 22.18.8 - '@inquirer/expand@4.0.18(@types/node@22.18.7)': + '@inquirer/expand@4.0.18(@types/node@22.18.8)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.7) - '@inquirer/type': 3.0.8(@types/node@22.18.7) + '@inquirer/core': 10.2.0(@types/node@22.18.8) + '@inquirer/type': 3.0.8(@types/node@22.18.8) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.7 + '@types/node': 22.18.8 - '@inquirer/external-editor@1.0.1(@types/node@22.18.7)': + '@inquirer/external-editor@1.0.1(@types/node@22.18.8)': dependencies: chardet: 2.1.0 iconv-lite: 0.6.3 optionalDependencies: - '@types/node': 22.18.7 + '@types/node': 22.18.8 '@inquirer/figures@1.0.13': {} - '@inquirer/input@4.2.2(@types/node@22.18.7)': + '@inquirer/input@4.2.2(@types/node@22.18.8)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.7) - '@inquirer/type': 3.0.8(@types/node@22.18.7) + '@inquirer/core': 10.2.0(@types/node@22.18.8) + '@inquirer/type': 3.0.8(@types/node@22.18.8) optionalDependencies: - '@types/node': 22.18.7 + '@types/node': 22.18.8 - '@inquirer/number@3.0.18(@types/node@22.18.7)': + '@inquirer/number@3.0.18(@types/node@22.18.8)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.7) - '@inquirer/type': 3.0.8(@types/node@22.18.7) + '@inquirer/core': 10.2.0(@types/node@22.18.8) + '@inquirer/type': 3.0.8(@types/node@22.18.8) optionalDependencies: - '@types/node': 22.18.7 + '@types/node': 22.18.8 - '@inquirer/password@4.0.18(@types/node@22.18.7)': + '@inquirer/password@4.0.18(@types/node@22.18.8)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.7) - '@inquirer/type': 3.0.8(@types/node@22.18.7) + '@inquirer/core': 10.2.0(@types/node@22.18.8) + '@inquirer/type': 3.0.8(@types/node@22.18.8) ansi-escapes: 4.3.2 optionalDependencies: - '@types/node': 22.18.7 - - '@inquirer/prompts@7.8.4(@types/node@22.18.7)': - dependencies: - '@inquirer/checkbox': 4.2.2(@types/node@22.18.7) - '@inquirer/confirm': 5.1.16(@types/node@22.18.7) - '@inquirer/editor': 4.2.18(@types/node@22.18.7) - '@inquirer/expand': 4.0.18(@types/node@22.18.7) - '@inquirer/input': 4.2.2(@types/node@22.18.7) - '@inquirer/number': 3.0.18(@types/node@22.18.7) - '@inquirer/password': 4.0.18(@types/node@22.18.7) - '@inquirer/rawlist': 4.1.6(@types/node@22.18.7) - '@inquirer/search': 3.1.1(@types/node@22.18.7) - '@inquirer/select': 4.3.2(@types/node@22.18.7) + '@types/node': 22.18.8 + + '@inquirer/prompts@7.8.4(@types/node@22.18.8)': + dependencies: + '@inquirer/checkbox': 4.2.2(@types/node@22.18.8) + '@inquirer/confirm': 5.1.16(@types/node@22.18.8) + '@inquirer/editor': 4.2.18(@types/node@22.18.8) + '@inquirer/expand': 4.0.18(@types/node@22.18.8) + '@inquirer/input': 4.2.2(@types/node@22.18.8) + '@inquirer/number': 3.0.18(@types/node@22.18.8) + '@inquirer/password': 4.0.18(@types/node@22.18.8) + '@inquirer/rawlist': 4.1.6(@types/node@22.18.8) + '@inquirer/search': 3.1.1(@types/node@22.18.8) + '@inquirer/select': 4.3.2(@types/node@22.18.8) optionalDependencies: - '@types/node': 22.18.7 + '@types/node': 22.18.8 - '@inquirer/rawlist@4.1.6(@types/node@22.18.7)': + '@inquirer/rawlist@4.1.6(@types/node@22.18.8)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.7) - '@inquirer/type': 3.0.8(@types/node@22.18.7) + '@inquirer/core': 10.2.0(@types/node@22.18.8) + '@inquirer/type': 3.0.8(@types/node@22.18.8) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.7 + '@types/node': 22.18.8 - '@inquirer/search@3.1.1(@types/node@22.18.7)': + '@inquirer/search@3.1.1(@types/node@22.18.8)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.7) + '@inquirer/core': 10.2.0(@types/node@22.18.8) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.7) + '@inquirer/type': 3.0.8(@types/node@22.18.8) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.7 + '@types/node': 22.18.8 - '@inquirer/select@4.3.2(@types/node@22.18.7)': + '@inquirer/select@4.3.2(@types/node@22.18.8)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.7) + '@inquirer/core': 10.2.0(@types/node@22.18.8) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.7) + '@inquirer/type': 3.0.8(@types/node@22.18.8) ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.7 + '@types/node': 22.18.8 - '@inquirer/type@3.0.8(@types/node@22.18.7)': + '@inquirer/type@3.0.8(@types/node@22.18.8)': optionalDependencies: - '@types/node': 22.18.7 + '@types/node': 22.18.8 '@isaacs/cliui@8.0.2': dependencies: @@ -4929,7 +4929,7 @@ snapshots: '@jest/console@30.2.0': dependencies: '@jest/types': 30.2.0 - '@types/node': 22.18.7 + '@types/node': 22.18.8 chalk: 4.1.2 jest-message-util: 30.2.0 jest-util: 30.2.0 @@ -4943,14 +4943,14 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.7 + '@types/node': 22.18.8 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 4.3.0 exit-x: 0.2.2 graceful-fs: 4.2.11 jest-changed-files: 30.2.0 - jest-config: 30.2.0(@types/node@22.18.7) + jest-config: 30.2.0(@types/node@22.18.8) jest-haste-map: 30.2.0 jest-message-util: 30.2.0 jest-regex-util: 30.0.1 @@ -4977,7 +4977,7 @@ snapshots: dependencies: '@jest/fake-timers': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.7 + '@types/node': 22.18.8 jest-mock: 30.2.0 '@jest/expect-utils@30.2.0': @@ -4995,7 +4995,7 @@ snapshots: dependencies: '@jest/types': 30.2.0 '@sinonjs/fake-timers': 13.0.5 - '@types/node': 22.18.7 + '@types/node': 22.18.8 jest-message-util: 30.2.0 jest-mock: 30.2.0 jest-util: 30.2.0 @@ -5013,7 +5013,7 @@ snapshots: '@jest/pattern@30.0.1': dependencies: - '@types/node': 22.18.7 + '@types/node': 22.18.8 jest-regex-util: 30.0.1 '@jest/reporters@30.2.0': @@ -5024,7 +5024,7 @@ snapshots: '@jest/transform': 30.2.0 '@jest/types': 30.2.0 '@jridgewell/trace-mapping': 0.3.25 - '@types/node': 22.18.7 + '@types/node': 22.18.8 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit-x: 0.2.2 @@ -5101,7 +5101,7 @@ snapshots: '@jest/schemas': 30.0.5 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 22.18.7 + '@types/node': 22.18.8 '@types/yargs': 17.0.33 chalk: 4.1.2 @@ -5304,7 +5304,7 @@ snapshots: '@types/ms@2.1.0': {} - '@types/node@22.18.7': + '@types/node@22.18.8': dependencies: undici-types: 6.21.0 @@ -5314,7 +5314,7 @@ snapshots: '@types/ws@8.5.13': dependencies: - '@types/node': 22.18.7 + '@types/node': 22.18.8 '@types/yargs-parser@21.0.3': {} @@ -5470,14 +5470,14 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.12(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.3.12(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.44.0 '@typescript-eslint/utils': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3) eslint: 9.36.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1) + vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color @@ -5489,13 +5489,13 @@ snapshots: chai: 5.2.0 tinyrainbow: 2.0.0 - '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@vitest/spy': 3.2.4 estree-walker: 3.0.3 magic-string: 0.30.17 optionalDependencies: - vite: 6.3.5(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1) '@vitest/pretty-format@3.2.4': dependencies: @@ -6482,13 +6482,13 @@ snapshots: dependencies: lodash: 4.17.21 - graphql-config@5.1.3(@types/node@22.18.7)(graphql@16.11.0)(typescript@5.9.3): + graphql-config@5.1.3(@types/node@22.18.8)(graphql@16.11.0)(typescript@5.9.3): dependencies: '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) '@graphql-tools/merge': 9.0.24(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.7)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.8)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) cosmiconfig: 8.3.6(typescript@5.9.3) graphql: 16.11.0 @@ -6679,7 +6679,7 @@ snapshots: '@jest/expect': 30.2.0 '@jest/test-result': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.7 + '@types/node': 22.18.8 chalk: 4.1.2 co: 4.6.0 dedent: 1.6.0 @@ -6699,7 +6699,7 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@30.2.0(@types/node@22.18.7): + jest-cli@30.2.0(@types/node@22.18.8): dependencies: '@jest/core': 30.2.0 '@jest/test-result': 30.2.0 @@ -6707,7 +6707,7 @@ snapshots: chalk: 4.1.2 exit-x: 0.2.2 import-local: 3.2.0 - jest-config: 30.2.0(@types/node@22.18.7) + jest-config: 30.2.0(@types/node@22.18.8) jest-util: 30.2.0 jest-validate: 30.2.0 yargs: 17.7.2 @@ -6718,7 +6718,7 @@ snapshots: - supports-color - ts-node - jest-config@30.2.0(@types/node@22.18.7): + jest-config@30.2.0(@types/node@22.18.8): dependencies: '@babel/core': 7.27.4 '@jest/get-type': 30.1.0 @@ -6745,7 +6745,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 22.18.7 + '@types/node': 22.18.8 transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -6774,7 +6774,7 @@ snapshots: '@jest/environment': 30.2.0 '@jest/fake-timers': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.7 + '@types/node': 22.18.8 jest-mock: 30.2.0 jest-util: 30.2.0 jest-validate: 30.2.0 @@ -6782,7 +6782,7 @@ snapshots: jest-haste-map@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 22.18.7 + '@types/node': 22.18.8 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -6821,7 +6821,7 @@ snapshots: jest-mock@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 22.18.7 + '@types/node': 22.18.8 jest-util: 30.2.0 jest-pnp-resolver@1.2.3(jest-resolve@30.2.0): @@ -6855,7 +6855,7 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.7 + '@types/node': 22.18.8 chalk: 4.1.2 emittery: 0.13.1 exit-x: 0.2.2 @@ -6884,7 +6884,7 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.7 + '@types/node': 22.18.8 chalk: 4.1.2 cjs-module-lexer: 2.1.0 collect-v8-coverage: 1.0.2 @@ -6931,7 +6931,7 @@ snapshots: jest-util@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 22.18.7 + '@types/node': 22.18.8 chalk: 4.1.2 ci-info: 4.3.0 graceful-fs: 4.2.11 @@ -6950,7 +6950,7 @@ snapshots: dependencies: '@jest/test-result': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.7 + '@types/node': 22.18.8 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -6959,18 +6959,18 @@ snapshots: jest-worker@30.2.0: dependencies: - '@types/node': 22.18.7 + '@types/node': 22.18.8 '@ungap/structured-clone': 1.3.0 jest-util: 30.2.0 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@30.2.0(@types/node@22.18.7): + jest@30.2.0(@types/node@22.18.8): dependencies: '@jest/core': 30.2.0 '@jest/types': 30.2.0 import-local: 3.2.0 - jest-cli: 30.2.0(@types/node@22.18.7) + jest-cli: 30.2.0(@types/node@22.18.8) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -7247,9 +7247,9 @@ snapshots: merge2@1.4.1: {} - meros@1.3.0(@types/node@22.18.7): + meros@1.3.0(@types/node@22.18.8): optionalDependencies: - '@types/node': 22.18.7 + '@types/node': 22.18.8 micromark-core-commonmark@2.0.3: dependencies: @@ -8012,12 +8012,12 @@ snapshots: ts-dedent@2.2.0: {} - ts-jest@29.4.4(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.7))(typescript@5.9.3): + ts-jest@29.4.4(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.8))(typescript@5.9.3): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 handlebars: 4.7.8 - jest: 30.2.0(@types/node@22.18.7) + jest: 30.2.0(@types/node@22.18.8) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -8144,13 +8144,13 @@ snapshots: value-or-promise@1.0.12: {} - vite-node@3.2.4(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1): + vite-node@3.2.4(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1): dependencies: cac: 6.7.14 debug: 4.4.1 es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 6.3.5(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - '@types/node' - jiti @@ -8165,7 +8165,7 @@ snapshots: - tsx - yaml - vite@6.3.5(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1): + vite@6.3.5(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1): dependencies: esbuild: 0.25.5 fdir: 6.4.6(picomatch@4.0.2) @@ -8174,16 +8174,16 @@ snapshots: rollup: 4.43.0 tinyglobby: 0.2.14 optionalDependencies: - '@types/node': 22.18.7 + '@types/node': 22.18.8 fsevents: 2.3.3 jiti: 2.4.0 yaml: 2.8.1 - vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1): + vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1): dependencies: '@types/chai': 5.2.2 '@vitest/expect': 3.2.4 - '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1)) '@vitest/pretty-format': 3.2.4 '@vitest/runner': 3.2.4 '@vitest/snapshot': 3.2.4 @@ -8201,12 +8201,12 @@ snapshots: tinyglobby: 0.2.14 tinypool: 1.1.1 tinyrainbow: 2.0.0 - vite: 6.3.5(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1) - vite-node: 3.2.4(@types/node@22.18.7)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1) + vite-node: 3.2.4(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1) why-is-node-running: 2.3.0 optionalDependencies: '@types/debug': 4.1.12 - '@types/node': 22.18.7 + '@types/node': 22.18.8 transitivePeerDependencies: - jiti - less From 807d9a721f1e79579426e0fbdbefbc9529ba2106 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 2 Oct 2025 15:35:47 +0000 Subject: [PATCH 069/133] chore(deps): update pnpm to v10.18.0 (#1252) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7579cdf4..c60d1d79 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "graphql-codegen-typescript-validation-schema", "type": "module", "version": "0.18.1", - "packageManager": "pnpm@10.17.1", + "packageManager": "pnpm@10.18.0", "description": "GraphQL Code Generator plugin to generate form validation schema from your GraphQL schema", "respository": { "type": "git", From 5a4d7f8fb689393e7396388f0ff617055f36c7ed Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 3 Oct 2025 21:37:33 +0000 Subject: [PATCH 070/133] chore(deps): update dependency eslint to v9.37.0 (#1253) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 279 ++++++++++++++++++++++++++----------------------- 2 files changed, 150 insertions(+), 131 deletions(-) diff --git a/package.json b/package.json index c60d1d79..06ec62bd 100644 --- a/package.json +++ b/package.json @@ -93,7 +93,7 @@ "@tsconfig/recommended": "1.0.10", "@types/graphlib": "^2.1.8", "@types/node": "^22.0.0", - "eslint": "9.36.0", + "eslint": "9.37.0", "jest": "30.2.0", "myzod": "1.12.1", "npm-run-all2": "8.0.4", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 02db0643..85577f27 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^5.0.0 - version: 5.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1)) + version: 5.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.0 version: 6.0.0(@types/node@22.18.8)(graphql@16.11.0)(typescript@5.9.3) @@ -46,8 +46,8 @@ importers: specifier: ^22.0.0 version: 22.18.8 eslint: - specifier: 9.36.0 - version: 9.36.0(jiti@2.4.0) + specifier: 9.37.0 + version: 9.37.0(jiti@2.4.0) jest: specifier: 30.2.0 version: 30.2.0(@types/node@22.18.8) @@ -530,20 +530,24 @@ packages: resolution: {integrity: sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/config-helpers@0.3.1': - resolution: {integrity: sha512-xR93k9WhrDYpXHORXpxVL5oHj3Era7wo6k/Wd8/IsQNnZUTzkGS29lyn3nAT05v6ltUuTFVCCYDEGfy2Or/sPA==} + '@eslint/config-helpers@0.4.0': + resolution: {integrity: sha512-WUFvV4WoIwW8Bv0KeKCIIEgdSiFOsulyN0xrMu+7z43q/hkOLXjvb5u7UC9jDxvRzcrbEmuZBX5yJZz1741jog==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/core@0.15.2': resolution: {integrity: sha512-78Md3/Rrxh83gCxoUc0EiciuOHsIITzLy53m3d9UyiW8y9Dj2D29FeETqyKA+BRK76tnTp6RXWb3pCay8Oyomg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/core@0.16.0': + resolution: {integrity: sha512-nmC8/totwobIiFcGkDza3GIKfAw1+hLiYVrh3I1nIomQ8PEr5cxg34jnkmGawul/ep52wGRAcyeDCNtWKSOj4Q==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/eslintrc@3.3.1': resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/js@9.36.0': - resolution: {integrity: sha512-uhCbYtYynH30iZErszX78U+nR3pJU3RHGQ57NXy5QupD4SBVwDeU8TNBy+MjMngc1UyIW9noKqsRqfjQTBU2dw==} + '@eslint/js@9.37.0': + resolution: {integrity: sha512-jaS+NJ+hximswBG6pjNX0uEJZkrT0zwpVi3BA3vX22aFGjJjmgSTSmPpZCRKmoBL5VY/M6p0xsSJx7rk7sy5gg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/markdown@7.2.0': @@ -558,6 +562,10 @@ packages: resolution: {integrity: sha512-Z5kJ+wU3oA7MMIqVR9tyZRtjYPr4OC004Q4Rw7pgOKUOKkJfZ3O24nz3WYfGRpMDNmcOi3TwQOmgm7B7Tpii0w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/plugin-kit@0.4.0': + resolution: {integrity: sha512-sB5uyeq+dwCWyPi31B2gQlVlo+j5brPlWx4yZBrEaRo/nhdDE8Xke1gsGgtiBdaBTxuTkceLVuVt/pclrasb0A==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@graphql-codegen/add@6.0.0': resolution: {integrity: sha512-biFdaURX0KTwEJPQ1wkT6BRgNasqgQ5KbCI1a3zwtLtO7XTo7/vKITPylmiU27K5DSOWYnY/1jfSqUAEBuhZrQ==} engines: {node: '>=16'} @@ -2093,8 +2101,8 @@ packages: resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - eslint@9.36.0: - resolution: {integrity: sha512-hB4FIzXovouYzwzECDcUkJ4OcfOEkXTv2zRY6B9bkwjx/cprAq0uvm1nl7zvQ0/TsUk0zQiN4uPfJpB9m+rPMQ==} + eslint@9.37.0: + resolution: {integrity: sha512-XyLmROnACWqSxiGYArdef1fItQd47weqB7iwtfr9JHwRrqIXZdcFMvvEcL9xHCmL0SNsOvF0c42lWyM1U5dgig==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true peerDependencies: @@ -3903,44 +3911,44 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@5.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@5.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 - '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.36.0(jiti@2.4.0)) + '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.37.0(jiti@2.4.0)) '@eslint/markdown': 7.2.0 - '@stylistic/eslint-plugin': 5.4.0(eslint@9.36.0(jiti@2.4.0)) - '@typescript-eslint/eslint-plugin': 8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3) - '@typescript-eslint/parser': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.3.12(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1)) + '@stylistic/eslint-plugin': 5.4.0(eslint@9.37.0(jiti@2.4.0)) + '@typescript-eslint/eslint-plugin': 8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/parser': 8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) + '@vitest/eslint-plugin': 1.3.12(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.1.0 cac: 6.7.14 - eslint: 9.36.0(jiti@2.4.0) - eslint-config-flat-gitignore: 2.1.0(eslint@9.36.0(jiti@2.4.0)) + eslint: 9.37.0(jiti@2.4.0) + eslint-config-flat-gitignore: 2.1.0(eslint@9.37.0(jiti@2.4.0)) eslint-flat-config-utils: 2.1.4 - eslint-merge-processors: 2.0.0(eslint@9.36.0(jiti@2.4.0)) - eslint-plugin-antfu: 3.1.1(eslint@9.36.0(jiti@2.4.0)) - eslint-plugin-command: 3.3.1(eslint@9.36.0(jiti@2.4.0)) - eslint-plugin-import-lite: 0.3.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-jsdoc: 59.1.0(eslint@9.36.0(jiti@2.4.0)) - eslint-plugin-jsonc: 2.20.1(eslint@9.36.0(jiti@2.4.0)) - eslint-plugin-n: 17.23.1(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3) + eslint-merge-processors: 2.0.0(eslint@9.37.0(jiti@2.4.0)) + eslint-plugin-antfu: 3.1.1(eslint@9.37.0(jiti@2.4.0)) + eslint-plugin-command: 3.3.1(eslint@9.37.0(jiti@2.4.0)) + eslint-plugin-import-lite: 0.3.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) + eslint-plugin-jsdoc: 59.1.0(eslint@9.37.0(jiti@2.4.0)) + eslint-plugin-jsonc: 2.20.1(eslint@9.37.0(jiti@2.4.0)) + eslint-plugin-n: 17.23.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) eslint-plugin-no-only-tests: 3.3.0 - eslint-plugin-perfectionist: 4.15.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-pnpm: 1.1.1(eslint@9.36.0(jiti@2.4.0)) - eslint-plugin-regexp: 2.10.0(eslint@9.36.0(jiti@2.4.0)) - eslint-plugin-toml: 0.12.0(eslint@9.36.0(jiti@2.4.0)) - eslint-plugin-unicorn: 61.0.2(eslint@9.36.0(jiti@2.4.0)) - eslint-plugin-unused-imports: 4.2.0(@typescript-eslint/eslint-plugin@8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.36.0(jiti@2.4.0)) - eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.36.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.36.0(jiti@2.4.0))) - eslint-plugin-yml: 1.18.0(eslint@9.36.0(jiti@2.4.0)) - eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.36.0(jiti@2.4.0)) + eslint-plugin-perfectionist: 4.15.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) + eslint-plugin-pnpm: 1.1.1(eslint@9.37.0(jiti@2.4.0)) + eslint-plugin-regexp: 2.10.0(eslint@9.37.0(jiti@2.4.0)) + eslint-plugin-toml: 0.12.0(eslint@9.37.0(jiti@2.4.0)) + eslint-plugin-unicorn: 61.0.2(eslint@9.37.0(jiti@2.4.0)) + eslint-plugin-unused-imports: 4.2.0(@typescript-eslint/eslint-plugin@8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0)) + eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.37.0(jiti@2.4.0))) + eslint-plugin-yml: 1.18.0(eslint@9.37.0(jiti@2.4.0)) + eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.37.0(jiti@2.4.0)) globals: 16.4.0 jsonc-eslint-parser: 2.4.0 local-pkg: 1.1.2 parse-gitignore: 2.0.0 toml-eslint-parser: 0.10.0 - vue-eslint-parser: 10.2.0(eslint@9.36.0(jiti@2.4.0)) + vue-eslint-parser: 10.2.0(eslint@9.37.0(jiti@2.4.0)) yaml-eslint-parser: 1.3.0 transitivePeerDependencies: - '@eslint/json' @@ -4296,22 +4304,22 @@ snapshots: '@esbuild/win32-x64@0.25.5': optional: true - '@eslint-community/eslint-plugin-eslint-comments@4.5.0(eslint@9.36.0(jiti@2.4.0))': + '@eslint-community/eslint-plugin-eslint-comments@4.5.0(eslint@9.37.0(jiti@2.4.0))': dependencies: escape-string-regexp: 4.0.0 - eslint: 9.36.0(jiti@2.4.0) + eslint: 9.37.0(jiti@2.4.0) ignore: 5.3.2 - '@eslint-community/eslint-utils@4.9.0(eslint@9.36.0(jiti@2.4.0))': + '@eslint-community/eslint-utils@4.9.0(eslint@9.37.0(jiti@2.4.0))': dependencies: - eslint: 9.36.0(jiti@2.4.0) + eslint: 9.37.0(jiti@2.4.0) eslint-visitor-keys: 3.4.3 '@eslint-community/regexpp@4.12.1': {} - '@eslint/compat@1.3.2(eslint@9.36.0(jiti@2.4.0))': + '@eslint/compat@1.3.2(eslint@9.37.0(jiti@2.4.0))': optionalDependencies: - eslint: 9.36.0(jiti@2.4.0) + eslint: 9.37.0(jiti@2.4.0) '@eslint/config-array@0.21.0': dependencies: @@ -4321,12 +4329,18 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/config-helpers@0.3.1': {} + '@eslint/config-helpers@0.4.0': + dependencies: + '@eslint/core': 0.16.0 '@eslint/core@0.15.2': dependencies: '@types/json-schema': 7.0.15 + '@eslint/core@0.16.0': + dependencies: + '@types/json-schema': 7.0.15 + '@eslint/eslintrc@3.3.1': dependencies: ajv: 6.12.6 @@ -4341,7 +4355,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/js@9.36.0': {} + '@eslint/js@9.37.0': {} '@eslint/markdown@7.2.0': dependencies: @@ -4364,6 +4378,11 @@ snapshots: '@eslint/core': 0.15.2 levn: 0.4.1 + '@eslint/plugin-kit@0.4.0': + dependencies: + '@eslint/core': 0.16.0 + levn: 0.4.1 + '@graphql-codegen/add@6.0.0(graphql@16.11.0)': dependencies: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) @@ -5232,11 +5251,11 @@ snapshots: dependencies: '@sinonjs/commons': 3.0.1 - '@stylistic/eslint-plugin@5.4.0(eslint@9.36.0(jiti@2.4.0))': + '@stylistic/eslint-plugin@5.4.0(eslint@9.37.0(jiti@2.4.0))': dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.4.0)) '@typescript-eslint/types': 8.44.0 - eslint: 9.36.0(jiti@2.4.0) + eslint: 9.37.0(jiti@2.4.0) eslint-visitor-keys: 4.2.1 espree: 10.4.0 estraverse: 5.3.0 @@ -5322,15 +5341,15 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3)': + '@typescript-eslint/eslint-plugin@8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/parser': 8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/scope-manager': 8.44.0 - '@typescript-eslint/type-utils': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3) - '@typescript-eslint/utils': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/type-utils': 8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/utils': 8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/visitor-keys': 8.44.0 - eslint: 9.36.0(jiti@2.4.0) + eslint: 9.37.0(jiti@2.4.0) graphemer: 1.4.0 ignore: 7.0.5 natural-compare: 1.4.0 @@ -5339,14 +5358,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3)': + '@typescript-eslint/parser@8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)': dependencies: '@typescript-eslint/scope-manager': 8.44.0 '@typescript-eslint/types': 8.44.0 '@typescript-eslint/typescript-estree': 8.44.0(typescript@5.9.3) '@typescript-eslint/visitor-keys': 8.44.0 debug: 4.4.3 - eslint: 9.36.0(jiti@2.4.0) + eslint: 9.37.0(jiti@2.4.0) typescript: 5.9.3 transitivePeerDependencies: - supports-color @@ -5369,13 +5388,13 @@ snapshots: dependencies: typescript: 5.9.3 - '@typescript-eslint/type-utils@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3)': + '@typescript-eslint/type-utils@8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)': dependencies: '@typescript-eslint/types': 8.44.0 '@typescript-eslint/typescript-estree': 8.44.0(typescript@5.9.3) - '@typescript-eslint/utils': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/utils': 8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) debug: 4.4.3 - eslint: 9.36.0(jiti@2.4.0) + eslint: 9.37.0(jiti@2.4.0) ts-api-utils: 2.1.0(typescript@5.9.3) typescript: 5.9.3 transitivePeerDependencies: @@ -5399,13 +5418,13 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3)': + '@typescript-eslint/utils@8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)': dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.4.0)) '@typescript-eslint/scope-manager': 8.44.0 '@typescript-eslint/types': 8.44.0 '@typescript-eslint/typescript-estree': 8.44.0(typescript@5.9.3) - eslint: 9.36.0(jiti@2.4.0) + eslint: 9.37.0(jiti@2.4.0) typescript: 5.9.3 transitivePeerDependencies: - supports-color @@ -5470,11 +5489,11 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.12(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.3.12(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.44.0 - '@typescript-eslint/utils': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3) - eslint: 9.36.0(jiti@2.4.0) + '@typescript-eslint/utils': 8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) + eslint: 9.37.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1) @@ -6007,67 +6026,67 @@ snapshots: escape-string-regexp@5.0.0: {} - eslint-compat-utils@0.5.1(eslint@9.36.0(jiti@2.4.0)): + eslint-compat-utils@0.5.1(eslint@9.37.0(jiti@2.4.0)): dependencies: - eslint: 9.36.0(jiti@2.4.0) + eslint: 9.37.0(jiti@2.4.0) semver: 7.7.2 - eslint-compat-utils@0.6.5(eslint@9.36.0(jiti@2.4.0)): + eslint-compat-utils@0.6.5(eslint@9.37.0(jiti@2.4.0)): dependencies: - eslint: 9.36.0(jiti@2.4.0) + eslint: 9.37.0(jiti@2.4.0) semver: 7.7.2 - eslint-config-flat-gitignore@2.1.0(eslint@9.36.0(jiti@2.4.0)): + eslint-config-flat-gitignore@2.1.0(eslint@9.37.0(jiti@2.4.0)): dependencies: - '@eslint/compat': 1.3.2(eslint@9.36.0(jiti@2.4.0)) - eslint: 9.36.0(jiti@2.4.0) + '@eslint/compat': 1.3.2(eslint@9.37.0(jiti@2.4.0)) + eslint: 9.37.0(jiti@2.4.0) eslint-flat-config-utils@2.1.4: dependencies: pathe: 2.0.3 - eslint-json-compat-utils@0.2.1(eslint@9.36.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0): + eslint-json-compat-utils@0.2.1(eslint@9.37.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0): dependencies: - eslint: 9.36.0(jiti@2.4.0) + eslint: 9.37.0(jiti@2.4.0) esquery: 1.6.0 jsonc-eslint-parser: 2.4.0 - eslint-merge-processors@2.0.0(eslint@9.36.0(jiti@2.4.0)): + eslint-merge-processors@2.0.0(eslint@9.37.0(jiti@2.4.0)): dependencies: - eslint: 9.36.0(jiti@2.4.0) + eslint: 9.37.0(jiti@2.4.0) - eslint-plugin-antfu@3.1.1(eslint@9.36.0(jiti@2.4.0)): + eslint-plugin-antfu@3.1.1(eslint@9.37.0(jiti@2.4.0)): dependencies: - eslint: 9.36.0(jiti@2.4.0) + eslint: 9.37.0(jiti@2.4.0) - eslint-plugin-command@3.3.1(eslint@9.36.0(jiti@2.4.0)): + eslint-plugin-command@3.3.1(eslint@9.37.0(jiti@2.4.0)): dependencies: '@es-joy/jsdoccomment': 0.50.2 - eslint: 9.36.0(jiti@2.4.0) + eslint: 9.37.0(jiti@2.4.0) - eslint-plugin-es-x@7.8.0(eslint@9.36.0(jiti@2.4.0)): + eslint-plugin-es-x@7.8.0(eslint@9.37.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.1 - eslint: 9.36.0(jiti@2.4.0) - eslint-compat-utils: 0.5.1(eslint@9.36.0(jiti@2.4.0)) + eslint: 9.37.0(jiti@2.4.0) + eslint-compat-utils: 0.5.1(eslint@9.37.0(jiti@2.4.0)) - eslint-plugin-import-lite@0.3.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3): + eslint-plugin-import-lite@0.3.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.4.0)) '@typescript-eslint/types': 8.44.0 - eslint: 9.36.0(jiti@2.4.0) + eslint: 9.37.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - eslint-plugin-jsdoc@59.1.0(eslint@9.36.0(jiti@2.4.0)): + eslint-plugin-jsdoc@59.1.0(eslint@9.37.0(jiti@2.4.0)): dependencies: '@es-joy/jsdoccomment': 0.58.0 are-docs-informative: 0.0.2 comment-parser: 1.4.1 debug: 4.4.3 escape-string-regexp: 4.0.0 - eslint: 9.36.0(jiti@2.4.0) + eslint: 9.37.0(jiti@2.4.0) espree: 10.4.0 esquery: 1.6.0 object-deep-merge: 1.0.5 @@ -6077,12 +6096,12 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-jsonc@2.20.1(eslint@9.36.0(jiti@2.4.0)): + eslint-plugin-jsonc@2.20.1(eslint@9.37.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.4.0)) - eslint: 9.36.0(jiti@2.4.0) - eslint-compat-utils: 0.6.5(eslint@9.36.0(jiti@2.4.0)) - eslint-json-compat-utils: 0.2.1(eslint@9.36.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.4.0)) + eslint: 9.37.0(jiti@2.4.0) + eslint-compat-utils: 0.6.5(eslint@9.37.0(jiti@2.4.0)) + eslint-json-compat-utils: 0.2.1(eslint@9.37.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0) espree: 10.4.0 graphemer: 1.4.0 jsonc-eslint-parser: 2.4.0 @@ -6091,12 +6110,12 @@ snapshots: transitivePeerDependencies: - '@eslint/json' - eslint-plugin-n@17.23.1(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3): + eslint-plugin-n@17.23.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.4.0)) enhanced-resolve: 5.18.3 - eslint: 9.36.0(jiti@2.4.0) - eslint-plugin-es-x: 7.8.0(eslint@9.36.0(jiti@2.4.0)) + eslint: 9.37.0(jiti@2.4.0) + eslint-plugin-es-x: 7.8.0(eslint@9.37.0(jiti@2.4.0)) get-tsconfig: 4.10.1 globals: 15.15.0 globrex: 0.1.2 @@ -6108,57 +6127,57 @@ snapshots: eslint-plugin-no-only-tests@3.3.0: {} - eslint-plugin-perfectionist@4.15.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3): + eslint-plugin-perfectionist@4.15.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3): dependencies: '@typescript-eslint/types': 8.44.0 - '@typescript-eslint/utils': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3) - eslint: 9.36.0(jiti@2.4.0) + '@typescript-eslint/utils': 8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) + eslint: 9.37.0(jiti@2.4.0) natural-orderby: 5.0.0 transitivePeerDependencies: - supports-color - typescript - eslint-plugin-pnpm@1.1.1(eslint@9.36.0(jiti@2.4.0)): + eslint-plugin-pnpm@1.1.1(eslint@9.37.0(jiti@2.4.0)): dependencies: empathic: 2.0.0 - eslint: 9.36.0(jiti@2.4.0) + eslint: 9.37.0(jiti@2.4.0) jsonc-eslint-parser: 2.4.0 pathe: 2.0.3 pnpm-workspace-yaml: 1.1.1 tinyglobby: 0.2.15 yaml-eslint-parser: 1.3.0 - eslint-plugin-regexp@2.10.0(eslint@9.36.0(jiti@2.4.0)): + eslint-plugin-regexp@2.10.0(eslint@9.37.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.1 comment-parser: 1.4.1 - eslint: 9.36.0(jiti@2.4.0) + eslint: 9.37.0(jiti@2.4.0) jsdoc-type-pratt-parser: 4.8.0 refa: 0.12.1 regexp-ast-analysis: 0.7.1 scslre: 0.3.0 - eslint-plugin-toml@0.12.0(eslint@9.36.0(jiti@2.4.0)): + eslint-plugin-toml@0.12.0(eslint@9.37.0(jiti@2.4.0)): dependencies: debug: 4.4.3 - eslint: 9.36.0(jiti@2.4.0) - eslint-compat-utils: 0.6.5(eslint@9.36.0(jiti@2.4.0)) + eslint: 9.37.0(jiti@2.4.0) + eslint-compat-utils: 0.6.5(eslint@9.37.0(jiti@2.4.0)) lodash: 4.17.21 toml-eslint-parser: 0.10.0 transitivePeerDependencies: - supports-color - eslint-plugin-unicorn@61.0.2(eslint@9.36.0(jiti@2.4.0)): + eslint-plugin-unicorn@61.0.2(eslint@9.37.0(jiti@2.4.0)): dependencies: '@babel/helper-validator-identifier': 7.27.1 - '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.4.0)) '@eslint/plugin-kit': 0.3.5 change-case: 5.4.4 ci-info: 4.3.0 clean-regexp: 1.0.0 core-js-compat: 3.45.1 - eslint: 9.36.0(jiti@2.4.0) + eslint: 9.37.0(jiti@2.4.0) esquery: 1.6.0 find-up-simple: 1.0.1 globals: 16.4.0 @@ -6171,40 +6190,40 @@ snapshots: semver: 7.7.2 strip-indent: 4.1.0 - eslint-plugin-unused-imports@4.2.0(@typescript-eslint/eslint-plugin@8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.36.0(jiti@2.4.0)): + eslint-plugin-unused-imports@4.2.0(@typescript-eslint/eslint-plugin@8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0)): dependencies: - eslint: 9.36.0(jiti@2.4.0) + eslint: 9.37.0(jiti@2.4.0) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/eslint-plugin': 8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.36.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.36.0(jiti@2.4.0))): + eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.37.0(jiti@2.4.0))): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.4.0)) - eslint: 9.36.0(jiti@2.4.0) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.4.0)) + eslint: 9.37.0(jiti@2.4.0) natural-compare: 1.4.0 nth-check: 2.1.1 postcss-selector-parser: 6.1.2 semver: 7.7.2 - vue-eslint-parser: 10.2.0(eslint@9.36.0(jiti@2.4.0)) + vue-eslint-parser: 10.2.0(eslint@9.37.0(jiti@2.4.0)) xml-name-validator: 4.0.0 optionalDependencies: - '@typescript-eslint/parser': 8.44.0(eslint@9.36.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/parser': 8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-yml@1.18.0(eslint@9.36.0(jiti@2.4.0)): + eslint-plugin-yml@1.18.0(eslint@9.37.0(jiti@2.4.0)): dependencies: debug: 4.4.3 escape-string-regexp: 4.0.0 - eslint: 9.36.0(jiti@2.4.0) - eslint-compat-utils: 0.6.5(eslint@9.36.0(jiti@2.4.0)) + eslint: 9.37.0(jiti@2.4.0) + eslint-compat-utils: 0.6.5(eslint@9.37.0(jiti@2.4.0)) natural-compare: 1.4.0 yaml-eslint-parser: 1.3.0 transitivePeerDependencies: - supports-color - eslint-processor-vue-blocks@2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.36.0(jiti@2.4.0)): + eslint-processor-vue-blocks@2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.37.0(jiti@2.4.0)): dependencies: '@vue/compiler-sfc': 3.5.12 - eslint: 9.36.0(jiti@2.4.0) + eslint: 9.37.0(jiti@2.4.0) eslint-scope@8.4.0: dependencies: @@ -6215,16 +6234,16 @@ snapshots: eslint-visitor-keys@4.2.1: {} - eslint@9.36.0(jiti@2.4.0): + eslint@9.37.0(jiti@2.4.0): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.1 '@eslint/config-array': 0.21.0 - '@eslint/config-helpers': 0.3.1 - '@eslint/core': 0.15.2 + '@eslint/config-helpers': 0.4.0 + '@eslint/core': 0.16.0 '@eslint/eslintrc': 3.3.1 - '@eslint/js': 9.36.0 - '@eslint/plugin-kit': 0.3.5 + '@eslint/js': 9.37.0 + '@eslint/plugin-kit': 0.4.0 '@humanfs/node': 0.16.7 '@humanwhocodes/module-importer': 1.0.1 '@humanwhocodes/retry': 0.4.3 @@ -8147,7 +8166,7 @@ snapshots: vite-node@3.2.4(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1): dependencies: cac: 6.7.14 - debug: 4.4.1 + debug: 4.4.3 es-module-lexer: 1.7.0 pathe: 2.0.3 vite: 6.3.5(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1) @@ -8221,10 +8240,10 @@ snapshots: - tsx - yaml - vue-eslint-parser@10.2.0(eslint@9.36.0(jiti@2.4.0)): + vue-eslint-parser@10.2.0(eslint@9.37.0(jiti@2.4.0)): dependencies: debug: 4.4.3 - eslint: 9.36.0(jiti@2.4.0) + eslint: 9.37.0(jiti@2.4.0) eslint-scope: 8.4.0 eslint-visitor-keys: 4.2.1 espree: 10.4.0 From 6b5cee488efc738ffed02b8ddc22e7a0c65fed20 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 5 Oct 2025 17:42:42 +0000 Subject: [PATCH 071/133] chore(deps): update graphqlcodegenerator monorepo (#1254) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 85577f27..3907d16d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -16,7 +16,7 @@ importers: version: 5.0.0(graphql@16.11.0) '@graphql-codegen/visitor-plugin-common': specifier: ^6.0.0 - version: 6.0.1(graphql@16.11.0) + version: 6.1.0(graphql@16.11.0) '@graphql-tools/utils': specifier: ^10.0.0 version: 10.9.1(graphql@16.11.0) @@ -35,7 +35,7 @@ importers: version: 6.0.0(@types/node@22.18.8)(graphql@16.11.0)(typescript@5.9.3) '@graphql-codegen/typescript': specifier: ^5.0.0 - version: 5.0.1(graphql@16.11.0) + version: 5.0.2(graphql@16.11.0) '@tsconfig/recommended': specifier: 1.0.10 version: 1.0.10 @@ -633,8 +633,8 @@ packages: graphql-sock: optional: true - '@graphql-codegen/typescript@5.0.1': - resolution: {integrity: sha512-GqAl4pxFdWTvW1h+Ume7djrucYwt03wiaS88m4ErG+tHsJaR2ZCtoHOo+B4bh7KIuBKap14/xOZG0qY/ThWAhg==} + '@graphql-codegen/typescript@5.0.2': + resolution: {integrity: sha512-OJYXpS9SRf4VFzqu3ZH/RmTftGhAVTCmscH63iPlvTlCT8NBmpSHdZ875AEa38LugdL8XgUcGsI3pprP3e5j/w==} engines: {node: '>=16'} peerDependencies: graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -645,8 +645,8 @@ packages: peerDependencies: graphql: ^0.8.0 || ^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-codegen/visitor-plugin-common@6.0.1': - resolution: {integrity: sha512-3gopoUYXn26PSj2UdCWmYj0QiRVD5qR3eDiXx72OQcN1Vb8qj6VfOWB+NDuD1Q1sgVYbCQVKgj92ERsSW1xH9Q==} + '@graphql-codegen/visitor-plugin-common@6.1.0': + resolution: {integrity: sha512-AvGO1pe+b/kAa7+WBDlNDXOruRZWv/NnhLHgTggiW2XWRv33biuzg4cF1UTdpR2jmESZzJU4kXngLLX8RYJWLA==} engines: {node: '>=16'} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -4444,9 +4444,9 @@ snapshots: '@graphql-codegen/gql-tag-operations': 5.0.0(graphql@16.11.0) '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) '@graphql-codegen/typed-document-node': 6.0.0(graphql@16.11.0) - '@graphql-codegen/typescript': 5.0.1(graphql@16.11.0) + '@graphql-codegen/typescript': 5.0.2(graphql@16.11.0) '@graphql-codegen/typescript-operations': 5.0.0(graphql@16.11.0) - '@graphql-codegen/visitor-plugin-common': 6.0.1(graphql@16.11.0) + '@graphql-codegen/visitor-plugin-common': 6.1.0(graphql@16.11.0) '@graphql-tools/documents': 1.0.1(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@graphql-typed-document-node/core': 3.2.0(graphql@16.11.0) @@ -4505,7 +4505,7 @@ snapshots: '@graphql-codegen/typescript-operations@5.0.0(graphql@16.11.0)': dependencies: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) - '@graphql-codegen/typescript': 5.0.1(graphql@16.11.0) + '@graphql-codegen/typescript': 5.0.2(graphql@16.11.0) '@graphql-codegen/visitor-plugin-common': 6.0.0(graphql@16.11.0) auto-bind: 4.0.0 graphql: 16.11.0 @@ -4513,11 +4513,11 @@ snapshots: transitivePeerDependencies: - encoding - '@graphql-codegen/typescript@5.0.1(graphql@16.11.0)': + '@graphql-codegen/typescript@5.0.2(graphql@16.11.0)': dependencies: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) '@graphql-codegen/schema-ast': 5.0.0(graphql@16.11.0) - '@graphql-codegen/visitor-plugin-common': 6.0.1(graphql@16.11.0) + '@graphql-codegen/visitor-plugin-common': 6.1.0(graphql@16.11.0) auto-bind: 4.0.0 graphql: 16.11.0 tslib: 2.6.3 @@ -4540,7 +4540,7 @@ snapshots: transitivePeerDependencies: - encoding - '@graphql-codegen/visitor-plugin-common@6.0.1(graphql@16.11.0)': + '@graphql-codegen/visitor-plugin-common@6.1.0(graphql@16.11.0)': dependencies: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) '@graphql-tools/optimize': 2.0.0(graphql@16.11.0) From 6626318e1c1b7f8d84550b252ad20d5a90122be5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 6 Oct 2025 18:29:08 +0000 Subject: [PATCH 072/133] chore(deps): update dependency zod to v4.1.12 (#1255) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 06ec62bd..5400a61f 100644 --- a/package.json +++ b/package.json @@ -103,6 +103,6 @@ "valibot": "1.1.0", "vitest": "^3.0.0", "yup": "1.7.1", - "zod": "4.1.11" + "zod": "4.1.12" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3907d16d..18a46635 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -76,8 +76,8 @@ importers: specifier: 1.7.1 version: 1.7.1 zod: - specifier: 4.1.11 - version: 4.1.11 + specifier: 4.1.12 + version: 4.1.12 packages: @@ -3898,8 +3898,8 @@ packages: yup@1.7.1: resolution: {integrity: sha512-GKHFX2nXul2/4Dtfxhozv701jLQHdf6J34YDh2cEkpqoo8le5Mg6/LrdseVLrFarmFygZTlfIhHx/QKfb/QWXw==} - zod@4.1.11: - resolution: {integrity: sha512-WPsqwxITS2tzx1bzhIKsEs19ABD5vmCVa4xBo2tq/SrV4RNZtfws1EnCWQXM6yh8bD08a1idvkB5MZSBiZsjwg==} + zod@4.1.12: + resolution: {integrity: sha512-JInaHOamG8pt5+Ey8kGmdcAcg3OL9reK8ltczgHTAwNhMys/6ThXHityHxVV2p3fkw/c+MAvBHFVYHFZDmjMCQ==} zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} @@ -8349,6 +8349,6 @@ snapshots: toposort: 2.0.2 type-fest: 2.19.0 - zod@4.1.11: {} + zod@4.1.12: {} zwitch@2.0.4: {} From 285e87a9ecd94f20f4d3ba53f28b434523c4114b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 6 Oct 2025 18:29:28 +0000 Subject: [PATCH 073/133] chore(deps): update pnpm to v10.18.1 (#1256) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5400a61f..8825bf72 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "graphql-codegen-typescript-validation-schema", "type": "module", "version": "0.18.1", - "packageManager": "pnpm@10.18.0", + "packageManager": "pnpm@10.18.1", "description": "GraphQL Code Generator plugin to generate form validation schema from your GraphQL schema", "respository": { "type": "git", From b7fa450dd86cefa5334a8c786ef51b7043059bea Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 9 Oct 2025 21:44:10 +0000 Subject: [PATCH 074/133] chore(deps): update dependency @types/node to v22.18.9 (#1257) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 254 ++++++++++++++++++++++++------------------------- 1 file changed, 127 insertions(+), 127 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 18a46635..061570c1 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,10 +29,10 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^5.0.0 - version: 5.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1)) + version: 5.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.0 - version: 6.0.0(@types/node@22.18.8)(graphql@16.11.0)(typescript@5.9.3) + version: 6.0.0(@types/node@22.18.9)(graphql@16.11.0)(typescript@5.9.3) '@graphql-codegen/typescript': specifier: ^5.0.0 version: 5.0.2(graphql@16.11.0) @@ -44,13 +44,13 @@ importers: version: 2.1.12 '@types/node': specifier: ^22.0.0 - version: 22.18.8 + version: 22.18.9 eslint: specifier: 9.37.0 version: 9.37.0(jiti@2.4.0) jest: specifier: 30.2.0 - version: 30.2.0(@types/node@22.18.8) + version: 30.2.0(@types/node@22.18.9) myzod: specifier: 1.12.1 version: 1.12.1 @@ -62,7 +62,7 @@ importers: version: 2.2.0 ts-jest: specifier: 29.4.4 - version: 29.4.4(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.8))(typescript@5.9.3) + version: 29.4.4(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.9))(typescript@5.9.3) typescript: specifier: 5.9.3 version: 5.9.3 @@ -71,7 +71,7 @@ importers: version: 1.1.0(typescript@5.9.3) vitest: specifier: ^3.0.0 - version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.1 version: 1.7.1 @@ -1259,8 +1259,8 @@ packages: '@types/ms@2.1.0': resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} - '@types/node@22.18.8': - resolution: {integrity: sha512-pAZSHMiagDR7cARo/cch1f3rXy0AEXwsVsVH09FcyeJVAzCnGgmYis7P3JidtTUjyadhTeSo8TgRPswstghDaw==} + '@types/node@22.18.9': + resolution: {integrity: sha512-5yBtK0k/q8PjkMXbTfeIEP/XVYnz1R9qZJ3yUicdEW7ppdDJfe+MqXEhpqDL3mtn4Wvs1u0KLEG0RXzCgNpsSg==} '@types/stack-utils@2.0.3': resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} @@ -3911,7 +3911,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@5.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@5.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -3920,7 +3920,7 @@ snapshots: '@stylistic/eslint-plugin': 5.4.0(eslint@9.37.0(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/parser': 8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.3.12(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/eslint-plugin': 1.3.12(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.1.0 cac: 6.7.14 eslint: 9.37.0(jiti@2.4.0) @@ -4389,7 +4389,7 @@ snapshots: graphql: 16.11.0 tslib: 2.6.3 - '@graphql-codegen/cli@6.0.0(@types/node@22.18.8)(graphql@16.11.0)(typescript@5.9.3)': + '@graphql-codegen/cli@6.0.0(@types/node@22.18.9)(graphql@16.11.0)(typescript@5.9.3)': dependencies: '@babel/generator': 7.27.5 '@babel/template': 7.27.2 @@ -4400,20 +4400,20 @@ snapshots: '@graphql-tools/apollo-engine-loader': 8.0.4(graphql@16.11.0) '@graphql-tools/code-file-loader': 8.1.5(graphql@16.11.0) '@graphql-tools/git-loader': 8.0.9(graphql@16.11.0) - '@graphql-tools/github-loader': 8.0.4(@types/node@22.18.8)(graphql@16.11.0) + '@graphql-tools/github-loader': 8.0.4(@types/node@22.18.9)(graphql@16.11.0) '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.8)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.9)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) - '@inquirer/prompts': 7.8.4(@types/node@22.18.8) + '@inquirer/prompts': 7.8.4(@types/node@22.18.9) '@whatwg-node/fetch': 0.10.1 chalk: 4.1.2 cosmiconfig: 9.0.0(typescript@5.9.3) debounce: 2.2.0 detect-indent: 6.1.0 graphql: 16.11.0 - graphql-config: 5.1.3(@types/node@22.18.8)(graphql@16.11.0)(typescript@5.9.3) + graphql-config: 5.1.3(@types/node@22.18.9)(graphql@16.11.0)(typescript@5.9.3) is-glob: 4.0.3 jiti: 2.4.0 json-to-pretty-yaml: 1.2.2 @@ -4616,14 +4616,14 @@ snapshots: - bufferutil - utf-8-validate - '@graphql-tools/executor-http@1.1.9(@types/node@22.18.8)(graphql@16.11.0)': + '@graphql-tools/executor-http@1.1.9(@types/node@22.18.9)(graphql@16.11.0)': dependencies: '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/fetch': 0.10.1 extract-files: 11.0.0 graphql: 16.11.0 - meros: 1.3.0(@types/node@22.18.8) + meros: 1.3.0(@types/node@22.18.9) tslib: 2.8.1 value-or-promise: 1.0.12 transitivePeerDependencies: @@ -4662,10 +4662,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@graphql-tools/github-loader@8.0.4(@types/node@22.18.8)(graphql@16.11.0)': + '@graphql-tools/github-loader@8.0.4(@types/node@22.18.9)(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.8)(graphql@16.11.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.9)(graphql@16.11.0) '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@whatwg-node/fetch': 0.10.1 @@ -4749,11 +4749,11 @@ snapshots: graphql: 16.11.0 tslib: 2.8.1 - '@graphql-tools/url-loader@8.0.15(@types/node@22.18.8)(graphql@16.11.0)': + '@graphql-tools/url-loader@8.0.15(@types/node@22.18.9)(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/executor-graphql-ws': 1.3.2(graphql@16.11.0) - '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.8)(graphql@16.11.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.9)(graphql@16.11.0) '@graphql-tools/executor-legacy-ws': 1.1.2(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@graphql-tools/wrap': 10.0.16(graphql@16.11.0) @@ -4803,27 +4803,27 @@ snapshots: '@humanwhocodes/retry@0.4.3': {} - '@inquirer/checkbox@4.2.2(@types/node@22.18.8)': + '@inquirer/checkbox@4.2.2(@types/node@22.18.9)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.8) + '@inquirer/core': 10.2.0(@types/node@22.18.9) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.8) + '@inquirer/type': 3.0.8(@types/node@22.18.9) ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.8 + '@types/node': 22.18.9 - '@inquirer/confirm@5.1.16(@types/node@22.18.8)': + '@inquirer/confirm@5.1.16(@types/node@22.18.9)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.8) - '@inquirer/type': 3.0.8(@types/node@22.18.8) + '@inquirer/core': 10.2.0(@types/node@22.18.9) + '@inquirer/type': 3.0.8(@types/node@22.18.9) optionalDependencies: - '@types/node': 22.18.8 + '@types/node': 22.18.9 - '@inquirer/core@10.2.0(@types/node@22.18.8)': + '@inquirer/core@10.2.0(@types/node@22.18.9)': dependencies: '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.8) + '@inquirer/type': 3.0.8(@types/node@22.18.9) ansi-escapes: 4.3.2 cli-width: 4.1.0 mute-stream: 2.0.0 @@ -4831,100 +4831,100 @@ snapshots: wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.8 + '@types/node': 22.18.9 - '@inquirer/editor@4.2.18(@types/node@22.18.8)': + '@inquirer/editor@4.2.18(@types/node@22.18.9)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.8) - '@inquirer/external-editor': 1.0.1(@types/node@22.18.8) - '@inquirer/type': 3.0.8(@types/node@22.18.8) + '@inquirer/core': 10.2.0(@types/node@22.18.9) + '@inquirer/external-editor': 1.0.1(@types/node@22.18.9) + '@inquirer/type': 3.0.8(@types/node@22.18.9) optionalDependencies: - '@types/node': 22.18.8 + '@types/node': 22.18.9 - '@inquirer/expand@4.0.18(@types/node@22.18.8)': + '@inquirer/expand@4.0.18(@types/node@22.18.9)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.8) - '@inquirer/type': 3.0.8(@types/node@22.18.8) + '@inquirer/core': 10.2.0(@types/node@22.18.9) + '@inquirer/type': 3.0.8(@types/node@22.18.9) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.8 + '@types/node': 22.18.9 - '@inquirer/external-editor@1.0.1(@types/node@22.18.8)': + '@inquirer/external-editor@1.0.1(@types/node@22.18.9)': dependencies: chardet: 2.1.0 iconv-lite: 0.6.3 optionalDependencies: - '@types/node': 22.18.8 + '@types/node': 22.18.9 '@inquirer/figures@1.0.13': {} - '@inquirer/input@4.2.2(@types/node@22.18.8)': + '@inquirer/input@4.2.2(@types/node@22.18.9)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.8) - '@inquirer/type': 3.0.8(@types/node@22.18.8) + '@inquirer/core': 10.2.0(@types/node@22.18.9) + '@inquirer/type': 3.0.8(@types/node@22.18.9) optionalDependencies: - '@types/node': 22.18.8 + '@types/node': 22.18.9 - '@inquirer/number@3.0.18(@types/node@22.18.8)': + '@inquirer/number@3.0.18(@types/node@22.18.9)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.8) - '@inquirer/type': 3.0.8(@types/node@22.18.8) + '@inquirer/core': 10.2.0(@types/node@22.18.9) + '@inquirer/type': 3.0.8(@types/node@22.18.9) optionalDependencies: - '@types/node': 22.18.8 + '@types/node': 22.18.9 - '@inquirer/password@4.0.18(@types/node@22.18.8)': + '@inquirer/password@4.0.18(@types/node@22.18.9)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.8) - '@inquirer/type': 3.0.8(@types/node@22.18.8) + '@inquirer/core': 10.2.0(@types/node@22.18.9) + '@inquirer/type': 3.0.8(@types/node@22.18.9) ansi-escapes: 4.3.2 optionalDependencies: - '@types/node': 22.18.8 - - '@inquirer/prompts@7.8.4(@types/node@22.18.8)': - dependencies: - '@inquirer/checkbox': 4.2.2(@types/node@22.18.8) - '@inquirer/confirm': 5.1.16(@types/node@22.18.8) - '@inquirer/editor': 4.2.18(@types/node@22.18.8) - '@inquirer/expand': 4.0.18(@types/node@22.18.8) - '@inquirer/input': 4.2.2(@types/node@22.18.8) - '@inquirer/number': 3.0.18(@types/node@22.18.8) - '@inquirer/password': 4.0.18(@types/node@22.18.8) - '@inquirer/rawlist': 4.1.6(@types/node@22.18.8) - '@inquirer/search': 3.1.1(@types/node@22.18.8) - '@inquirer/select': 4.3.2(@types/node@22.18.8) + '@types/node': 22.18.9 + + '@inquirer/prompts@7.8.4(@types/node@22.18.9)': + dependencies: + '@inquirer/checkbox': 4.2.2(@types/node@22.18.9) + '@inquirer/confirm': 5.1.16(@types/node@22.18.9) + '@inquirer/editor': 4.2.18(@types/node@22.18.9) + '@inquirer/expand': 4.0.18(@types/node@22.18.9) + '@inquirer/input': 4.2.2(@types/node@22.18.9) + '@inquirer/number': 3.0.18(@types/node@22.18.9) + '@inquirer/password': 4.0.18(@types/node@22.18.9) + '@inquirer/rawlist': 4.1.6(@types/node@22.18.9) + '@inquirer/search': 3.1.1(@types/node@22.18.9) + '@inquirer/select': 4.3.2(@types/node@22.18.9) optionalDependencies: - '@types/node': 22.18.8 + '@types/node': 22.18.9 - '@inquirer/rawlist@4.1.6(@types/node@22.18.8)': + '@inquirer/rawlist@4.1.6(@types/node@22.18.9)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.8) - '@inquirer/type': 3.0.8(@types/node@22.18.8) + '@inquirer/core': 10.2.0(@types/node@22.18.9) + '@inquirer/type': 3.0.8(@types/node@22.18.9) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.8 + '@types/node': 22.18.9 - '@inquirer/search@3.1.1(@types/node@22.18.8)': + '@inquirer/search@3.1.1(@types/node@22.18.9)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.8) + '@inquirer/core': 10.2.0(@types/node@22.18.9) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.8) + '@inquirer/type': 3.0.8(@types/node@22.18.9) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.8 + '@types/node': 22.18.9 - '@inquirer/select@4.3.2(@types/node@22.18.8)': + '@inquirer/select@4.3.2(@types/node@22.18.9)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.8) + '@inquirer/core': 10.2.0(@types/node@22.18.9) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.8) + '@inquirer/type': 3.0.8(@types/node@22.18.9) ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.8 + '@types/node': 22.18.9 - '@inquirer/type@3.0.8(@types/node@22.18.8)': + '@inquirer/type@3.0.8(@types/node@22.18.9)': optionalDependencies: - '@types/node': 22.18.8 + '@types/node': 22.18.9 '@isaacs/cliui@8.0.2': dependencies: @@ -4948,7 +4948,7 @@ snapshots: '@jest/console@30.2.0': dependencies: '@jest/types': 30.2.0 - '@types/node': 22.18.8 + '@types/node': 22.18.9 chalk: 4.1.2 jest-message-util: 30.2.0 jest-util: 30.2.0 @@ -4962,14 +4962,14 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.8 + '@types/node': 22.18.9 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 4.3.0 exit-x: 0.2.2 graceful-fs: 4.2.11 jest-changed-files: 30.2.0 - jest-config: 30.2.0(@types/node@22.18.8) + jest-config: 30.2.0(@types/node@22.18.9) jest-haste-map: 30.2.0 jest-message-util: 30.2.0 jest-regex-util: 30.0.1 @@ -4996,7 +4996,7 @@ snapshots: dependencies: '@jest/fake-timers': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.8 + '@types/node': 22.18.9 jest-mock: 30.2.0 '@jest/expect-utils@30.2.0': @@ -5014,7 +5014,7 @@ snapshots: dependencies: '@jest/types': 30.2.0 '@sinonjs/fake-timers': 13.0.5 - '@types/node': 22.18.8 + '@types/node': 22.18.9 jest-message-util: 30.2.0 jest-mock: 30.2.0 jest-util: 30.2.0 @@ -5032,7 +5032,7 @@ snapshots: '@jest/pattern@30.0.1': dependencies: - '@types/node': 22.18.8 + '@types/node': 22.18.9 jest-regex-util: 30.0.1 '@jest/reporters@30.2.0': @@ -5043,7 +5043,7 @@ snapshots: '@jest/transform': 30.2.0 '@jest/types': 30.2.0 '@jridgewell/trace-mapping': 0.3.25 - '@types/node': 22.18.8 + '@types/node': 22.18.9 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit-x: 0.2.2 @@ -5120,7 +5120,7 @@ snapshots: '@jest/schemas': 30.0.5 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 22.18.8 + '@types/node': 22.18.9 '@types/yargs': 17.0.33 chalk: 4.1.2 @@ -5323,7 +5323,7 @@ snapshots: '@types/ms@2.1.0': {} - '@types/node@22.18.8': + '@types/node@22.18.9': dependencies: undici-types: 6.21.0 @@ -5333,7 +5333,7 @@ snapshots: '@types/ws@8.5.13': dependencies: - '@types/node': 22.18.8 + '@types/node': 22.18.9 '@types/yargs-parser@21.0.3': {} @@ -5489,14 +5489,14 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.12(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.3.12(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.44.0 '@typescript-eslint/utils': 8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) eslint: 9.37.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1) + vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color @@ -5508,13 +5508,13 @@ snapshots: chai: 5.2.0 tinyrainbow: 2.0.0 - '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@vitest/spy': 3.2.4 estree-walker: 3.0.3 magic-string: 0.30.17 optionalDependencies: - vite: 6.3.5(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1) '@vitest/pretty-format@3.2.4': dependencies: @@ -6501,13 +6501,13 @@ snapshots: dependencies: lodash: 4.17.21 - graphql-config@5.1.3(@types/node@22.18.8)(graphql@16.11.0)(typescript@5.9.3): + graphql-config@5.1.3(@types/node@22.18.9)(graphql@16.11.0)(typescript@5.9.3): dependencies: '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) '@graphql-tools/merge': 9.0.24(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.8)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.9)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) cosmiconfig: 8.3.6(typescript@5.9.3) graphql: 16.11.0 @@ -6698,7 +6698,7 @@ snapshots: '@jest/expect': 30.2.0 '@jest/test-result': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.8 + '@types/node': 22.18.9 chalk: 4.1.2 co: 4.6.0 dedent: 1.6.0 @@ -6718,7 +6718,7 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@30.2.0(@types/node@22.18.8): + jest-cli@30.2.0(@types/node@22.18.9): dependencies: '@jest/core': 30.2.0 '@jest/test-result': 30.2.0 @@ -6726,7 +6726,7 @@ snapshots: chalk: 4.1.2 exit-x: 0.2.2 import-local: 3.2.0 - jest-config: 30.2.0(@types/node@22.18.8) + jest-config: 30.2.0(@types/node@22.18.9) jest-util: 30.2.0 jest-validate: 30.2.0 yargs: 17.7.2 @@ -6737,7 +6737,7 @@ snapshots: - supports-color - ts-node - jest-config@30.2.0(@types/node@22.18.8): + jest-config@30.2.0(@types/node@22.18.9): dependencies: '@babel/core': 7.27.4 '@jest/get-type': 30.1.0 @@ -6764,7 +6764,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 22.18.8 + '@types/node': 22.18.9 transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -6793,7 +6793,7 @@ snapshots: '@jest/environment': 30.2.0 '@jest/fake-timers': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.8 + '@types/node': 22.18.9 jest-mock: 30.2.0 jest-util: 30.2.0 jest-validate: 30.2.0 @@ -6801,7 +6801,7 @@ snapshots: jest-haste-map@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 22.18.8 + '@types/node': 22.18.9 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -6840,7 +6840,7 @@ snapshots: jest-mock@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 22.18.8 + '@types/node': 22.18.9 jest-util: 30.2.0 jest-pnp-resolver@1.2.3(jest-resolve@30.2.0): @@ -6874,7 +6874,7 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.8 + '@types/node': 22.18.9 chalk: 4.1.2 emittery: 0.13.1 exit-x: 0.2.2 @@ -6903,7 +6903,7 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.8 + '@types/node': 22.18.9 chalk: 4.1.2 cjs-module-lexer: 2.1.0 collect-v8-coverage: 1.0.2 @@ -6950,7 +6950,7 @@ snapshots: jest-util@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 22.18.8 + '@types/node': 22.18.9 chalk: 4.1.2 ci-info: 4.3.0 graceful-fs: 4.2.11 @@ -6969,7 +6969,7 @@ snapshots: dependencies: '@jest/test-result': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.8 + '@types/node': 22.18.9 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -6978,18 +6978,18 @@ snapshots: jest-worker@30.2.0: dependencies: - '@types/node': 22.18.8 + '@types/node': 22.18.9 '@ungap/structured-clone': 1.3.0 jest-util: 30.2.0 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@30.2.0(@types/node@22.18.8): + jest@30.2.0(@types/node@22.18.9): dependencies: '@jest/core': 30.2.0 '@jest/types': 30.2.0 import-local: 3.2.0 - jest-cli: 30.2.0(@types/node@22.18.8) + jest-cli: 30.2.0(@types/node@22.18.9) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -7266,9 +7266,9 @@ snapshots: merge2@1.4.1: {} - meros@1.3.0(@types/node@22.18.8): + meros@1.3.0(@types/node@22.18.9): optionalDependencies: - '@types/node': 22.18.8 + '@types/node': 22.18.9 micromark-core-commonmark@2.0.3: dependencies: @@ -8031,12 +8031,12 @@ snapshots: ts-dedent@2.2.0: {} - ts-jest@29.4.4(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.8))(typescript@5.9.3): + ts-jest@29.4.4(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.9))(typescript@5.9.3): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 handlebars: 4.7.8 - jest: 30.2.0(@types/node@22.18.8) + jest: 30.2.0(@types/node@22.18.9) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -8163,13 +8163,13 @@ snapshots: value-or-promise@1.0.12: {} - vite-node@3.2.4(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1): + vite-node@3.2.4(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1): dependencies: cac: 6.7.14 debug: 4.4.3 es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 6.3.5(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - '@types/node' - jiti @@ -8184,7 +8184,7 @@ snapshots: - tsx - yaml - vite@6.3.5(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1): + vite@6.3.5(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1): dependencies: esbuild: 0.25.5 fdir: 6.4.6(picomatch@4.0.2) @@ -8193,16 +8193,16 @@ snapshots: rollup: 4.43.0 tinyglobby: 0.2.14 optionalDependencies: - '@types/node': 22.18.8 + '@types/node': 22.18.9 fsevents: 2.3.3 jiti: 2.4.0 yaml: 2.8.1 - vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1): + vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1): dependencies: '@types/chai': 5.2.2 '@vitest/expect': 3.2.4 - '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1)) '@vitest/pretty-format': 3.2.4 '@vitest/runner': 3.2.4 '@vitest/snapshot': 3.2.4 @@ -8220,12 +8220,12 @@ snapshots: tinyglobby: 0.2.14 tinypool: 1.1.1 tinyrainbow: 2.0.0 - vite: 6.3.5(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1) - vite-node: 3.2.4(@types/node@22.18.8)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1) + vite-node: 3.2.4(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1) why-is-node-running: 2.3.0 optionalDependencies: '@types/debug': 4.1.12 - '@types/node': 22.18.8 + '@types/node': 22.18.9 transitivePeerDependencies: - jiti - less From b513d559e9b42c7c4d2fd9143509df30f7268d67 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 10 Oct 2025 01:28:41 +0000 Subject: [PATCH 075/133] chore(deps): update pnpm to v10.18.2 (#1258) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8825bf72..97c209f7 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "graphql-codegen-typescript-validation-schema", "type": "module", "version": "0.18.1", - "packageManager": "pnpm@10.18.1", + "packageManager": "pnpm@10.18.2", "description": "GraphQL Code Generator plugin to generate form validation schema from your GraphQL schema", "respository": { "type": "git", From 3207614ae8673616b69a82dcda2ab153937c981c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 10 Oct 2025 13:50:14 +0000 Subject: [PATCH 076/133] chore(deps): update dependency ts-jest to v29.4.5 (#1260) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 19 +++++++++++++------ 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index 97c209f7..54b1adde 100644 --- a/package.json +++ b/package.json @@ -98,7 +98,7 @@ "myzod": "1.12.1", "npm-run-all2": "8.0.4", "ts-dedent": "^2.2.0", - "ts-jest": "29.4.4", + "ts-jest": "29.4.5", "typescript": "5.9.3", "valibot": "1.1.0", "vitest": "^3.0.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 061570c1..46c276f6 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -61,8 +61,8 @@ importers: specifier: ^2.2.0 version: 2.2.0 ts-jest: - specifier: 29.4.4 - version: 29.4.4(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.9))(typescript@5.9.3) + specifier: 29.4.5 + version: 29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.9))(typescript@5.9.3) typescript: specifier: 5.9.3 version: 5.9.3 @@ -3350,6 +3350,11 @@ packages: engines: {node: '>=10'} hasBin: true + semver@7.7.3: + resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==} + engines: {node: '>=10'} + hasBin: true + sentence-case@3.0.4: resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==} @@ -3574,8 +3579,8 @@ packages: resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} engines: {node: '>=6.10'} - ts-jest@29.4.4: - resolution: {integrity: sha512-ccVcRABct5ZELCT5U0+DZwkXMCcOCLi2doHRrKy1nK/s7J7bch6TzJMsrY09WxgUUIP/ITfmcDS8D2yl63rnXw==} + ts-jest@29.4.5: + resolution: {integrity: sha512-HO3GyiWn2qvTQA4kTgjDcXiMwYQt68a1Y8+JuLRVpdIzm+UOLSHgl/XqR4c6nzJkq5rOkjc02O2I7P7l/Yof0Q==} engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: @@ -7832,6 +7837,8 @@ snapshots: semver@7.7.2: {} + semver@7.7.3: {} + sentence-case@3.0.4: dependencies: no-case: 3.0.4 @@ -8031,7 +8038,7 @@ snapshots: ts-dedent@2.2.0: {} - ts-jest@29.4.4(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.9))(typescript@5.9.3): + ts-jest@29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.9))(typescript@5.9.3): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 @@ -8040,7 +8047,7 @@ snapshots: json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 - semver: 7.7.2 + semver: 7.7.3 type-fest: 4.41.0 typescript: 5.9.3 yargs-parser: 21.1.1 From 40a1c6bd088c7c7f3cc877c6c878b4e85286a997 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 11 Oct 2025 18:02:05 +0000 Subject: [PATCH 077/133] chore(deps): update dependency @types/node to v22.18.10 (#1261) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 254 ++++++++++++++++++++++++------------------------- 1 file changed, 127 insertions(+), 127 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 46c276f6..edd189b5 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,10 +29,10 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^5.0.0 - version: 5.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1)) + version: 5.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.0 - version: 6.0.0(@types/node@22.18.9)(graphql@16.11.0)(typescript@5.9.3) + version: 6.0.0(@types/node@22.18.10)(graphql@16.11.0)(typescript@5.9.3) '@graphql-codegen/typescript': specifier: ^5.0.0 version: 5.0.2(graphql@16.11.0) @@ -44,13 +44,13 @@ importers: version: 2.1.12 '@types/node': specifier: ^22.0.0 - version: 22.18.9 + version: 22.18.10 eslint: specifier: 9.37.0 version: 9.37.0(jiti@2.4.0) jest: specifier: 30.2.0 - version: 30.2.0(@types/node@22.18.9) + version: 30.2.0(@types/node@22.18.10) myzod: specifier: 1.12.1 version: 1.12.1 @@ -62,7 +62,7 @@ importers: version: 2.2.0 ts-jest: specifier: 29.4.5 - version: 29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.9))(typescript@5.9.3) + version: 29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.10))(typescript@5.9.3) typescript: specifier: 5.9.3 version: 5.9.3 @@ -71,7 +71,7 @@ importers: version: 1.1.0(typescript@5.9.3) vitest: specifier: ^3.0.0 - version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.1 version: 1.7.1 @@ -1259,8 +1259,8 @@ packages: '@types/ms@2.1.0': resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} - '@types/node@22.18.9': - resolution: {integrity: sha512-5yBtK0k/q8PjkMXbTfeIEP/XVYnz1R9qZJ3yUicdEW7ppdDJfe+MqXEhpqDL3mtn4Wvs1u0KLEG0RXzCgNpsSg==} + '@types/node@22.18.10': + resolution: {integrity: sha512-anNG/V/Efn/YZY4pRzbACnKxNKoBng2VTFydVu8RRs5hQjikP8CQfaeAV59VFSCzKNp90mXiVXW2QzV56rwMrg==} '@types/stack-utils@2.0.3': resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} @@ -3916,7 +3916,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@5.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@5.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -3925,7 +3925,7 @@ snapshots: '@stylistic/eslint-plugin': 5.4.0(eslint@9.37.0(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/parser': 8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.3.12(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/eslint-plugin': 1.3.12(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.1.0 cac: 6.7.14 eslint: 9.37.0(jiti@2.4.0) @@ -4394,7 +4394,7 @@ snapshots: graphql: 16.11.0 tslib: 2.6.3 - '@graphql-codegen/cli@6.0.0(@types/node@22.18.9)(graphql@16.11.0)(typescript@5.9.3)': + '@graphql-codegen/cli@6.0.0(@types/node@22.18.10)(graphql@16.11.0)(typescript@5.9.3)': dependencies: '@babel/generator': 7.27.5 '@babel/template': 7.27.2 @@ -4405,20 +4405,20 @@ snapshots: '@graphql-tools/apollo-engine-loader': 8.0.4(graphql@16.11.0) '@graphql-tools/code-file-loader': 8.1.5(graphql@16.11.0) '@graphql-tools/git-loader': 8.0.9(graphql@16.11.0) - '@graphql-tools/github-loader': 8.0.4(@types/node@22.18.9)(graphql@16.11.0) + '@graphql-tools/github-loader': 8.0.4(@types/node@22.18.10)(graphql@16.11.0) '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.9)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.10)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) - '@inquirer/prompts': 7.8.4(@types/node@22.18.9) + '@inquirer/prompts': 7.8.4(@types/node@22.18.10) '@whatwg-node/fetch': 0.10.1 chalk: 4.1.2 cosmiconfig: 9.0.0(typescript@5.9.3) debounce: 2.2.0 detect-indent: 6.1.0 graphql: 16.11.0 - graphql-config: 5.1.3(@types/node@22.18.9)(graphql@16.11.0)(typescript@5.9.3) + graphql-config: 5.1.3(@types/node@22.18.10)(graphql@16.11.0)(typescript@5.9.3) is-glob: 4.0.3 jiti: 2.4.0 json-to-pretty-yaml: 1.2.2 @@ -4621,14 +4621,14 @@ snapshots: - bufferutil - utf-8-validate - '@graphql-tools/executor-http@1.1.9(@types/node@22.18.9)(graphql@16.11.0)': + '@graphql-tools/executor-http@1.1.9(@types/node@22.18.10)(graphql@16.11.0)': dependencies: '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/fetch': 0.10.1 extract-files: 11.0.0 graphql: 16.11.0 - meros: 1.3.0(@types/node@22.18.9) + meros: 1.3.0(@types/node@22.18.10) tslib: 2.8.1 value-or-promise: 1.0.12 transitivePeerDependencies: @@ -4667,10 +4667,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@graphql-tools/github-loader@8.0.4(@types/node@22.18.9)(graphql@16.11.0)': + '@graphql-tools/github-loader@8.0.4(@types/node@22.18.10)(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.9)(graphql@16.11.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.10)(graphql@16.11.0) '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@whatwg-node/fetch': 0.10.1 @@ -4754,11 +4754,11 @@ snapshots: graphql: 16.11.0 tslib: 2.8.1 - '@graphql-tools/url-loader@8.0.15(@types/node@22.18.9)(graphql@16.11.0)': + '@graphql-tools/url-loader@8.0.15(@types/node@22.18.10)(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/executor-graphql-ws': 1.3.2(graphql@16.11.0) - '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.9)(graphql@16.11.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.10)(graphql@16.11.0) '@graphql-tools/executor-legacy-ws': 1.1.2(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@graphql-tools/wrap': 10.0.16(graphql@16.11.0) @@ -4808,27 +4808,27 @@ snapshots: '@humanwhocodes/retry@0.4.3': {} - '@inquirer/checkbox@4.2.2(@types/node@22.18.9)': + '@inquirer/checkbox@4.2.2(@types/node@22.18.10)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.9) + '@inquirer/core': 10.2.0(@types/node@22.18.10) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.9) + '@inquirer/type': 3.0.8(@types/node@22.18.10) ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.9 + '@types/node': 22.18.10 - '@inquirer/confirm@5.1.16(@types/node@22.18.9)': + '@inquirer/confirm@5.1.16(@types/node@22.18.10)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.9) - '@inquirer/type': 3.0.8(@types/node@22.18.9) + '@inquirer/core': 10.2.0(@types/node@22.18.10) + '@inquirer/type': 3.0.8(@types/node@22.18.10) optionalDependencies: - '@types/node': 22.18.9 + '@types/node': 22.18.10 - '@inquirer/core@10.2.0(@types/node@22.18.9)': + '@inquirer/core@10.2.0(@types/node@22.18.10)': dependencies: '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.9) + '@inquirer/type': 3.0.8(@types/node@22.18.10) ansi-escapes: 4.3.2 cli-width: 4.1.0 mute-stream: 2.0.0 @@ -4836,100 +4836,100 @@ snapshots: wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.9 + '@types/node': 22.18.10 - '@inquirer/editor@4.2.18(@types/node@22.18.9)': + '@inquirer/editor@4.2.18(@types/node@22.18.10)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.9) - '@inquirer/external-editor': 1.0.1(@types/node@22.18.9) - '@inquirer/type': 3.0.8(@types/node@22.18.9) + '@inquirer/core': 10.2.0(@types/node@22.18.10) + '@inquirer/external-editor': 1.0.1(@types/node@22.18.10) + '@inquirer/type': 3.0.8(@types/node@22.18.10) optionalDependencies: - '@types/node': 22.18.9 + '@types/node': 22.18.10 - '@inquirer/expand@4.0.18(@types/node@22.18.9)': + '@inquirer/expand@4.0.18(@types/node@22.18.10)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.9) - '@inquirer/type': 3.0.8(@types/node@22.18.9) + '@inquirer/core': 10.2.0(@types/node@22.18.10) + '@inquirer/type': 3.0.8(@types/node@22.18.10) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.9 + '@types/node': 22.18.10 - '@inquirer/external-editor@1.0.1(@types/node@22.18.9)': + '@inquirer/external-editor@1.0.1(@types/node@22.18.10)': dependencies: chardet: 2.1.0 iconv-lite: 0.6.3 optionalDependencies: - '@types/node': 22.18.9 + '@types/node': 22.18.10 '@inquirer/figures@1.0.13': {} - '@inquirer/input@4.2.2(@types/node@22.18.9)': + '@inquirer/input@4.2.2(@types/node@22.18.10)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.9) - '@inquirer/type': 3.0.8(@types/node@22.18.9) + '@inquirer/core': 10.2.0(@types/node@22.18.10) + '@inquirer/type': 3.0.8(@types/node@22.18.10) optionalDependencies: - '@types/node': 22.18.9 + '@types/node': 22.18.10 - '@inquirer/number@3.0.18(@types/node@22.18.9)': + '@inquirer/number@3.0.18(@types/node@22.18.10)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.9) - '@inquirer/type': 3.0.8(@types/node@22.18.9) + '@inquirer/core': 10.2.0(@types/node@22.18.10) + '@inquirer/type': 3.0.8(@types/node@22.18.10) optionalDependencies: - '@types/node': 22.18.9 + '@types/node': 22.18.10 - '@inquirer/password@4.0.18(@types/node@22.18.9)': + '@inquirer/password@4.0.18(@types/node@22.18.10)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.9) - '@inquirer/type': 3.0.8(@types/node@22.18.9) + '@inquirer/core': 10.2.0(@types/node@22.18.10) + '@inquirer/type': 3.0.8(@types/node@22.18.10) ansi-escapes: 4.3.2 optionalDependencies: - '@types/node': 22.18.9 - - '@inquirer/prompts@7.8.4(@types/node@22.18.9)': - dependencies: - '@inquirer/checkbox': 4.2.2(@types/node@22.18.9) - '@inquirer/confirm': 5.1.16(@types/node@22.18.9) - '@inquirer/editor': 4.2.18(@types/node@22.18.9) - '@inquirer/expand': 4.0.18(@types/node@22.18.9) - '@inquirer/input': 4.2.2(@types/node@22.18.9) - '@inquirer/number': 3.0.18(@types/node@22.18.9) - '@inquirer/password': 4.0.18(@types/node@22.18.9) - '@inquirer/rawlist': 4.1.6(@types/node@22.18.9) - '@inquirer/search': 3.1.1(@types/node@22.18.9) - '@inquirer/select': 4.3.2(@types/node@22.18.9) + '@types/node': 22.18.10 + + '@inquirer/prompts@7.8.4(@types/node@22.18.10)': + dependencies: + '@inquirer/checkbox': 4.2.2(@types/node@22.18.10) + '@inquirer/confirm': 5.1.16(@types/node@22.18.10) + '@inquirer/editor': 4.2.18(@types/node@22.18.10) + '@inquirer/expand': 4.0.18(@types/node@22.18.10) + '@inquirer/input': 4.2.2(@types/node@22.18.10) + '@inquirer/number': 3.0.18(@types/node@22.18.10) + '@inquirer/password': 4.0.18(@types/node@22.18.10) + '@inquirer/rawlist': 4.1.6(@types/node@22.18.10) + '@inquirer/search': 3.1.1(@types/node@22.18.10) + '@inquirer/select': 4.3.2(@types/node@22.18.10) optionalDependencies: - '@types/node': 22.18.9 + '@types/node': 22.18.10 - '@inquirer/rawlist@4.1.6(@types/node@22.18.9)': + '@inquirer/rawlist@4.1.6(@types/node@22.18.10)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.9) - '@inquirer/type': 3.0.8(@types/node@22.18.9) + '@inquirer/core': 10.2.0(@types/node@22.18.10) + '@inquirer/type': 3.0.8(@types/node@22.18.10) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.9 + '@types/node': 22.18.10 - '@inquirer/search@3.1.1(@types/node@22.18.9)': + '@inquirer/search@3.1.1(@types/node@22.18.10)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.9) + '@inquirer/core': 10.2.0(@types/node@22.18.10) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.9) + '@inquirer/type': 3.0.8(@types/node@22.18.10) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.9 + '@types/node': 22.18.10 - '@inquirer/select@4.3.2(@types/node@22.18.9)': + '@inquirer/select@4.3.2(@types/node@22.18.10)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.9) + '@inquirer/core': 10.2.0(@types/node@22.18.10) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.9) + '@inquirer/type': 3.0.8(@types/node@22.18.10) ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.9 + '@types/node': 22.18.10 - '@inquirer/type@3.0.8(@types/node@22.18.9)': + '@inquirer/type@3.0.8(@types/node@22.18.10)': optionalDependencies: - '@types/node': 22.18.9 + '@types/node': 22.18.10 '@isaacs/cliui@8.0.2': dependencies: @@ -4953,7 +4953,7 @@ snapshots: '@jest/console@30.2.0': dependencies: '@jest/types': 30.2.0 - '@types/node': 22.18.9 + '@types/node': 22.18.10 chalk: 4.1.2 jest-message-util: 30.2.0 jest-util: 30.2.0 @@ -4967,14 +4967,14 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.9 + '@types/node': 22.18.10 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 4.3.0 exit-x: 0.2.2 graceful-fs: 4.2.11 jest-changed-files: 30.2.0 - jest-config: 30.2.0(@types/node@22.18.9) + jest-config: 30.2.0(@types/node@22.18.10) jest-haste-map: 30.2.0 jest-message-util: 30.2.0 jest-regex-util: 30.0.1 @@ -5001,7 +5001,7 @@ snapshots: dependencies: '@jest/fake-timers': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.9 + '@types/node': 22.18.10 jest-mock: 30.2.0 '@jest/expect-utils@30.2.0': @@ -5019,7 +5019,7 @@ snapshots: dependencies: '@jest/types': 30.2.0 '@sinonjs/fake-timers': 13.0.5 - '@types/node': 22.18.9 + '@types/node': 22.18.10 jest-message-util: 30.2.0 jest-mock: 30.2.0 jest-util: 30.2.0 @@ -5037,7 +5037,7 @@ snapshots: '@jest/pattern@30.0.1': dependencies: - '@types/node': 22.18.9 + '@types/node': 22.18.10 jest-regex-util: 30.0.1 '@jest/reporters@30.2.0': @@ -5048,7 +5048,7 @@ snapshots: '@jest/transform': 30.2.0 '@jest/types': 30.2.0 '@jridgewell/trace-mapping': 0.3.25 - '@types/node': 22.18.9 + '@types/node': 22.18.10 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit-x: 0.2.2 @@ -5125,7 +5125,7 @@ snapshots: '@jest/schemas': 30.0.5 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 22.18.9 + '@types/node': 22.18.10 '@types/yargs': 17.0.33 chalk: 4.1.2 @@ -5328,7 +5328,7 @@ snapshots: '@types/ms@2.1.0': {} - '@types/node@22.18.9': + '@types/node@22.18.10': dependencies: undici-types: 6.21.0 @@ -5338,7 +5338,7 @@ snapshots: '@types/ws@8.5.13': dependencies: - '@types/node': 22.18.9 + '@types/node': 22.18.10 '@types/yargs-parser@21.0.3': {} @@ -5494,14 +5494,14 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.12(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.3.12(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.44.0 '@typescript-eslint/utils': 8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) eslint: 9.37.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1) + vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color @@ -5513,13 +5513,13 @@ snapshots: chai: 5.2.0 tinyrainbow: 2.0.0 - '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@vitest/spy': 3.2.4 estree-walker: 3.0.3 magic-string: 0.30.17 optionalDependencies: - vite: 6.3.5(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1) '@vitest/pretty-format@3.2.4': dependencies: @@ -6506,13 +6506,13 @@ snapshots: dependencies: lodash: 4.17.21 - graphql-config@5.1.3(@types/node@22.18.9)(graphql@16.11.0)(typescript@5.9.3): + graphql-config@5.1.3(@types/node@22.18.10)(graphql@16.11.0)(typescript@5.9.3): dependencies: '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) '@graphql-tools/merge': 9.0.24(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.9)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.10)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) cosmiconfig: 8.3.6(typescript@5.9.3) graphql: 16.11.0 @@ -6703,7 +6703,7 @@ snapshots: '@jest/expect': 30.2.0 '@jest/test-result': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.9 + '@types/node': 22.18.10 chalk: 4.1.2 co: 4.6.0 dedent: 1.6.0 @@ -6723,7 +6723,7 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@30.2.0(@types/node@22.18.9): + jest-cli@30.2.0(@types/node@22.18.10): dependencies: '@jest/core': 30.2.0 '@jest/test-result': 30.2.0 @@ -6731,7 +6731,7 @@ snapshots: chalk: 4.1.2 exit-x: 0.2.2 import-local: 3.2.0 - jest-config: 30.2.0(@types/node@22.18.9) + jest-config: 30.2.0(@types/node@22.18.10) jest-util: 30.2.0 jest-validate: 30.2.0 yargs: 17.7.2 @@ -6742,7 +6742,7 @@ snapshots: - supports-color - ts-node - jest-config@30.2.0(@types/node@22.18.9): + jest-config@30.2.0(@types/node@22.18.10): dependencies: '@babel/core': 7.27.4 '@jest/get-type': 30.1.0 @@ -6769,7 +6769,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 22.18.9 + '@types/node': 22.18.10 transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -6798,7 +6798,7 @@ snapshots: '@jest/environment': 30.2.0 '@jest/fake-timers': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.9 + '@types/node': 22.18.10 jest-mock: 30.2.0 jest-util: 30.2.0 jest-validate: 30.2.0 @@ -6806,7 +6806,7 @@ snapshots: jest-haste-map@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 22.18.9 + '@types/node': 22.18.10 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -6845,7 +6845,7 @@ snapshots: jest-mock@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 22.18.9 + '@types/node': 22.18.10 jest-util: 30.2.0 jest-pnp-resolver@1.2.3(jest-resolve@30.2.0): @@ -6879,7 +6879,7 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.9 + '@types/node': 22.18.10 chalk: 4.1.2 emittery: 0.13.1 exit-x: 0.2.2 @@ -6908,7 +6908,7 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.9 + '@types/node': 22.18.10 chalk: 4.1.2 cjs-module-lexer: 2.1.0 collect-v8-coverage: 1.0.2 @@ -6955,7 +6955,7 @@ snapshots: jest-util@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 22.18.9 + '@types/node': 22.18.10 chalk: 4.1.2 ci-info: 4.3.0 graceful-fs: 4.2.11 @@ -6974,7 +6974,7 @@ snapshots: dependencies: '@jest/test-result': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.9 + '@types/node': 22.18.10 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -6983,18 +6983,18 @@ snapshots: jest-worker@30.2.0: dependencies: - '@types/node': 22.18.9 + '@types/node': 22.18.10 '@ungap/structured-clone': 1.3.0 jest-util: 30.2.0 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@30.2.0(@types/node@22.18.9): + jest@30.2.0(@types/node@22.18.10): dependencies: '@jest/core': 30.2.0 '@jest/types': 30.2.0 import-local: 3.2.0 - jest-cli: 30.2.0(@types/node@22.18.9) + jest-cli: 30.2.0(@types/node@22.18.10) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -7271,9 +7271,9 @@ snapshots: merge2@1.4.1: {} - meros@1.3.0(@types/node@22.18.9): + meros@1.3.0(@types/node@22.18.10): optionalDependencies: - '@types/node': 22.18.9 + '@types/node': 22.18.10 micromark-core-commonmark@2.0.3: dependencies: @@ -8038,12 +8038,12 @@ snapshots: ts-dedent@2.2.0: {} - ts-jest@29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.9))(typescript@5.9.3): + ts-jest@29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.10))(typescript@5.9.3): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 handlebars: 4.7.8 - jest: 30.2.0(@types/node@22.18.9) + jest: 30.2.0(@types/node@22.18.10) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -8170,13 +8170,13 @@ snapshots: value-or-promise@1.0.12: {} - vite-node@3.2.4(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1): + vite-node@3.2.4(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1): dependencies: cac: 6.7.14 debug: 4.4.3 es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 6.3.5(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - '@types/node' - jiti @@ -8191,7 +8191,7 @@ snapshots: - tsx - yaml - vite@6.3.5(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1): + vite@6.3.5(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1): dependencies: esbuild: 0.25.5 fdir: 6.4.6(picomatch@4.0.2) @@ -8200,16 +8200,16 @@ snapshots: rollup: 4.43.0 tinyglobby: 0.2.14 optionalDependencies: - '@types/node': 22.18.9 + '@types/node': 22.18.10 fsevents: 2.3.3 jiti: 2.4.0 yaml: 2.8.1 - vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1): + vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1): dependencies: '@types/chai': 5.2.2 '@vitest/expect': 3.2.4 - '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1)) '@vitest/pretty-format': 3.2.4 '@vitest/runner': 3.2.4 '@vitest/snapshot': 3.2.4 @@ -8227,12 +8227,12 @@ snapshots: tinyglobby: 0.2.14 tinypool: 1.1.1 tinyrainbow: 2.0.0 - vite: 6.3.5(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1) - vite-node: 3.2.4(@types/node@22.18.9)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1) + vite-node: 3.2.4(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1) why-is-node-running: 2.3.0 optionalDependencies: '@types/debug': 4.1.12 - '@types/node': 22.18.9 + '@types/node': 22.18.10 transitivePeerDependencies: - jiti - less From 1e98dd30f1346a2cd807b9534ed3557f99ba229f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 14 Oct 2025 16:58:37 +0000 Subject: [PATCH 078/133] chore(deps): update pnpm to v10.18.3 (#1263) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 54b1adde..bb06bf20 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "graphql-codegen-typescript-validation-schema", "type": "module", "version": "0.18.1", - "packageManager": "pnpm@10.18.2", + "packageManager": "pnpm@10.18.3", "description": "GraphQL Code Generator plugin to generate form validation schema from your GraphQL schema", "respository": { "type": "git", From a51884b53aba7166464b05ee9b629258deeeb2f0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 15 Oct 2025 05:28:08 +0000 Subject: [PATCH 079/133] chore(deps): update dependency @antfu/eslint-config to v6 (#1264) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 287 +++++++++++++++++++++++++++++++++---------------- 2 files changed, 195 insertions(+), 94 deletions(-) diff --git a/package.json b/package.json index bb06bf20..61a1f52c 100644 --- a/package.json +++ b/package.json @@ -87,7 +87,7 @@ "graphql": "^16.6.0" }, "devDependencies": { - "@antfu/eslint-config": "^5.0.0", + "@antfu/eslint-config": "^6.0.0", "@graphql-codegen/cli": "6.0.0", "@graphql-codegen/typescript": "^5.0.0", "@tsconfig/recommended": "1.0.10", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index edd189b5..e520f4d0 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -28,8 +28,8 @@ importers: version: 16.11.0 devDependencies: '@antfu/eslint-config': - specifier: ^5.0.0 - version: 5.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1)) + specifier: ^6.0.0 + version: 6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.0 version: 6.0.0(@types/node@22.18.10)(graphql@16.11.0)(typescript@5.9.3) @@ -85,11 +85,11 @@ packages: resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - '@antfu/eslint-config@5.4.1': - resolution: {integrity: sha512-x7BiNkxJRlXXs8tIvg0CgMuNo5IZVWkGLMJotCtCtzWUHW78Pmm8PvtXhvLBbTc8683GGBK616MMztWLh4RNjA==} + '@antfu/eslint-config@6.0.0': + resolution: {integrity: sha512-M2RM+x+hpxpASEZzQh4d5uaUEHn8sYNVlTB+CySpLkDs2rr3QFvRR7KqNdnox/OIPc6YWMsIEnM/XUbQP52nTA==} hasBin: true peerDependencies: - '@eslint-react/eslint-plugin': ^1.38.4 + '@eslint-react/eslint-plugin': ^2.0.1 '@next/eslint-plugin-next': ^15.4.0-canary.115 '@prettier/plugin-xml': ^3.4.1 '@unocss/eslint-plugin': '>=0.50.0' @@ -98,7 +98,7 @@ packages: eslint-plugin-astro: ^1.2.0 eslint-plugin-format: '>=0.1.0' eslint-plugin-jsx-a11y: '>=6.10.2' - eslint-plugin-react-hooks: ^5.2.0 + eslint-plugin-react-hooks: ^7.0.0 eslint-plugin-react-refresh: ^0.4.19 eslint-plugin-solid: ^0.14.3 eslint-plugin-svelte: '>=2.35.1' @@ -550,8 +550,8 @@ packages: resolution: {integrity: sha512-jaS+NJ+hximswBG6pjNX0uEJZkrT0zwpVi3BA3vX22aFGjJjmgSTSmPpZCRKmoBL5VY/M6p0xsSJx7rk7sy5gg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/markdown@7.2.0': - resolution: {integrity: sha512-cmDloByulvKzofM0tIkSGWwxMcrKOLsXZC+EM0FLkRIrxKzW+2RkZAt9TAh37EtQRmx1M4vjBEmlC6R0wiGkog==} + '@eslint/markdown@7.4.0': + resolution: {integrity: sha512-VQykmMjBb4tQoJOXVWXa+oQbQeCZlE7W3rAsOpmtpKLvJd75saZZ04PVVs7+zgMDJGghd4/gyFV6YlvdJFaeNQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/object-schema@2.1.6': @@ -1277,16 +1277,16 @@ packages: '@types/yargs@17.0.33': resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==} - '@typescript-eslint/eslint-plugin@8.44.0': - resolution: {integrity: sha512-EGDAOGX+uwwekcS0iyxVDmRV9HX6FLSM5kzrAToLTsr9OWCIKG/y3lQheCq18yZ5Xh78rRKJiEpP0ZaCs4ryOQ==} + '@typescript-eslint/eslint-plugin@8.46.1': + resolution: {integrity: sha512-rUsLh8PXmBjdiPY+Emjz9NX2yHvhS11v0SR6xNJkm5GM1MO9ea/1GoDKlHHZGrOJclL/cZ2i/vRUYVtjRhrHVQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - '@typescript-eslint/parser': ^8.44.0 + '@typescript-eslint/parser': ^8.46.1 eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/parser@8.44.0': - resolution: {integrity: sha512-VGMpFQGUQWYT9LfnPcX8ouFojyrZ/2w3K5BucvxL/spdNehccKhB4jUyB1yBCXpr2XFm0jkECxgrpXBW2ipoAw==} + '@typescript-eslint/parser@8.46.1': + resolution: {integrity: sha512-6JSSaBZmsKvEkbRUkf7Zj7dru/8ZCrJxAqArcLaVMee5907JdtEbKGsZ7zNiIm/UAkpGUkaSMZEXShnN2D1HZA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 @@ -1298,18 +1298,34 @@ packages: peerDependencies: typescript: '>=4.8.4 <6.0.0' + '@typescript-eslint/project-service@8.46.1': + resolution: {integrity: sha512-FOIaFVMHzRskXr5J4Jp8lFVV0gz5ngv3RHmn+E4HYxSJ3DgDzU7fVI1/M7Ijh1zf6S7HIoaIOtln1H5y8V+9Zg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.0.0' + '@typescript-eslint/scope-manager@8.44.0': resolution: {integrity: sha512-87Jv3E+al8wpD+rIdVJm/ItDBe/Im09zXIjFoipOjr5gHUhJmTzfFLuTJ/nPTMc2Srsroy4IBXwcTCHyRR7KzA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/scope-manager@8.46.1': + resolution: {integrity: sha512-weL9Gg3/5F0pVQKiF8eOXFZp8emqWzZsOJuWRUNtHT+UNV2xSJegmpCNQHy37aEQIbToTq7RHKhWvOsmbM680A==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/tsconfig-utils@8.44.0': resolution: {integrity: sha512-x5Y0+AuEPqAInc6yd0n5DAcvtoQ/vyaGwuX5HE9n6qAefk1GaedqrLQF8kQGylLUb9pnZyLf+iEiL9fr8APDtQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/type-utils@8.44.0': - resolution: {integrity: sha512-9cwsoSxJ8Sak67Be/hD2RNt/fsqmWnNE1iHohG8lxqLSNY8xNfyY7wloo5zpW3Nu9hxVgURevqfcH6vvKCt6yg==} + '@typescript-eslint/tsconfig-utils@8.46.1': + resolution: {integrity: sha512-X88+J/CwFvlJB+mK09VFqx5FE4H5cXD+H/Bdza2aEWkSb8hnWIQorNcscRl4IEo1Cz9VI/+/r/jnGWkbWPx54g==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/type-utils@8.46.1': + resolution: {integrity: sha512-+BlmiHIiqufBxkVnOtFwjah/vrkF4MtKKvpXrKSPLCkCtAp8H01/VV43sfqA98Od7nJpDcFnkwgyfQbOG0AMvw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 @@ -1319,12 +1335,22 @@ packages: resolution: {integrity: sha512-ZSl2efn44VsYM0MfDQe68RKzBz75NPgLQXuGypmym6QVOWL5kegTZuZ02xRAT9T+onqvM6T8CdQk0OwYMB6ZvA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/types@8.46.1': + resolution: {integrity: sha512-C+soprGBHwWBdkDpbaRC4paGBrkIXxVlNohadL5o0kfhsXqOC6GYH2S/Obmig+I0HTDl8wMaRySwrfrXVP8/pQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/typescript-estree@8.44.0': resolution: {integrity: sha512-lqNj6SgnGcQZwL4/SBJ3xdPEfcBuhCG8zdcwCPgYcmiPLgokiNDKlbPzCwEwu7m279J/lBYWtDYL+87OEfn8Jw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.0.0' + '@typescript-eslint/typescript-estree@8.46.1': + resolution: {integrity: sha512-uIifjT4s8cQKFQ8ZBXXyoUODtRoAd7F7+G8MKmtzj17+1UbdzFl52AzRyZRyKqPHhgzvXunnSckVu36flGy8cg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.0.0' + '@typescript-eslint/utils@8.44.0': resolution: {integrity: sha512-nktOlVcg3ALo0mYlV+L7sWUD58KG4CMj1rb2HUVOO4aL3K/6wcD+NERqd0rrA5Vg06b42YhF6cFxeixsp9Riqg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -1332,10 +1358,21 @@ packages: eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <6.0.0' + '@typescript-eslint/utils@8.46.1': + resolution: {integrity: sha512-vkYUy6LdZS7q1v/Gxb2Zs7zziuXN0wxqsetJdeZdRe/f5dwJFglmuvZBfTUivCtjH725C1jWCDfpadadD95EDQ==} + 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/visitor-keys@8.44.0': resolution: {integrity: sha512-zaz9u8EJ4GBmnehlrpoKvj/E3dNbuQ7q0ucyZImm3cLqJ8INTc970B1qEqDX/Rzq65r3TvVTN7kHWPBoyW7DWw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/visitor-keys@8.46.1': + resolution: {integrity: sha512-ptkmIf2iDkNUjdeu2bQqhFPV1m6qTnFFjg7PPDjxKWaMaP0Z6I9l30Jr3g5QqbZGdw8YdYvLp+XnqnWWZOg/NA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@ungap/structured-clone@1.3.0': resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} @@ -1424,8 +1461,8 @@ packages: cpu: [x64] os: [win32] - '@vitest/eslint-plugin@1.3.12': - resolution: {integrity: sha512-cSEyUYGj8j8SLqKrzN7BlfsJ3wG67eRT25819PXuyoSBogLXiyagdKx4MHWHV1zv+EEuyMXsEKkBEKzXpxyBrg==} + '@vitest/eslint-plugin@1.3.20': + resolution: {integrity: sha512-0VkFSFjfAkNLkgWcfcrJjU+4CQs48LuYH/2zrjNhHPX6iD+SMJzX0aidzesBHmdgnyIxiz4jDM0rzhE9SkJqOw==} peerDependencies: eslint: '>= 8.57.0' typescript: '>= 5.0.0' @@ -1533,8 +1570,8 @@ packages: resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} engines: {node: '>=12'} - ansis@4.1.0: - resolution: {integrity: sha512-BGcItUBWSMRgOCe+SVZJ+S7yTRG0eGt9cXAHev72yuGcY23hnLA7Bky5L/xLyPINoSN95geovfBkqoTlNZYa7w==} + ansis@4.2.0: + resolution: {integrity: sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==} engines: {node: '>=14'} anymatch@3.1.3: @@ -1863,6 +1900,10 @@ packages: devlop@1.1.0: resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} + diff-sequences@27.5.1: + resolution: {integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + dir-glob@3.0.1: resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} engines: {node: '>=8'} @@ -2012,8 +2053,8 @@ packages: peerDependencies: eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 - eslint-plugin-jsonc@2.20.1: - resolution: {integrity: sha512-gUzIwQHXx7ZPypUoadcyRi4WbHW2TPixDr0kqQ4miuJBU0emJmyGTlnaT3Og9X2a8R1CDayN9BFSq5weGWbTng==} + eslint-plugin-jsonc@2.21.0: + resolution: {integrity: sha512-HttlxdNG5ly3YjP1cFMP62R4qKLxJURfBZo2gnMY+yQojZxkLyOpY1H1KRTKBmvQeSG9pIpSGEhDjE17vvYosg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' @@ -2028,14 +2069,14 @@ packages: resolution: {integrity: sha512-brcKcxGnISN2CcVhXJ/kEQlNa0MEfGRtwKtWA16SkqXHKitaKIMrfemJKLKX1YqDU5C/5JY3PvZXd5jEW04e0Q==} engines: {node: '>=5.0.0'} - eslint-plugin-perfectionist@4.15.0: - resolution: {integrity: sha512-pC7PgoXyDnEXe14xvRUhBII8A3zRgggKqJFx2a82fjrItDs1BSI7zdZnQtM2yQvcyod6/ujmzb7ejKPx8lZTnw==} + eslint-plugin-perfectionist@4.15.1: + resolution: {integrity: sha512-MHF0cBoOG0XyBf7G0EAFCuJJu4I18wy0zAoT1OHfx2o6EOx1EFTIzr2HGeuZa1kDcusoX0xJ9V7oZmaeFd773Q==} engines: {node: ^18.0.0 || >=20.0.0} peerDependencies: eslint: '>=8.45.0' - eslint-plugin-pnpm@1.1.1: - resolution: {integrity: sha512-gNo+swrLCgvT8L6JX6hVmxuKeuStGK2l8IwVjDxmYIn+wP4SW/d0ORLKyUiYamsp+UxknQo3f2M1irrTpqahCw==} + eslint-plugin-pnpm@1.2.0: + resolution: {integrity: sha512-HKIFEmRGVxXvPx/hCpZY0qUGCYoaSYO6EVut4Hf9bckC0qP6F23mBgdoIExRZIWoViHuMznSaDU1FpQmc2xpgw==} peerDependencies: eslint: ^9.0.0 @@ -2066,19 +2107,22 @@ packages: '@typescript-eslint/eslint-plugin': optional: true - eslint-plugin-vue@10.4.0: - resolution: {integrity: sha512-K6tP0dW8FJVZLQxa2S7LcE1lLw3X8VvB3t887Q6CLrFVxHYBXGANbXvwNzYIu6Ughx1bSJ5BDT0YB3ybPT39lw==} + eslint-plugin-vue@10.5.0: + resolution: {integrity: sha512-7BZHsG3kC2vei8F2W8hnfDi9RK+cv5eKPMvzBdrl8Vuc0hR5odGQRli8VVzUkrmUHkxFEm4Iio1r5HOKslO0Aw==} 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-plugin-yml@1.18.0: - resolution: {integrity: sha512-9NtbhHRN2NJa/s3uHchO3qVVZw0vyOIvWlXWGaKCr/6l3Go62wsvJK5byiI6ZoYztDsow4GnS69BZD3GnqH3hA==} + eslint-plugin-yml@1.19.0: + resolution: {integrity: sha512-S+4GbcCWksFKAvFJtf0vpdiCkZZvDJCV4Zsi9ahmYkYOYcf+LRqqzvzkb/ST7vTYV6sFwXOvawzYyL/jFT2nQA==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' @@ -2725,8 +2769,8 @@ packages: engines: {node: '>=6'} hasBin: true - jsonc-eslint-parser@2.4.0: - resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==} + jsonc-eslint-parser@2.4.1: + resolution: {integrity: sha512-uuPNLJkKN8NXAlZlQ6kmUF9qO+T6Kyd7oV4+/7yy8Jz6+MZNyhPq8EdLpdfnPVzUC8qSf1b4j1azKaGnFsjmsw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} keyv@4.5.4: @@ -3223,8 +3267,8 @@ packages: resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} engines: {node: '>=4'} - pnpm-workspace-yaml@1.1.1: - resolution: {integrity: sha512-nGBB7h3Ped3g9dBrR6d3YNwXCKYsEg8K9J3GMmSrwGEXq3RHeGW44/B4MZW51p4FRMnyxJzTY5feSBbUjRhIHQ==} + pnpm-workspace-yaml@1.2.0: + resolution: {integrity: sha512-4CnZHmLSaprRnIm2iQ27Zl1cWPRHdX7Ehw7ckRwujoPKCk2QAz4agsA2MbTodg4sgbqYfJ68ULT+Q5A8dU+Mow==} postcss-selector-parser@6.1.2: resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} @@ -3916,17 +3960,17 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@5.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.37.0(jiti@2.4.0)) - '@eslint/markdown': 7.2.0 + '@eslint/markdown': 7.4.0 '@stylistic/eslint-plugin': 5.4.0(eslint@9.37.0(jiti@2.4.0)) - '@typescript-eslint/eslint-plugin': 8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) - '@typescript-eslint/parser': 8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.3.12(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1)) - ansis: 4.1.0 + '@typescript-eslint/eslint-plugin': 8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/parser': 8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) + '@vitest/eslint-plugin': 1.3.20(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1)) + ansis: 4.2.0 cac: 6.7.14 eslint: 9.37.0(jiti@2.4.0) eslint-config-flat-gitignore: 2.1.0(eslint@9.37.0(jiti@2.4.0)) @@ -3936,20 +3980,20 @@ snapshots: eslint-plugin-command: 3.3.1(eslint@9.37.0(jiti@2.4.0)) eslint-plugin-import-lite: 0.3.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) eslint-plugin-jsdoc: 59.1.0(eslint@9.37.0(jiti@2.4.0)) - eslint-plugin-jsonc: 2.20.1(eslint@9.37.0(jiti@2.4.0)) + eslint-plugin-jsonc: 2.21.0(eslint@9.37.0(jiti@2.4.0)) eslint-plugin-n: 17.23.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) eslint-plugin-no-only-tests: 3.3.0 - eslint-plugin-perfectionist: 4.15.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-pnpm: 1.1.1(eslint@9.37.0(jiti@2.4.0)) + eslint-plugin-perfectionist: 4.15.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) + eslint-plugin-pnpm: 1.2.0(eslint@9.37.0(jiti@2.4.0)) eslint-plugin-regexp: 2.10.0(eslint@9.37.0(jiti@2.4.0)) eslint-plugin-toml: 0.12.0(eslint@9.37.0(jiti@2.4.0)) eslint-plugin-unicorn: 61.0.2(eslint@9.37.0(jiti@2.4.0)) - eslint-plugin-unused-imports: 4.2.0(@typescript-eslint/eslint-plugin@8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0)) - eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.37.0(jiti@2.4.0))) - eslint-plugin-yml: 1.18.0(eslint@9.37.0(jiti@2.4.0)) + eslint-plugin-unused-imports: 4.2.0(@typescript-eslint/eslint-plugin@8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0)) + eslint-plugin-vue: 10.5.0(@stylistic/eslint-plugin@5.4.0(eslint@9.37.0(jiti@2.4.0)))(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.37.0(jiti@2.4.0))) + eslint-plugin-yml: 1.19.0(eslint@9.37.0(jiti@2.4.0)) eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.37.0(jiti@2.4.0)) globals: 16.4.0 - jsonc-eslint-parser: 2.4.0 + jsonc-eslint-parser: 2.4.1 local-pkg: 1.1.2 parse-gitignore: 2.0.0 toml-eslint-parser: 0.10.0 @@ -4362,10 +4406,10 @@ snapshots: '@eslint/js@9.37.0': {} - '@eslint/markdown@7.2.0': + '@eslint/markdown@7.4.0': dependencies: - '@eslint/core': 0.15.2 - '@eslint/plugin-kit': 0.3.5 + '@eslint/core': 0.16.0 + '@eslint/plugin-kit': 0.4.0 github-slugger: 2.0.0 mdast-util-from-markdown: 2.0.2 mdast-util-frontmatter: 2.0.1 @@ -5346,14 +5390,14 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)': + '@typescript-eslint/eslint-plugin@8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) - '@typescript-eslint/scope-manager': 8.44.0 - '@typescript-eslint/type-utils': 8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) - '@typescript-eslint/utils': 8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) - '@typescript-eslint/visitor-keys': 8.44.0 + '@typescript-eslint/parser': 8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/scope-manager': 8.46.1 + '@typescript-eslint/type-utils': 8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/utils': 8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 8.46.1 eslint: 9.37.0(jiti@2.4.0) graphemer: 1.4.0 ignore: 7.0.5 @@ -5363,12 +5407,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)': + '@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)': dependencies: - '@typescript-eslint/scope-manager': 8.44.0 - '@typescript-eslint/types': 8.44.0 - '@typescript-eslint/typescript-estree': 8.44.0(typescript@5.9.3) - '@typescript-eslint/visitor-keys': 8.44.0 + '@typescript-eslint/scope-manager': 8.46.1 + '@typescript-eslint/types': 8.46.1 + '@typescript-eslint/typescript-estree': 8.46.1(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 8.46.1 debug: 4.4.3 eslint: 9.37.0(jiti@2.4.0) typescript: 5.9.3 @@ -5384,20 +5428,38 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/project-service@8.46.1(typescript@5.9.3)': + dependencies: + '@typescript-eslint/tsconfig-utils': 8.46.1(typescript@5.9.3) + '@typescript-eslint/types': 8.46.1 + debug: 4.4.3 + typescript: 5.9.3 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/scope-manager@8.44.0': dependencies: '@typescript-eslint/types': 8.44.0 '@typescript-eslint/visitor-keys': 8.44.0 + '@typescript-eslint/scope-manager@8.46.1': + dependencies: + '@typescript-eslint/types': 8.46.1 + '@typescript-eslint/visitor-keys': 8.46.1 + '@typescript-eslint/tsconfig-utils@8.44.0(typescript@5.9.3)': dependencies: typescript: 5.9.3 - '@typescript-eslint/type-utils@8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)': + '@typescript-eslint/tsconfig-utils@8.46.1(typescript@5.9.3)': dependencies: - '@typescript-eslint/types': 8.44.0 - '@typescript-eslint/typescript-estree': 8.44.0(typescript@5.9.3) - '@typescript-eslint/utils': 8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) + typescript: 5.9.3 + + '@typescript-eslint/type-utils@8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)': + dependencies: + '@typescript-eslint/types': 8.46.1 + '@typescript-eslint/typescript-estree': 8.46.1(typescript@5.9.3) + '@typescript-eslint/utils': 8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) debug: 4.4.3 eslint: 9.37.0(jiti@2.4.0) ts-api-utils: 2.1.0(typescript@5.9.3) @@ -5407,6 +5469,8 @@ snapshots: '@typescript-eslint/types@8.44.0': {} + '@typescript-eslint/types@8.46.1': {} + '@typescript-eslint/typescript-estree@8.44.0(typescript@5.9.3)': dependencies: '@typescript-eslint/project-service': 8.44.0(typescript@5.9.3) @@ -5417,7 +5481,23 @@ snapshots: fast-glob: 3.3.3 is-glob: 4.0.3 minimatch: 9.0.5 - semver: 7.7.2 + semver: 7.7.3 + ts-api-utils: 2.1.0(typescript@5.9.3) + typescript: 5.9.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/typescript-estree@8.46.1(typescript@5.9.3)': + dependencies: + '@typescript-eslint/project-service': 8.46.1(typescript@5.9.3) + '@typescript-eslint/tsconfig-utils': 8.46.1(typescript@5.9.3) + '@typescript-eslint/types': 8.46.1 + '@typescript-eslint/visitor-keys': 8.46.1 + debug: 4.4.3 + fast-glob: 3.3.3 + is-glob: 4.0.3 + minimatch: 9.0.5 + semver: 7.7.3 ts-api-utils: 2.1.0(typescript@5.9.3) typescript: 5.9.3 transitivePeerDependencies: @@ -5434,11 +5514,27 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/utils@8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)': + dependencies: + '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.4.0)) + '@typescript-eslint/scope-manager': 8.46.1 + '@typescript-eslint/types': 8.46.1 + '@typescript-eslint/typescript-estree': 8.46.1(typescript@5.9.3) + eslint: 9.37.0(jiti@2.4.0) + typescript: 5.9.3 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/visitor-keys@8.44.0': dependencies: '@typescript-eslint/types': 8.44.0 eslint-visitor-keys: 4.2.1 + '@typescript-eslint/visitor-keys@8.46.1': + dependencies: + '@typescript-eslint/types': 8.46.1 + eslint-visitor-keys: 4.2.1 + '@ungap/structured-clone@1.3.0': {} '@unrs/resolver-binding-darwin-arm64@1.7.13': @@ -5494,10 +5590,10 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.12(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.3.20(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1))': dependencies: - '@typescript-eslint/scope-manager': 8.44.0 - '@typescript-eslint/utils': 8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/scope-manager': 8.46.1 + '@typescript-eslint/utils': 8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) eslint: 9.37.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 @@ -5628,7 +5724,7 @@ snapshots: ansi-styles@6.2.1: {} - ansis@4.1.0: {} + ansis@4.2.0: {} anymatch@3.1.3: dependencies: @@ -5951,6 +6047,8 @@ snapshots: dependencies: dequal: 2.0.3 + diff-sequences@27.5.1: {} + dir-glob@3.0.1: dependencies: path-type: 4.0.0 @@ -6034,12 +6132,12 @@ snapshots: eslint-compat-utils@0.5.1(eslint@9.37.0(jiti@2.4.0)): dependencies: eslint: 9.37.0(jiti@2.4.0) - semver: 7.7.2 + semver: 7.7.3 eslint-compat-utils@0.6.5(eslint@9.37.0(jiti@2.4.0)): dependencies: eslint: 9.37.0(jiti@2.4.0) - semver: 7.7.2 + semver: 7.7.3 eslint-config-flat-gitignore@2.1.0(eslint@9.37.0(jiti@2.4.0)): dependencies: @@ -6050,11 +6148,11 @@ snapshots: dependencies: pathe: 2.0.3 - eslint-json-compat-utils@0.2.1(eslint@9.37.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0): + eslint-json-compat-utils@0.2.1(eslint@9.37.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.1): dependencies: eslint: 9.37.0(jiti@2.4.0) esquery: 1.6.0 - jsonc-eslint-parser: 2.4.0 + jsonc-eslint-parser: 2.4.1 eslint-merge-processors@2.0.0(eslint@9.37.0(jiti@2.4.0)): dependencies: @@ -6096,20 +6194,21 @@ snapshots: esquery: 1.6.0 object-deep-merge: 1.0.5 parse-imports-exports: 0.2.4 - semver: 7.7.2 + semver: 7.7.3 spdx-expression-parse: 4.0.0 transitivePeerDependencies: - supports-color - eslint-plugin-jsonc@2.20.1(eslint@9.37.0(jiti@2.4.0)): + eslint-plugin-jsonc@2.21.0(eslint@9.37.0(jiti@2.4.0)): dependencies: '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.4.0)) + diff-sequences: 27.5.1 eslint: 9.37.0(jiti@2.4.0) eslint-compat-utils: 0.6.5(eslint@9.37.0(jiti@2.4.0)) - eslint-json-compat-utils: 0.2.1(eslint@9.37.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.0) + eslint-json-compat-utils: 0.2.1(eslint@9.37.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.1) espree: 10.4.0 graphemer: 1.4.0 - jsonc-eslint-parser: 2.4.0 + jsonc-eslint-parser: 2.4.1 natural-compare: 1.4.0 synckit: 0.11.11 transitivePeerDependencies: @@ -6125,14 +6224,14 @@ snapshots: globals: 15.15.0 globrex: 0.1.2 ignore: 5.3.2 - semver: 7.7.2 + semver: 7.7.3 ts-declaration-location: 1.0.7(typescript@5.9.3) transitivePeerDependencies: - typescript eslint-plugin-no-only-tests@3.3.0: {} - eslint-plugin-perfectionist@4.15.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3): + eslint-plugin-perfectionist@4.15.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3): dependencies: '@typescript-eslint/types': 8.44.0 '@typescript-eslint/utils': 8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) @@ -6142,13 +6241,13 @@ snapshots: - supports-color - typescript - eslint-plugin-pnpm@1.1.1(eslint@9.37.0(jiti@2.4.0)): + eslint-plugin-pnpm@1.2.0(eslint@9.37.0(jiti@2.4.0)): dependencies: empathic: 2.0.0 eslint: 9.37.0(jiti@2.4.0) - jsonc-eslint-parser: 2.4.0 + jsonc-eslint-parser: 2.4.1 pathe: 2.0.3 - pnpm-workspace-yaml: 1.1.1 + pnpm-workspace-yaml: 1.2.0 tinyglobby: 0.2.15 yaml-eslint-parser: 1.3.0 @@ -6192,31 +6291,33 @@ snapshots: pluralize: 8.0.0 regexp-tree: 0.1.27 regjsparser: 0.12.0 - semver: 7.7.2 + semver: 7.7.3 strip-indent: 4.1.0 - eslint-plugin-unused-imports@4.2.0(@typescript-eslint/eslint-plugin@8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0)): + eslint-plugin-unused-imports@4.2.0(@typescript-eslint/eslint-plugin@8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0)): dependencies: eslint: 9.37.0(jiti@2.4.0) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.44.0(@typescript-eslint/parser@8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/eslint-plugin': 8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.37.0(jiti@2.4.0))): + eslint-plugin-vue@10.5.0(@stylistic/eslint-plugin@5.4.0(eslint@9.37.0(jiti@2.4.0)))(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.37.0(jiti@2.4.0))): dependencies: '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.4.0)) eslint: 9.37.0(jiti@2.4.0) natural-compare: 1.4.0 nth-check: 2.1.1 postcss-selector-parser: 6.1.2 - semver: 7.7.2 + semver: 7.7.3 vue-eslint-parser: 10.2.0(eslint@9.37.0(jiti@2.4.0)) xml-name-validator: 4.0.0 optionalDependencies: - '@typescript-eslint/parser': 8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) + '@stylistic/eslint-plugin': 5.4.0(eslint@9.37.0(jiti@2.4.0)) + '@typescript-eslint/parser': 8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-yml@1.18.0(eslint@9.37.0(jiti@2.4.0)): + eslint-plugin-yml@1.19.0(eslint@9.37.0(jiti@2.4.0)): dependencies: debug: 4.4.3 + diff-sequences: 27.5.1 escape-string-regexp: 4.0.0 eslint: 9.37.0(jiti@2.4.0) eslint-compat-utils: 0.6.5(eslint@9.37.0(jiti@2.4.0)) @@ -7044,12 +7145,12 @@ snapshots: json5@2.2.3: {} - jsonc-eslint-parser@2.4.0: + jsonc-eslint-parser@2.4.1: dependencies: acorn: 8.15.0 eslint-visitor-keys: 3.4.3 espree: 9.6.1 - semver: 7.7.2 + semver: 7.7.3 keyv@4.5.4: dependencies: @@ -7701,7 +7802,7 @@ snapshots: pluralize@8.0.0: {} - pnpm-workspace-yaml@1.1.1: + pnpm-workspace-yaml@1.2.0: dependencies: yaml: 2.8.1 @@ -8255,7 +8356,7 @@ snapshots: eslint-visitor-keys: 4.2.1 espree: 10.4.0 esquery: 1.6.0 - semver: 7.7.2 + semver: 7.7.3 transitivePeerDependencies: - supports-color From eb84ce21b1aa1574dfb0840a06e8e3513a8cb6c2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 17 Oct 2025 06:33:16 +0000 Subject: [PATCH 080/133] chore(deps): update dependency @types/node to v22.18.11 (#1265) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 254 ++++++++++++++++++++++++------------------------- 1 file changed, 127 insertions(+), 127 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index e520f4d0..87c92486 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,10 +29,10 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1)) + version: 6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.0 - version: 6.0.0(@types/node@22.18.10)(graphql@16.11.0)(typescript@5.9.3) + version: 6.0.0(@types/node@22.18.11)(graphql@16.11.0)(typescript@5.9.3) '@graphql-codegen/typescript': specifier: ^5.0.0 version: 5.0.2(graphql@16.11.0) @@ -44,13 +44,13 @@ importers: version: 2.1.12 '@types/node': specifier: ^22.0.0 - version: 22.18.10 + version: 22.18.11 eslint: specifier: 9.37.0 version: 9.37.0(jiti@2.4.0) jest: specifier: 30.2.0 - version: 30.2.0(@types/node@22.18.10) + version: 30.2.0(@types/node@22.18.11) myzod: specifier: 1.12.1 version: 1.12.1 @@ -62,7 +62,7 @@ importers: version: 2.2.0 ts-jest: specifier: 29.4.5 - version: 29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.10))(typescript@5.9.3) + version: 29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.11))(typescript@5.9.3) typescript: specifier: 5.9.3 version: 5.9.3 @@ -71,7 +71,7 @@ importers: version: 1.1.0(typescript@5.9.3) vitest: specifier: ^3.0.0 - version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.1 version: 1.7.1 @@ -1259,8 +1259,8 @@ packages: '@types/ms@2.1.0': resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} - '@types/node@22.18.10': - resolution: {integrity: sha512-anNG/V/Efn/YZY4pRzbACnKxNKoBng2VTFydVu8RRs5hQjikP8CQfaeAV59VFSCzKNp90mXiVXW2QzV56rwMrg==} + '@types/node@22.18.11': + resolution: {integrity: sha512-Gd33J2XIrXurb+eT2ktze3rJAfAp9ZNjlBdh4SVgyrKEOADwCbdUDaK7QgJno8Ue4kcajscsKqu6n8OBG3hhCQ==} '@types/stack-utils@2.0.3': resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} @@ -3960,7 +3960,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -3969,7 +3969,7 @@ snapshots: '@stylistic/eslint-plugin': 5.4.0(eslint@9.37.0(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/parser': 8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.3.20(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/eslint-plugin': 1.3.20(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.2.0 cac: 6.7.14 eslint: 9.37.0(jiti@2.4.0) @@ -4438,7 +4438,7 @@ snapshots: graphql: 16.11.0 tslib: 2.6.3 - '@graphql-codegen/cli@6.0.0(@types/node@22.18.10)(graphql@16.11.0)(typescript@5.9.3)': + '@graphql-codegen/cli@6.0.0(@types/node@22.18.11)(graphql@16.11.0)(typescript@5.9.3)': dependencies: '@babel/generator': 7.27.5 '@babel/template': 7.27.2 @@ -4449,20 +4449,20 @@ snapshots: '@graphql-tools/apollo-engine-loader': 8.0.4(graphql@16.11.0) '@graphql-tools/code-file-loader': 8.1.5(graphql@16.11.0) '@graphql-tools/git-loader': 8.0.9(graphql@16.11.0) - '@graphql-tools/github-loader': 8.0.4(@types/node@22.18.10)(graphql@16.11.0) + '@graphql-tools/github-loader': 8.0.4(@types/node@22.18.11)(graphql@16.11.0) '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.10)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.11)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) - '@inquirer/prompts': 7.8.4(@types/node@22.18.10) + '@inquirer/prompts': 7.8.4(@types/node@22.18.11) '@whatwg-node/fetch': 0.10.1 chalk: 4.1.2 cosmiconfig: 9.0.0(typescript@5.9.3) debounce: 2.2.0 detect-indent: 6.1.0 graphql: 16.11.0 - graphql-config: 5.1.3(@types/node@22.18.10)(graphql@16.11.0)(typescript@5.9.3) + graphql-config: 5.1.3(@types/node@22.18.11)(graphql@16.11.0)(typescript@5.9.3) is-glob: 4.0.3 jiti: 2.4.0 json-to-pretty-yaml: 1.2.2 @@ -4665,14 +4665,14 @@ snapshots: - bufferutil - utf-8-validate - '@graphql-tools/executor-http@1.1.9(@types/node@22.18.10)(graphql@16.11.0)': + '@graphql-tools/executor-http@1.1.9(@types/node@22.18.11)(graphql@16.11.0)': dependencies: '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/fetch': 0.10.1 extract-files: 11.0.0 graphql: 16.11.0 - meros: 1.3.0(@types/node@22.18.10) + meros: 1.3.0(@types/node@22.18.11) tslib: 2.8.1 value-or-promise: 1.0.12 transitivePeerDependencies: @@ -4711,10 +4711,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@graphql-tools/github-loader@8.0.4(@types/node@22.18.10)(graphql@16.11.0)': + '@graphql-tools/github-loader@8.0.4(@types/node@22.18.11)(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.10)(graphql@16.11.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.11)(graphql@16.11.0) '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@whatwg-node/fetch': 0.10.1 @@ -4798,11 +4798,11 @@ snapshots: graphql: 16.11.0 tslib: 2.8.1 - '@graphql-tools/url-loader@8.0.15(@types/node@22.18.10)(graphql@16.11.0)': + '@graphql-tools/url-loader@8.0.15(@types/node@22.18.11)(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/executor-graphql-ws': 1.3.2(graphql@16.11.0) - '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.10)(graphql@16.11.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.11)(graphql@16.11.0) '@graphql-tools/executor-legacy-ws': 1.1.2(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@graphql-tools/wrap': 10.0.16(graphql@16.11.0) @@ -4852,27 +4852,27 @@ snapshots: '@humanwhocodes/retry@0.4.3': {} - '@inquirer/checkbox@4.2.2(@types/node@22.18.10)': + '@inquirer/checkbox@4.2.2(@types/node@22.18.11)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.10) + '@inquirer/core': 10.2.0(@types/node@22.18.11) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.10) + '@inquirer/type': 3.0.8(@types/node@22.18.11) ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.10 + '@types/node': 22.18.11 - '@inquirer/confirm@5.1.16(@types/node@22.18.10)': + '@inquirer/confirm@5.1.16(@types/node@22.18.11)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.10) - '@inquirer/type': 3.0.8(@types/node@22.18.10) + '@inquirer/core': 10.2.0(@types/node@22.18.11) + '@inquirer/type': 3.0.8(@types/node@22.18.11) optionalDependencies: - '@types/node': 22.18.10 + '@types/node': 22.18.11 - '@inquirer/core@10.2.0(@types/node@22.18.10)': + '@inquirer/core@10.2.0(@types/node@22.18.11)': dependencies: '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.10) + '@inquirer/type': 3.0.8(@types/node@22.18.11) ansi-escapes: 4.3.2 cli-width: 4.1.0 mute-stream: 2.0.0 @@ -4880,100 +4880,100 @@ snapshots: wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.10 + '@types/node': 22.18.11 - '@inquirer/editor@4.2.18(@types/node@22.18.10)': + '@inquirer/editor@4.2.18(@types/node@22.18.11)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.10) - '@inquirer/external-editor': 1.0.1(@types/node@22.18.10) - '@inquirer/type': 3.0.8(@types/node@22.18.10) + '@inquirer/core': 10.2.0(@types/node@22.18.11) + '@inquirer/external-editor': 1.0.1(@types/node@22.18.11) + '@inquirer/type': 3.0.8(@types/node@22.18.11) optionalDependencies: - '@types/node': 22.18.10 + '@types/node': 22.18.11 - '@inquirer/expand@4.0.18(@types/node@22.18.10)': + '@inquirer/expand@4.0.18(@types/node@22.18.11)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.10) - '@inquirer/type': 3.0.8(@types/node@22.18.10) + '@inquirer/core': 10.2.0(@types/node@22.18.11) + '@inquirer/type': 3.0.8(@types/node@22.18.11) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.10 + '@types/node': 22.18.11 - '@inquirer/external-editor@1.0.1(@types/node@22.18.10)': + '@inquirer/external-editor@1.0.1(@types/node@22.18.11)': dependencies: chardet: 2.1.0 iconv-lite: 0.6.3 optionalDependencies: - '@types/node': 22.18.10 + '@types/node': 22.18.11 '@inquirer/figures@1.0.13': {} - '@inquirer/input@4.2.2(@types/node@22.18.10)': + '@inquirer/input@4.2.2(@types/node@22.18.11)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.10) - '@inquirer/type': 3.0.8(@types/node@22.18.10) + '@inquirer/core': 10.2.0(@types/node@22.18.11) + '@inquirer/type': 3.0.8(@types/node@22.18.11) optionalDependencies: - '@types/node': 22.18.10 + '@types/node': 22.18.11 - '@inquirer/number@3.0.18(@types/node@22.18.10)': + '@inquirer/number@3.0.18(@types/node@22.18.11)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.10) - '@inquirer/type': 3.0.8(@types/node@22.18.10) + '@inquirer/core': 10.2.0(@types/node@22.18.11) + '@inquirer/type': 3.0.8(@types/node@22.18.11) optionalDependencies: - '@types/node': 22.18.10 + '@types/node': 22.18.11 - '@inquirer/password@4.0.18(@types/node@22.18.10)': + '@inquirer/password@4.0.18(@types/node@22.18.11)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.10) - '@inquirer/type': 3.0.8(@types/node@22.18.10) + '@inquirer/core': 10.2.0(@types/node@22.18.11) + '@inquirer/type': 3.0.8(@types/node@22.18.11) ansi-escapes: 4.3.2 optionalDependencies: - '@types/node': 22.18.10 - - '@inquirer/prompts@7.8.4(@types/node@22.18.10)': - dependencies: - '@inquirer/checkbox': 4.2.2(@types/node@22.18.10) - '@inquirer/confirm': 5.1.16(@types/node@22.18.10) - '@inquirer/editor': 4.2.18(@types/node@22.18.10) - '@inquirer/expand': 4.0.18(@types/node@22.18.10) - '@inquirer/input': 4.2.2(@types/node@22.18.10) - '@inquirer/number': 3.0.18(@types/node@22.18.10) - '@inquirer/password': 4.0.18(@types/node@22.18.10) - '@inquirer/rawlist': 4.1.6(@types/node@22.18.10) - '@inquirer/search': 3.1.1(@types/node@22.18.10) - '@inquirer/select': 4.3.2(@types/node@22.18.10) + '@types/node': 22.18.11 + + '@inquirer/prompts@7.8.4(@types/node@22.18.11)': + dependencies: + '@inquirer/checkbox': 4.2.2(@types/node@22.18.11) + '@inquirer/confirm': 5.1.16(@types/node@22.18.11) + '@inquirer/editor': 4.2.18(@types/node@22.18.11) + '@inquirer/expand': 4.0.18(@types/node@22.18.11) + '@inquirer/input': 4.2.2(@types/node@22.18.11) + '@inquirer/number': 3.0.18(@types/node@22.18.11) + '@inquirer/password': 4.0.18(@types/node@22.18.11) + '@inquirer/rawlist': 4.1.6(@types/node@22.18.11) + '@inquirer/search': 3.1.1(@types/node@22.18.11) + '@inquirer/select': 4.3.2(@types/node@22.18.11) optionalDependencies: - '@types/node': 22.18.10 + '@types/node': 22.18.11 - '@inquirer/rawlist@4.1.6(@types/node@22.18.10)': + '@inquirer/rawlist@4.1.6(@types/node@22.18.11)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.10) - '@inquirer/type': 3.0.8(@types/node@22.18.10) + '@inquirer/core': 10.2.0(@types/node@22.18.11) + '@inquirer/type': 3.0.8(@types/node@22.18.11) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.10 + '@types/node': 22.18.11 - '@inquirer/search@3.1.1(@types/node@22.18.10)': + '@inquirer/search@3.1.1(@types/node@22.18.11)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.10) + '@inquirer/core': 10.2.0(@types/node@22.18.11) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.10) + '@inquirer/type': 3.0.8(@types/node@22.18.11) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.10 + '@types/node': 22.18.11 - '@inquirer/select@4.3.2(@types/node@22.18.10)': + '@inquirer/select@4.3.2(@types/node@22.18.11)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.10) + '@inquirer/core': 10.2.0(@types/node@22.18.11) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.10) + '@inquirer/type': 3.0.8(@types/node@22.18.11) ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.10 + '@types/node': 22.18.11 - '@inquirer/type@3.0.8(@types/node@22.18.10)': + '@inquirer/type@3.0.8(@types/node@22.18.11)': optionalDependencies: - '@types/node': 22.18.10 + '@types/node': 22.18.11 '@isaacs/cliui@8.0.2': dependencies: @@ -4997,7 +4997,7 @@ snapshots: '@jest/console@30.2.0': dependencies: '@jest/types': 30.2.0 - '@types/node': 22.18.10 + '@types/node': 22.18.11 chalk: 4.1.2 jest-message-util: 30.2.0 jest-util: 30.2.0 @@ -5011,14 +5011,14 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.10 + '@types/node': 22.18.11 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 4.3.0 exit-x: 0.2.2 graceful-fs: 4.2.11 jest-changed-files: 30.2.0 - jest-config: 30.2.0(@types/node@22.18.10) + jest-config: 30.2.0(@types/node@22.18.11) jest-haste-map: 30.2.0 jest-message-util: 30.2.0 jest-regex-util: 30.0.1 @@ -5045,7 +5045,7 @@ snapshots: dependencies: '@jest/fake-timers': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.10 + '@types/node': 22.18.11 jest-mock: 30.2.0 '@jest/expect-utils@30.2.0': @@ -5063,7 +5063,7 @@ snapshots: dependencies: '@jest/types': 30.2.0 '@sinonjs/fake-timers': 13.0.5 - '@types/node': 22.18.10 + '@types/node': 22.18.11 jest-message-util: 30.2.0 jest-mock: 30.2.0 jest-util: 30.2.0 @@ -5081,7 +5081,7 @@ snapshots: '@jest/pattern@30.0.1': dependencies: - '@types/node': 22.18.10 + '@types/node': 22.18.11 jest-regex-util: 30.0.1 '@jest/reporters@30.2.0': @@ -5092,7 +5092,7 @@ snapshots: '@jest/transform': 30.2.0 '@jest/types': 30.2.0 '@jridgewell/trace-mapping': 0.3.25 - '@types/node': 22.18.10 + '@types/node': 22.18.11 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit-x: 0.2.2 @@ -5169,7 +5169,7 @@ snapshots: '@jest/schemas': 30.0.5 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 22.18.10 + '@types/node': 22.18.11 '@types/yargs': 17.0.33 chalk: 4.1.2 @@ -5372,7 +5372,7 @@ snapshots: '@types/ms@2.1.0': {} - '@types/node@22.18.10': + '@types/node@22.18.11': dependencies: undici-types: 6.21.0 @@ -5382,7 +5382,7 @@ snapshots: '@types/ws@8.5.13': dependencies: - '@types/node': 22.18.10 + '@types/node': 22.18.11 '@types/yargs-parser@21.0.3': {} @@ -5590,14 +5590,14 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.20(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.3.20(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.46.1 '@typescript-eslint/utils': 8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) eslint: 9.37.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1) + vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color @@ -5609,13 +5609,13 @@ snapshots: chai: 5.2.0 tinyrainbow: 2.0.0 - '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@vitest/spy': 3.2.4 estree-walker: 3.0.3 magic-string: 0.30.17 optionalDependencies: - vite: 6.3.5(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1) '@vitest/pretty-format@3.2.4': dependencies: @@ -6607,13 +6607,13 @@ snapshots: dependencies: lodash: 4.17.21 - graphql-config@5.1.3(@types/node@22.18.10)(graphql@16.11.0)(typescript@5.9.3): + graphql-config@5.1.3(@types/node@22.18.11)(graphql@16.11.0)(typescript@5.9.3): dependencies: '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) '@graphql-tools/merge': 9.0.24(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.10)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.11)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) cosmiconfig: 8.3.6(typescript@5.9.3) graphql: 16.11.0 @@ -6804,7 +6804,7 @@ snapshots: '@jest/expect': 30.2.0 '@jest/test-result': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.10 + '@types/node': 22.18.11 chalk: 4.1.2 co: 4.6.0 dedent: 1.6.0 @@ -6824,7 +6824,7 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@30.2.0(@types/node@22.18.10): + jest-cli@30.2.0(@types/node@22.18.11): dependencies: '@jest/core': 30.2.0 '@jest/test-result': 30.2.0 @@ -6832,7 +6832,7 @@ snapshots: chalk: 4.1.2 exit-x: 0.2.2 import-local: 3.2.0 - jest-config: 30.2.0(@types/node@22.18.10) + jest-config: 30.2.0(@types/node@22.18.11) jest-util: 30.2.0 jest-validate: 30.2.0 yargs: 17.7.2 @@ -6843,7 +6843,7 @@ snapshots: - supports-color - ts-node - jest-config@30.2.0(@types/node@22.18.10): + jest-config@30.2.0(@types/node@22.18.11): dependencies: '@babel/core': 7.27.4 '@jest/get-type': 30.1.0 @@ -6870,7 +6870,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 22.18.10 + '@types/node': 22.18.11 transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -6899,7 +6899,7 @@ snapshots: '@jest/environment': 30.2.0 '@jest/fake-timers': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.10 + '@types/node': 22.18.11 jest-mock: 30.2.0 jest-util: 30.2.0 jest-validate: 30.2.0 @@ -6907,7 +6907,7 @@ snapshots: jest-haste-map@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 22.18.10 + '@types/node': 22.18.11 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -6946,7 +6946,7 @@ snapshots: jest-mock@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 22.18.10 + '@types/node': 22.18.11 jest-util: 30.2.0 jest-pnp-resolver@1.2.3(jest-resolve@30.2.0): @@ -6980,7 +6980,7 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.10 + '@types/node': 22.18.11 chalk: 4.1.2 emittery: 0.13.1 exit-x: 0.2.2 @@ -7009,7 +7009,7 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.10 + '@types/node': 22.18.11 chalk: 4.1.2 cjs-module-lexer: 2.1.0 collect-v8-coverage: 1.0.2 @@ -7056,7 +7056,7 @@ snapshots: jest-util@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 22.18.10 + '@types/node': 22.18.11 chalk: 4.1.2 ci-info: 4.3.0 graceful-fs: 4.2.11 @@ -7075,7 +7075,7 @@ snapshots: dependencies: '@jest/test-result': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.10 + '@types/node': 22.18.11 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -7084,18 +7084,18 @@ snapshots: jest-worker@30.2.0: dependencies: - '@types/node': 22.18.10 + '@types/node': 22.18.11 '@ungap/structured-clone': 1.3.0 jest-util: 30.2.0 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@30.2.0(@types/node@22.18.10): + jest@30.2.0(@types/node@22.18.11): dependencies: '@jest/core': 30.2.0 '@jest/types': 30.2.0 import-local: 3.2.0 - jest-cli: 30.2.0(@types/node@22.18.10) + jest-cli: 30.2.0(@types/node@22.18.11) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -7372,9 +7372,9 @@ snapshots: merge2@1.4.1: {} - meros@1.3.0(@types/node@22.18.10): + meros@1.3.0(@types/node@22.18.11): optionalDependencies: - '@types/node': 22.18.10 + '@types/node': 22.18.11 micromark-core-commonmark@2.0.3: dependencies: @@ -8139,12 +8139,12 @@ snapshots: ts-dedent@2.2.0: {} - ts-jest@29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.10))(typescript@5.9.3): + ts-jest@29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.11))(typescript@5.9.3): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 handlebars: 4.7.8 - jest: 30.2.0(@types/node@22.18.10) + jest: 30.2.0(@types/node@22.18.11) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -8271,13 +8271,13 @@ snapshots: value-or-promise@1.0.12: {} - vite-node@3.2.4(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1): + vite-node@3.2.4(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1): dependencies: cac: 6.7.14 debug: 4.4.3 es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 6.3.5(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - '@types/node' - jiti @@ -8292,7 +8292,7 @@ snapshots: - tsx - yaml - vite@6.3.5(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1): + vite@6.3.5(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1): dependencies: esbuild: 0.25.5 fdir: 6.4.6(picomatch@4.0.2) @@ -8301,16 +8301,16 @@ snapshots: rollup: 4.43.0 tinyglobby: 0.2.14 optionalDependencies: - '@types/node': 22.18.10 + '@types/node': 22.18.11 fsevents: 2.3.3 jiti: 2.4.0 yaml: 2.8.1 - vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1): + vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1): dependencies: '@types/chai': 5.2.2 '@vitest/expect': 3.2.4 - '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1)) '@vitest/pretty-format': 3.2.4 '@vitest/runner': 3.2.4 '@vitest/snapshot': 3.2.4 @@ -8328,12 +8328,12 @@ snapshots: tinyglobby: 0.2.14 tinypool: 1.1.1 tinyrainbow: 2.0.0 - vite: 6.3.5(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1) - vite-node: 3.2.4(@types/node@22.18.10)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1) + vite-node: 3.2.4(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1) why-is-node-running: 2.3.0 optionalDependencies: '@types/debug': 4.1.12 - '@types/node': 22.18.10 + '@types/node': 22.18.11 transitivePeerDependencies: - jiti - less From cd990aaf3c06a6c1239fe0443bd2e9bb8fd3eb27 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 17 Oct 2025 21:41:24 +0000 Subject: [PATCH 081/133] chore(deps): update dependency eslint to v9.38.0 (#1266) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 279 ++++++++++++++++++++++++------------------------- 2 files changed, 140 insertions(+), 141 deletions(-) diff --git a/package.json b/package.json index 61a1f52c..fcf80a20 100644 --- a/package.json +++ b/package.json @@ -93,7 +93,7 @@ "@tsconfig/recommended": "1.0.10", "@types/graphlib": "^2.1.8", "@types/node": "^22.0.0", - "eslint": "9.37.0", + "eslint": "9.38.0", "jest": "30.2.0", "myzod": "1.12.1", "npm-run-all2": "8.0.4", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 87c92486..2abac5cb 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1)) + version: 6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.0 version: 6.0.0(@types/node@22.18.11)(graphql@16.11.0)(typescript@5.9.3) @@ -46,8 +46,8 @@ importers: specifier: ^22.0.0 version: 22.18.11 eslint: - specifier: 9.37.0 - version: 9.37.0(jiti@2.4.0) + specifier: 9.38.0 + version: 9.38.0(jiti@2.4.0) jest: specifier: 30.2.0 version: 30.2.0(@types/node@22.18.11) @@ -526,12 +526,12 @@ packages: eslint: optional: true - '@eslint/config-array@0.21.0': - resolution: {integrity: sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==} + '@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.0': - resolution: {integrity: sha512-WUFvV4WoIwW8Bv0KeKCIIEgdSiFOsulyN0xrMu+7z43q/hkOLXjvb5u7UC9jDxvRzcrbEmuZBX5yJZz1741jog==} + '@eslint/config-helpers@0.4.1': + resolution: {integrity: sha512-csZAzkNhsgwb0I/UAV6/RGFTbiakPCf0ZrGmrIxQpYvGZ00PhTkSnyKNolphgIvmnJeGw6rcGVEXfTzUnFuEvw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/core@0.15.2': @@ -546,16 +546,16 @@ packages: resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/js@9.37.0': - resolution: {integrity: sha512-jaS+NJ+hximswBG6pjNX0uEJZkrT0zwpVi3BA3vX22aFGjJjmgSTSmPpZCRKmoBL5VY/M6p0xsSJx7rk7sy5gg==} + '@eslint/js@9.38.0': + resolution: {integrity: sha512-UZ1VpFvXf9J06YG9xQBdnzU+kthors6KjhMAl6f4gH4usHyh31rUf2DLGInT8RFYIReYXNSydgPY0V2LuWgl7A==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/markdown@7.4.0': resolution: {integrity: sha512-VQykmMjBb4tQoJOXVWXa+oQbQeCZlE7W3rAsOpmtpKLvJd75saZZ04PVVs7+zgMDJGghd4/gyFV6YlvdJFaeNQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/object-schema@2.1.6': - resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==} + '@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.3.5': @@ -2145,8 +2145,8 @@ packages: resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - eslint@9.37.0: - resolution: {integrity: sha512-XyLmROnACWqSxiGYArdef1fItQd47weqB7iwtfr9JHwRrqIXZdcFMvvEcL9xHCmL0SNsOvF0c42lWyM1U5dgig==} + eslint@9.38.0: + resolution: {integrity: sha512-t5aPOpmtJcZcz5UJyY2GbvpDlsK5E8JqRqoKtfiKE3cNh437KIqfJr3A3AKf5k64NPx6d0G3dno6XDY05PqPtw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true peerDependencies: @@ -3960,44 +3960,44 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 - '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.37.0(jiti@2.4.0)) + '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.38.0(jiti@2.4.0)) '@eslint/markdown': 7.4.0 - '@stylistic/eslint-plugin': 5.4.0(eslint@9.37.0(jiti@2.4.0)) - '@typescript-eslint/eslint-plugin': 8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) - '@typescript-eslint/parser': 8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.3.20(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1)) + '@stylistic/eslint-plugin': 5.4.0(eslint@9.38.0(jiti@2.4.0)) + '@typescript-eslint/eslint-plugin': 8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/parser': 8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) + '@vitest/eslint-plugin': 1.3.20(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.2.0 cac: 6.7.14 - eslint: 9.37.0(jiti@2.4.0) - eslint-config-flat-gitignore: 2.1.0(eslint@9.37.0(jiti@2.4.0)) + eslint: 9.38.0(jiti@2.4.0) + eslint-config-flat-gitignore: 2.1.0(eslint@9.38.0(jiti@2.4.0)) eslint-flat-config-utils: 2.1.4 - eslint-merge-processors: 2.0.0(eslint@9.37.0(jiti@2.4.0)) - eslint-plugin-antfu: 3.1.1(eslint@9.37.0(jiti@2.4.0)) - eslint-plugin-command: 3.3.1(eslint@9.37.0(jiti@2.4.0)) - eslint-plugin-import-lite: 0.3.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-jsdoc: 59.1.0(eslint@9.37.0(jiti@2.4.0)) - eslint-plugin-jsonc: 2.21.0(eslint@9.37.0(jiti@2.4.0)) - eslint-plugin-n: 17.23.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) + eslint-merge-processors: 2.0.0(eslint@9.38.0(jiti@2.4.0)) + eslint-plugin-antfu: 3.1.1(eslint@9.38.0(jiti@2.4.0)) + eslint-plugin-command: 3.3.1(eslint@9.38.0(jiti@2.4.0)) + eslint-plugin-import-lite: 0.3.0(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) + eslint-plugin-jsdoc: 59.1.0(eslint@9.38.0(jiti@2.4.0)) + eslint-plugin-jsonc: 2.21.0(eslint@9.38.0(jiti@2.4.0)) + eslint-plugin-n: 17.23.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) eslint-plugin-no-only-tests: 3.3.0 - eslint-plugin-perfectionist: 4.15.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-pnpm: 1.2.0(eslint@9.37.0(jiti@2.4.0)) - eslint-plugin-regexp: 2.10.0(eslint@9.37.0(jiti@2.4.0)) - eslint-plugin-toml: 0.12.0(eslint@9.37.0(jiti@2.4.0)) - eslint-plugin-unicorn: 61.0.2(eslint@9.37.0(jiti@2.4.0)) - eslint-plugin-unused-imports: 4.2.0(@typescript-eslint/eslint-plugin@8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0)) - eslint-plugin-vue: 10.5.0(@stylistic/eslint-plugin@5.4.0(eslint@9.37.0(jiti@2.4.0)))(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.37.0(jiti@2.4.0))) - eslint-plugin-yml: 1.19.0(eslint@9.37.0(jiti@2.4.0)) - eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.37.0(jiti@2.4.0)) + eslint-plugin-perfectionist: 4.15.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) + eslint-plugin-pnpm: 1.2.0(eslint@9.38.0(jiti@2.4.0)) + eslint-plugin-regexp: 2.10.0(eslint@9.38.0(jiti@2.4.0)) + eslint-plugin-toml: 0.12.0(eslint@9.38.0(jiti@2.4.0)) + eslint-plugin-unicorn: 61.0.2(eslint@9.38.0(jiti@2.4.0)) + eslint-plugin-unused-imports: 4.2.0(@typescript-eslint/eslint-plugin@8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0)) + eslint-plugin-vue: 10.5.0(@stylistic/eslint-plugin@5.4.0(eslint@9.38.0(jiti@2.4.0)))(@typescript-eslint/parser@8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.38.0(jiti@2.4.0))) + eslint-plugin-yml: 1.19.0(eslint@9.38.0(jiti@2.4.0)) + eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0)) globals: 16.4.0 jsonc-eslint-parser: 2.4.1 local-pkg: 1.1.2 parse-gitignore: 2.0.0 toml-eslint-parser: 0.10.0 - vue-eslint-parser: 10.2.0(eslint@9.37.0(jiti@2.4.0)) + vue-eslint-parser: 10.2.0(eslint@9.38.0(jiti@2.4.0)) yaml-eslint-parser: 1.3.0 transitivePeerDependencies: - '@eslint/json' @@ -4353,32 +4353,32 @@ snapshots: '@esbuild/win32-x64@0.25.5': optional: true - '@eslint-community/eslint-plugin-eslint-comments@4.5.0(eslint@9.37.0(jiti@2.4.0))': + '@eslint-community/eslint-plugin-eslint-comments@4.5.0(eslint@9.38.0(jiti@2.4.0))': dependencies: escape-string-regexp: 4.0.0 - eslint: 9.37.0(jiti@2.4.0) + eslint: 9.38.0(jiti@2.4.0) ignore: 5.3.2 - '@eslint-community/eslint-utils@4.9.0(eslint@9.37.0(jiti@2.4.0))': + '@eslint-community/eslint-utils@4.9.0(eslint@9.38.0(jiti@2.4.0))': dependencies: - eslint: 9.37.0(jiti@2.4.0) + eslint: 9.38.0(jiti@2.4.0) eslint-visitor-keys: 3.4.3 '@eslint-community/regexpp@4.12.1': {} - '@eslint/compat@1.3.2(eslint@9.37.0(jiti@2.4.0))': + '@eslint/compat@1.3.2(eslint@9.38.0(jiti@2.4.0))': optionalDependencies: - eslint: 9.37.0(jiti@2.4.0) + eslint: 9.38.0(jiti@2.4.0) - '@eslint/config-array@0.21.0': + '@eslint/config-array@0.21.1': dependencies: - '@eslint/object-schema': 2.1.6 + '@eslint/object-schema': 2.1.7 debug: 4.4.3 minimatch: 3.1.2 transitivePeerDependencies: - supports-color - '@eslint/config-helpers@0.4.0': + '@eslint/config-helpers@0.4.1': dependencies: '@eslint/core': 0.16.0 @@ -4404,7 +4404,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/js@9.37.0': {} + '@eslint/js@9.38.0': {} '@eslint/markdown@7.4.0': dependencies: @@ -4420,7 +4420,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/object-schema@2.1.6': {} + '@eslint/object-schema@2.1.7': {} '@eslint/plugin-kit@0.3.5': dependencies: @@ -5300,11 +5300,11 @@ snapshots: dependencies: '@sinonjs/commons': 3.0.1 - '@stylistic/eslint-plugin@5.4.0(eslint@9.37.0(jiti@2.4.0))': + '@stylistic/eslint-plugin@5.4.0(eslint@9.38.0(jiti@2.4.0))': dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) '@typescript-eslint/types': 8.44.0 - eslint: 9.37.0(jiti@2.4.0) + eslint: 9.38.0(jiti@2.4.0) eslint-visitor-keys: 4.2.1 espree: 10.4.0 estraverse: 5.3.0 @@ -5390,15 +5390,15 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)': + '@typescript-eslint/eslint-plugin@8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/parser': 8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/scope-manager': 8.46.1 - '@typescript-eslint/type-utils': 8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) - '@typescript-eslint/utils': 8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/type-utils': 8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/utils': 8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/visitor-keys': 8.46.1 - eslint: 9.37.0(jiti@2.4.0) + eslint: 9.38.0(jiti@2.4.0) graphemer: 1.4.0 ignore: 7.0.5 natural-compare: 1.4.0 @@ -5407,14 +5407,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)': + '@typescript-eslint/parser@8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)': dependencies: '@typescript-eslint/scope-manager': 8.46.1 '@typescript-eslint/types': 8.46.1 '@typescript-eslint/typescript-estree': 8.46.1(typescript@5.9.3) '@typescript-eslint/visitor-keys': 8.46.1 debug: 4.4.3 - eslint: 9.37.0(jiti@2.4.0) + eslint: 9.38.0(jiti@2.4.0) typescript: 5.9.3 transitivePeerDependencies: - supports-color @@ -5455,13 +5455,13 @@ snapshots: dependencies: typescript: 5.9.3 - '@typescript-eslint/type-utils@8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)': + '@typescript-eslint/type-utils@8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)': dependencies: '@typescript-eslint/types': 8.46.1 '@typescript-eslint/typescript-estree': 8.46.1(typescript@5.9.3) - '@typescript-eslint/utils': 8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/utils': 8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) debug: 4.4.3 - eslint: 9.37.0(jiti@2.4.0) + eslint: 9.38.0(jiti@2.4.0) ts-api-utils: 2.1.0(typescript@5.9.3) typescript: 5.9.3 transitivePeerDependencies: @@ -5503,24 +5503,24 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)': + '@typescript-eslint/utils@8.44.0(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)': dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) '@typescript-eslint/scope-manager': 8.44.0 '@typescript-eslint/types': 8.44.0 '@typescript-eslint/typescript-estree': 8.44.0(typescript@5.9.3) - eslint: 9.37.0(jiti@2.4.0) + eslint: 9.38.0(jiti@2.4.0) typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)': + '@typescript-eslint/utils@8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)': dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) '@typescript-eslint/scope-manager': 8.46.1 '@typescript-eslint/types': 8.46.1 '@typescript-eslint/typescript-estree': 8.46.1(typescript@5.9.3) - eslint: 9.37.0(jiti@2.4.0) + eslint: 9.38.0(jiti@2.4.0) typescript: 5.9.3 transitivePeerDependencies: - supports-color @@ -5590,11 +5590,11 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.20(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.3.20(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.46.1 - '@typescript-eslint/utils': 8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) - eslint: 9.37.0(jiti@2.4.0) + '@typescript-eslint/utils': 8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) + eslint: 9.38.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1) @@ -6129,67 +6129,67 @@ snapshots: escape-string-regexp@5.0.0: {} - eslint-compat-utils@0.5.1(eslint@9.37.0(jiti@2.4.0)): + eslint-compat-utils@0.5.1(eslint@9.38.0(jiti@2.4.0)): dependencies: - eslint: 9.37.0(jiti@2.4.0) + eslint: 9.38.0(jiti@2.4.0) semver: 7.7.3 - eslint-compat-utils@0.6.5(eslint@9.37.0(jiti@2.4.0)): + eslint-compat-utils@0.6.5(eslint@9.38.0(jiti@2.4.0)): dependencies: - eslint: 9.37.0(jiti@2.4.0) + eslint: 9.38.0(jiti@2.4.0) semver: 7.7.3 - eslint-config-flat-gitignore@2.1.0(eslint@9.37.0(jiti@2.4.0)): + eslint-config-flat-gitignore@2.1.0(eslint@9.38.0(jiti@2.4.0)): dependencies: - '@eslint/compat': 1.3.2(eslint@9.37.0(jiti@2.4.0)) - eslint: 9.37.0(jiti@2.4.0) + '@eslint/compat': 1.3.2(eslint@9.38.0(jiti@2.4.0)) + eslint: 9.38.0(jiti@2.4.0) eslint-flat-config-utils@2.1.4: dependencies: pathe: 2.0.3 - eslint-json-compat-utils@0.2.1(eslint@9.37.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.1): + eslint-json-compat-utils@0.2.1(eslint@9.38.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.1): dependencies: - eslint: 9.37.0(jiti@2.4.0) + eslint: 9.38.0(jiti@2.4.0) esquery: 1.6.0 jsonc-eslint-parser: 2.4.1 - eslint-merge-processors@2.0.0(eslint@9.37.0(jiti@2.4.0)): + eslint-merge-processors@2.0.0(eslint@9.38.0(jiti@2.4.0)): dependencies: - eslint: 9.37.0(jiti@2.4.0) + eslint: 9.38.0(jiti@2.4.0) - eslint-plugin-antfu@3.1.1(eslint@9.37.0(jiti@2.4.0)): + eslint-plugin-antfu@3.1.1(eslint@9.38.0(jiti@2.4.0)): dependencies: - eslint: 9.37.0(jiti@2.4.0) + eslint: 9.38.0(jiti@2.4.0) - eslint-plugin-command@3.3.1(eslint@9.37.0(jiti@2.4.0)): + eslint-plugin-command@3.3.1(eslint@9.38.0(jiti@2.4.0)): dependencies: '@es-joy/jsdoccomment': 0.50.2 - eslint: 9.37.0(jiti@2.4.0) + eslint: 9.38.0(jiti@2.4.0) - eslint-plugin-es-x@7.8.0(eslint@9.37.0(jiti@2.4.0)): + eslint-plugin-es-x@7.8.0(eslint@9.38.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.1 - eslint: 9.37.0(jiti@2.4.0) - eslint-compat-utils: 0.5.1(eslint@9.37.0(jiti@2.4.0)) + eslint: 9.38.0(jiti@2.4.0) + eslint-compat-utils: 0.5.1(eslint@9.38.0(jiti@2.4.0)) - eslint-plugin-import-lite@0.3.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3): + eslint-plugin-import-lite@0.3.0(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) '@typescript-eslint/types': 8.44.0 - eslint: 9.37.0(jiti@2.4.0) + eslint: 9.38.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - eslint-plugin-jsdoc@59.1.0(eslint@9.37.0(jiti@2.4.0)): + eslint-plugin-jsdoc@59.1.0(eslint@9.38.0(jiti@2.4.0)): dependencies: '@es-joy/jsdoccomment': 0.58.0 are-docs-informative: 0.0.2 comment-parser: 1.4.1 debug: 4.4.3 escape-string-regexp: 4.0.0 - eslint: 9.37.0(jiti@2.4.0) + eslint: 9.38.0(jiti@2.4.0) espree: 10.4.0 esquery: 1.6.0 object-deep-merge: 1.0.5 @@ -6199,13 +6199,13 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-jsonc@2.21.0(eslint@9.37.0(jiti@2.4.0)): + eslint-plugin-jsonc@2.21.0(eslint@9.38.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) diff-sequences: 27.5.1 - eslint: 9.37.0(jiti@2.4.0) - eslint-compat-utils: 0.6.5(eslint@9.37.0(jiti@2.4.0)) - eslint-json-compat-utils: 0.2.1(eslint@9.37.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.1) + eslint: 9.38.0(jiti@2.4.0) + eslint-compat-utils: 0.6.5(eslint@9.38.0(jiti@2.4.0)) + eslint-json-compat-utils: 0.2.1(eslint@9.38.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.1) espree: 10.4.0 graphemer: 1.4.0 jsonc-eslint-parser: 2.4.1 @@ -6214,12 +6214,12 @@ snapshots: transitivePeerDependencies: - '@eslint/json' - eslint-plugin-n@17.23.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3): + eslint-plugin-n@17.23.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) enhanced-resolve: 5.18.3 - eslint: 9.37.0(jiti@2.4.0) - eslint-plugin-es-x: 7.8.0(eslint@9.37.0(jiti@2.4.0)) + eslint: 9.38.0(jiti@2.4.0) + eslint-plugin-es-x: 7.8.0(eslint@9.38.0(jiti@2.4.0)) get-tsconfig: 4.10.1 globals: 15.15.0 globrex: 0.1.2 @@ -6231,57 +6231,57 @@ snapshots: eslint-plugin-no-only-tests@3.3.0: {} - eslint-plugin-perfectionist@4.15.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3): + eslint-plugin-perfectionist@4.15.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3): dependencies: '@typescript-eslint/types': 8.44.0 - '@typescript-eslint/utils': 8.44.0(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) - eslint: 9.37.0(jiti@2.4.0) + '@typescript-eslint/utils': 8.44.0(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) + eslint: 9.38.0(jiti@2.4.0) natural-orderby: 5.0.0 transitivePeerDependencies: - supports-color - typescript - eslint-plugin-pnpm@1.2.0(eslint@9.37.0(jiti@2.4.0)): + eslint-plugin-pnpm@1.2.0(eslint@9.38.0(jiti@2.4.0)): dependencies: empathic: 2.0.0 - eslint: 9.37.0(jiti@2.4.0) + eslint: 9.38.0(jiti@2.4.0) jsonc-eslint-parser: 2.4.1 pathe: 2.0.3 pnpm-workspace-yaml: 1.2.0 tinyglobby: 0.2.15 yaml-eslint-parser: 1.3.0 - eslint-plugin-regexp@2.10.0(eslint@9.37.0(jiti@2.4.0)): + eslint-plugin-regexp@2.10.0(eslint@9.38.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.1 comment-parser: 1.4.1 - eslint: 9.37.0(jiti@2.4.0) + eslint: 9.38.0(jiti@2.4.0) jsdoc-type-pratt-parser: 4.8.0 refa: 0.12.1 regexp-ast-analysis: 0.7.1 scslre: 0.3.0 - eslint-plugin-toml@0.12.0(eslint@9.37.0(jiti@2.4.0)): + eslint-plugin-toml@0.12.0(eslint@9.38.0(jiti@2.4.0)): dependencies: debug: 4.4.3 - eslint: 9.37.0(jiti@2.4.0) - eslint-compat-utils: 0.6.5(eslint@9.37.0(jiti@2.4.0)) + eslint: 9.38.0(jiti@2.4.0) + eslint-compat-utils: 0.6.5(eslint@9.38.0(jiti@2.4.0)) lodash: 4.17.21 toml-eslint-parser: 0.10.0 transitivePeerDependencies: - supports-color - eslint-plugin-unicorn@61.0.2(eslint@9.37.0(jiti@2.4.0)): + eslint-plugin-unicorn@61.0.2(eslint@9.38.0(jiti@2.4.0)): dependencies: '@babel/helper-validator-identifier': 7.27.1 - '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) '@eslint/plugin-kit': 0.3.5 change-case: 5.4.4 ci-info: 4.3.0 clean-regexp: 1.0.0 core-js-compat: 3.45.1 - eslint: 9.37.0(jiti@2.4.0) + eslint: 9.38.0(jiti@2.4.0) esquery: 1.6.0 find-up-simple: 1.0.1 globals: 16.4.0 @@ -6294,42 +6294,42 @@ snapshots: semver: 7.7.3 strip-indent: 4.1.0 - eslint-plugin-unused-imports@4.2.0(@typescript-eslint/eslint-plugin@8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0)): + eslint-plugin-unused-imports@4.2.0(@typescript-eslint/eslint-plugin@8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0)): dependencies: - eslint: 9.37.0(jiti@2.4.0) + eslint: 9.38.0(jiti@2.4.0) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/eslint-plugin': 8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-vue@10.5.0(@stylistic/eslint-plugin@5.4.0(eslint@9.37.0(jiti@2.4.0)))(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.37.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.37.0(jiti@2.4.0))): + eslint-plugin-vue@10.5.0(@stylistic/eslint-plugin@5.4.0(eslint@9.38.0(jiti@2.4.0)))(@typescript-eslint/parser@8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.38.0(jiti@2.4.0))): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.4.0)) - eslint: 9.37.0(jiti@2.4.0) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) + eslint: 9.38.0(jiti@2.4.0) natural-compare: 1.4.0 nth-check: 2.1.1 postcss-selector-parser: 6.1.2 semver: 7.7.3 - vue-eslint-parser: 10.2.0(eslint@9.37.0(jiti@2.4.0)) + vue-eslint-parser: 10.2.0(eslint@9.38.0(jiti@2.4.0)) xml-name-validator: 4.0.0 optionalDependencies: - '@stylistic/eslint-plugin': 5.4.0(eslint@9.37.0(jiti@2.4.0)) - '@typescript-eslint/parser': 8.46.1(eslint@9.37.0(jiti@2.4.0))(typescript@5.9.3) + '@stylistic/eslint-plugin': 5.4.0(eslint@9.38.0(jiti@2.4.0)) + '@typescript-eslint/parser': 8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-yml@1.19.0(eslint@9.37.0(jiti@2.4.0)): + eslint-plugin-yml@1.19.0(eslint@9.38.0(jiti@2.4.0)): dependencies: debug: 4.4.3 diff-sequences: 27.5.1 escape-string-regexp: 4.0.0 - eslint: 9.37.0(jiti@2.4.0) - eslint-compat-utils: 0.6.5(eslint@9.37.0(jiti@2.4.0)) + eslint: 9.38.0(jiti@2.4.0) + eslint-compat-utils: 0.6.5(eslint@9.38.0(jiti@2.4.0)) natural-compare: 1.4.0 yaml-eslint-parser: 1.3.0 transitivePeerDependencies: - supports-color - eslint-processor-vue-blocks@2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.37.0(jiti@2.4.0)): + eslint-processor-vue-blocks@2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0)): dependencies: '@vue/compiler-sfc': 3.5.12 - eslint: 9.37.0(jiti@2.4.0) + eslint: 9.38.0(jiti@2.4.0) eslint-scope@8.4.0: dependencies: @@ -6340,21 +6340,20 @@ snapshots: eslint-visitor-keys@4.2.1: {} - eslint@9.37.0(jiti@2.4.0): + eslint@9.38.0(jiti@2.4.0): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.1 - '@eslint/config-array': 0.21.0 - '@eslint/config-helpers': 0.4.0 + '@eslint/config-array': 0.21.1 + '@eslint/config-helpers': 0.4.1 '@eslint/core': 0.16.0 '@eslint/eslintrc': 3.3.1 - '@eslint/js': 9.37.0 + '@eslint/js': 9.38.0 '@eslint/plugin-kit': 0.4.0 '@humanfs/node': 0.16.7 '@humanwhocodes/module-importer': 1.0.1 '@humanwhocodes/retry': 0.4.3 '@types/estree': 1.0.8 - '@types/json-schema': 7.0.15 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.6 @@ -8348,10 +8347,10 @@ snapshots: - tsx - yaml - vue-eslint-parser@10.2.0(eslint@9.37.0(jiti@2.4.0)): + vue-eslint-parser@10.2.0(eslint@9.38.0(jiti@2.4.0)): dependencies: debug: 4.4.3 - eslint: 9.37.0(jiti@2.4.0) + eslint: 9.38.0(jiti@2.4.0) eslint-scope: 8.4.0 eslint-visitor-keys: 4.2.1 espree: 10.4.0 From fa1a92cdaf1f3b4aafd20f01c5230154e2abef5f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 21 Oct 2025 01:33:21 +0000 Subject: [PATCH 082/133] chore(deps): update dependency @types/node to v22.18.12 (#1267) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 254 ++++++++++++++++++++++++------------------------- 1 file changed, 127 insertions(+), 127 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2abac5cb..0b683988 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,10 +29,10 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1)) + version: 6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.0 - version: 6.0.0(@types/node@22.18.11)(graphql@16.11.0)(typescript@5.9.3) + version: 6.0.0(@types/node@22.18.12)(graphql@16.11.0)(typescript@5.9.3) '@graphql-codegen/typescript': specifier: ^5.0.0 version: 5.0.2(graphql@16.11.0) @@ -44,13 +44,13 @@ importers: version: 2.1.12 '@types/node': specifier: ^22.0.0 - version: 22.18.11 + version: 22.18.12 eslint: specifier: 9.38.0 version: 9.38.0(jiti@2.4.0) jest: specifier: 30.2.0 - version: 30.2.0(@types/node@22.18.11) + version: 30.2.0(@types/node@22.18.12) myzod: specifier: 1.12.1 version: 1.12.1 @@ -62,7 +62,7 @@ importers: version: 2.2.0 ts-jest: specifier: 29.4.5 - version: 29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.11))(typescript@5.9.3) + version: 29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.12))(typescript@5.9.3) typescript: specifier: 5.9.3 version: 5.9.3 @@ -71,7 +71,7 @@ importers: version: 1.1.0(typescript@5.9.3) vitest: specifier: ^3.0.0 - version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.1 version: 1.7.1 @@ -1259,8 +1259,8 @@ packages: '@types/ms@2.1.0': resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} - '@types/node@22.18.11': - resolution: {integrity: sha512-Gd33J2XIrXurb+eT2ktze3rJAfAp9ZNjlBdh4SVgyrKEOADwCbdUDaK7QgJno8Ue4kcajscsKqu6n8OBG3hhCQ==} + '@types/node@22.18.12': + resolution: {integrity: sha512-BICHQ67iqxQGFSzfCFTT7MRQ5XcBjG5aeKh5Ok38UBbPe5fxTyE+aHFxwVrGyr8GNlqFMLKD1D3P2K/1ks8tog==} '@types/stack-utils@2.0.3': resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} @@ -3960,7 +3960,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -3969,7 +3969,7 @@ snapshots: '@stylistic/eslint-plugin': 5.4.0(eslint@9.38.0(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/parser': 8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.3.20(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/eslint-plugin': 1.3.20(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.2.0 cac: 6.7.14 eslint: 9.38.0(jiti@2.4.0) @@ -4438,7 +4438,7 @@ snapshots: graphql: 16.11.0 tslib: 2.6.3 - '@graphql-codegen/cli@6.0.0(@types/node@22.18.11)(graphql@16.11.0)(typescript@5.9.3)': + '@graphql-codegen/cli@6.0.0(@types/node@22.18.12)(graphql@16.11.0)(typescript@5.9.3)': dependencies: '@babel/generator': 7.27.5 '@babel/template': 7.27.2 @@ -4449,20 +4449,20 @@ snapshots: '@graphql-tools/apollo-engine-loader': 8.0.4(graphql@16.11.0) '@graphql-tools/code-file-loader': 8.1.5(graphql@16.11.0) '@graphql-tools/git-loader': 8.0.9(graphql@16.11.0) - '@graphql-tools/github-loader': 8.0.4(@types/node@22.18.11)(graphql@16.11.0) + '@graphql-tools/github-loader': 8.0.4(@types/node@22.18.12)(graphql@16.11.0) '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.11)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.12)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) - '@inquirer/prompts': 7.8.4(@types/node@22.18.11) + '@inquirer/prompts': 7.8.4(@types/node@22.18.12) '@whatwg-node/fetch': 0.10.1 chalk: 4.1.2 cosmiconfig: 9.0.0(typescript@5.9.3) debounce: 2.2.0 detect-indent: 6.1.0 graphql: 16.11.0 - graphql-config: 5.1.3(@types/node@22.18.11)(graphql@16.11.0)(typescript@5.9.3) + graphql-config: 5.1.3(@types/node@22.18.12)(graphql@16.11.0)(typescript@5.9.3) is-glob: 4.0.3 jiti: 2.4.0 json-to-pretty-yaml: 1.2.2 @@ -4665,14 +4665,14 @@ snapshots: - bufferutil - utf-8-validate - '@graphql-tools/executor-http@1.1.9(@types/node@22.18.11)(graphql@16.11.0)': + '@graphql-tools/executor-http@1.1.9(@types/node@22.18.12)(graphql@16.11.0)': dependencies: '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/fetch': 0.10.1 extract-files: 11.0.0 graphql: 16.11.0 - meros: 1.3.0(@types/node@22.18.11) + meros: 1.3.0(@types/node@22.18.12) tslib: 2.8.1 value-or-promise: 1.0.12 transitivePeerDependencies: @@ -4711,10 +4711,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@graphql-tools/github-loader@8.0.4(@types/node@22.18.11)(graphql@16.11.0)': + '@graphql-tools/github-loader@8.0.4(@types/node@22.18.12)(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.11)(graphql@16.11.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.12)(graphql@16.11.0) '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@whatwg-node/fetch': 0.10.1 @@ -4798,11 +4798,11 @@ snapshots: graphql: 16.11.0 tslib: 2.8.1 - '@graphql-tools/url-loader@8.0.15(@types/node@22.18.11)(graphql@16.11.0)': + '@graphql-tools/url-loader@8.0.15(@types/node@22.18.12)(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/executor-graphql-ws': 1.3.2(graphql@16.11.0) - '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.11)(graphql@16.11.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.12)(graphql@16.11.0) '@graphql-tools/executor-legacy-ws': 1.1.2(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@graphql-tools/wrap': 10.0.16(graphql@16.11.0) @@ -4852,27 +4852,27 @@ snapshots: '@humanwhocodes/retry@0.4.3': {} - '@inquirer/checkbox@4.2.2(@types/node@22.18.11)': + '@inquirer/checkbox@4.2.2(@types/node@22.18.12)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.11) + '@inquirer/core': 10.2.0(@types/node@22.18.12) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.11) + '@inquirer/type': 3.0.8(@types/node@22.18.12) ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.11 + '@types/node': 22.18.12 - '@inquirer/confirm@5.1.16(@types/node@22.18.11)': + '@inquirer/confirm@5.1.16(@types/node@22.18.12)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.11) - '@inquirer/type': 3.0.8(@types/node@22.18.11) + '@inquirer/core': 10.2.0(@types/node@22.18.12) + '@inquirer/type': 3.0.8(@types/node@22.18.12) optionalDependencies: - '@types/node': 22.18.11 + '@types/node': 22.18.12 - '@inquirer/core@10.2.0(@types/node@22.18.11)': + '@inquirer/core@10.2.0(@types/node@22.18.12)': dependencies: '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.11) + '@inquirer/type': 3.0.8(@types/node@22.18.12) ansi-escapes: 4.3.2 cli-width: 4.1.0 mute-stream: 2.0.0 @@ -4880,100 +4880,100 @@ snapshots: wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.11 + '@types/node': 22.18.12 - '@inquirer/editor@4.2.18(@types/node@22.18.11)': + '@inquirer/editor@4.2.18(@types/node@22.18.12)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.11) - '@inquirer/external-editor': 1.0.1(@types/node@22.18.11) - '@inquirer/type': 3.0.8(@types/node@22.18.11) + '@inquirer/core': 10.2.0(@types/node@22.18.12) + '@inquirer/external-editor': 1.0.1(@types/node@22.18.12) + '@inquirer/type': 3.0.8(@types/node@22.18.12) optionalDependencies: - '@types/node': 22.18.11 + '@types/node': 22.18.12 - '@inquirer/expand@4.0.18(@types/node@22.18.11)': + '@inquirer/expand@4.0.18(@types/node@22.18.12)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.11) - '@inquirer/type': 3.0.8(@types/node@22.18.11) + '@inquirer/core': 10.2.0(@types/node@22.18.12) + '@inquirer/type': 3.0.8(@types/node@22.18.12) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.11 + '@types/node': 22.18.12 - '@inquirer/external-editor@1.0.1(@types/node@22.18.11)': + '@inquirer/external-editor@1.0.1(@types/node@22.18.12)': dependencies: chardet: 2.1.0 iconv-lite: 0.6.3 optionalDependencies: - '@types/node': 22.18.11 + '@types/node': 22.18.12 '@inquirer/figures@1.0.13': {} - '@inquirer/input@4.2.2(@types/node@22.18.11)': + '@inquirer/input@4.2.2(@types/node@22.18.12)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.11) - '@inquirer/type': 3.0.8(@types/node@22.18.11) + '@inquirer/core': 10.2.0(@types/node@22.18.12) + '@inquirer/type': 3.0.8(@types/node@22.18.12) optionalDependencies: - '@types/node': 22.18.11 + '@types/node': 22.18.12 - '@inquirer/number@3.0.18(@types/node@22.18.11)': + '@inquirer/number@3.0.18(@types/node@22.18.12)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.11) - '@inquirer/type': 3.0.8(@types/node@22.18.11) + '@inquirer/core': 10.2.0(@types/node@22.18.12) + '@inquirer/type': 3.0.8(@types/node@22.18.12) optionalDependencies: - '@types/node': 22.18.11 + '@types/node': 22.18.12 - '@inquirer/password@4.0.18(@types/node@22.18.11)': + '@inquirer/password@4.0.18(@types/node@22.18.12)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.11) - '@inquirer/type': 3.0.8(@types/node@22.18.11) + '@inquirer/core': 10.2.0(@types/node@22.18.12) + '@inquirer/type': 3.0.8(@types/node@22.18.12) ansi-escapes: 4.3.2 optionalDependencies: - '@types/node': 22.18.11 - - '@inquirer/prompts@7.8.4(@types/node@22.18.11)': - dependencies: - '@inquirer/checkbox': 4.2.2(@types/node@22.18.11) - '@inquirer/confirm': 5.1.16(@types/node@22.18.11) - '@inquirer/editor': 4.2.18(@types/node@22.18.11) - '@inquirer/expand': 4.0.18(@types/node@22.18.11) - '@inquirer/input': 4.2.2(@types/node@22.18.11) - '@inquirer/number': 3.0.18(@types/node@22.18.11) - '@inquirer/password': 4.0.18(@types/node@22.18.11) - '@inquirer/rawlist': 4.1.6(@types/node@22.18.11) - '@inquirer/search': 3.1.1(@types/node@22.18.11) - '@inquirer/select': 4.3.2(@types/node@22.18.11) + '@types/node': 22.18.12 + + '@inquirer/prompts@7.8.4(@types/node@22.18.12)': + dependencies: + '@inquirer/checkbox': 4.2.2(@types/node@22.18.12) + '@inquirer/confirm': 5.1.16(@types/node@22.18.12) + '@inquirer/editor': 4.2.18(@types/node@22.18.12) + '@inquirer/expand': 4.0.18(@types/node@22.18.12) + '@inquirer/input': 4.2.2(@types/node@22.18.12) + '@inquirer/number': 3.0.18(@types/node@22.18.12) + '@inquirer/password': 4.0.18(@types/node@22.18.12) + '@inquirer/rawlist': 4.1.6(@types/node@22.18.12) + '@inquirer/search': 3.1.1(@types/node@22.18.12) + '@inquirer/select': 4.3.2(@types/node@22.18.12) optionalDependencies: - '@types/node': 22.18.11 + '@types/node': 22.18.12 - '@inquirer/rawlist@4.1.6(@types/node@22.18.11)': + '@inquirer/rawlist@4.1.6(@types/node@22.18.12)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.11) - '@inquirer/type': 3.0.8(@types/node@22.18.11) + '@inquirer/core': 10.2.0(@types/node@22.18.12) + '@inquirer/type': 3.0.8(@types/node@22.18.12) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.11 + '@types/node': 22.18.12 - '@inquirer/search@3.1.1(@types/node@22.18.11)': + '@inquirer/search@3.1.1(@types/node@22.18.12)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.11) + '@inquirer/core': 10.2.0(@types/node@22.18.12) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.11) + '@inquirer/type': 3.0.8(@types/node@22.18.12) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.11 + '@types/node': 22.18.12 - '@inquirer/select@4.3.2(@types/node@22.18.11)': + '@inquirer/select@4.3.2(@types/node@22.18.12)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.11) + '@inquirer/core': 10.2.0(@types/node@22.18.12) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.11) + '@inquirer/type': 3.0.8(@types/node@22.18.12) ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.11 + '@types/node': 22.18.12 - '@inquirer/type@3.0.8(@types/node@22.18.11)': + '@inquirer/type@3.0.8(@types/node@22.18.12)': optionalDependencies: - '@types/node': 22.18.11 + '@types/node': 22.18.12 '@isaacs/cliui@8.0.2': dependencies: @@ -4997,7 +4997,7 @@ snapshots: '@jest/console@30.2.0': dependencies: '@jest/types': 30.2.0 - '@types/node': 22.18.11 + '@types/node': 22.18.12 chalk: 4.1.2 jest-message-util: 30.2.0 jest-util: 30.2.0 @@ -5011,14 +5011,14 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.11 + '@types/node': 22.18.12 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 4.3.0 exit-x: 0.2.2 graceful-fs: 4.2.11 jest-changed-files: 30.2.0 - jest-config: 30.2.0(@types/node@22.18.11) + jest-config: 30.2.0(@types/node@22.18.12) jest-haste-map: 30.2.0 jest-message-util: 30.2.0 jest-regex-util: 30.0.1 @@ -5045,7 +5045,7 @@ snapshots: dependencies: '@jest/fake-timers': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.11 + '@types/node': 22.18.12 jest-mock: 30.2.0 '@jest/expect-utils@30.2.0': @@ -5063,7 +5063,7 @@ snapshots: dependencies: '@jest/types': 30.2.0 '@sinonjs/fake-timers': 13.0.5 - '@types/node': 22.18.11 + '@types/node': 22.18.12 jest-message-util: 30.2.0 jest-mock: 30.2.0 jest-util: 30.2.0 @@ -5081,7 +5081,7 @@ snapshots: '@jest/pattern@30.0.1': dependencies: - '@types/node': 22.18.11 + '@types/node': 22.18.12 jest-regex-util: 30.0.1 '@jest/reporters@30.2.0': @@ -5092,7 +5092,7 @@ snapshots: '@jest/transform': 30.2.0 '@jest/types': 30.2.0 '@jridgewell/trace-mapping': 0.3.25 - '@types/node': 22.18.11 + '@types/node': 22.18.12 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit-x: 0.2.2 @@ -5169,7 +5169,7 @@ snapshots: '@jest/schemas': 30.0.5 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 22.18.11 + '@types/node': 22.18.12 '@types/yargs': 17.0.33 chalk: 4.1.2 @@ -5372,7 +5372,7 @@ snapshots: '@types/ms@2.1.0': {} - '@types/node@22.18.11': + '@types/node@22.18.12': dependencies: undici-types: 6.21.0 @@ -5382,7 +5382,7 @@ snapshots: '@types/ws@8.5.13': dependencies: - '@types/node': 22.18.11 + '@types/node': 22.18.12 '@types/yargs-parser@21.0.3': {} @@ -5590,14 +5590,14 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.20(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.3.20(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.46.1 '@typescript-eslint/utils': 8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) eslint: 9.38.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1) + vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color @@ -5609,13 +5609,13 @@ snapshots: chai: 5.2.0 tinyrainbow: 2.0.0 - '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@vitest/spy': 3.2.4 estree-walker: 3.0.3 magic-string: 0.30.17 optionalDependencies: - vite: 6.3.5(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) '@vitest/pretty-format@3.2.4': dependencies: @@ -6606,13 +6606,13 @@ snapshots: dependencies: lodash: 4.17.21 - graphql-config@5.1.3(@types/node@22.18.11)(graphql@16.11.0)(typescript@5.9.3): + graphql-config@5.1.3(@types/node@22.18.12)(graphql@16.11.0)(typescript@5.9.3): dependencies: '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) '@graphql-tools/merge': 9.0.24(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.11)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.12)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) cosmiconfig: 8.3.6(typescript@5.9.3) graphql: 16.11.0 @@ -6803,7 +6803,7 @@ snapshots: '@jest/expect': 30.2.0 '@jest/test-result': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.11 + '@types/node': 22.18.12 chalk: 4.1.2 co: 4.6.0 dedent: 1.6.0 @@ -6823,7 +6823,7 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@30.2.0(@types/node@22.18.11): + jest-cli@30.2.0(@types/node@22.18.12): dependencies: '@jest/core': 30.2.0 '@jest/test-result': 30.2.0 @@ -6831,7 +6831,7 @@ snapshots: chalk: 4.1.2 exit-x: 0.2.2 import-local: 3.2.0 - jest-config: 30.2.0(@types/node@22.18.11) + jest-config: 30.2.0(@types/node@22.18.12) jest-util: 30.2.0 jest-validate: 30.2.0 yargs: 17.7.2 @@ -6842,7 +6842,7 @@ snapshots: - supports-color - ts-node - jest-config@30.2.0(@types/node@22.18.11): + jest-config@30.2.0(@types/node@22.18.12): dependencies: '@babel/core': 7.27.4 '@jest/get-type': 30.1.0 @@ -6869,7 +6869,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 22.18.11 + '@types/node': 22.18.12 transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -6898,7 +6898,7 @@ snapshots: '@jest/environment': 30.2.0 '@jest/fake-timers': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.11 + '@types/node': 22.18.12 jest-mock: 30.2.0 jest-util: 30.2.0 jest-validate: 30.2.0 @@ -6906,7 +6906,7 @@ snapshots: jest-haste-map@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 22.18.11 + '@types/node': 22.18.12 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -6945,7 +6945,7 @@ snapshots: jest-mock@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 22.18.11 + '@types/node': 22.18.12 jest-util: 30.2.0 jest-pnp-resolver@1.2.3(jest-resolve@30.2.0): @@ -6979,7 +6979,7 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.11 + '@types/node': 22.18.12 chalk: 4.1.2 emittery: 0.13.1 exit-x: 0.2.2 @@ -7008,7 +7008,7 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.11 + '@types/node': 22.18.12 chalk: 4.1.2 cjs-module-lexer: 2.1.0 collect-v8-coverage: 1.0.2 @@ -7055,7 +7055,7 @@ snapshots: jest-util@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 22.18.11 + '@types/node': 22.18.12 chalk: 4.1.2 ci-info: 4.3.0 graceful-fs: 4.2.11 @@ -7074,7 +7074,7 @@ snapshots: dependencies: '@jest/test-result': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.11 + '@types/node': 22.18.12 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -7083,18 +7083,18 @@ snapshots: jest-worker@30.2.0: dependencies: - '@types/node': 22.18.11 + '@types/node': 22.18.12 '@ungap/structured-clone': 1.3.0 jest-util: 30.2.0 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@30.2.0(@types/node@22.18.11): + jest@30.2.0(@types/node@22.18.12): dependencies: '@jest/core': 30.2.0 '@jest/types': 30.2.0 import-local: 3.2.0 - jest-cli: 30.2.0(@types/node@22.18.11) + jest-cli: 30.2.0(@types/node@22.18.12) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -7371,9 +7371,9 @@ snapshots: merge2@1.4.1: {} - meros@1.3.0(@types/node@22.18.11): + meros@1.3.0(@types/node@22.18.12): optionalDependencies: - '@types/node': 22.18.11 + '@types/node': 22.18.12 micromark-core-commonmark@2.0.3: dependencies: @@ -8138,12 +8138,12 @@ snapshots: ts-dedent@2.2.0: {} - ts-jest@29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.11))(typescript@5.9.3): + ts-jest@29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.12))(typescript@5.9.3): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 handlebars: 4.7.8 - jest: 30.2.0(@types/node@22.18.11) + jest: 30.2.0(@types/node@22.18.12) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -8270,13 +8270,13 @@ snapshots: value-or-promise@1.0.12: {} - vite-node@3.2.4(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1): + vite-node@3.2.4(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1): dependencies: cac: 6.7.14 debug: 4.4.3 es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 6.3.5(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - '@types/node' - jiti @@ -8291,7 +8291,7 @@ snapshots: - tsx - yaml - vite@6.3.5(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1): + vite@6.3.5(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1): dependencies: esbuild: 0.25.5 fdir: 6.4.6(picomatch@4.0.2) @@ -8300,16 +8300,16 @@ snapshots: rollup: 4.43.0 tinyglobby: 0.2.14 optionalDependencies: - '@types/node': 22.18.11 + '@types/node': 22.18.12 fsevents: 2.3.3 jiti: 2.4.0 yaml: 2.8.1 - vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1): + vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1): dependencies: '@types/chai': 5.2.2 '@vitest/expect': 3.2.4 - '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) '@vitest/pretty-format': 3.2.4 '@vitest/runner': 3.2.4 '@vitest/snapshot': 3.2.4 @@ -8327,12 +8327,12 @@ snapshots: tinyglobby: 0.2.14 tinypool: 1.1.1 tinyrainbow: 2.0.0 - vite: 6.3.5(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1) - vite-node: 3.2.4(@types/node@22.18.11)(jiti@2.4.0)(yaml@2.8.1) + vite: 6.3.5(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) + vite-node: 3.2.4(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) why-is-node-running: 2.3.0 optionalDependencies: '@types/debug': 4.1.12 - '@types/node': 22.18.11 + '@types/node': 22.18.12 transitivePeerDependencies: - jiti - less From aada37db0f72642525c54cbf106c84f142fbf052 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 22 Oct 2025 16:14:42 +0000 Subject: [PATCH 083/133] chore(deps): update dependency @graphql-codegen/cli to v6.0.1 (#1268) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 60 ++++++++++++++++++-------------------------------- 2 files changed, 23 insertions(+), 39 deletions(-) diff --git a/package.json b/package.json index fcf80a20..072848c2 100644 --- a/package.json +++ b/package.json @@ -88,7 +88,7 @@ }, "devDependencies": { "@antfu/eslint-config": "^6.0.0", - "@graphql-codegen/cli": "6.0.0", + "@graphql-codegen/cli": "6.0.1", "@graphql-codegen/typescript": "^5.0.0", "@tsconfig/recommended": "1.0.10", "@types/graphlib": "^2.1.8", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0b683988..158af67c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -31,8 +31,8 @@ importers: specifier: ^6.0.0 version: 6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': - specifier: 6.0.0 - version: 6.0.0(@types/node@22.18.12)(graphql@16.11.0)(typescript@5.9.3) + specifier: 6.0.1 + version: 6.0.1(@types/node@22.18.12)(graphql@16.11.0)(typescript@5.9.3) '@graphql-codegen/typescript': specifier: ^5.0.0 version: 5.0.2(graphql@16.11.0) @@ -572,8 +572,8 @@ packages: peerDependencies: graphql: ^0.8.0 || ^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-codegen/cli@6.0.0': - resolution: {integrity: sha512-tvchLVCMtorDE+UwgQbrjyaQK16GCZA+QomTxZazRx64ixtgmbEiQV7GhCBy0y0Bo7/tcTJb6sy9G/TL/BgiOg==} + '@graphql-codegen/cli@6.0.1': + resolution: {integrity: sha512-6iP91joxb7phdicDrIF8Cv9ah2QpPVXUUu7rbOaQKvqey+QKYmHcxGCi9r5/7p4lUiHZPQvfB7xDHURHQca1SA==} engines: {node: '>=16'} hasBin: true peerDependencies: @@ -1037,18 +1037,10 @@ packages: '@jridgewell/gen-mapping@0.3.13': resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} - '@jridgewell/gen-mapping@0.3.8': - resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==} - engines: {node: '>=6.0.0'} - '@jridgewell/resolve-uri@3.1.2': resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} engines: {node: '>=6.0.0'} - '@jridgewell/set-array@1.2.1': - resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} - engines: {node: '>=6.0.0'} - '@jridgewell/sourcemap-codec@1.5.0': resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} @@ -3958,7 +3950,7 @@ snapshots: '@ampproject/remapping@2.3.0': dependencies: '@jridgewell/gen-mapping': 0.3.13 - '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/trace-mapping': 0.3.31 '@antfu/eslint-config@6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': dependencies: @@ -4065,8 +4057,8 @@ snapshots: dependencies: '@babel/parser': 7.28.4 '@babel/types': 7.28.4 - '@jridgewell/gen-mapping': 0.3.8 - '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 jsesc: 3.1.0 '@babel/generator@7.28.3': @@ -4219,7 +4211,7 @@ snapshots: '@babel/traverse@7.27.4': dependencies: '@babel/code-frame': 7.27.1 - '@babel/generator': 7.27.5 + '@babel/generator': 7.28.3 '@babel/parser': 7.28.4 '@babel/template': 7.27.2 '@babel/types': 7.28.4 @@ -4438,9 +4430,9 @@ snapshots: graphql: 16.11.0 tslib: 2.6.3 - '@graphql-codegen/cli@6.0.0(@types/node@22.18.12)(graphql@16.11.0)(typescript@5.9.3)': + '@graphql-codegen/cli@6.0.1(@types/node@22.18.12)(graphql@16.11.0)(typescript@5.9.3)': dependencies: - '@babel/generator': 7.27.5 + '@babel/generator': 7.28.3 '@babel/template': 7.27.2 '@babel/types': 7.28.4 '@graphql-codegen/client-preset': 5.0.0(graphql@16.11.0) @@ -5125,7 +5117,7 @@ snapshots: '@jest/source-map@30.0.1': dependencies: - '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/trace-mapping': 0.3.31 callsites: 3.1.0 graceful-fs: 4.2.11 @@ -5178,16 +5170,8 @@ snapshots: '@jridgewell/sourcemap-codec': 1.5.5 '@jridgewell/trace-mapping': 0.3.31 - '@jridgewell/gen-mapping@0.3.8': - dependencies: - '@jridgewell/set-array': 1.2.1 - '@jridgewell/sourcemap-codec': 1.5.5 - '@jridgewell/trace-mapping': 0.3.25 - '@jridgewell/resolve-uri@3.1.2': {} - '@jridgewell/set-array@1.2.1': {} - '@jridgewell/sourcemap-codec@1.5.0': {} '@jridgewell/sourcemap-codec@1.5.5': {} @@ -5849,7 +5833,7 @@ snapshots: camel-case@4.1.2: dependencies: pascal-case: 3.1.2 - tslib: 2.6.3 + tslib: 2.8.1 camelcase@5.3.1: {} @@ -5860,7 +5844,7 @@ snapshots: 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 ccount@2.0.1: {} @@ -5966,7 +5950,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 convert-source-map@2.0.0: {} @@ -6056,7 +6040,7 @@ snapshots: dot-case@3.0.4: dependencies: no-case: 3.0.4 - tslib: 2.6.3 + tslib: 2.8.1 dset@3.1.4: {} @@ -6652,7 +6636,7 @@ snapshots: header-case@2.0.4: dependencies: capital-case: 1.0.4 - tslib: 2.6.3 + tslib: 2.8.1 html-escaper@2.0.2: {} @@ -7620,7 +7604,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: @@ -7711,7 +7695,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: @@ -7741,12 +7725,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@4.0.0: {} @@ -7942,7 +7926,7 @@ snapshots: 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 setimmediate@1.0.5: {} @@ -7980,7 +7964,7 @@ snapshots: snake-case@3.0.4: dependencies: dot-case: 3.0.4 - tslib: 2.6.3 + tslib: 2.8.1 source-map-js@1.2.1: {} From 7a1c7ab16f4bdb818e5b65f8868f0c2bb26562a1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 22 Oct 2025 16:15:07 +0000 Subject: [PATCH 084/133] chore(deps): update pnpm to v10.19.0 (#1269) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 072848c2..bfafc665 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "graphql-codegen-typescript-validation-schema", "type": "module", "version": "0.18.1", - "packageManager": "pnpm@10.18.3", + "packageManager": "pnpm@10.19.0", "description": "GraphQL Code Generator plugin to generate form validation schema from your GraphQL schema", "respository": { "type": "git", From bffb3fb8e5a1c83d2ca0c4f5d5d830cbece5825e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 22 Oct 2025 20:10:19 +0000 Subject: [PATCH 085/133] chore(deps): update dependency vitest to v4 (#1272) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 302 ++++++++++++++----------------------------------- 2 files changed, 89 insertions(+), 215 deletions(-) diff --git a/package.json b/package.json index bfafc665..ff107959 100644 --- a/package.json +++ b/package.json @@ -101,7 +101,7 @@ "ts-jest": "29.4.5", "typescript": "5.9.3", "valibot": "1.1.0", - "vitest": "^3.0.0", + "vitest": "^4.0.0", "yup": "1.7.1", "zod": "4.1.12" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 158af67c..92fa4215 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) + version: 6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.1(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.1 version: 6.0.1(@types/node@22.18.12)(graphql@16.11.0)(typescript@5.9.3) @@ -70,8 +70,8 @@ importers: specifier: 1.1.0 version: 1.1.0(typescript@5.9.3) vitest: - specifier: ^3.0.0 - version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) + specifier: ^4.0.0 + version: 4.0.1(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.1 version: 1.7.1 @@ -1041,9 +1041,6 @@ packages: resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} engines: {node: '>=6.0.0'} - '@jridgewell/sourcemap-codec@1.5.0': - resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} - '@jridgewell/sourcemap-codec@1.5.5': resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} @@ -1191,6 +1188,9 @@ packages: '@sinonjs/fake-timers@13.0.5': resolution: {integrity: sha512-36/hTbH2uaWuGVERyC6da9YwGWnzUZXuPro/F2LfsdOsLnCojz/iSH8MxUt/FD2S5XBSVPhmArFUXcpCQ2Hkiw==} + '@standard-schema/spec@1.0.0': + resolution: {integrity: sha512-m2bOd0f2RT9k8QJx1JN85cZYyH1RqFBdlwtkSlf4tBDYLCiiZnv1fIIwacK6cqwXavOydf0NPToMQgpKq+dVlA==} + '@stylistic/eslint-plugin@5.4.0': resolution: {integrity: sha512-UG8hdElzuBDzIbjG1QDwnYH0MQ73YLXDFHgZzB4Zh/YJfnw8XNsloVtytqzx0I2Qky9THSdpTmi8Vjn/pf/Lew==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -1465,34 +1465,34 @@ packages: vitest: optional: true - '@vitest/expect@3.2.4': - resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==} + '@vitest/expect@4.0.1': + resolution: {integrity: sha512-KtvGLN/IWoZfg68JF2q/zbDEo+UJTWnc7suYJ8RF+ZTBeBcBz4NIOJDxO4Q3bEY9GsOYhgy5cOevcVPFh4+V7g==} - '@vitest/mocker@3.2.4': - resolution: {integrity: sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==} + '@vitest/mocker@4.0.1': + resolution: {integrity: sha512-fwmvg8YvwSAE41Hyhul7dL4UzPhG+k2VaZCcL+aHagLx4qlNQgKYTw7coF4YdjAxSBBt0b408gQFYMX1Qeqweg==} peerDependencies: msw: ^2.4.9 - vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0 + vite: ^6.0.0 || ^7.0.0-0 peerDependenciesMeta: msw: optional: true vite: optional: true - '@vitest/pretty-format@3.2.4': - resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==} + '@vitest/pretty-format@4.0.1': + resolution: {integrity: sha512-6nq3JY/zQ91+oX1vd4fajiVNyA/HMhaF9cOw5P9cQi6ML7PRi7ilVaQ77PulF+4kvUKr9bcLm9GoAtwlVFbGzw==} - '@vitest/runner@3.2.4': - resolution: {integrity: sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==} + '@vitest/runner@4.0.1': + resolution: {integrity: sha512-nxUoWmw7ZX2OiSNwolJeSOOzrrR/o79wRTwP7HhiW/lDFwQHtWMj9snMhrdvccFqanvI8897E81eXjgDbrRvqA==} - '@vitest/snapshot@3.2.4': - resolution: {integrity: sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==} + '@vitest/snapshot@4.0.1': + resolution: {integrity: sha512-CvfsEWutEIN/Z9ScXYup7YwlPeK9JICrV7FN9p3pVytsyh+aCHAH0PUi//YlTiQ7T8qYxJYpUrAwZL9XqmZ5ZA==} - '@vitest/spy@3.2.4': - resolution: {integrity: sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==} + '@vitest/spy@4.0.1': + resolution: {integrity: sha512-Hj0/TBQ2EN72wDpfKiUf63mRCkE0ZiSGXGeDDvW9T3LBKVVApItd0GyQLDBIe03kWbyK9gOTEbJVVWthcLFzCg==} - '@vitest/utils@3.2.4': - resolution: {integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==} + '@vitest/utils@4.0.1': + resolution: {integrity: sha512-uRrACgpIz5sxuT87ml7xhh7EdKtW8k0N9oSFVBPl8gHB/JfLObLe9dXO6ZrsNN55FzciGIRqIEILgTQvg1eNHw==} '@vue/compiler-core@3.5.12': resolution: {integrity: sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw==} @@ -1587,10 +1587,6 @@ packages: asap@2.0.6: resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} - assertion-error@2.0.1: - resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} - engines: {node: '>=12'} - auto-bind@4.0.0: resolution: {integrity: sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==} engines: {node: '>=8'} @@ -1691,9 +1687,9 @@ packages: ccount@2.0.1: resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} - chai@5.2.0: - resolution: {integrity: sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw==} - engines: {node: '>=12'} + chai@6.2.0: + resolution: {integrity: sha512-aUTnJc/JipRzJrNADXVvpVqi6CO0dn3nx4EVPxijri+fj3LUUDyZQOgVeW54Ob3Y1Xh9Iz8f+CgaCl8v0mn9bA==} + engines: {node: '>=18'} chalk@4.1.2: resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} @@ -1718,10 +1714,6 @@ packages: chardet@2.1.0: resolution: {integrity: sha512-bNFETTG/pM5ryzQ9Ad0lJOTa6HWD/YsScAR3EnCPZRPlQh77JocYktSHOUHelyhm8IARL+o4c4F1bP5KVOjiRA==} - check-error@2.1.1: - resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} - engines: {node: '>= 16'} - ci-info@4.3.0: resolution: {integrity: sha512-l+2bNRMiQgcfILUi33labAZYIWlH1kWDp+ecNo5iisRKrbm0xcRyCww71/YU0Fkw0mAFpz9bJayXPjey6vkmaQ==} engines: {node: '>=8'} @@ -1833,15 +1825,6 @@ packages: resolution: {integrity: sha512-Xks6RUDLZFdz8LIdR6q0MTH44k7FikOmnh5xkSjMig6ch45afc8sjTjRQf3P6ax8dMgcQrYO/AR2RGWURrruqw==} engines: {node: '>=18'} - debug@4.4.1: - resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - debug@4.4.3: resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} engines: {node: '>=6.0'} @@ -1862,10 +1845,6 @@ packages: babel-plugin-macros: optional: true - deep-eql@5.0.2: - resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} - engines: {node: '>=6'} - deep-is@0.1.4: resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} @@ -2193,8 +2172,8 @@ packages: resolution: {integrity: sha512-+I6B/IkJc1o/2tiURyz/ivu/O0nKNEArIUB5O7zBrlDVJr22SCLH3xTeEry428LvFhRzIA1g8izguxJ/gbNcVQ==} engines: {node: '>= 0.8.0'} - expect-type@1.2.1: - resolution: {integrity: sha512-/kP8CAwxzLVEeFrMm4kMmy4CCDlpipyA7MYLVrdJIkV0fYF0UaigQHRsxHiuY/GEea+bh4KSv3TIlgr+2UL6bw==} + expect-type@1.2.2: + resolution: {integrity: sha512-JhFGDVJ7tmDJItKhYgJCGLOWjuK9vPxiXoUFLwLDc99NlmklilbiQJwoctZtt13+xMw91MCk/REan6MWHqDjyA==} engines: {node: '>=12.0.0'} expect@30.2.0: @@ -2242,14 +2221,6 @@ packages: fbjs@3.0.5: resolution: {integrity: sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==} - fdir@6.4.6: - resolution: {integrity: sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==} - peerDependencies: - picomatch: ^3 || ^4 - peerDependenciesMeta: - picomatch: - optional: true - fdir@6.5.0: resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} engines: {node: '>=12.0.0'} @@ -2703,9 +2674,6 @@ packages: js-tokens@4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - js-tokens@9.0.1: - resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==} - js-yaml@3.14.1: resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} hasBin: true @@ -2822,9 +2790,6 @@ packages: resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} hasBin: true - loupe@3.1.4: - resolution: {integrity: sha512-wJzkKwJrheKtknCOKNEtDK4iqg/MxmZheEMtSTYvnzRdEYaZzmgH976nenp8WdJRdx5Vc1X/9MO0Oszl6ezeXg==} - lower-case-first@2.0.2: resolution: {integrity: sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg==} @@ -2837,9 +2802,6 @@ packages: lru-cache@5.1.1: resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} - magic-string@0.30.17: - resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} - magic-string@0.30.19: resolution: {integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==} @@ -3217,10 +3179,6 @@ packages: pathe@2.0.3: resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} - pathval@2.0.0: - resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==} - engines: {node: '>= 14.16'} - picocolors@1.1.1: resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} @@ -3522,9 +3480,6 @@ packages: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} - strip-literal@3.0.0: - resolution: {integrity: sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==} - supports-color@7.2.0: resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} engines: {node: '>=8'} @@ -3560,24 +3515,12 @@ packages: tinyexec@1.0.1: resolution: {integrity: sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==} - tinyglobby@0.2.14: - resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==} - engines: {node: '>=12.0.0'} - tinyglobby@0.2.15: resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} engines: {node: '>=12.0.0'} - tinypool@1.1.1: - resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==} - engines: {node: ^18.0.0 || >=20.0.0} - - tinyrainbow@2.0.0: - resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==} - engines: {node: '>=14.0.0'} - - tinyspy@4.0.3: - resolution: {integrity: sha512-t2T/WLB2WRgZ9EpE4jgPJ9w+i66UZfDc8wHh0xrwiRNN+UwH98GIJkTeZqX9rg0i0ptwzqW+uYeIF0T4F8LR7A==} + tinyrainbow@3.0.3: + resolution: {integrity: sha512-PSkbLUoxOFRzJYjjxHJt9xro7D+iilgMX/C9lawzVuYiIdcihh9DXmVibBe8lmcFrRi/VzlPjBxbN7rH24q8/Q==} engines: {node: '>=14.0.0'} title-case@3.0.3: @@ -3755,11 +3698,6 @@ packages: resolution: {integrity: sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==} engines: {node: '>=12'} - 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@6.3.5: resolution: {integrity: sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==} engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} @@ -3800,16 +3738,18 @@ packages: yaml: optional: true - vitest@3.2.4: - resolution: {integrity: sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==} - engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} + vitest@4.0.1: + resolution: {integrity: sha512-4rwTfUNF0MExMZBiNirkzZpeyUZGOs3JD76N2qHNP9i6w6/bff7MRv2I9yFJKd1ICxzn2igpra+E4t9o2EfQhw==} + engines: {node: ^20.0.0 || ^22.0.0 || >=24.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.2.4 - '@vitest/ui': 3.2.4 + '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0 + '@vitest/browser-playwright': 4.0.1 + '@vitest/browser-preview': 4.0.1 + '@vitest/browser-webdriverio': 4.0.1 + '@vitest/ui': 4.0.1 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -3819,7 +3759,11 @@ packages: optional: true '@types/node': optional: true - '@vitest/browser': + '@vitest/browser-playwright': + optional: true + '@vitest/browser-preview': + optional: true + '@vitest/browser-webdriverio': optional: true '@vitest/ui': optional: true @@ -3952,7 +3896,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - '@antfu/eslint-config@6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.1(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -3961,7 +3905,7 @@ snapshots: '@stylistic/eslint-plugin': 5.4.0(eslint@9.38.0(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/parser': 8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.3.20(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/eslint-plugin': 1.3.20(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.1(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.2.0 cac: 6.7.14 eslint: 9.38.0(jiti@2.4.0) @@ -5172,8 +5116,6 @@ snapshots: '@jridgewell/resolve-uri@3.1.2': {} - '@jridgewell/sourcemap-codec@1.5.0': {} - '@jridgewell/sourcemap-codec@1.5.5': {} '@jridgewell/trace-mapping@0.3.25': @@ -5284,6 +5226,8 @@ snapshots: dependencies: '@sinonjs/commons': 3.0.1 + '@standard-schema/spec@1.0.0': {} + '@stylistic/eslint-plugin@5.4.0(eslint@9.38.0(jiti@2.4.0))': dependencies: '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) @@ -5574,58 +5518,55 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.20(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.3.20(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.1(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.46.1 '@typescript-eslint/utils': 8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) eslint: 9.38.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) + vitest: 4.0.1(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color - '@vitest/expect@3.2.4': + '@vitest/expect@4.0.1': dependencies: + '@standard-schema/spec': 1.0.0 '@types/chai': 5.2.2 - '@vitest/spy': 3.2.4 - '@vitest/utils': 3.2.4 - chai: 5.2.0 - tinyrainbow: 2.0.0 + '@vitest/spy': 4.0.1 + '@vitest/utils': 4.0.1 + chai: 6.2.0 + tinyrainbow: 3.0.3 - '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@4.0.1(vite@6.3.5(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': dependencies: - '@vitest/spy': 3.2.4 + '@vitest/spy': 4.0.1 estree-walker: 3.0.3 - magic-string: 0.30.17 + magic-string: 0.30.19 optionalDependencies: vite: 6.3.5(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) - '@vitest/pretty-format@3.2.4': + '@vitest/pretty-format@4.0.1': dependencies: - tinyrainbow: 2.0.0 + tinyrainbow: 3.0.3 - '@vitest/runner@3.2.4': + '@vitest/runner@4.0.1': dependencies: - '@vitest/utils': 3.2.4 + '@vitest/utils': 4.0.1 pathe: 2.0.3 - strip-literal: 3.0.0 - '@vitest/snapshot@3.2.4': + '@vitest/snapshot@4.0.1': dependencies: - '@vitest/pretty-format': 3.2.4 - magic-string: 0.30.17 + '@vitest/pretty-format': 4.0.1 + magic-string: 0.30.19 pathe: 2.0.3 - '@vitest/spy@3.2.4': - dependencies: - tinyspy: 4.0.3 + '@vitest/spy@4.0.1': {} - '@vitest/utils@3.2.4': + '@vitest/utils@4.0.1': dependencies: - '@vitest/pretty-format': 3.2.4 - loupe: 3.1.4 - tinyrainbow: 2.0.0 + '@vitest/pretty-format': 4.0.1 + tinyrainbow: 3.0.3 '@vue/compiler-core@3.5.12': dependencies: @@ -5727,8 +5668,6 @@ snapshots: asap@2.0.6: {} - assertion-error@2.0.1: {} - auto-bind@4.0.0: {} babel-jest@30.2.0(@babel/core@7.27.4): @@ -5849,13 +5788,7 @@ snapshots: ccount@2.0.1: {} - chai@5.2.0: - dependencies: - assertion-error: 2.0.1 - check-error: 2.1.1 - deep-eql: 5.0.2 - loupe: 3.1.4 - pathval: 2.0.0 + chai@6.2.0: {} chalk@4.1.2: dependencies: @@ -5898,8 +5831,6 @@ snapshots: chardet@2.1.0: {} - check-error@2.1.1: {} - ci-info@4.3.0: {} cjs-module-lexer@2.1.0: {} @@ -5999,10 +5930,6 @@ snapshots: debounce@2.2.0: {} - debug@4.4.1: - dependencies: - ms: 2.1.3 - debug@4.4.3: dependencies: ms: 2.1.3 @@ -6013,8 +5940,6 @@ snapshots: dedent@1.6.0: {} - deep-eql@5.0.2: {} - deep-is@0.1.4: {} deepmerge@4.3.1: {} @@ -6413,7 +6338,7 @@ snapshots: exit-x@0.2.2: {} - expect-type@1.2.1: {} + expect-type@1.2.2: {} expect@30.2.0: dependencies: @@ -6474,10 +6399,6 @@ snapshots: transitivePeerDependencies: - encoding - fdir@6.4.6(picomatch@4.0.2): - optionalDependencies: - picomatch: 4.0.2 - fdir@6.5.0(picomatch@4.0.3): optionalDependencies: picomatch: 4.0.3 @@ -7090,8 +7011,6 @@ snapshots: js-tokens@4.0.0: {} - js-tokens@9.0.1: {} - js-yaml@3.14.1: dependencies: argparse: 1.0.10 @@ -7198,8 +7117,6 @@ snapshots: dependencies: js-tokens: 4.0.0 - loupe@3.1.4: {} - lower-case-first@2.0.2: dependencies: tslib: 2.6.3 @@ -7214,10 +7131,6 @@ snapshots: dependencies: yallist: 3.1.1 - magic-string@0.30.17: - dependencies: - '@jridgewell/sourcemap-codec': 1.5.0 - magic-string@0.30.19: dependencies: '@jridgewell/sourcemap-codec': 1.5.5 @@ -7753,8 +7666,6 @@ snapshots: pathe@2.0.3: {} - pathval@2.0.0: {} - picocolors@1.1.1: {} picomatch@2.3.1: {} @@ -8041,10 +7952,6 @@ snapshots: strip-json-comments@3.1.1: {} - strip-literal@3.0.0: - dependencies: - js-tokens: 9.0.1 - supports-color@7.2.0: dependencies: has-flag: 4.0.0 @@ -8077,21 +7984,12 @@ snapshots: tinyexec@1.0.1: {} - tinyglobby@0.2.14: - dependencies: - fdir: 6.4.6(picomatch@4.0.2) - picomatch: 4.0.2 - tinyglobby@0.2.15: dependencies: fdir: 6.5.0(picomatch@4.0.3) picomatch: 4.0.3 - tinypool@1.1.1: {} - - tinyrainbow@2.0.0: {} - - tinyspy@4.0.3: {} + tinyrainbow@3.0.3: {} title-case@3.0.3: dependencies: @@ -8254,65 +8152,41 @@ snapshots: value-or-promise@1.0.12: {} - vite-node@3.2.4(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1): - dependencies: - cac: 6.7.14 - debug: 4.4.3 - es-module-lexer: 1.7.0 - pathe: 2.0.3 - vite: 6.3.5(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) - transitivePeerDependencies: - - '@types/node' - - jiti - - less - - lightningcss - - sass - - sass-embedded - - stylus - - sugarss - - supports-color - - terser - - tsx - - yaml - vite@6.3.5(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1): dependencies: esbuild: 0.25.5 - fdir: 6.4.6(picomatch@4.0.2) - picomatch: 4.0.2 + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 postcss: 8.5.6 rollup: 4.43.0 - tinyglobby: 0.2.14 + tinyglobby: 0.2.15 optionalDependencies: '@types/node': 22.18.12 fsevents: 2.3.3 jiti: 2.4.0 yaml: 2.8.1 - vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1): + vitest@4.0.1(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1): dependencies: - '@types/chai': 5.2.2 - '@vitest/expect': 3.2.4 - '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) - '@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.1 - expect-type: 1.2.1 - magic-string: 0.30.17 + '@vitest/expect': 4.0.1 + '@vitest/mocker': 4.0.1(vite@6.3.5(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/pretty-format': 4.0.1 + '@vitest/runner': 4.0.1 + '@vitest/snapshot': 4.0.1 + '@vitest/spy': 4.0.1 + '@vitest/utils': 4.0.1 + debug: 4.4.3 + es-module-lexer: 1.7.0 + expect-type: 1.2.2 + magic-string: 0.30.19 pathe: 2.0.3 - picomatch: 4.0.2 + picomatch: 4.0.3 std-env: 3.9.0 tinybench: 2.9.0 tinyexec: 0.3.2 - tinyglobby: 0.2.14 - tinypool: 1.1.1 - tinyrainbow: 2.0.0 + tinyglobby: 0.2.15 + tinyrainbow: 3.0.3 vite: 6.3.5(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) - vite-node: 3.2.4(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) why-is-node-running: 2.3.0 optionalDependencies: '@types/debug': 4.1.12 From 5e93f14b09717d0d5bda18d717c808d7c69af928 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 23 Oct 2025 18:16:02 +0000 Subject: [PATCH 086/133] chore(deps): update dependency vitest to v4.0.2 (#1273) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 580 +++++++++++++++++++++++++++---------------------- 1 file changed, 317 insertions(+), 263 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 92fa4215..eb789ab7 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.1(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) + version: 6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.2(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.1 version: 6.0.1(@types/node@22.18.12)(graphql@16.11.0)(typescript@5.9.3) @@ -71,7 +71,7 @@ importers: version: 1.1.0(typescript@5.9.3) vitest: specifier: ^4.0.0 - version: 4.0.1(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) + version: 4.0.2(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.1 version: 1.7.1 @@ -199,6 +199,10 @@ packages: resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} 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.27.1': resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==} engines: {node: '>=6.9.0'} @@ -212,6 +216,11 @@ packages: engines: {node: '>=6.0.0'} hasBin: true + '@babel/parser@7.28.5': + resolution: {integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==} + engines: {node: '>=6.0.0'} + hasBin: true + '@babel/plugin-syntax-async-generators@7.8.4': resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: @@ -325,6 +334,10 @@ packages: resolution: {integrity: sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==} engines: {node: '>=6.9.0'} + '@babel/types@7.28.5': + resolution: {integrity: sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==} + engines: {node: '>=6.9.0'} + '@bcoe/v8-coverage@0.2.3': resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} @@ -351,152 +364,158 @@ packages: resolution: {integrity: sha512-smMc5pDht/UVsCD3hhw/a/e/p8m0RdRYiluXToVfd+d4yaQQh7nn9bACjkk6nXJvat7EWPAxuFkMEFfrxeGa3Q==} engines: {node: '>=20.11.0'} - '@esbuild/aix-ppc64@0.25.5': - resolution: {integrity: sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA==} + '@esbuild/aix-ppc64@0.25.11': + resolution: {integrity: sha512-Xt1dOL13m8u0WE8iplx9Ibbm+hFAO0GsU2P34UNoDGvZYkY8ifSiy6Zuc1lYxfG7svWE2fzqCUmFp5HCn51gJg==} engines: {node: '>=18'} cpu: [ppc64] os: [aix] - '@esbuild/android-arm64@0.25.5': - resolution: {integrity: sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg==} + '@esbuild/android-arm64@0.25.11': + resolution: {integrity: sha512-9slpyFBc4FPPz48+f6jyiXOx/Y4v34TUeDDXJpZqAWQn/08lKGeD8aDp9TMn9jDz2CiEuHwfhRmGBvpnd/PWIQ==} engines: {node: '>=18'} cpu: [arm64] os: [android] - '@esbuild/android-arm@0.25.5': - resolution: {integrity: sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA==} + '@esbuild/android-arm@0.25.11': + resolution: {integrity: sha512-uoa7dU+Dt3HYsethkJ1k6Z9YdcHjTrSb5NUy66ZfZaSV8hEYGD5ZHbEMXnqLFlbBflLsl89Zke7CAdDJ4JI+Gg==} engines: {node: '>=18'} cpu: [arm] os: [android] - '@esbuild/android-x64@0.25.5': - resolution: {integrity: sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw==} + '@esbuild/android-x64@0.25.11': + resolution: {integrity: sha512-Sgiab4xBjPU1QoPEIqS3Xx+R2lezu0LKIEcYe6pftr56PqPygbB7+szVnzoShbx64MUupqoE0KyRlN7gezbl8g==} engines: {node: '>=18'} cpu: [x64] os: [android] - '@esbuild/darwin-arm64@0.25.5': - resolution: {integrity: sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ==} + '@esbuild/darwin-arm64@0.25.11': + resolution: {integrity: sha512-VekY0PBCukppoQrycFxUqkCojnTQhdec0vevUL/EDOCnXd9LKWqD/bHwMPzigIJXPhC59Vd1WFIL57SKs2mg4w==} engines: {node: '>=18'} cpu: [arm64] os: [darwin] - '@esbuild/darwin-x64@0.25.5': - resolution: {integrity: sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ==} + '@esbuild/darwin-x64@0.25.11': + resolution: {integrity: sha512-+hfp3yfBalNEpTGp9loYgbknjR695HkqtY3d3/JjSRUyPg/xd6q+mQqIb5qdywnDxRZykIHs3axEqU6l1+oWEQ==} engines: {node: '>=18'} cpu: [x64] os: [darwin] - '@esbuild/freebsd-arm64@0.25.5': - resolution: {integrity: sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw==} + '@esbuild/freebsd-arm64@0.25.11': + resolution: {integrity: sha512-CmKjrnayyTJF2eVuO//uSjl/K3KsMIeYeyN7FyDBjsR3lnSJHaXlVoAK8DZa7lXWChbuOk7NjAc7ygAwrnPBhA==} engines: {node: '>=18'} cpu: [arm64] os: [freebsd] - '@esbuild/freebsd-x64@0.25.5': - resolution: {integrity: sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw==} + '@esbuild/freebsd-x64@0.25.11': + resolution: {integrity: sha512-Dyq+5oscTJvMaYPvW3x3FLpi2+gSZTCE/1ffdwuM6G1ARang/mb3jvjxs0mw6n3Lsw84ocfo9CrNMqc5lTfGOw==} engines: {node: '>=18'} cpu: [x64] os: [freebsd] - '@esbuild/linux-arm64@0.25.5': - resolution: {integrity: sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg==} + '@esbuild/linux-arm64@0.25.11': + resolution: {integrity: sha512-Qr8AzcplUhGvdyUF08A1kHU3Vr2O88xxP0Tm8GcdVOUm25XYcMPp2YqSVHbLuXzYQMf9Bh/iKx7YPqECs6ffLA==} engines: {node: '>=18'} cpu: [arm64] os: [linux] - '@esbuild/linux-arm@0.25.5': - resolution: {integrity: sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw==} + '@esbuild/linux-arm@0.25.11': + resolution: {integrity: sha512-TBMv6B4kCfrGJ8cUPo7vd6NECZH/8hPpBHHlYI3qzoYFvWu2AdTvZNuU/7hsbKWqu/COU7NIK12dHAAqBLLXgw==} engines: {node: '>=18'} cpu: [arm] os: [linux] - '@esbuild/linux-ia32@0.25.5': - resolution: {integrity: sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA==} + '@esbuild/linux-ia32@0.25.11': + resolution: {integrity: sha512-TmnJg8BMGPehs5JKrCLqyWTVAvielc615jbkOirATQvWWB1NMXY77oLMzsUjRLa0+ngecEmDGqt5jiDC6bfvOw==} engines: {node: '>=18'} cpu: [ia32] os: [linux] - '@esbuild/linux-loong64@0.25.5': - resolution: {integrity: sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg==} + '@esbuild/linux-loong64@0.25.11': + resolution: {integrity: sha512-DIGXL2+gvDaXlaq8xruNXUJdT5tF+SBbJQKbWy/0J7OhU8gOHOzKmGIlfTTl6nHaCOoipxQbuJi7O++ldrxgMw==} engines: {node: '>=18'} cpu: [loong64] os: [linux] - '@esbuild/linux-mips64el@0.25.5': - resolution: {integrity: sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg==} + '@esbuild/linux-mips64el@0.25.11': + resolution: {integrity: sha512-Osx1nALUJu4pU43o9OyjSCXokFkFbyzjXb6VhGIJZQ5JZi8ylCQ9/LFagolPsHtgw6himDSyb5ETSfmp4rpiKQ==} engines: {node: '>=18'} cpu: [mips64el] os: [linux] - '@esbuild/linux-ppc64@0.25.5': - resolution: {integrity: sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ==} + '@esbuild/linux-ppc64@0.25.11': + resolution: {integrity: sha512-nbLFgsQQEsBa8XSgSTSlrnBSrpoWh7ioFDUmwo158gIm5NNP+17IYmNWzaIzWmgCxq56vfr34xGkOcZ7jX6CPw==} engines: {node: '>=18'} cpu: [ppc64] os: [linux] - '@esbuild/linux-riscv64@0.25.5': - resolution: {integrity: sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA==} + '@esbuild/linux-riscv64@0.25.11': + resolution: {integrity: sha512-HfyAmqZi9uBAbgKYP1yGuI7tSREXwIb438q0nqvlpxAOs3XnZ8RsisRfmVsgV486NdjD7Mw2UrFSw51lzUk1ww==} engines: {node: '>=18'} cpu: [riscv64] os: [linux] - '@esbuild/linux-s390x@0.25.5': - resolution: {integrity: sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ==} + '@esbuild/linux-s390x@0.25.11': + resolution: {integrity: sha512-HjLqVgSSYnVXRisyfmzsH6mXqyvj0SA7pG5g+9W7ESgwA70AXYNpfKBqh1KbTxmQVaYxpzA/SvlB9oclGPbApw==} engines: {node: '>=18'} cpu: [s390x] os: [linux] - '@esbuild/linux-x64@0.25.5': - resolution: {integrity: sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw==} + '@esbuild/linux-x64@0.25.11': + resolution: {integrity: sha512-HSFAT4+WYjIhrHxKBwGmOOSpphjYkcswF449j6EjsjbinTZbp8PJtjsVK1XFJStdzXdy/jaddAep2FGY+wyFAQ==} engines: {node: '>=18'} cpu: [x64] os: [linux] - '@esbuild/netbsd-arm64@0.25.5': - resolution: {integrity: sha512-pwHtMP9viAy1oHPvgxtOv+OkduK5ugofNTVDilIzBLpoWAM16r7b/mxBvfpuQDpRQFMfuVr5aLcn4yveGvBZvw==} + '@esbuild/netbsd-arm64@0.25.11': + resolution: {integrity: sha512-hr9Oxj1Fa4r04dNpWr3P8QKVVsjQhqrMSUzZzf+LZcYjZNqhA3IAfPQdEh1FLVUJSiu6sgAwp3OmwBfbFgG2Xg==} engines: {node: '>=18'} cpu: [arm64] os: [netbsd] - '@esbuild/netbsd-x64@0.25.5': - resolution: {integrity: sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ==} + '@esbuild/netbsd-x64@0.25.11': + resolution: {integrity: sha512-u7tKA+qbzBydyj0vgpu+5h5AeudxOAGncb8N6C9Kh1N4n7wU1Xw1JDApsRjpShRpXRQlJLb9wY28ELpwdPcZ7A==} engines: {node: '>=18'} cpu: [x64] os: [netbsd] - '@esbuild/openbsd-arm64@0.25.5': - resolution: {integrity: sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw==} + '@esbuild/openbsd-arm64@0.25.11': + resolution: {integrity: sha512-Qq6YHhayieor3DxFOoYM1q0q1uMFYb7cSpLD2qzDSvK1NAvqFi8Xgivv0cFC6J+hWVw2teCYltyy9/m/14ryHg==} engines: {node: '>=18'} cpu: [arm64] os: [openbsd] - '@esbuild/openbsd-x64@0.25.5': - resolution: {integrity: sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg==} + '@esbuild/openbsd-x64@0.25.11': + resolution: {integrity: sha512-CN+7c++kkbrckTOz5hrehxWN7uIhFFlmS/hqziSFVWpAzpWrQoAG4chH+nN3Be+Kzv/uuo7zhX716x3Sn2Jduw==} engines: {node: '>=18'} cpu: [x64] os: [openbsd] - '@esbuild/sunos-x64@0.25.5': - resolution: {integrity: sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA==} + '@esbuild/openharmony-arm64@0.25.11': + resolution: {integrity: sha512-rOREuNIQgaiR+9QuNkbkxubbp8MSO9rONmwP5nKncnWJ9v5jQ4JxFnLu4zDSRPf3x4u+2VN4pM4RdyIzDty/wQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] + + '@esbuild/sunos-x64@0.25.11': + resolution: {integrity: sha512-nq2xdYaWxyg9DcIyXkZhcYulC6pQ2FuCgem3LI92IwMgIZ69KHeY8T4Y88pcwoLIjbed8n36CyKoYRDygNSGhA==} engines: {node: '>=18'} cpu: [x64] os: [sunos] - '@esbuild/win32-arm64@0.25.5': - resolution: {integrity: sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw==} + '@esbuild/win32-arm64@0.25.11': + resolution: {integrity: sha512-3XxECOWJq1qMZ3MN8srCJ/QfoLpL+VaxD/WfNRm1O3B4+AZ/BnLVgFbUV3eiRYDMXetciH16dwPbbHqwe1uU0Q==} engines: {node: '>=18'} cpu: [arm64] os: [win32] - '@esbuild/win32-ia32@0.25.5': - resolution: {integrity: sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ==} + '@esbuild/win32-ia32@0.25.11': + resolution: {integrity: sha512-3ukss6gb9XZ8TlRyJlgLn17ecsK4NSQTmdIXRASVsiS2sQ6zPPZklNJT5GR5tE/MUarymmy8kCEf5xPCNCqVOA==} engines: {node: '>=18'} cpu: [ia32] os: [win32] - '@esbuild/win32-x64@0.25.5': - resolution: {integrity: sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g==} + '@esbuild/win32-x64@0.25.11': + resolution: {integrity: sha512-D7Hpz6A2L4hzsRpPaCYkQnGOotdUpDzSGRIv9I+1ITdHROSFUWW95ZPZWQmGka1Fg7W3zFJowyn9WGwMJ0+KPA==} engines: {node: '>=18'} cpu: [x64] os: [win32] @@ -1079,103 +1098,113 @@ packages: '@repeaterjs/repeater@3.0.6': resolution: {integrity: sha512-Javneu5lsuhwNCryN+pXH93VPQ8g0dBX7wItHFgYiwQmzE1sVdg5tWHiOgHywzL2W21XQopa7IwIEnNbmeUJYA==} - '@rollup/rollup-android-arm-eabi@4.43.0': - resolution: {integrity: sha512-Krjy9awJl6rKbruhQDgivNbD1WuLb8xAclM4IR4cN5pHGAs2oIMMQJEiC3IC/9TZJ+QZkmZhlMO/6MBGxPidpw==} + '@rollup/rollup-android-arm-eabi@4.52.5': + resolution: {integrity: sha512-8c1vW4ocv3UOMp9K+gToY5zL2XiiVw3k7f1ksf4yO1FlDFQ1C2u72iACFnSOceJFsWskc2WZNqeRhFRPzv+wtQ==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.43.0': - resolution: {integrity: sha512-ss4YJwRt5I63454Rpj+mXCXicakdFmKnUNxr1dLK+5rv5FJgAxnN7s31a5VchRYxCFWdmnDWKd0wbAdTr0J5EA==} + '@rollup/rollup-android-arm64@4.52.5': + resolution: {integrity: sha512-mQGfsIEFcu21mvqkEKKu2dYmtuSZOBMmAl5CFlPGLY94Vlcm+zWApK7F/eocsNzp8tKmbeBP8yXyAbx0XHsFNA==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.43.0': - resolution: {integrity: sha512-eKoL8ykZ7zz8MjgBenEF2OoTNFAPFz1/lyJ5UmmFSz5jW+7XbH1+MAgCVHy72aG59rbuQLcJeiMrP8qP5d/N0A==} + '@rollup/rollup-darwin-arm64@4.52.5': + resolution: {integrity: sha512-takF3CR71mCAGA+v794QUZ0b6ZSrgJkArC+gUiG6LB6TQty9T0Mqh3m2ImRBOxS2IeYBo4lKWIieSvnEk2OQWA==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.43.0': - resolution: {integrity: sha512-SYwXJgaBYW33Wi/q4ubN+ldWC4DzQY62S4Ll2dgfr/dbPoF50dlQwEaEHSKrQdSjC6oIe1WgzosoaNoHCdNuMg==} + '@rollup/rollup-darwin-x64@4.52.5': + resolution: {integrity: sha512-W901Pla8Ya95WpxDn//VF9K9u2JbocwV/v75TE0YIHNTbhqUTv9w4VuQ9MaWlNOkkEfFwkdNhXgcLqPSmHy0fA==} cpu: [x64] os: [darwin] - '@rollup/rollup-freebsd-arm64@4.43.0': - resolution: {integrity: sha512-SV+U5sSo0yujrjzBF7/YidieK2iF6E7MdF6EbYxNz94lA+R0wKl3SiixGyG/9Klab6uNBIqsN7j4Y/Fya7wAjQ==} + '@rollup/rollup-freebsd-arm64@4.52.5': + resolution: {integrity: sha512-QofO7i7JycsYOWxe0GFqhLmF6l1TqBswJMvICnRUjqCx8b47MTo46W8AoeQwiokAx3zVryVnxtBMcGcnX12LvA==} cpu: [arm64] os: [freebsd] - '@rollup/rollup-freebsd-x64@4.43.0': - resolution: {integrity: sha512-J7uCsiV13L/VOeHJBo5SjasKiGxJ0g+nQTrBkAsmQBIdil3KhPnSE9GnRon4ejX1XDdsmK/l30IYLiAaQEO0Cg==} + '@rollup/rollup-freebsd-x64@4.52.5': + resolution: {integrity: sha512-jr21b/99ew8ujZubPo9skbrItHEIE50WdV86cdSoRkKtmWa+DDr6fu2c/xyRT0F/WazZpam6kk7IHBerSL7LDQ==} cpu: [x64] os: [freebsd] - '@rollup/rollup-linux-arm-gnueabihf@4.43.0': - resolution: {integrity: sha512-gTJ/JnnjCMc15uwB10TTATBEhK9meBIY+gXP4s0sHD1zHOaIh4Dmy1X9wup18IiY9tTNk5gJc4yx9ctj/fjrIw==} + '@rollup/rollup-linux-arm-gnueabihf@4.52.5': + resolution: {integrity: sha512-PsNAbcyv9CcecAUagQefwX8fQn9LQ4nZkpDboBOttmyffnInRy8R8dSg6hxxl2Re5QhHBf6FYIDhIj5v982ATQ==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.43.0': - resolution: {integrity: sha512-ZJ3gZynL1LDSIvRfz0qXtTNs56n5DI2Mq+WACWZ7yGHFUEirHBRt7fyIk0NsCKhmRhn7WAcjgSkSVVxKlPNFFw==} + '@rollup/rollup-linux-arm-musleabihf@4.52.5': + resolution: {integrity: sha512-Fw4tysRutyQc/wwkmcyoqFtJhh0u31K+Q6jYjeicsGJJ7bbEq8LwPWV/w0cnzOqR2m694/Af6hpFayLJZkG2VQ==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.43.0': - resolution: {integrity: sha512-8FnkipasmOOSSlfucGYEu58U8cxEdhziKjPD2FIa0ONVMxvl/hmONtX/7y4vGjdUhjcTHlKlDhw3H9t98fPvyA==} + '@rollup/rollup-linux-arm64-gnu@4.52.5': + resolution: {integrity: sha512-a+3wVnAYdQClOTlyapKmyI6BLPAFYs0JM8HRpgYZQO02rMR09ZcV9LbQB+NL6sljzG38869YqThrRnfPMCDtZg==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.43.0': - resolution: {integrity: sha512-KPPyAdlcIZ6S9C3S2cndXDkV0Bb1OSMsX0Eelr2Bay4EsF9yi9u9uzc9RniK3mcUGCLhWY9oLr6er80P5DE6XA==} + '@rollup/rollup-linux-arm64-musl@4.52.5': + resolution: {integrity: sha512-AvttBOMwO9Pcuuf7m9PkC1PUIKsfaAJ4AYhy944qeTJgQOqJYJ9oVl2nYgY7Rk0mkbsuOpCAYSs6wLYB2Xiw0Q==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-loongarch64-gnu@4.43.0': - resolution: {integrity: sha512-HPGDIH0/ZzAZjvtlXj6g+KDQ9ZMHfSP553za7o2Odegb/BEfwJcR0Sw0RLNpQ9nC6Gy8s+3mSS9xjZ0n3rhcYg==} + '@rollup/rollup-linux-loong64-gnu@4.52.5': + resolution: {integrity: sha512-DkDk8pmXQV2wVrF6oq5tONK6UHLz/XcEVow4JTTerdeV1uqPeHxwcg7aFsfnSm9L+OO8WJsWotKM2JJPMWrQtA==} cpu: [loong64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.43.0': - resolution: {integrity: sha512-gEmwbOws4U4GLAJDhhtSPWPXUzDfMRedT3hFMyRAvM9Mrnj+dJIFIeL7otsv2WF3D7GrV0GIewW0y28dOYWkmw==} + '@rollup/rollup-linux-ppc64-gnu@4.52.5': + resolution: {integrity: sha512-W/b9ZN/U9+hPQVvlGwjzi+Wy4xdoH2I8EjaCkMvzpI7wJUs8sWJ03Rq96jRnHkSrcHTpQe8h5Tg3ZzUPGauvAw==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.43.0': - resolution: {integrity: sha512-XXKvo2e+wFtXZF/9xoWohHg+MuRnvO29TI5Hqe9xwN5uN8NKUYy7tXUG3EZAlfchufNCTHNGjEx7uN78KsBo0g==} + '@rollup/rollup-linux-riscv64-gnu@4.52.5': + resolution: {integrity: sha512-sjQLr9BW7R/ZiXnQiWPkErNfLMkkWIoCz7YMn27HldKsADEKa5WYdobaa1hmN6slu9oWQbB6/jFpJ+P2IkVrmw==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-riscv64-musl@4.43.0': - resolution: {integrity: sha512-ruf3hPWhjw6uDFsOAzmbNIvlXFXlBQ4nk57Sec8E8rUxs/AI4HD6xmiiasOOx/3QxS2f5eQMKTAwk7KHwpzr/Q==} + '@rollup/rollup-linux-riscv64-musl@4.52.5': + resolution: {integrity: sha512-hq3jU/kGyjXWTvAh2awn8oHroCbrPm8JqM7RUpKjalIRWWXE01CQOf/tUNWNHjmbMHg/hmNCwc/Pz3k1T/j/Lg==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.43.0': - resolution: {integrity: sha512-QmNIAqDiEMEvFV15rsSnjoSmO0+eJLoKRD9EAa9rrYNwO/XRCtOGM3A5A0X+wmG+XRrw9Fxdsw+LnyYiZWWcVw==} + '@rollup/rollup-linux-s390x-gnu@4.52.5': + resolution: {integrity: sha512-gn8kHOrku8D4NGHMK1Y7NA7INQTRdVOntt1OCYypZPRt6skGbddska44K8iocdpxHTMMNui5oH4elPH4QOLrFQ==} cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.43.0': - resolution: {integrity: sha512-jAHr/S0iiBtFyzjhOkAics/2SrXE092qyqEg96e90L3t9Op8OTzS6+IX0Fy5wCt2+KqeHAkti+eitV0wvblEoQ==} + '@rollup/rollup-linux-x64-gnu@4.52.5': + resolution: {integrity: sha512-hXGLYpdhiNElzN770+H2nlx+jRog8TyynpTVzdlc6bndktjKWyZyiCsuDAlpd+j+W+WNqfcyAWz9HxxIGfZm1Q==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.43.0': - resolution: {integrity: sha512-3yATWgdeXyuHtBhrLt98w+5fKurdqvs8B53LaoKD7P7H7FKOONLsBVMNl9ghPQZQuYcceV5CDyPfyfGpMWD9mQ==} + '@rollup/rollup-linux-x64-musl@4.52.5': + resolution: {integrity: sha512-arCGIcuNKjBoKAXD+y7XomR9gY6Mw7HnFBv5Rw7wQRvwYLR7gBAgV7Mb2QTyjXfTveBNFAtPt46/36vV9STLNg==} cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.43.0': - resolution: {integrity: sha512-wVzXp2qDSCOpcBCT5WRWLmpJRIzv23valvcTwMHEobkjippNf+C3ys/+wf07poPkeNix0paTNemB2XrHr2TnGw==} + '@rollup/rollup-openharmony-arm64@4.52.5': + resolution: {integrity: sha512-QoFqB6+/9Rly/RiPjaomPLmR/13cgkIGfA40LHly9zcH1S0bN2HVFYk3a1eAyHQyjs3ZJYlXvIGtcCs5tko9Cw==} + cpu: [arm64] + os: [openharmony] + + '@rollup/rollup-win32-arm64-msvc@4.52.5': + resolution: {integrity: sha512-w0cDWVR6MlTstla1cIfOGyl8+qb93FlAVutcor14Gf5Md5ap5ySfQ7R9S/NjNaMLSFdUnKGEasmVnu3lCMqB7w==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.43.0': - resolution: {integrity: sha512-fYCTEyzf8d+7diCw8b+asvWDCLMjsCEA8alvtAutqJOJp/wL5hs1rWSqJ1vkjgW0L2NB4bsYJrpKkiIPRR9dvw==} + '@rollup/rollup-win32-ia32-msvc@4.52.5': + resolution: {integrity: sha512-Aufdpzp7DpOTULJCuvzqcItSGDH73pF3ko/f+ckJhxQyHtp67rHw3HMNxoIdDMUITJESNE6a8uh4Lo4SLouOUg==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.43.0': - resolution: {integrity: sha512-SnGhLiE5rlK0ofq8kzuDkM0g7FN1s5VYY+YSMTibP7CqShxCQvqtNxTARS4xX4PFJfHjG0ZQYX9iGzI3FQh5Aw==} + '@rollup/rollup-win32-x64-gnu@4.52.5': + resolution: {integrity: sha512-UGBUGPFp1vkj6p8wCRraqNhqwX/4kNQPS57BCFc8wYh0g94iVIW33wJtQAx3G7vrjjNtRaxiMUylM0ktp/TRSQ==} + cpu: [x64] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.52.5': + resolution: {integrity: sha512-TAcgQh2sSkykPRWLrdyy2AiceMckNf5loITqXxFI5VuQjS5tSuw3WlwdN8qv8vzjLAUTvYaH/mVjSFpbkFbpTg==} cpu: [x64] os: [win32] @@ -1215,8 +1244,8 @@ packages: '@types/babel__traverse@7.20.6': resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==} - '@types/chai@5.2.2': - resolution: {integrity: sha512-8kB30R7Hwqf40JPiKhVzodJs2Qc1ZJ5zuT3uzw5Hq/dhNCl3G3l83jfpdI1e20BP348+fV7VIL/+FxaXkqBmWg==} + '@types/chai@5.2.3': + resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==} '@types/debug@4.1.12': resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} @@ -1224,9 +1253,6 @@ packages: '@types/deep-eql@4.0.2': resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==} - '@types/estree@1.0.7': - resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==} - '@types/estree@1.0.8': resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} @@ -1465,11 +1491,11 @@ packages: vitest: optional: true - '@vitest/expect@4.0.1': - resolution: {integrity: sha512-KtvGLN/IWoZfg68JF2q/zbDEo+UJTWnc7suYJ8RF+ZTBeBcBz4NIOJDxO4Q3bEY9GsOYhgy5cOevcVPFh4+V7g==} + '@vitest/expect@4.0.2': + resolution: {integrity: sha512-izQY+ABWqL2Vyr5+LNo3m16nLLTAzLn8em6i5uxqsrWRhdgzdN5JIHrpFVGBAYRGDAbtwE+yD4Heu8gsBSWTVQ==} - '@vitest/mocker@4.0.1': - resolution: {integrity: sha512-fwmvg8YvwSAE41Hyhul7dL4UzPhG+k2VaZCcL+aHagLx4qlNQgKYTw7coF4YdjAxSBBt0b408gQFYMX1Qeqweg==} + '@vitest/mocker@4.0.2': + resolution: {integrity: sha512-oiny+oBSGU9vHMA1DPdO+t1GVidCRuA4lKSG6rbo5SrCiTCGl7bTCyTaUkwxDpUkiSxEVneeXW4LJ4fg3H56dw==} peerDependencies: msw: ^2.4.9 vite: ^6.0.0 || ^7.0.0-0 @@ -1479,20 +1505,20 @@ packages: vite: optional: true - '@vitest/pretty-format@4.0.1': - resolution: {integrity: sha512-6nq3JY/zQ91+oX1vd4fajiVNyA/HMhaF9cOw5P9cQi6ML7PRi7ilVaQ77PulF+4kvUKr9bcLm9GoAtwlVFbGzw==} + '@vitest/pretty-format@4.0.2': + resolution: {integrity: sha512-PhrSiljryCz5nUDhHla5ihXYy2iRCBob+rNqlu34dA+KZIllVR39rUGny5R3kLgDgw3r8GW1ptOo64WbieMkeQ==} - '@vitest/runner@4.0.1': - resolution: {integrity: sha512-nxUoWmw7ZX2OiSNwolJeSOOzrrR/o79wRTwP7HhiW/lDFwQHtWMj9snMhrdvccFqanvI8897E81eXjgDbrRvqA==} + '@vitest/runner@4.0.2': + resolution: {integrity: sha512-mPS5T/ZDuO6J5rsQiA76CFmlHtos7dnCvL14I1Oo8SbcjIhJd6kirFmekovfYLRygdF0gJe6SA5asCKIWKw1tw==} - '@vitest/snapshot@4.0.1': - resolution: {integrity: sha512-CvfsEWutEIN/Z9ScXYup7YwlPeK9JICrV7FN9p3pVytsyh+aCHAH0PUi//YlTiQ7T8qYxJYpUrAwZL9XqmZ5ZA==} + '@vitest/snapshot@4.0.2': + resolution: {integrity: sha512-NibujZAh+fTQlpGdP8J2pZcsPg7EPjiLUOUq9In++4p35vc9xIFMkXfQDbBSpijqZPe6i2hEKrUCbKu70/sPzw==} - '@vitest/spy@4.0.1': - resolution: {integrity: sha512-Hj0/TBQ2EN72wDpfKiUf63mRCkE0ZiSGXGeDDvW9T3LBKVVApItd0GyQLDBIe03kWbyK9gOTEbJVVWthcLFzCg==} + '@vitest/spy@4.0.2': + resolution: {integrity: sha512-KrTWRXFPYrbhD0iUXeoA8BMXl81nvemj5D8sc7NbTlRvCeUWo36JheOWtAUCafcNi0G72ycAdsvWQVSOxy/3TA==} - '@vitest/utils@4.0.1': - resolution: {integrity: sha512-uRrACgpIz5sxuT87ml7xhh7EdKtW8k0N9oSFVBPl8gHB/JfLObLe9dXO6ZrsNN55FzciGIRqIEILgTQvg1eNHw==} + '@vitest/utils@4.0.2': + resolution: {integrity: sha512-H9jFzZb/5B5Qh7ajPUWMJ8UYGxQ4EQTaNLSm3icXs/oXkzQ1jqfcWDEJ4U3LkFPZOd6QW8M2MYjz32poW+KKqg==} '@vue/compiler-core@3.5.12': resolution: {integrity: sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw==} @@ -1587,6 +1613,10 @@ packages: asap@2.0.6: resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} + assertion-error@2.0.1: + resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} + engines: {node: '>=12'} + auto-bind@4.0.0: resolution: {integrity: sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==} engines: {node: '>=8'} @@ -1931,8 +1961,8 @@ packages: es-module-lexer@1.7.0: resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} - esbuild@0.25.5: - resolution: {integrity: sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ==} + esbuild@0.25.11: + resolution: {integrity: sha512-KohQwyzrKTQmhXDW1PjCv3Tyspn9n5GcY2RTDqeORIdIJY8yKIF7sTSopFmn/wpMPW4rdPXI0UE5LJLuq3bx0Q==} engines: {node: '>=18'} hasBin: true @@ -3320,8 +3350,8 @@ packages: rfdc@1.4.1: resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} - rollup@4.43.0: - resolution: {integrity: sha512-wdN2Kd3Twh8MAEOEJZsuxuLKCsBEo4PVNLK6tQWAn10VhsVewQLzcucMgLolRlhFybGxfclbPeEYBaP6RvUFGg==} + rollup@4.52.5: + resolution: {integrity: sha512-3GuObel8h7Kqdjt0gxkEzaifHTqLVW56Y/bjN7PSQtkKr0w3V/QYSdt6QWYtd7A1xUtYQigtdUfgj1RvWVtorw==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true @@ -3430,8 +3460,8 @@ packages: stackback@0.0.2: resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} - std-env@3.9.0: - resolution: {integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==} + std-env@3.10.0: + resolution: {integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==} streamsearch@1.1.0: resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} @@ -3698,19 +3728,19 @@ packages: resolution: {integrity: sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==} engines: {node: '>=12'} - vite@6.3.5: - resolution: {integrity: sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==} - engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} + vite@7.1.12: + resolution: {integrity: sha512-ZWyE8YXEXqJrrSLvYgrRP7p62OziLW7xI5HYGWFzOvupfAlrLvURSzv/FyGyy0eidogEM3ujU+kUG1zuHgb6Ug==} + engines: {node: ^20.19.0 || >=22.12.0} hasBin: true peerDependencies: - '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 + '@types/node': ^20.19.0 || >=22.12.0 jiti: '>=1.21.0' - less: '*' + less: ^4.0.0 lightningcss: ^1.21.0 - sass: '*' - sass-embedded: '*' - stylus: '*' - sugarss: '*' + sass: ^1.70.0 + sass-embedded: ^1.70.0 + stylus: '>=0.54.8' + sugarss: ^5.0.0 terser: ^5.16.0 tsx: ^4.8.1 yaml: ^2.4.2 @@ -3738,18 +3768,18 @@ packages: yaml: optional: true - vitest@4.0.1: - resolution: {integrity: sha512-4rwTfUNF0MExMZBiNirkzZpeyUZGOs3JD76N2qHNP9i6w6/bff7MRv2I9yFJKd1ICxzn2igpra+E4t9o2EfQhw==} + vitest@4.0.2: + resolution: {integrity: sha512-SXrA2ZzOPulX479d8W13RqKSmvHb9Bfg71eW7Fbs6ZjUFcCCXyt/OzFCkNyiUE8mFlPHa4ZVUGw0ky+5ndKnrg==} engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' '@types/debug': ^4.1.12 '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0 - '@vitest/browser-playwright': 4.0.1 - '@vitest/browser-preview': 4.0.1 - '@vitest/browser-webdriverio': 4.0.1 - '@vitest/ui': 4.0.1 + '@vitest/browser-playwright': 4.0.2 + '@vitest/browser-preview': 4.0.2 + '@vitest/browser-webdriverio': 4.0.2 + '@vitest/ui': 4.0.2 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -3896,7 +3926,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - '@antfu/eslint-config@6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.1(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.2(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -3905,7 +3935,7 @@ snapshots: '@stylistic/eslint-plugin': 5.4.0(eslint@9.38.0(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/parser': 8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.3.20(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.1(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/eslint-plugin': 1.3.20(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.2(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.2.0 cac: 6.7.14 eslint: 9.38.0(jiti@2.4.0) @@ -4043,6 +4073,8 @@ snapshots: '@babel/helper-validator-identifier@7.27.1': {} + '@babel/helper-validator-identifier@7.28.5': {} + '@babel/helper-validator-option@7.27.1': {} '@babel/helpers@7.27.6': @@ -4054,6 +4086,10 @@ snapshots: dependencies: '@babel/types': 7.28.4 + '@babel/parser@7.28.5': + dependencies: + '@babel/types': 7.28.5 + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.27.4)': dependencies: '@babel/core': 7.27.4 @@ -4169,6 +4205,11 @@ snapshots: '@babel/helper-string-parser': 7.27.1 '@babel/helper-validator-identifier': 7.27.1 + '@babel/types@7.28.5': + dependencies: + '@babel/helper-string-parser': 7.27.1 + '@babel/helper-validator-identifier': 7.28.5 + '@bcoe/v8-coverage@0.2.3': {} '@clack/core@0.5.0': @@ -4214,79 +4255,82 @@ snapshots: esquery: 1.6.0 jsdoc-type-pratt-parser: 5.4.0 - '@esbuild/aix-ppc64@0.25.5': + '@esbuild/aix-ppc64@0.25.11': + optional: true + + '@esbuild/android-arm64@0.25.11': optional: true - '@esbuild/android-arm64@0.25.5': + '@esbuild/android-arm@0.25.11': optional: true - '@esbuild/android-arm@0.25.5': + '@esbuild/android-x64@0.25.11': optional: true - '@esbuild/android-x64@0.25.5': + '@esbuild/darwin-arm64@0.25.11': optional: true - '@esbuild/darwin-arm64@0.25.5': + '@esbuild/darwin-x64@0.25.11': optional: true - '@esbuild/darwin-x64@0.25.5': + '@esbuild/freebsd-arm64@0.25.11': optional: true - '@esbuild/freebsd-arm64@0.25.5': + '@esbuild/freebsd-x64@0.25.11': optional: true - '@esbuild/freebsd-x64@0.25.5': + '@esbuild/linux-arm64@0.25.11': optional: true - '@esbuild/linux-arm64@0.25.5': + '@esbuild/linux-arm@0.25.11': optional: true - '@esbuild/linux-arm@0.25.5': + '@esbuild/linux-ia32@0.25.11': optional: true - '@esbuild/linux-ia32@0.25.5': + '@esbuild/linux-loong64@0.25.11': optional: true - '@esbuild/linux-loong64@0.25.5': + '@esbuild/linux-mips64el@0.25.11': optional: true - '@esbuild/linux-mips64el@0.25.5': + '@esbuild/linux-ppc64@0.25.11': optional: true - '@esbuild/linux-ppc64@0.25.5': + '@esbuild/linux-riscv64@0.25.11': optional: true - '@esbuild/linux-riscv64@0.25.5': + '@esbuild/linux-s390x@0.25.11': optional: true - '@esbuild/linux-s390x@0.25.5': + '@esbuild/linux-x64@0.25.11': optional: true - '@esbuild/linux-x64@0.25.5': + '@esbuild/netbsd-arm64@0.25.11': optional: true - '@esbuild/netbsd-arm64@0.25.5': + '@esbuild/netbsd-x64@0.25.11': optional: true - '@esbuild/netbsd-x64@0.25.5': + '@esbuild/openbsd-arm64@0.25.11': optional: true - '@esbuild/openbsd-arm64@0.25.5': + '@esbuild/openbsd-x64@0.25.11': optional: true - '@esbuild/openbsd-x64@0.25.5': + '@esbuild/openharmony-arm64@0.25.11': optional: true - '@esbuild/sunos-x64@0.25.5': + '@esbuild/sunos-x64@0.25.11': optional: true - '@esbuild/win32-arm64@0.25.5': + '@esbuild/win32-arm64@0.25.11': optional: true - '@esbuild/win32-ia32@0.25.5': + '@esbuild/win32-ia32@0.25.11': optional: true - '@esbuild/win32-x64@0.25.5': + '@esbuild/win32-x64@0.25.11': optional: true '@eslint-community/eslint-plugin-eslint-comments@4.5.0(eslint@9.38.0(jiti@2.4.0))': @@ -5156,64 +5200,70 @@ snapshots: '@repeaterjs/repeater@3.0.6': {} - '@rollup/rollup-android-arm-eabi@4.43.0': + '@rollup/rollup-android-arm-eabi@4.52.5': optional: true - '@rollup/rollup-android-arm64@4.43.0': + '@rollup/rollup-android-arm64@4.52.5': optional: true - '@rollup/rollup-darwin-arm64@4.43.0': + '@rollup/rollup-darwin-arm64@4.52.5': optional: true - '@rollup/rollup-darwin-x64@4.43.0': + '@rollup/rollup-darwin-x64@4.52.5': optional: true - '@rollup/rollup-freebsd-arm64@4.43.0': + '@rollup/rollup-freebsd-arm64@4.52.5': optional: true - '@rollup/rollup-freebsd-x64@4.43.0': + '@rollup/rollup-freebsd-x64@4.52.5': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.43.0': + '@rollup/rollup-linux-arm-gnueabihf@4.52.5': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.43.0': + '@rollup/rollup-linux-arm-musleabihf@4.52.5': optional: true - '@rollup/rollup-linux-arm64-gnu@4.43.0': + '@rollup/rollup-linux-arm64-gnu@4.52.5': optional: true - '@rollup/rollup-linux-arm64-musl@4.43.0': + '@rollup/rollup-linux-arm64-musl@4.52.5': optional: true - '@rollup/rollup-linux-loongarch64-gnu@4.43.0': + '@rollup/rollup-linux-loong64-gnu@4.52.5': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.43.0': + '@rollup/rollup-linux-ppc64-gnu@4.52.5': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.43.0': + '@rollup/rollup-linux-riscv64-gnu@4.52.5': optional: true - '@rollup/rollup-linux-riscv64-musl@4.43.0': + '@rollup/rollup-linux-riscv64-musl@4.52.5': optional: true - '@rollup/rollup-linux-s390x-gnu@4.43.0': + '@rollup/rollup-linux-s390x-gnu@4.52.5': optional: true - '@rollup/rollup-linux-x64-gnu@4.43.0': + '@rollup/rollup-linux-x64-gnu@4.52.5': optional: true - '@rollup/rollup-linux-x64-musl@4.43.0': + '@rollup/rollup-linux-x64-musl@4.52.5': optional: true - '@rollup/rollup-win32-arm64-msvc@4.43.0': + '@rollup/rollup-openharmony-arm64@4.52.5': optional: true - '@rollup/rollup-win32-ia32-msvc@4.43.0': + '@rollup/rollup-win32-arm64-msvc@4.52.5': optional: true - '@rollup/rollup-win32-x64-msvc@4.43.0': + '@rollup/rollup-win32-ia32-msvc@4.52.5': + optional: true + + '@rollup/rollup-win32-x64-gnu@4.52.5': + optional: true + + '@rollup/rollup-win32-x64-msvc@4.52.5': optional: true '@sinclair/typebox@0.34.33': {} @@ -5266,9 +5316,10 @@ snapshots: dependencies: '@babel/types': 7.28.4 - '@types/chai@5.2.2': + '@types/chai@5.2.3': dependencies: '@types/deep-eql': 4.0.2 + assertion-error: 2.0.1 '@types/debug@4.1.12': dependencies: @@ -5276,8 +5327,6 @@ snapshots: '@types/deep-eql@4.0.2': {} - '@types/estree@1.0.7': {} - '@types/estree@1.0.8': {} '@types/graphlib@2.1.12': {} @@ -5518,59 +5567,59 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.20(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.1(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.3.20(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.2(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.46.1 '@typescript-eslint/utils': 8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) eslint: 9.38.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - vitest: 4.0.1(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) + vitest: 4.0.2(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color - '@vitest/expect@4.0.1': + '@vitest/expect@4.0.2': dependencies: '@standard-schema/spec': 1.0.0 - '@types/chai': 5.2.2 - '@vitest/spy': 4.0.1 - '@vitest/utils': 4.0.1 + '@types/chai': 5.2.3 + '@vitest/spy': 4.0.2 + '@vitest/utils': 4.0.2 chai: 6.2.0 tinyrainbow: 3.0.3 - '@vitest/mocker@4.0.1(vite@6.3.5(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@4.0.2(vite@7.1.12(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': dependencies: - '@vitest/spy': 4.0.1 + '@vitest/spy': 4.0.2 estree-walker: 3.0.3 magic-string: 0.30.19 optionalDependencies: - vite: 6.3.5(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) + vite: 7.1.12(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) - '@vitest/pretty-format@4.0.1': + '@vitest/pretty-format@4.0.2': dependencies: tinyrainbow: 3.0.3 - '@vitest/runner@4.0.1': + '@vitest/runner@4.0.2': dependencies: - '@vitest/utils': 4.0.1 + '@vitest/utils': 4.0.2 pathe: 2.0.3 - '@vitest/snapshot@4.0.1': + '@vitest/snapshot@4.0.2': dependencies: - '@vitest/pretty-format': 4.0.1 + '@vitest/pretty-format': 4.0.2 magic-string: 0.30.19 pathe: 2.0.3 - '@vitest/spy@4.0.1': {} + '@vitest/spy@4.0.2': {} - '@vitest/utils@4.0.1': + '@vitest/utils@4.0.2': dependencies: - '@vitest/pretty-format': 4.0.1 + '@vitest/pretty-format': 4.0.2 tinyrainbow: 3.0.3 '@vue/compiler-core@3.5.12': dependencies: - '@babel/parser': 7.28.4 + '@babel/parser': 7.28.5 '@vue/shared': 3.5.12 entities: 4.5.0 estree-walker: 2.0.2 @@ -5583,7 +5632,7 @@ snapshots: '@vue/compiler-sfc@3.5.12': dependencies: - '@babel/parser': 7.28.4 + '@babel/parser': 7.28.5 '@vue/compiler-core': 3.5.12 '@vue/compiler-dom': 3.5.12 '@vue/compiler-ssr': 3.5.12 @@ -5668,6 +5717,8 @@ snapshots: asap@2.0.6: {} + assertion-error@2.0.1: {} + auto-bind@4.0.0: {} babel-jest@30.2.0(@babel/core@7.27.4): @@ -6000,33 +6051,34 @@ snapshots: es-module-lexer@1.7.0: {} - esbuild@0.25.5: + esbuild@0.25.11: optionalDependencies: - '@esbuild/aix-ppc64': 0.25.5 - '@esbuild/android-arm': 0.25.5 - '@esbuild/android-arm64': 0.25.5 - '@esbuild/android-x64': 0.25.5 - '@esbuild/darwin-arm64': 0.25.5 - '@esbuild/darwin-x64': 0.25.5 - '@esbuild/freebsd-arm64': 0.25.5 - '@esbuild/freebsd-x64': 0.25.5 - '@esbuild/linux-arm': 0.25.5 - '@esbuild/linux-arm64': 0.25.5 - '@esbuild/linux-ia32': 0.25.5 - '@esbuild/linux-loong64': 0.25.5 - '@esbuild/linux-mips64el': 0.25.5 - '@esbuild/linux-ppc64': 0.25.5 - '@esbuild/linux-riscv64': 0.25.5 - '@esbuild/linux-s390x': 0.25.5 - '@esbuild/linux-x64': 0.25.5 - '@esbuild/netbsd-arm64': 0.25.5 - '@esbuild/netbsd-x64': 0.25.5 - '@esbuild/openbsd-arm64': 0.25.5 - '@esbuild/openbsd-x64': 0.25.5 - '@esbuild/sunos-x64': 0.25.5 - '@esbuild/win32-arm64': 0.25.5 - '@esbuild/win32-ia32': 0.25.5 - '@esbuild/win32-x64': 0.25.5 + '@esbuild/aix-ppc64': 0.25.11 + '@esbuild/android-arm': 0.25.11 + '@esbuild/android-arm64': 0.25.11 + '@esbuild/android-x64': 0.25.11 + '@esbuild/darwin-arm64': 0.25.11 + '@esbuild/darwin-x64': 0.25.11 + '@esbuild/freebsd-arm64': 0.25.11 + '@esbuild/freebsd-x64': 0.25.11 + '@esbuild/linux-arm': 0.25.11 + '@esbuild/linux-arm64': 0.25.11 + '@esbuild/linux-ia32': 0.25.11 + '@esbuild/linux-loong64': 0.25.11 + '@esbuild/linux-mips64el': 0.25.11 + '@esbuild/linux-ppc64': 0.25.11 + '@esbuild/linux-riscv64': 0.25.11 + '@esbuild/linux-s390x': 0.25.11 + '@esbuild/linux-x64': 0.25.11 + '@esbuild/netbsd-arm64': 0.25.11 + '@esbuild/netbsd-x64': 0.25.11 + '@esbuild/openbsd-arm64': 0.25.11 + '@esbuild/openbsd-x64': 0.25.11 + '@esbuild/openharmony-arm64': 0.25.11 + '@esbuild/sunos-x64': 0.25.11 + '@esbuild/win32-arm64': 0.25.11 + '@esbuild/win32-ia32': 0.25.11 + '@esbuild/win32-x64': 0.25.11 escalade@3.2.0: {} @@ -7790,30 +7842,32 @@ snapshots: rfdc@1.4.1: {} - rollup@4.43.0: + rollup@4.52.5: dependencies: - '@types/estree': 1.0.7 + '@types/estree': 1.0.8 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.43.0 - '@rollup/rollup-android-arm64': 4.43.0 - '@rollup/rollup-darwin-arm64': 4.43.0 - '@rollup/rollup-darwin-x64': 4.43.0 - '@rollup/rollup-freebsd-arm64': 4.43.0 - '@rollup/rollup-freebsd-x64': 4.43.0 - '@rollup/rollup-linux-arm-gnueabihf': 4.43.0 - '@rollup/rollup-linux-arm-musleabihf': 4.43.0 - '@rollup/rollup-linux-arm64-gnu': 4.43.0 - '@rollup/rollup-linux-arm64-musl': 4.43.0 - '@rollup/rollup-linux-loongarch64-gnu': 4.43.0 - '@rollup/rollup-linux-powerpc64le-gnu': 4.43.0 - '@rollup/rollup-linux-riscv64-gnu': 4.43.0 - '@rollup/rollup-linux-riscv64-musl': 4.43.0 - '@rollup/rollup-linux-s390x-gnu': 4.43.0 - '@rollup/rollup-linux-x64-gnu': 4.43.0 - '@rollup/rollup-linux-x64-musl': 4.43.0 - '@rollup/rollup-win32-arm64-msvc': 4.43.0 - '@rollup/rollup-win32-ia32-msvc': 4.43.0 - '@rollup/rollup-win32-x64-msvc': 4.43.0 + '@rollup/rollup-android-arm-eabi': 4.52.5 + '@rollup/rollup-android-arm64': 4.52.5 + '@rollup/rollup-darwin-arm64': 4.52.5 + '@rollup/rollup-darwin-x64': 4.52.5 + '@rollup/rollup-freebsd-arm64': 4.52.5 + '@rollup/rollup-freebsd-x64': 4.52.5 + '@rollup/rollup-linux-arm-gnueabihf': 4.52.5 + '@rollup/rollup-linux-arm-musleabihf': 4.52.5 + '@rollup/rollup-linux-arm64-gnu': 4.52.5 + '@rollup/rollup-linux-arm64-musl': 4.52.5 + '@rollup/rollup-linux-loong64-gnu': 4.52.5 + '@rollup/rollup-linux-ppc64-gnu': 4.52.5 + '@rollup/rollup-linux-riscv64-gnu': 4.52.5 + '@rollup/rollup-linux-riscv64-musl': 4.52.5 + '@rollup/rollup-linux-s390x-gnu': 4.52.5 + '@rollup/rollup-linux-x64-gnu': 4.52.5 + '@rollup/rollup-linux-x64-musl': 4.52.5 + '@rollup/rollup-openharmony-arm64': 4.52.5 + '@rollup/rollup-win32-arm64-msvc': 4.52.5 + '@rollup/rollup-win32-ia32-msvc': 4.52.5 + '@rollup/rollup-win32-x64-gnu': 4.52.5 + '@rollup/rollup-win32-x64-msvc': 4.52.5 fsevents: 2.3.3 run-parallel@1.2.0: @@ -7907,7 +7961,7 @@ snapshots: stackback@0.0.2: {} - std-env@3.9.0: {} + std-env@3.10.0: {} streamsearch@1.1.0: {} @@ -8152,13 +8206,13 @@ snapshots: value-or-promise@1.0.12: {} - vite@6.3.5(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1): + vite@7.1.12(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1): dependencies: - esbuild: 0.25.5 + esbuild: 0.25.11 fdir: 6.5.0(picomatch@4.0.3) picomatch: 4.0.3 postcss: 8.5.6 - rollup: 4.43.0 + rollup: 4.52.5 tinyglobby: 0.2.15 optionalDependencies: '@types/node': 22.18.12 @@ -8166,27 +8220,27 @@ snapshots: jiti: 2.4.0 yaml: 2.8.1 - vitest@4.0.1(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1): + vitest@4.0.2(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1): dependencies: - '@vitest/expect': 4.0.1 - '@vitest/mocker': 4.0.1(vite@6.3.5(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) - '@vitest/pretty-format': 4.0.1 - '@vitest/runner': 4.0.1 - '@vitest/snapshot': 4.0.1 - '@vitest/spy': 4.0.1 - '@vitest/utils': 4.0.1 + '@vitest/expect': 4.0.2 + '@vitest/mocker': 4.0.2(vite@7.1.12(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/pretty-format': 4.0.2 + '@vitest/runner': 4.0.2 + '@vitest/snapshot': 4.0.2 + '@vitest/spy': 4.0.2 + '@vitest/utils': 4.0.2 debug: 4.4.3 es-module-lexer: 1.7.0 expect-type: 1.2.2 magic-string: 0.30.19 pathe: 2.0.3 picomatch: 4.0.3 - std-env: 3.9.0 + std-env: 3.10.0 tinybench: 2.9.0 tinyexec: 0.3.2 tinyglobby: 0.2.15 tinyrainbow: 3.0.3 - vite: 6.3.5(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) + vite: 7.1.12(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) why-is-node-running: 2.3.0 optionalDependencies: '@types/debug': 4.1.12 From e3227ca834829eb0e2be985b95be64eddef376a3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 24 Oct 2025 22:27:35 +0000 Subject: [PATCH 087/133] chore(deps): update dependency vitest to v4.0.3 (#1274) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 108 ++++++++++++++++++++++++------------------------- 1 file changed, 54 insertions(+), 54 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index eb789ab7..46d8b370 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.2(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) + version: 6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.3(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.1 version: 6.0.1(@types/node@22.18.12)(graphql@16.11.0)(typescript@5.9.3) @@ -71,7 +71,7 @@ importers: version: 1.1.0(typescript@5.9.3) vitest: specifier: ^4.0.0 - version: 4.0.2(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) + version: 4.0.3(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.1 version: 1.7.1 @@ -1491,11 +1491,11 @@ packages: vitest: optional: true - '@vitest/expect@4.0.2': - resolution: {integrity: sha512-izQY+ABWqL2Vyr5+LNo3m16nLLTAzLn8em6i5uxqsrWRhdgzdN5JIHrpFVGBAYRGDAbtwE+yD4Heu8gsBSWTVQ==} + '@vitest/expect@4.0.3': + resolution: {integrity: sha512-v3eSDx/bF25pzar6aEJrrdTXJduEBU3uSGXHslIdGIpJVP8tQQHV6x1ZfzbFQ/bLIomLSbR/2ZCfnaEGkWkiVQ==} - '@vitest/mocker@4.0.2': - resolution: {integrity: sha512-oiny+oBSGU9vHMA1DPdO+t1GVidCRuA4lKSG6rbo5SrCiTCGl7bTCyTaUkwxDpUkiSxEVneeXW4LJ4fg3H56dw==} + '@vitest/mocker@4.0.3': + resolution: {integrity: sha512-evZcRspIPbbiJEe748zI2BRu94ThCBE+RkjCpVF8yoVYuTV7hMe+4wLF/7K86r8GwJHSmAPnPbZhpXWWrg1qbA==} peerDependencies: msw: ^2.4.9 vite: ^6.0.0 || ^7.0.0-0 @@ -1505,20 +1505,20 @@ packages: vite: optional: true - '@vitest/pretty-format@4.0.2': - resolution: {integrity: sha512-PhrSiljryCz5nUDhHla5ihXYy2iRCBob+rNqlu34dA+KZIllVR39rUGny5R3kLgDgw3r8GW1ptOo64WbieMkeQ==} + '@vitest/pretty-format@4.0.3': + resolution: {integrity: sha512-N7gly/DRXzxa9w9sbDXwD9QNFYP2hw90LLLGDobPNwiWgyW95GMxsCt29/COIKKh3P7XJICR38PSDePenMBtsw==} - '@vitest/runner@4.0.2': - resolution: {integrity: sha512-mPS5T/ZDuO6J5rsQiA76CFmlHtos7dnCvL14I1Oo8SbcjIhJd6kirFmekovfYLRygdF0gJe6SA5asCKIWKw1tw==} + '@vitest/runner@4.0.3': + resolution: {integrity: sha512-1/aK6fPM0lYXWyGKwop2Gbvz1plyTps/HDbIIJXYtJtspHjpXIeB3If07eWpVH4HW7Rmd3Rl+IS/+zEAXrRtXA==} - '@vitest/snapshot@4.0.2': - resolution: {integrity: sha512-NibujZAh+fTQlpGdP8J2pZcsPg7EPjiLUOUq9In++4p35vc9xIFMkXfQDbBSpijqZPe6i2hEKrUCbKu70/sPzw==} + '@vitest/snapshot@4.0.3': + resolution: {integrity: sha512-amnYmvZ5MTjNCP1HZmdeczAPLRD6iOm9+2nMRUGxbe/6sQ0Ymur0NnR9LIrWS8JA3wKE71X25D6ya/3LN9YytA==} - '@vitest/spy@4.0.2': - resolution: {integrity: sha512-KrTWRXFPYrbhD0iUXeoA8BMXl81nvemj5D8sc7NbTlRvCeUWo36JheOWtAUCafcNi0G72ycAdsvWQVSOxy/3TA==} + '@vitest/spy@4.0.3': + resolution: {integrity: sha512-82vVL8Cqz7rbXaNUl35V2G7xeNMAjBdNOVaHbrzznT9BmiCiPOzhf0FhU3eP41nP1bLDm/5wWKZqkG4nyU95DQ==} - '@vitest/utils@4.0.2': - resolution: {integrity: sha512-H9jFzZb/5B5Qh7ajPUWMJ8UYGxQ4EQTaNLSm3icXs/oXkzQ1jqfcWDEJ4U3LkFPZOd6QW8M2MYjz32poW+KKqg==} + '@vitest/utils@4.0.3': + resolution: {integrity: sha512-qV6KJkq8W3piW6MDIbGOmn1xhvcW4DuA07alqaQ+vdx7YA49J85pnwnxigZVQFQw3tWnQNRKWwhz5wbP6iv/GQ==} '@vue/compiler-core@3.5.12': resolution: {integrity: sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw==} @@ -2832,8 +2832,8 @@ packages: lru-cache@5.1.1: resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} - magic-string@0.30.19: - resolution: {integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==} + magic-string@0.30.21: + resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==} make-dir@4.0.0: resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} @@ -3768,18 +3768,18 @@ packages: yaml: optional: true - vitest@4.0.2: - resolution: {integrity: sha512-SXrA2ZzOPulX479d8W13RqKSmvHb9Bfg71eW7Fbs6ZjUFcCCXyt/OzFCkNyiUE8mFlPHa4ZVUGw0ky+5ndKnrg==} + vitest@4.0.3: + resolution: {integrity: sha512-IUSop8jgaT7w0g1yOM/35qVtKjr/8Va4PrjzH1OUb0YH4c3OXB2lCZDkMAB6glA8T5w8S164oJGsbcmAecr4sA==} engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' '@types/debug': ^4.1.12 '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0 - '@vitest/browser-playwright': 4.0.2 - '@vitest/browser-preview': 4.0.2 - '@vitest/browser-webdriverio': 4.0.2 - '@vitest/ui': 4.0.2 + '@vitest/browser-playwright': 4.0.3 + '@vitest/browser-preview': 4.0.3 + '@vitest/browser-webdriverio': 4.0.3 + '@vitest/ui': 4.0.3 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -3926,7 +3926,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - '@antfu/eslint-config@6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.2(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.3(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -3935,7 +3935,7 @@ snapshots: '@stylistic/eslint-plugin': 5.4.0(eslint@9.38.0(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/parser': 8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.3.20(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.2(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/eslint-plugin': 1.3.20(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.3(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.2.0 cac: 6.7.14 eslint: 9.38.0(jiti@2.4.0) @@ -5567,54 +5567,54 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.20(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.2(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.3.20(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.3(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.46.1 '@typescript-eslint/utils': 8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) eslint: 9.38.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - vitest: 4.0.2(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) + vitest: 4.0.3(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color - '@vitest/expect@4.0.2': + '@vitest/expect@4.0.3': dependencies: '@standard-schema/spec': 1.0.0 '@types/chai': 5.2.3 - '@vitest/spy': 4.0.2 - '@vitest/utils': 4.0.2 + '@vitest/spy': 4.0.3 + '@vitest/utils': 4.0.3 chai: 6.2.0 tinyrainbow: 3.0.3 - '@vitest/mocker@4.0.2(vite@7.1.12(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@4.0.3(vite@7.1.12(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': dependencies: - '@vitest/spy': 4.0.2 + '@vitest/spy': 4.0.3 estree-walker: 3.0.3 - magic-string: 0.30.19 + magic-string: 0.30.21 optionalDependencies: vite: 7.1.12(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) - '@vitest/pretty-format@4.0.2': + '@vitest/pretty-format@4.0.3': dependencies: tinyrainbow: 3.0.3 - '@vitest/runner@4.0.2': + '@vitest/runner@4.0.3': dependencies: - '@vitest/utils': 4.0.2 + '@vitest/utils': 4.0.3 pathe: 2.0.3 - '@vitest/snapshot@4.0.2': + '@vitest/snapshot@4.0.3': dependencies: - '@vitest/pretty-format': 4.0.2 - magic-string: 0.30.19 + '@vitest/pretty-format': 4.0.3 + magic-string: 0.30.21 pathe: 2.0.3 - '@vitest/spy@4.0.2': {} + '@vitest/spy@4.0.3': {} - '@vitest/utils@4.0.2': + '@vitest/utils@4.0.3': dependencies: - '@vitest/pretty-format': 4.0.2 + '@vitest/pretty-format': 4.0.3 tinyrainbow: 3.0.3 '@vue/compiler-core@3.5.12': @@ -5638,7 +5638,7 @@ snapshots: '@vue/compiler-ssr': 3.5.12 '@vue/shared': 3.5.12 estree-walker: 2.0.2 - magic-string: 0.30.19 + magic-string: 0.30.21 postcss: 8.5.6 source-map-js: 1.2.1 @@ -7183,7 +7183,7 @@ snapshots: dependencies: yallist: 3.1.1 - magic-string@0.30.19: + magic-string@0.30.21: dependencies: '@jridgewell/sourcemap-codec': 1.5.5 @@ -8220,19 +8220,19 @@ snapshots: jiti: 2.4.0 yaml: 2.8.1 - vitest@4.0.2(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1): + vitest@4.0.3(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1): dependencies: - '@vitest/expect': 4.0.2 - '@vitest/mocker': 4.0.2(vite@7.1.12(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) - '@vitest/pretty-format': 4.0.2 - '@vitest/runner': 4.0.2 - '@vitest/snapshot': 4.0.2 - '@vitest/spy': 4.0.2 - '@vitest/utils': 4.0.2 + '@vitest/expect': 4.0.3 + '@vitest/mocker': 4.0.3(vite@7.1.12(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/pretty-format': 4.0.3 + '@vitest/runner': 4.0.3 + '@vitest/snapshot': 4.0.3 + '@vitest/spy': 4.0.3 + '@vitest/utils': 4.0.3 debug: 4.4.3 es-module-lexer: 1.7.0 expect-type: 1.2.2 - magic-string: 0.30.19 + magic-string: 0.30.21 pathe: 2.0.3 picomatch: 4.0.3 std-env: 3.10.0 From 42eb3c583026a2d0fa385b2052772dc4dbf08b84 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 26 Oct 2025 09:32:51 +0000 Subject: [PATCH 088/133] chore(deps): update dependency @antfu/eslint-config to v6.1.0 (#1276) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 543 ++++++++++++++++++++++--------------------------- 1 file changed, 245 insertions(+), 298 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 46d8b370..b5d4445d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.3(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) + version: 6.1.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.3(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.1 version: 6.0.1(@types/node@22.18.12)(graphql@16.11.0)(typescript@5.9.3) @@ -85,12 +85,12 @@ packages: resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - '@antfu/eslint-config@6.0.0': - resolution: {integrity: sha512-M2RM+x+hpxpASEZzQh4d5uaUEHn8sYNVlTB+CySpLkDs2rr3QFvRR7KqNdnox/OIPc6YWMsIEnM/XUbQP52nTA==} + '@antfu/eslint-config@6.1.0': + resolution: {integrity: sha512-m/L9TGvtG3r4tkfq5BY6THz7pk0g6yuJwwA0SkLEDHJJpt0upuABhs8v3SU8yaPtCGUxq8k2QTLMZ3WPg4vSdw==} hasBin: true peerDependencies: '@eslint-react/eslint-plugin': ^2.0.1 - '@next/eslint-plugin-next': ^15.4.0-canary.115 + '@next/eslint-plugin-next': '>=15.0.0' '@prettier/plugin-xml': ^3.4.1 '@unocss/eslint-plugin': '>=0.50.0' astro-eslint-parser: ^1.0.2 @@ -195,10 +195,6 @@ packages: resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@7.27.1': - resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} - engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@7.28.5': resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==} engines: {node: '>=6.9.0'} @@ -360,10 +356,14 @@ packages: resolution: {integrity: sha512-YAdE/IJSpwbOTiaURNCKECdAwqrJuFiZhylmesBcIRawtYKnBR2wxPhoIewMg+Yu+QuYvHfJNReWpoxGBKOChA==} engines: {node: '>=18'} - '@es-joy/jsdoccomment@0.58.0': - resolution: {integrity: sha512-smMc5pDht/UVsCD3hhw/a/e/p8m0RdRYiluXToVfd+d4yaQQh7nn9bACjkk6nXJvat7EWPAxuFkMEFfrxeGa3Q==} + '@es-joy/jsdoccomment@0.76.0': + resolution: {integrity: sha512-g+RihtzFgGTx2WYCuTHbdOXJeAlGnROws0TeALx9ow/ZmOROOZkVg5wp/B44n0WJgI4SQFP1eWM2iRPlU2Y14w==} engines: {node: '>=20.11.0'} + '@es-joy/resolve.exports@1.0.0': + resolution: {integrity: sha512-bbrmzsAZ9GA/3oBS6r8PWMtZarEhKHr413hak8ArwMEZ5DtaLErnkcyEWUsXy7urBcmVu/TpDzHPDVM5uIbx9A==} + engines: {node: '>=10'} + '@esbuild/aix-ppc64@0.25.11': resolution: {integrity: sha512-Xt1dOL13m8u0WE8iplx9Ibbm+hFAO0GsU2P34UNoDGvZYkY8ifSiy6Zuc1lYxfG7svWE2fzqCUmFp5HCn51gJg==} engines: {node: '>=18'} @@ -536,8 +536,12 @@ packages: resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - '@eslint/compat@1.3.2': - resolution: {integrity: sha512-jRNwzTbd6p2Rw4sZ1CgWRS8YMtqG15YyZf7zvb6gY2rB2u6n+2Z+ELW0GtL0fQgyl0pr4Y/BzBfng/BdsereRA==} + '@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/compat@1.4.0': + resolution: {integrity: sha512-DEzm5dKeDBPm3r08Ixli/0cmxr8LkRdwxMRUIJBlSCpAwSrvFEJpVBzV+66JhDxiaqKxnRzCXhtiMiczF7Hglg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.40 || 9 @@ -569,8 +573,8 @@ packages: resolution: {integrity: sha512-UZ1VpFvXf9J06YG9xQBdnzU+kthors6KjhMAl6f4gH4usHyh31rUf2DLGInT8RFYIReYXNSydgPY0V2LuWgl7A==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/markdown@7.4.0': - resolution: {integrity: sha512-VQykmMjBb4tQoJOXVWXa+oQbQeCZlE7W3rAsOpmtpKLvJd75saZZ04PVVs7+zgMDJGghd4/gyFV6YlvdJFaeNQ==} + '@eslint/markdown@7.5.0': + resolution: {integrity: sha512-reKloVSpytg4ene3yviPJcUO7zglpNn9kWNRiSQ/8gBbBFMKW5Q042LaCi3wv2vVtbPNnLrl6WvhRAHeBd43QA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/object-schema@2.1.7': @@ -1211,6 +1215,10 @@ packages: '@sinclair/typebox@0.34.33': resolution: {integrity: sha512-5HAV9exOMcXRUxo+9iYB5n09XxzCXnfy4VTNW4xnDv+FgjzAGY989C28BIdljKqmF+ZltUwujE3aossvcVtq6g==} + '@sindresorhus/base62@1.0.0': + resolution: {integrity: sha512-TeheYy0ILzBEI/CO55CP6zJCSdSWeRtGnHy8U8dWSUH4I68iqTsy7HkMktR4xakThc9jotkPQUXT4ITdbV7cHA==} + engines: {node: '>=18'} + '@sinonjs/commons@3.0.1': resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==} @@ -1220,8 +1228,8 @@ packages: '@standard-schema/spec@1.0.0': resolution: {integrity: sha512-m2bOd0f2RT9k8QJx1JN85cZYyH1RqFBdlwtkSlf4tBDYLCiiZnv1fIIwacK6cqwXavOydf0NPToMQgpKq+dVlA==} - '@stylistic/eslint-plugin@5.4.0': - resolution: {integrity: sha512-UG8hdElzuBDzIbjG1QDwnYH0MQ73YLXDFHgZzB4Zh/YJfnw8XNsloVtytqzx0I2Qky9THSdpTmi8Vjn/pf/Lew==} + '@stylistic/eslint-plugin@5.5.0': + resolution: {integrity: sha512-IeZF+8H0ns6prg4VrkhgL+yrvDXWDH2cKchrbh80ejG9dQgZWp10epHMbgRuQvgchLII/lfh6Xn3lu6+6L86Hw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: '>=9.0.0' @@ -1295,100 +1303,63 @@ packages: '@types/yargs@17.0.33': resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==} - '@typescript-eslint/eslint-plugin@8.46.1': - resolution: {integrity: sha512-rUsLh8PXmBjdiPY+Emjz9NX2yHvhS11v0SR6xNJkm5GM1MO9ea/1GoDKlHHZGrOJclL/cZ2i/vRUYVtjRhrHVQ==} + '@typescript-eslint/eslint-plugin@8.46.2': + resolution: {integrity: sha512-ZGBMToy857/NIPaaCucIUQgqueOiq7HeAKkhlvqVV4lm089zUFW6ikRySx2v+cAhKeUCPuWVHeimyk6Dw1iY3w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - '@typescript-eslint/parser': ^8.46.1 + '@typescript-eslint/parser': ^8.46.2 eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/parser@8.46.1': - resolution: {integrity: sha512-6JSSaBZmsKvEkbRUkf7Zj7dru/8ZCrJxAqArcLaVMee5907JdtEbKGsZ7zNiIm/UAkpGUkaSMZEXShnN2D1HZA==} + '@typescript-eslint/parser@8.46.2': + resolution: {integrity: sha512-BnOroVl1SgrPLywqxyqdJ4l3S2MsKVLDVxZvjI1Eoe8ev2r3kGDo+PcMihNmDE+6/KjkTubSJnmqGZZjQSBq/g==} 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/project-service@8.44.0': - resolution: {integrity: sha512-ZeaGNraRsq10GuEohKTo4295Z/SuGcSq2LzfGlqiuEvfArzo/VRrT0ZaJsVPuKZ55lVbNk8U6FcL+ZMH8CoyVA==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - typescript: '>=4.8.4 <6.0.0' - - '@typescript-eslint/project-service@8.46.1': - resolution: {integrity: sha512-FOIaFVMHzRskXr5J4Jp8lFVV0gz5ngv3RHmn+E4HYxSJ3DgDzU7fVI1/M7Ijh1zf6S7HIoaIOtln1H5y8V+9Zg==} + '@typescript-eslint/project-service@8.46.2': + resolution: {integrity: sha512-PULOLZ9iqwI7hXcmL4fVfIsBi6AN9YxRc0frbvmg8f+4hQAjQ5GYNKK0DIArNo+rOKmR/iBYwkpBmnIwin4wBg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/scope-manager@8.44.0': - resolution: {integrity: sha512-87Jv3E+al8wpD+rIdVJm/ItDBe/Im09zXIjFoipOjr5gHUhJmTzfFLuTJ/nPTMc2Srsroy4IBXwcTCHyRR7KzA==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@typescript-eslint/scope-manager@8.46.1': - resolution: {integrity: sha512-weL9Gg3/5F0pVQKiF8eOXFZp8emqWzZsOJuWRUNtHT+UNV2xSJegmpCNQHy37aEQIbToTq7RHKhWvOsmbM680A==} + '@typescript-eslint/scope-manager@8.46.2': + resolution: {integrity: sha512-LF4b/NmGvdWEHD2H4MsHD8ny6JpiVNDzrSZr3CsckEgCbAGZbYM4Cqxvi9L+WqDMT+51Ozy7lt2M+d0JLEuBqA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/tsconfig-utils@8.44.0': - resolution: {integrity: sha512-x5Y0+AuEPqAInc6yd0n5DAcvtoQ/vyaGwuX5HE9n6qAefk1GaedqrLQF8kQGylLUb9pnZyLf+iEiL9fr8APDtQ==} + '@typescript-eslint/tsconfig-utils@8.46.2': + resolution: {integrity: sha512-a7QH6fw4S57+F5y2FIxxSDyi5M4UfGF+Jl1bCGd7+L4KsaUY80GsiF/t0UoRFDHAguKlBaACWJRmdrc6Xfkkag==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/tsconfig-utils@8.46.1': - resolution: {integrity: sha512-X88+J/CwFvlJB+mK09VFqx5FE4H5cXD+H/Bdza2aEWkSb8hnWIQorNcscRl4IEo1Cz9VI/+/r/jnGWkbWPx54g==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - typescript: '>=4.8.4 <6.0.0' - - '@typescript-eslint/type-utils@8.46.1': - resolution: {integrity: sha512-+BlmiHIiqufBxkVnOtFwjah/vrkF4MtKKvpXrKSPLCkCtAp8H01/VV43sfqA98Od7nJpDcFnkwgyfQbOG0AMvw==} + '@typescript-eslint/type-utils@8.46.2': + resolution: {integrity: sha512-HbPM4LbaAAt/DjxXaG9yiS9brOOz6fabal4uvUmaUYe6l3K1phQDMQKBRUrr06BQkxkvIZVVHttqiybM9nJsLA==} 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/types@8.44.0': - resolution: {integrity: sha512-ZSl2efn44VsYM0MfDQe68RKzBz75NPgLQXuGypmym6QVOWL5kegTZuZ02xRAT9T+onqvM6T8CdQk0OwYMB6ZvA==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@typescript-eslint/types@8.46.1': - resolution: {integrity: sha512-C+soprGBHwWBdkDpbaRC4paGBrkIXxVlNohadL5o0kfhsXqOC6GYH2S/Obmig+I0HTDl8wMaRySwrfrXVP8/pQ==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@typescript-eslint/typescript-estree@8.44.0': - resolution: {integrity: sha512-lqNj6SgnGcQZwL4/SBJ3xdPEfcBuhCG8zdcwCPgYcmiPLgokiNDKlbPzCwEwu7m279J/lBYWtDYL+87OEfn8Jw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - typescript: '>=4.8.4 <6.0.0' - - '@typescript-eslint/typescript-estree@8.46.1': - resolution: {integrity: sha512-uIifjT4s8cQKFQ8ZBXXyoUODtRoAd7F7+G8MKmtzj17+1UbdzFl52AzRyZRyKqPHhgzvXunnSckVu36flGy8cg==} + '@typescript-eslint/types@8.46.2': + resolution: {integrity: sha512-lNCWCbq7rpg7qDsQrd3D6NyWYu+gkTENkG5IKYhUIcxSb59SQC/hEQ+MrG4sTgBVghTonNWq42bA/d4yYumldQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/utils@8.44.0': - resolution: {integrity: sha512-nktOlVcg3ALo0mYlV+L7sWUD58KG4CMj1rb2HUVOO4aL3K/6wcD+NERqd0rrA5Vg06b42YhF6cFxeixsp9Riqg==} + '@typescript-eslint/typescript-estree@8.46.2': + resolution: {integrity: sha512-f7rW7LJ2b7Uh2EiQ+7sza6RDZnajbNbemn54Ob6fRwQbgcIn+GWfyuHDHRYgRoZu1P4AayVScrRW+YfbTvPQoQ==} 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.46.1': - resolution: {integrity: sha512-vkYUy6LdZS7q1v/Gxb2Zs7zziuXN0wxqsetJdeZdRe/f5dwJFglmuvZBfTUivCtjH725C1jWCDfpadadD95EDQ==} + '@typescript-eslint/utils@8.46.2': + resolution: {integrity: sha512-sExxzucx0Tud5tE0XqR0lT0psBQvEpnpiul9XbGUB1QwpWJJAps1O/Z7hJxLGiZLBKMCutjTzDgmd1muEhBnVg==} 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/visitor-keys@8.44.0': - resolution: {integrity: sha512-zaz9u8EJ4GBmnehlrpoKvj/E3dNbuQ7q0ucyZImm3cLqJ8INTc970B1qEqDX/Rzq65r3TvVTN7kHWPBoyW7DWw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@typescript-eslint/visitor-keys@8.46.1': - resolution: {integrity: sha512-ptkmIf2iDkNUjdeu2bQqhFPV1m6qTnFFjg7PPDjxKWaMaP0Z6I9l30Jr3g5QqbZGdw8YdYvLp+XnqnWWZOg/NA==} + '@typescript-eslint/visitor-keys@8.46.2': + resolution: {integrity: sha512-tUFMXI4gxzzMXt4xpGJEsBsTox0XbNQ1y94EwlD/CuZwFcQP79xfQqMhau9HsRc/J0cAPA/HZt1dZPtGn9V/7w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@ungap/structured-clone@1.3.0': @@ -1479,11 +1450,12 @@ packages: cpu: [x64] os: [win32] - '@vitest/eslint-plugin@1.3.20': - resolution: {integrity: sha512-0VkFSFjfAkNLkgWcfcrJjU+4CQs48LuYH/2zrjNhHPX6iD+SMJzX0aidzesBHmdgnyIxiz4jDM0rzhE9SkJqOw==} + '@vitest/eslint-plugin@1.3.24': + resolution: {integrity: sha512-p1HbH4tMp6kqXS3dwFgy9Ne5Cs9UdBWnGL714m6I/xLK0QoU7MQcR+r+bUjgSFBimNrgiNzUGQ0aiFzKTiJacA==} + engines: {node: '>=18'} peerDependencies: - eslint: '>= 8.57.0' - typescript: '>= 5.0.0' + eslint: '>=8.57.0' + typescript: '>=5.0.0' vitest: '*' peerDependenciesMeta: typescript: @@ -1649,8 +1621,8 @@ packages: balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - baseline-browser-mapping@2.8.6: - resolution: {integrity: sha512-wrH5NNqren/QMtKUEEJf7z86YjfqW/2uw3IL3/xpqZUC95SSVIFXYQeeGjL6FT/X68IROu6RMehZQS5foy2BXw==} + baseline-browser-mapping@2.8.20: + resolution: {integrity: sha512-JMWsdF+O8Orq3EMukbUN1QfbLK9mX2CkUmQBcW2T0s8OmdAUL5LLM/6wFwSrqXzlXB13yhyK9gTKS1rIizOduQ==} hasBin: true boolbase@1.0.0: @@ -1666,8 +1638,8 @@ packages: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} - browserslist@4.26.2: - resolution: {integrity: sha512-ECFzp6uFOSB+dcZ5BK/IBaGWssbSYBHvuMeMt3MMFyhI0Z8SqGgEkBLARgpRH3hutIgPVsALcMwbDrJqPxQ65A==} + browserslist@4.27.0: + resolution: {integrity: sha512-AXVQwdhot1eqLihwasPElhX2tAZiBjWdJ9i/Zcj2S6QYIjkx62OKSfnobkriB81C3l4w0rVy3Nt4jaTBltYEpw==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true @@ -1708,8 +1680,8 @@ packages: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} - caniuse-lite@1.0.30001743: - resolution: {integrity: sha512-e6Ojr7RV14Un7dz6ASD0aZDmQPT/A+eZU+nuTNfjqmRrmkmQlnTNWH0SKmqagx9PeW87UVqapSurtAXifmtdmw==} + caniuse-lite@1.0.30001751: + resolution: {integrity: sha512-A0QJhug0Ly64Ii3eIqHu5X51ebln3k4yTUkY1j8drqpWHVreg/VLijN48cZ1bYPiqOQuqpkIKnzr/Ul8V+p6Cw==} capital-case@1.0.4: resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} @@ -1748,6 +1720,10 @@ packages: resolution: {integrity: sha512-l+2bNRMiQgcfILUi33labAZYIWlH1kWDp+ecNo5iisRKrbm0xcRyCww71/YU0Fkw0mAFpz9bJayXPjey6vkmaQ==} engines: {node: '>=8'} + ci-info@4.3.1: + resolution: {integrity: sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA==} + engines: {node: '>=8'} + cjs-module-lexer@2.1.0: resolution: {integrity: sha512-UX0OwmYRYQQetfrLEZeewIFFI+wSTofC+pMBLNuH3RUuu/xzG1oz84UCEDOSoQlN3fZ4+AzmV50ZYvGqkMh9yA==} @@ -1811,8 +1787,8 @@ packages: convert-source-map@2.0.0: resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} - core-js-compat@3.45.1: - resolution: {integrity: sha512-tqTt5T4PzsMIZ430XGviK4vzYSoeNJ6CXODi6c/voxOT6IZqBht5/EKaSNnYiEjjRYxjVz7DQIsOsY0XNi8PIA==} + core-js-compat@3.46.0: + resolution: {integrity: sha512-p9hObIIEENxSV8xIu+V68JjSeARg6UVMG5mR+JEUguG3sI6MsiS1njz2jHmyJDvA+8jX/sytkBHup6kxhM9law==} cosmiconfig@8.3.6: resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} @@ -1919,8 +1895,8 @@ packages: eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - electron-to-chromium@1.5.222: - resolution: {integrity: sha512-gA7psSwSwQRE60CEoLz6JBCQPIxNeuzB2nL8vE03GK/OHxlvykbLyeiumQy1iH5C2f3YbRAZpGCMT12a/9ih9w==} + electron-to-chromium@1.5.240: + resolution: {integrity: sha512-OBwbZjWgrCOH+g6uJsA2/7Twpas2OlepS9uvByJjR2datRDuKGYeD+nP8lBBks2qnB7bGJNHDUx7c/YLaT3QMQ==} emittery@0.13.1: resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} @@ -2048,8 +2024,8 @@ packages: typescript: optional: true - eslint-plugin-jsdoc@59.1.0: - resolution: {integrity: sha512-sg9mzjjzfnMynyY4W8FDiQv3i8eFcKVEHDt4Xh7MLskP3QkMt2z6p7FuzSw7jJSKFues6RaK2GWvmkB1FLPxXg==} + eslint-plugin-jsdoc@61.1.8: + resolution: {integrity: sha512-2496IdYqyH0Anbho+MuL8tKJLT3JCNlJd9Apqpo5vvTwT6wlC5yBVv7nM0PFBGDyl1gxx4QfrF8SApVkCHGzzA==} engines: {node: '>=20.11.0'} peerDependencies: eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 @@ -2076,8 +2052,8 @@ packages: peerDependencies: eslint: '>=8.45.0' - eslint-plugin-pnpm@1.2.0: - resolution: {integrity: sha512-HKIFEmRGVxXvPx/hCpZY0qUGCYoaSYO6EVut4Hf9bckC0qP6F23mBgdoIExRZIWoViHuMznSaDU1FpQmc2xpgw==} + eslint-plugin-pnpm@1.3.0: + resolution: {integrity: sha512-Lkdnj3afoeUIkDUu8X74z60nrzjQ2U55EbOeI+qz7H1He4IO4gmUKT2KQIl0It52iMHJeuyLDWWNgjr6UIK8nw==} peerDependencies: eslint: ^9.0.0 @@ -2099,8 +2075,8 @@ packages: peerDependencies: eslint: '>=9.29.0' - eslint-plugin-unused-imports@4.2.0: - resolution: {integrity: sha512-hLbJ2/wnjKq4kGA9AUaExVFIbNzyxYdVo49QZmKCnhk5pc9wcYRbfgLHvWJ8tnsdcseGhoUAddm9gn/lt+d74w==} + eslint-plugin-unused-imports@4.3.0: + resolution: {integrity: sha512-ZFBmXMGBYfHttdRtOG9nFFpmUvMtbHSjsKrS20vdWdbfiVYsO3yA2SGYy9i9XmZJDfMGBflZGBCm70SEnFQtOA==} peerDependencies: '@typescript-eslint/eslint-plugin': ^8.0.0-0 || ^7.0.0 || ^6.0.0 || ^5.0.0 eslint: ^9.0.0 || ^8.0.0 @@ -2108,8 +2084,8 @@ packages: '@typescript-eslint/eslint-plugin': optional: true - eslint-plugin-vue@10.5.0: - resolution: {integrity: sha512-7BZHsG3kC2vei8F2W8hnfDi9RK+cv5eKPMvzBdrl8Vuc0hR5odGQRli8VVzUkrmUHkxFEm4Iio1r5HOKslO0Aw==} + eslint-plugin-vue@10.5.1: + resolution: {integrity: sha512-SbR9ZBUFKgvWAbq3RrdCtWaW0IKm6wwUiApxf3BVTNfqUIo4IQQmreMg2iHFJJ6C/0wss3LXURBJ1OwS/MhFcQ==} 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 @@ -2323,8 +2299,8 @@ packages: resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} engines: {node: '>=10'} - get-tsconfig@4.10.1: - resolution: {integrity: sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==} + get-tsconfig@4.13.0: + resolution: {integrity: sha512-1VKTZJCwBrvbd+Wn3AOgQP/2Av+TfTCOlE4AcRJE72W1ksZXbAx8PPBR9RzgTeSPzlPMHrbANMH3LbltH73wxQ==} github-slugger@2.0.0: resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} @@ -2415,6 +2391,9 @@ packages: header-case@2.0.4: resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==} + html-entities@2.6.0: + resolution: {integrity: sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ==} + html-escaper@2.0.2: resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} @@ -2720,9 +2699,9 @@ packages: resolution: {integrity: sha512-iZ8Bdb84lWRuGHamRXFyML07r21pcwBrLkHEuHgEY5UbCouBwv7ECknDRKzsQIXMiqpPymqtIf8TC/shYKB5rw==} engines: {node: '>=12.0.0'} - jsdoc-type-pratt-parser@5.4.0: - resolution: {integrity: sha512-F9GQ+F1ZU6qvSrZV8fNFpjDNf614YzR2eF6S0+XbDjAcUI28FSoXnYZFjQmb1kFx3rrJb5PnxUH3/Yti6fcM+g==} - engines: {node: '>=12.0.0'} + jsdoc-type-pratt-parser@6.10.0: + resolution: {integrity: sha512-+LexoTRyYui5iOhJGn13N9ZazL23nAHGkXsa1p/C8yeq79WRfLBag6ZZ0FQG2aRoc9yfo59JT9EYCQonOkHKkQ==} + engines: {node: '>=20.0.0'} jsesc@3.0.2: resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} @@ -3069,8 +3048,8 @@ packages: node-int64@0.4.0: resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} - node-releases@2.0.21: - resolution: {integrity: sha512-5b0pgg78U3hwXkCM8Z9b2FJdPZlr9Psr9V2gQPESdGHqbntyFJKFW4r5TeWGFzafGY3hzs1JC62VEQMbl1JFkw==} + node-releases@2.0.26: + resolution: {integrity: sha512-S2M9YimhSjBSvYnlr5/+umAnPHE++ODwt5e2Ij6FoX45HA/s4vHdkDx1eax2pAPeAOqu4s9b7ppahsyEFdVqQA==} normalize-path@2.1.1: resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==} @@ -3103,8 +3082,8 @@ packages: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} - object-deep-merge@1.0.5: - resolution: {integrity: sha512-3DioFgOzetbxbeUq8pB2NunXo8V0n4EvqsWM/cJoI6IA9zghd7cl/2pBOuWRf4dlvA+fcg5ugFMZaN2/RuoaGg==} + object-deep-merge@2.0.0: + resolution: {integrity: sha512-3DC3UMpeffLTHiuXSy/UG4NOIYTLlY9u3V82+djSCLYClWobZiS4ivYzpIUWrRY/nfsJ8cWsKyG3QfyLePmhvg==} once@1.4.0: resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} @@ -3144,8 +3123,8 @@ packages: package-json-from-dist@1.0.1: resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} - package-manager-detector@1.3.0: - resolution: {integrity: sha512-ZsEbbZORsyHuO00lY1kV3/t72yp6Ysay6Pd17ZAlNGuGwmWDLCJxFpRs0IzfXfj1o4icJOkUEioexFHzyPurSQ==} + package-manager-detector@1.5.0: + resolution: {integrity: sha512-uBj69dVlYe/+wxj8JOpr97XfsxH/eumMt6HqjNTmJDf/6NO9s+0uxeOneIz3AsPt2m6y9PqzDzd3ATcU17MNfw==} param-case@3.0.4: resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} @@ -3247,8 +3226,8 @@ packages: resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} engines: {node: '>=4'} - pnpm-workspace-yaml@1.2.0: - resolution: {integrity: sha512-4CnZHmLSaprRnIm2iQ27Zl1cWPRHdX7Ehw7ckRwujoPKCk2QAz4agsA2MbTodg4sgbqYfJ68ULT+Q5A8dU+Mow==} + pnpm-workspace-yaml@1.3.0: + resolution: {integrity: sha512-Krb5q8Totd5mVuLx7we+EFHq/AfxA75nbfTm25Q1pIf606+RlaKUG+PXH8SDihfe5b5k4H09gE+sL47L1t5lbw==} postcss-selector-parser@6.1.2: resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} @@ -3324,6 +3303,10 @@ packages: resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} engines: {node: '>=0.10.0'} + reserved-identifiers@1.2.0: + resolution: {integrity: sha512-yE7KUfFvaBFzGPs5H3Ops1RevfUEsDc5Iz65rOwWg4lE8HJSYtle77uul3+573457oHvBKuHYDl/xqUkKpEEdw==} + engines: {node: '>=18'} + resolve-cwd@3.0.0: resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} engines: {node: '>=8'} @@ -3502,8 +3485,8 @@ packages: resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} engines: {node: '>=6'} - strip-indent@4.1.0: - resolution: {integrity: sha512-OA95x+JPmL7kc7zCu+e+TeYxEiaIyndRx0OrBcK2QPPH09oAndr2ALvymxWA+Lx1PYYvFUm4O63pRkdJAaW96w==} + strip-indent@4.1.1: + resolution: {integrity: sha512-SlyRoSkdh1dYP0PzclLE7r0M9sgbFKKMFXpFRUMNuKhQSbC6VQIGzq3E0qsfvGJaUFJPGv6Ws1NZ/haTAjfbMA==} engines: {node: '>=12'} strip-json-comments@3.1.1: @@ -3525,8 +3508,8 @@ packages: resolution: {integrity: sha512-MeQTA1r0litLUf0Rp/iisCaL8761lKAZHaimlbGK4j0HysC4PLfqygQj9srcs0m2RdtDYnF8UuYyKpbjHYp7Jw==} engines: {node: ^14.18.0 || >=16.0.0} - tapable@2.2.3: - resolution: {integrity: sha512-ZL6DDuAlRlLGghwcfmSn9sK3Hr6ArtyudlSAiCqQ6IfE+b+HHbydbYDIG15IfS5do+7XQQBdBiubF/cV2dnDzg==} + tapable@2.3.0: + resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==} engines: {node: '>=6'} test-exclude@6.0.0: @@ -3563,6 +3546,10 @@ packages: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} engines: {node: '>=8.0'} + to-valid-identifier@1.0.0: + resolution: {integrity: sha512-41wJyvKep3yT2tyPqX/4blcfybknGB4D+oETKLs7Q76UiPqRpUJK3hr1nxelyYO0PHKVzJwlu0aCeEAsGI6rpw==} + engines: {node: '>=20'} + toml-eslint-parser@0.10.0: resolution: {integrity: sha512-khrZo4buq4qVmsGzS5yQjKe/WsFvV8fGfOjDQN0q4iy9FjRfPWRgTFrU8u1R2iu/SfWLhY9WnCi4Jhdrcbtg+g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -3640,10 +3627,6 @@ packages: resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} engines: {node: '>=12.20'} - type-fest@4.2.0: - resolution: {integrity: sha512-5zknd7Dss75pMSED270A1RQS3KloqRJA9XbXLe0eCxyw7xXFb3rd+9B0UQ/0E+LQT6lnrLviEolYORlRWamn4w==} - engines: {node: '>=16'} - type-fest@4.41.0: resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==} engines: {node: '>=16'} @@ -3672,14 +3655,14 @@ packages: undici-types@6.21.0: resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} - unist-util-is@6.0.0: - resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} + unist-util-is@6.0.1: + resolution: {integrity: sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==} unist-util-stringify-position@4.0.0: resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} - unist-util-visit-parents@6.0.1: - resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} + unist-util-visit-parents@6.0.2: + resolution: {integrity: sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==} unist-util-visit@5.0.0: resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} @@ -3691,8 +3674,8 @@ packages: unrs-resolver@1.7.13: resolution: {integrity: sha512-QUjCYKAgrdJpf3wA73zWjOrO7ra19lfnwQ8HRkNOLah5AVDqOS38UunnyhzsSL8AE+2/AGnAHxlr8cGshCP35A==} - update-browserslist-db@1.1.3: - resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==} + update-browserslist-db@1.1.4: + resolution: {integrity: sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' @@ -3926,16 +3909,16 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - '@antfu/eslint-config@6.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.3(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@6.1.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.3(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.38.0(jiti@2.4.0)) - '@eslint/markdown': 7.4.0 - '@stylistic/eslint-plugin': 5.4.0(eslint@9.38.0(jiti@2.4.0)) - '@typescript-eslint/eslint-plugin': 8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) - '@typescript-eslint/parser': 8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.3.20(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.3(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) + '@eslint/markdown': 7.5.0 + '@stylistic/eslint-plugin': 5.5.0(eslint@9.38.0(jiti@2.4.0)) + '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/parser': 8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) + '@vitest/eslint-plugin': 1.3.24(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.3(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.2.0 cac: 6.7.14 eslint: 9.38.0(jiti@2.4.0) @@ -3945,17 +3928,17 @@ snapshots: eslint-plugin-antfu: 3.1.1(eslint@9.38.0(jiti@2.4.0)) eslint-plugin-command: 3.3.1(eslint@9.38.0(jiti@2.4.0)) eslint-plugin-import-lite: 0.3.0(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-jsdoc: 59.1.0(eslint@9.38.0(jiti@2.4.0)) + eslint-plugin-jsdoc: 61.1.8(eslint@9.38.0(jiti@2.4.0)) eslint-plugin-jsonc: 2.21.0(eslint@9.38.0(jiti@2.4.0)) eslint-plugin-n: 17.23.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) eslint-plugin-no-only-tests: 3.3.0 eslint-plugin-perfectionist: 4.15.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-pnpm: 1.2.0(eslint@9.38.0(jiti@2.4.0)) + eslint-plugin-pnpm: 1.3.0(eslint@9.38.0(jiti@2.4.0)) eslint-plugin-regexp: 2.10.0(eslint@9.38.0(jiti@2.4.0)) eslint-plugin-toml: 0.12.0(eslint@9.38.0(jiti@2.4.0)) eslint-plugin-unicorn: 61.0.2(eslint@9.38.0(jiti@2.4.0)) - eslint-plugin-unused-imports: 4.2.0(@typescript-eslint/eslint-plugin@8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0)) - eslint-plugin-vue: 10.5.0(@stylistic/eslint-plugin@5.4.0(eslint@9.38.0(jiti@2.4.0)))(@typescript-eslint/parser@8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.38.0(jiti@2.4.0))) + eslint-plugin-unused-imports: 4.3.0(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0)) + eslint-plugin-vue: 10.5.1(@stylistic/eslint-plugin@5.5.0(eslint@9.38.0(jiti@2.4.0)))(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.38.0(jiti@2.4.0))) eslint-plugin-yml: 1.19.0(eslint@9.38.0(jiti@2.4.0)) eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0)) globals: 16.4.0 @@ -3974,7 +3957,7 @@ snapshots: '@antfu/install-pkg@1.1.0': dependencies: - package-manager-detector: 1.3.0 + package-manager-detector: 1.5.0 tinyexec: 1.0.1 '@ardatan/relay-compiler@12.0.3(graphql@16.11.0)': @@ -4001,7 +3984,7 @@ snapshots: '@babel/code-frame@7.27.1': dependencies: - '@babel/helper-validator-identifier': 7.27.1 + '@babel/helper-validator-identifier': 7.28.5 js-tokens: 4.0.0 picocolors: 1.1.1 @@ -4047,7 +4030,7 @@ snapshots: dependencies: '@babel/compat-data': 7.27.5 '@babel/helper-validator-option': 7.27.1 - browserslist: 4.26.2 + browserslist: 4.27.0 lru-cache: 5.1.1 semver: 6.3.1 @@ -4062,7 +4045,7 @@ snapshots: dependencies: '@babel/core': 7.27.4 '@babel/helper-module-imports': 7.27.1 - '@babel/helper-validator-identifier': 7.27.1 + '@babel/helper-validator-identifier': 7.28.5 '@babel/traverse': 7.27.4 transitivePeerDependencies: - supports-color @@ -4071,8 +4054,6 @@ snapshots: '@babel/helper-string-parser@7.27.1': {} - '@babel/helper-validator-identifier@7.27.1': {} - '@babel/helper-validator-identifier@7.28.5': {} '@babel/helper-validator-option@7.27.1': {} @@ -4203,7 +4184,7 @@ snapshots: '@babel/types@7.28.4': dependencies: '@babel/helper-string-parser': 7.27.1 - '@babel/helper-validator-identifier': 7.27.1 + '@babel/helper-validator-identifier': 7.28.5 '@babel/types@7.28.5': dependencies: @@ -4242,18 +4223,20 @@ snapshots: '@es-joy/jsdoccomment@0.50.2': dependencies: '@types/estree': 1.0.8 - '@typescript-eslint/types': 8.44.0 + '@typescript-eslint/types': 8.46.2 comment-parser: 1.4.1 esquery: 1.6.0 jsdoc-type-pratt-parser: 4.1.0 - '@es-joy/jsdoccomment@0.58.0': + '@es-joy/jsdoccomment@0.76.0': dependencies: '@types/estree': 1.0.8 - '@typescript-eslint/types': 8.44.0 + '@typescript-eslint/types': 8.46.2 comment-parser: 1.4.1 esquery: 1.6.0 - jsdoc-type-pratt-parser: 5.4.0 + jsdoc-type-pratt-parser: 6.10.0 + + '@es-joy/resolve.exports@1.0.0': {} '@esbuild/aix-ppc64@0.25.11': optional: true @@ -4346,7 +4329,11 @@ snapshots: '@eslint-community/regexpp@4.12.1': {} - '@eslint/compat@1.3.2(eslint@9.38.0(jiti@2.4.0))': + '@eslint-community/regexpp@4.12.2': {} + + '@eslint/compat@1.4.0(eslint@9.38.0(jiti@2.4.0))': + dependencies: + '@eslint/core': 0.16.0 optionalDependencies: eslint: 9.38.0(jiti@2.4.0) @@ -4386,7 +4373,7 @@ snapshots: '@eslint/js@9.38.0': {} - '@eslint/markdown@7.4.0': + '@eslint/markdown@7.5.0': dependencies: '@eslint/core': 0.16.0 '@eslint/plugin-kit': 0.4.0 @@ -5268,6 +5255,8 @@ snapshots: '@sinclair/typebox@0.34.33': {} + '@sindresorhus/base62@1.0.0': {} + '@sinonjs/commons@3.0.1': dependencies: type-detect: 4.0.8 @@ -5278,10 +5267,10 @@ snapshots: '@standard-schema/spec@1.0.0': {} - '@stylistic/eslint-plugin@5.4.0(eslint@9.38.0(jiti@2.4.0))': + '@stylistic/eslint-plugin@5.5.0(eslint@9.38.0(jiti@2.4.0))': dependencies: '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) - '@typescript-eslint/types': 8.44.0 + '@typescript-eslint/types': 8.46.2 eslint: 9.38.0(jiti@2.4.0) eslint-visitor-keys: 4.2.1 espree: 10.4.0 @@ -5367,14 +5356,14 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)': + '@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)': dependencies: - '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) - '@typescript-eslint/scope-manager': 8.46.1 - '@typescript-eslint/type-utils': 8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) - '@typescript-eslint/utils': 8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) - '@typescript-eslint/visitor-keys': 8.46.1 + '@eslint-community/regexpp': 4.12.2 + '@typescript-eslint/parser': 8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/scope-manager': 8.46.2 + '@typescript-eslint/type-utils': 8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/utils': 8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 8.46.2 eslint: 9.38.0(jiti@2.4.0) graphemer: 1.4.0 ignore: 7.0.5 @@ -5384,59 +5373,41 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)': + '@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)': dependencies: - '@typescript-eslint/scope-manager': 8.46.1 - '@typescript-eslint/types': 8.46.1 - '@typescript-eslint/typescript-estree': 8.46.1(typescript@5.9.3) - '@typescript-eslint/visitor-keys': 8.46.1 + '@typescript-eslint/scope-manager': 8.46.2 + '@typescript-eslint/types': 8.46.2 + '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 8.46.2 debug: 4.4.3 eslint: 9.38.0(jiti@2.4.0) typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/project-service@8.44.0(typescript@5.9.3)': + '@typescript-eslint/project-service@8.46.2(typescript@5.9.3)': dependencies: - '@typescript-eslint/tsconfig-utils': 8.44.0(typescript@5.9.3) - '@typescript-eslint/types': 8.44.0 + '@typescript-eslint/tsconfig-utils': 8.46.2(typescript@5.9.3) + '@typescript-eslint/types': 8.46.2 debug: 4.4.3 typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/project-service@8.46.1(typescript@5.9.3)': + '@typescript-eslint/scope-manager@8.46.2': dependencies: - '@typescript-eslint/tsconfig-utils': 8.46.1(typescript@5.9.3) - '@typescript-eslint/types': 8.46.1 - debug: 4.4.3 - typescript: 5.9.3 - transitivePeerDependencies: - - supports-color + '@typescript-eslint/types': 8.46.2 + '@typescript-eslint/visitor-keys': 8.46.2 - '@typescript-eslint/scope-manager@8.44.0': - dependencies: - '@typescript-eslint/types': 8.44.0 - '@typescript-eslint/visitor-keys': 8.44.0 - - '@typescript-eslint/scope-manager@8.46.1': - dependencies: - '@typescript-eslint/types': 8.46.1 - '@typescript-eslint/visitor-keys': 8.46.1 - - '@typescript-eslint/tsconfig-utils@8.44.0(typescript@5.9.3)': - dependencies: - typescript: 5.9.3 - - '@typescript-eslint/tsconfig-utils@8.46.1(typescript@5.9.3)': + '@typescript-eslint/tsconfig-utils@8.46.2(typescript@5.9.3)': dependencies: typescript: 5.9.3 - '@typescript-eslint/type-utils@8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)': + '@typescript-eslint/type-utils@8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)': dependencies: - '@typescript-eslint/types': 8.46.1 - '@typescript-eslint/typescript-estree': 8.46.1(typescript@5.9.3) - '@typescript-eslint/utils': 8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/types': 8.46.2 + '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.9.3) + '@typescript-eslint/utils': 8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) debug: 4.4.3 eslint: 9.38.0(jiti@2.4.0) ts-api-utils: 2.1.0(typescript@5.9.3) @@ -5444,32 +5415,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/types@8.44.0': {} - - '@typescript-eslint/types@8.46.1': {} - - '@typescript-eslint/typescript-estree@8.44.0(typescript@5.9.3)': - dependencies: - '@typescript-eslint/project-service': 8.44.0(typescript@5.9.3) - '@typescript-eslint/tsconfig-utils': 8.44.0(typescript@5.9.3) - '@typescript-eslint/types': 8.44.0 - '@typescript-eslint/visitor-keys': 8.44.0 - debug: 4.4.3 - fast-glob: 3.3.3 - is-glob: 4.0.3 - minimatch: 9.0.5 - semver: 7.7.3 - ts-api-utils: 2.1.0(typescript@5.9.3) - typescript: 5.9.3 - transitivePeerDependencies: - - supports-color + '@typescript-eslint/types@8.46.2': {} - '@typescript-eslint/typescript-estree@8.46.1(typescript@5.9.3)': + '@typescript-eslint/typescript-estree@8.46.2(typescript@5.9.3)': dependencies: - '@typescript-eslint/project-service': 8.46.1(typescript@5.9.3) - '@typescript-eslint/tsconfig-utils': 8.46.1(typescript@5.9.3) - '@typescript-eslint/types': 8.46.1 - '@typescript-eslint/visitor-keys': 8.46.1 + '@typescript-eslint/project-service': 8.46.2(typescript@5.9.3) + '@typescript-eslint/tsconfig-utils': 8.46.2(typescript@5.9.3) + '@typescript-eslint/types': 8.46.2 + '@typescript-eslint/visitor-keys': 8.46.2 debug: 4.4.3 fast-glob: 3.3.3 is-glob: 4.0.3 @@ -5480,36 +5433,20 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.44.0(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)': + '@typescript-eslint/utils@8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)': dependencies: '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) - '@typescript-eslint/scope-manager': 8.44.0 - '@typescript-eslint/types': 8.44.0 - '@typescript-eslint/typescript-estree': 8.44.0(typescript@5.9.3) + '@typescript-eslint/scope-manager': 8.46.2 + '@typescript-eslint/types': 8.46.2 + '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.9.3) eslint: 9.38.0(jiti@2.4.0) typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)': + '@typescript-eslint/visitor-keys@8.46.2': dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) - '@typescript-eslint/scope-manager': 8.46.1 - '@typescript-eslint/types': 8.46.1 - '@typescript-eslint/typescript-estree': 8.46.1(typescript@5.9.3) - eslint: 9.38.0(jiti@2.4.0) - typescript: 5.9.3 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/visitor-keys@8.44.0': - dependencies: - '@typescript-eslint/types': 8.44.0 - eslint-visitor-keys: 4.2.1 - - '@typescript-eslint/visitor-keys@8.46.1': - dependencies: - '@typescript-eslint/types': 8.46.1 + '@typescript-eslint/types': 8.46.2 eslint-visitor-keys: 4.2.1 '@ungap/structured-clone@1.3.0': {} @@ -5567,10 +5504,10 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.20(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.3(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.3.24(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.3(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': dependencies: - '@typescript-eslint/scope-manager': 8.46.1 - '@typescript-eslint/utils': 8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/scope-manager': 8.46.2 + '@typescript-eslint/utils': 8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) eslint: 9.38.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 @@ -5775,7 +5712,7 @@ snapshots: balanced-match@1.0.2: {} - baseline-browser-mapping@2.8.6: {} + baseline-browser-mapping@2.8.20: {} boolbase@1.0.0: {} @@ -5792,13 +5729,13 @@ snapshots: dependencies: fill-range: 7.1.1 - browserslist@4.26.2: + browserslist@4.27.0: dependencies: - baseline-browser-mapping: 2.8.6 - caniuse-lite: 1.0.30001743 - electron-to-chromium: 1.5.222 - node-releases: 2.0.21 - update-browserslist-db: 1.1.3(browserslist@4.26.2) + baseline-browser-mapping: 2.8.20 + caniuse-lite: 1.0.30001751 + electron-to-chromium: 1.5.240 + node-releases: 2.0.26 + update-browserslist-db: 1.1.4(browserslist@4.27.0) bs-logger@0.2.6: dependencies: @@ -5829,7 +5766,7 @@ snapshots: camelcase@6.3.0: {} - caniuse-lite@1.0.30001743: {} + caniuse-lite@1.0.30001751: {} capital-case@1.0.4: dependencies: @@ -5884,6 +5821,8 @@ snapshots: ci-info@4.3.0: {} + ci-info@4.3.1: {} + cjs-module-lexer@2.1.0: {} clean-regexp@1.0.0: @@ -5937,9 +5876,9 @@ snapshots: convert-source-map@2.0.0: {} - core-js-compat@3.45.1: + core-js-compat@3.46.0: dependencies: - browserslist: 4.26.2 + browserslist: 4.27.0 cosmiconfig@8.3.6(typescript@5.9.3): dependencies: @@ -6022,7 +5961,7 @@ snapshots: eastasianwidth@0.2.0: {} - electron-to-chromium@1.5.222: {} + electron-to-chromium@1.5.240: {} emittery@0.13.1: {} @@ -6037,7 +5976,7 @@ snapshots: enhanced-resolve@5.18.3: dependencies: graceful-fs: 4.2.11 - tapable: 2.2.3 + tapable: 2.3.0 entities@4.5.0: {} @@ -6102,7 +6041,7 @@ snapshots: eslint-config-flat-gitignore@2.1.0(eslint@9.38.0(jiti@2.4.0)): dependencies: - '@eslint/compat': 1.3.2(eslint@9.38.0(jiti@2.4.0)) + '@eslint/compat': 1.4.0(eslint@9.38.0(jiti@2.4.0)) eslint: 9.38.0(jiti@2.4.0) eslint-flat-config-utils@2.1.4: @@ -6131,21 +6070,22 @@ snapshots: eslint-plugin-es-x@7.8.0(eslint@9.38.0(jiti@2.4.0)): dependencies: '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) - '@eslint-community/regexpp': 4.12.1 + '@eslint-community/regexpp': 4.12.2 eslint: 9.38.0(jiti@2.4.0) eslint-compat-utils: 0.5.1(eslint@9.38.0(jiti@2.4.0)) eslint-plugin-import-lite@0.3.0(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3): dependencies: '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) - '@typescript-eslint/types': 8.44.0 + '@typescript-eslint/types': 8.46.2 eslint: 9.38.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - eslint-plugin-jsdoc@59.1.0(eslint@9.38.0(jiti@2.4.0)): + eslint-plugin-jsdoc@61.1.8(eslint@9.38.0(jiti@2.4.0)): dependencies: - '@es-joy/jsdoccomment': 0.58.0 + '@es-joy/jsdoccomment': 0.76.0 + '@es-joy/resolve.exports': 1.0.0 are-docs-informative: 0.0.2 comment-parser: 1.4.1 debug: 4.4.3 @@ -6153,10 +6093,12 @@ snapshots: eslint: 9.38.0(jiti@2.4.0) espree: 10.4.0 esquery: 1.6.0 - object-deep-merge: 1.0.5 + html-entities: 2.6.0 + object-deep-merge: 2.0.0 parse-imports-exports: 0.2.4 semver: 7.7.3 spdx-expression-parse: 4.0.0 + to-valid-identifier: 1.0.0 transitivePeerDependencies: - supports-color @@ -6181,7 +6123,7 @@ snapshots: enhanced-resolve: 5.18.3 eslint: 9.38.0(jiti@2.4.0) eslint-plugin-es-x: 7.8.0(eslint@9.38.0(jiti@2.4.0)) - get-tsconfig: 4.10.1 + get-tsconfig: 4.13.0 globals: 15.15.0 globrex: 0.1.2 ignore: 5.3.2 @@ -6194,28 +6136,28 @@ snapshots: eslint-plugin-perfectionist@4.15.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3): dependencies: - '@typescript-eslint/types': 8.44.0 - '@typescript-eslint/utils': 8.44.0(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/types': 8.46.2 + '@typescript-eslint/utils': 8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) eslint: 9.38.0(jiti@2.4.0) natural-orderby: 5.0.0 transitivePeerDependencies: - supports-color - typescript - eslint-plugin-pnpm@1.2.0(eslint@9.38.0(jiti@2.4.0)): + eslint-plugin-pnpm@1.3.0(eslint@9.38.0(jiti@2.4.0)): dependencies: empathic: 2.0.0 eslint: 9.38.0(jiti@2.4.0) jsonc-eslint-parser: 2.4.1 pathe: 2.0.3 - pnpm-workspace-yaml: 1.2.0 + pnpm-workspace-yaml: 1.3.0 tinyglobby: 0.2.15 yaml-eslint-parser: 1.3.0 eslint-plugin-regexp@2.10.0(eslint@9.38.0(jiti@2.4.0)): dependencies: '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) - '@eslint-community/regexpp': 4.12.1 + '@eslint-community/regexpp': 4.12.2 comment-parser: 1.4.1 eslint: 9.38.0(jiti@2.4.0) jsdoc-type-pratt-parser: 4.8.0 @@ -6235,13 +6177,13 @@ snapshots: eslint-plugin-unicorn@61.0.2(eslint@9.38.0(jiti@2.4.0)): dependencies: - '@babel/helper-validator-identifier': 7.27.1 + '@babel/helper-validator-identifier': 7.28.5 '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) '@eslint/plugin-kit': 0.3.5 change-case: 5.4.4 - ci-info: 4.3.0 + ci-info: 4.3.1 clean-regexp: 1.0.0 - core-js-compat: 3.45.1 + core-js-compat: 3.46.0 eslint: 9.38.0(jiti@2.4.0) esquery: 1.6.0 find-up-simple: 1.0.1 @@ -6253,15 +6195,15 @@ snapshots: regexp-tree: 0.1.27 regjsparser: 0.12.0 semver: 7.7.3 - strip-indent: 4.1.0 + strip-indent: 4.1.1 - eslint-plugin-unused-imports@4.2.0(@typescript-eslint/eslint-plugin@8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0)): + eslint-plugin-unused-imports@4.3.0(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0)): dependencies: eslint: 9.38.0(jiti@2.4.0) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-vue@10.5.0(@stylistic/eslint-plugin@5.4.0(eslint@9.38.0(jiti@2.4.0)))(@typescript-eslint/parser@8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.38.0(jiti@2.4.0))): + eslint-plugin-vue@10.5.1(@stylistic/eslint-plugin@5.5.0(eslint@9.38.0(jiti@2.4.0)))(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.38.0(jiti@2.4.0))): dependencies: '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) eslint: 9.38.0(jiti@2.4.0) @@ -6272,8 +6214,8 @@ snapshots: vue-eslint-parser: 10.2.0(eslint@9.38.0(jiti@2.4.0)) xml-name-validator: 4.0.0 optionalDependencies: - '@stylistic/eslint-plugin': 5.4.0(eslint@9.38.0(jiti@2.4.0)) - '@typescript-eslint/parser': 8.46.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) + '@stylistic/eslint-plugin': 5.5.0(eslint@9.38.0(jiti@2.4.0)) + '@typescript-eslint/parser': 8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) eslint-plugin-yml@1.19.0(eslint@9.38.0(jiti@2.4.0)): dependencies: @@ -6504,7 +6446,7 @@ snapshots: get-stream@6.0.1: {} - get-tsconfig@4.10.1: + get-tsconfig@4.13.0: dependencies: resolve-pkg-maps: 1.0.0 @@ -6611,6 +6553,8 @@ snapshots: capital-case: 1.0.4 tslib: 2.8.1 + html-entities@2.6.0: {} + html-escaper@2.0.2: {} human-signals@2.1.0: {} @@ -6719,7 +6663,7 @@ snapshots: '@babel/parser': 7.28.4 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 - semver: 7.7.2 + semver: 7.7.3 transitivePeerDependencies: - supports-color @@ -7076,7 +7020,7 @@ snapshots: jsdoc-type-pratt-parser@4.8.0: {} - jsdoc-type-pratt-parser@5.4.0: {} + jsdoc-type-pratt-parser@6.10.0: {} jsesc@3.0.2: {} @@ -7189,7 +7133,7 @@ snapshots: make-dir@4.0.0: dependencies: - semver: 7.7.2 + semver: 7.7.3 make-error@1.3.6: {} @@ -7205,8 +7149,8 @@ snapshots: dependencies: '@types/mdast': 4.0.4 escape-string-regexp: 5.0.0 - unist-util-is: 6.0.0 - unist-util-visit-parents: 6.0.1 + unist-util-is: 6.0.1 + unist-util-visit-parents: 6.0.2 mdast-util-from-markdown@2.0.2: dependencies: @@ -7296,7 +7240,7 @@ snapshots: mdast-util-phrasing@4.1.0: dependencies: '@types/mdast': 4.0.4 - unist-util-is: 6.0.0 + unist-util-is: 6.0.1 mdast-util-to-markdown@2.1.2: dependencies: @@ -7577,7 +7521,7 @@ snapshots: node-int64@0.4.0: {} - node-releases@2.0.21: {} + node-releases@2.0.26: {} normalize-path@2.1.1: dependencies: @@ -7610,9 +7554,7 @@ snapshots: object-assign@4.1.1: {} - object-deep-merge@1.0.5: - dependencies: - type-fest: 4.2.0 + object-deep-merge@2.0.0: {} once@1.4.0: dependencies: @@ -7655,7 +7597,7 @@ snapshots: package-json-from-dist@1.0.1: {} - package-manager-detector@1.3.0: {} + package-manager-detector@1.5.0: {} param-case@3.0.4: dependencies: @@ -7748,7 +7690,7 @@ snapshots: pluralize@8.0.0: {} - pnpm-workspace-yaml@1.2.0: + pnpm-workspace-yaml@1.3.0: dependencies: yaml: 2.8.1 @@ -7794,11 +7736,11 @@ snapshots: refa@0.12.1: dependencies: - '@eslint-community/regexpp': 4.12.1 + '@eslint-community/regexpp': 4.12.2 regexp-ast-analysis@0.7.1: dependencies: - '@eslint-community/regexpp': 4.12.1 + '@eslint-community/regexpp': 4.12.2 refa: 0.12.1 regexp-tree@0.1.27: {} @@ -7823,6 +7765,8 @@ snapshots: require-directory@2.1.1: {} + reserved-identifiers@1.2.0: {} + resolve-cwd@3.0.0: dependencies: resolve-from: 5.0.0 @@ -7878,7 +7822,7 @@ snapshots: scslre@0.3.0: dependencies: - '@eslint-community/regexpp': 4.12.1 + '@eslint-community/regexpp': 4.12.2 refa: 0.12.1 regexp-ast-analysis: 0.7.1 @@ -8002,7 +7946,7 @@ snapshots: strip-final-newline@2.0.0: {} - strip-indent@4.1.0: {} + strip-indent@4.1.1: {} strip-json-comments@3.1.1: {} @@ -8022,7 +7966,7 @@ snapshots: dependencies: '@pkgr/core': 0.2.9 - tapable@2.2.3: {} + tapable@2.3.0: {} test-exclude@6.0.0: dependencies: @@ -8055,6 +7999,11 @@ snapshots: dependencies: is-number: 7.0.0 + to-valid-identifier@1.0.0: + dependencies: + '@sindresorhus/base62': 1.0.0 + reserved-identifiers: 1.2.0 + toml-eslint-parser@0.10.0: dependencies: eslint-visitor-keys: 3.4.3 @@ -8110,8 +8059,6 @@ snapshots: type-fest@2.19.0: {} - type-fest@4.2.0: {} - type-fest@4.41.0: {} typescript@5.9.3: {} @@ -8127,7 +8074,7 @@ snapshots: undici-types@6.21.0: {} - unist-util-is@6.0.0: + unist-util-is@6.0.1: dependencies: '@types/unist': 3.0.3 @@ -8135,16 +8082,16 @@ snapshots: dependencies: '@types/unist': 3.0.3 - unist-util-visit-parents@6.0.1: + unist-util-visit-parents@6.0.2: dependencies: '@types/unist': 3.0.3 - unist-util-is: 6.0.0 + unist-util-is: 6.0.1 unist-util-visit@5.0.0: dependencies: '@types/unist': 3.0.3 - unist-util-is: 6.0.0 - unist-util-visit-parents: 6.0.1 + unist-util-is: 6.0.1 + unist-util-visit-parents: 6.0.2 unixify@1.0.0: dependencies: @@ -8172,9 +8119,9 @@ snapshots: '@unrs/resolver-binding-win32-ia32-msvc': 1.7.13 '@unrs/resolver-binding-win32-x64-msvc': 1.7.13 - update-browserslist-db@1.1.3(browserslist@4.26.2): + update-browserslist-db@1.1.4(browserslist@4.27.0): dependencies: - browserslist: 4.26.2 + browserslist: 4.27.0 escalade: 3.2.0 picocolors: 1.1.1 From 02abd23f3a51701e2dda967fb93ea7e5e94aa6fc Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 18:14:31 +0000 Subject: [PATCH 089/133] chore(deps): update dependency vitest to v4.0.4 (#1277) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 94 +++++++++++++++++++++++++------------------------- 1 file changed, 47 insertions(+), 47 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b5d4445d..82c1d6a6 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.1.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.3(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) + version: 6.1.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.1 version: 6.0.1(@types/node@22.18.12)(graphql@16.11.0)(typescript@5.9.3) @@ -71,7 +71,7 @@ importers: version: 1.1.0(typescript@5.9.3) vitest: specifier: ^4.0.0 - version: 4.0.3(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) + version: 4.0.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.1 version: 1.7.1 @@ -1463,11 +1463,11 @@ packages: vitest: optional: true - '@vitest/expect@4.0.3': - resolution: {integrity: sha512-v3eSDx/bF25pzar6aEJrrdTXJduEBU3uSGXHslIdGIpJVP8tQQHV6x1ZfzbFQ/bLIomLSbR/2ZCfnaEGkWkiVQ==} + '@vitest/expect@4.0.4': + resolution: {integrity: sha512-0ioMscWJtfpyH7+P82sGpAi3Si30OVV73jD+tEqXm5+rIx9LgnfdaOn45uaFkKOncABi/PHL00Yn0oW/wK4cXw==} - '@vitest/mocker@4.0.3': - resolution: {integrity: sha512-evZcRspIPbbiJEe748zI2BRu94ThCBE+RkjCpVF8yoVYuTV7hMe+4wLF/7K86r8GwJHSmAPnPbZhpXWWrg1qbA==} + '@vitest/mocker@4.0.4': + resolution: {integrity: sha512-UTtKgpjWj+pvn3lUM55nSg34098obGhSHH+KlJcXesky8b5wCUgg7s60epxrS6yAG8slZ9W8T9jGWg4PisMf5Q==} peerDependencies: msw: ^2.4.9 vite: ^6.0.0 || ^7.0.0-0 @@ -1477,20 +1477,20 @@ packages: vite: optional: true - '@vitest/pretty-format@4.0.3': - resolution: {integrity: sha512-N7gly/DRXzxa9w9sbDXwD9QNFYP2hw90LLLGDobPNwiWgyW95GMxsCt29/COIKKh3P7XJICR38PSDePenMBtsw==} + '@vitest/pretty-format@4.0.4': + resolution: {integrity: sha512-lHI2rbyrLVSd1TiHGJYyEtbOBo2SDndIsN3qY4o4xe2pBxoJLD6IICghNCvD7P+BFin6jeyHXiUICXqgl6vEaQ==} - '@vitest/runner@4.0.3': - resolution: {integrity: sha512-1/aK6fPM0lYXWyGKwop2Gbvz1plyTps/HDbIIJXYtJtspHjpXIeB3If07eWpVH4HW7Rmd3Rl+IS/+zEAXrRtXA==} + '@vitest/runner@4.0.4': + resolution: {integrity: sha512-99EDqiCkncCmvIZj3qJXBZbyoQ35ghOwVWNnQ5nj0Hnsv4Qm40HmrMJrceewjLVvsxV/JSU4qyx2CGcfMBmXJw==} - '@vitest/snapshot@4.0.3': - resolution: {integrity: sha512-amnYmvZ5MTjNCP1HZmdeczAPLRD6iOm9+2nMRUGxbe/6sQ0Ymur0NnR9LIrWS8JA3wKE71X25D6ya/3LN9YytA==} + '@vitest/snapshot@4.0.4': + resolution: {integrity: sha512-XICqf5Gi4648FGoBIeRgnHWSNDp+7R5tpclGosFaUUFzY6SfcpsfHNMnC7oDu/iOLBxYfxVzaQpylEvpgii3zw==} - '@vitest/spy@4.0.3': - resolution: {integrity: sha512-82vVL8Cqz7rbXaNUl35V2G7xeNMAjBdNOVaHbrzznT9BmiCiPOzhf0FhU3eP41nP1bLDm/5wWKZqkG4nyU95DQ==} + '@vitest/spy@4.0.4': + resolution: {integrity: sha512-G9L13AFyYECo40QG7E07EdYnZZYCKMTSp83p9W8Vwed0IyCG1GnpDLxObkx8uOGPXfDpdeVf24P1Yka8/q1s9g==} - '@vitest/utils@4.0.3': - resolution: {integrity: sha512-qV6KJkq8W3piW6MDIbGOmn1xhvcW4DuA07alqaQ+vdx7YA49J85pnwnxigZVQFQw3tWnQNRKWwhz5wbP6iv/GQ==} + '@vitest/utils@4.0.4': + resolution: {integrity: sha512-4bJLmSvZLyVbNsYFRpPYdJViG9jZyRvMZ35IF4ymXbRZoS+ycYghmwTGiscTXduUg2lgKK7POWIyXJNute1hjw==} '@vue/compiler-core@3.5.12': resolution: {integrity: sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw==} @@ -3751,18 +3751,18 @@ packages: yaml: optional: true - vitest@4.0.3: - resolution: {integrity: sha512-IUSop8jgaT7w0g1yOM/35qVtKjr/8Va4PrjzH1OUb0YH4c3OXB2lCZDkMAB6glA8T5w8S164oJGsbcmAecr4sA==} + vitest@4.0.4: + resolution: {integrity: sha512-hV31h0/bGbtmDQc0KqaxsTO1v4ZQeF8ojDFuy4sZhFadwAqqvJA0LDw68QUocctI5EDpFMql/jVWKuPYHIf2Ew==} engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' '@types/debug': ^4.1.12 '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0 - '@vitest/browser-playwright': 4.0.3 - '@vitest/browser-preview': 4.0.3 - '@vitest/browser-webdriverio': 4.0.3 - '@vitest/ui': 4.0.3 + '@vitest/browser-playwright': 4.0.4 + '@vitest/browser-preview': 4.0.4 + '@vitest/browser-webdriverio': 4.0.4 + '@vitest/ui': 4.0.4 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -3909,7 +3909,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - '@antfu/eslint-config@6.1.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.3(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@6.1.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -3918,7 +3918,7 @@ snapshots: '@stylistic/eslint-plugin': 5.5.0(eslint@9.38.0(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/parser': 8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.3.24(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.3(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/eslint-plugin': 1.3.24(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.2.0 cac: 6.7.14 eslint: 9.38.0(jiti@2.4.0) @@ -5504,54 +5504,54 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.24(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.3(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.3.24(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.46.2 '@typescript-eslint/utils': 8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) eslint: 9.38.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - vitest: 4.0.3(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) + vitest: 4.0.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color - '@vitest/expect@4.0.3': + '@vitest/expect@4.0.4': dependencies: '@standard-schema/spec': 1.0.0 '@types/chai': 5.2.3 - '@vitest/spy': 4.0.3 - '@vitest/utils': 4.0.3 + '@vitest/spy': 4.0.4 + '@vitest/utils': 4.0.4 chai: 6.2.0 tinyrainbow: 3.0.3 - '@vitest/mocker@4.0.3(vite@7.1.12(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@4.0.4(vite@7.1.12(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': dependencies: - '@vitest/spy': 4.0.3 + '@vitest/spy': 4.0.4 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: vite: 7.1.12(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) - '@vitest/pretty-format@4.0.3': + '@vitest/pretty-format@4.0.4': dependencies: tinyrainbow: 3.0.3 - '@vitest/runner@4.0.3': + '@vitest/runner@4.0.4': dependencies: - '@vitest/utils': 4.0.3 + '@vitest/utils': 4.0.4 pathe: 2.0.3 - '@vitest/snapshot@4.0.3': + '@vitest/snapshot@4.0.4': dependencies: - '@vitest/pretty-format': 4.0.3 + '@vitest/pretty-format': 4.0.4 magic-string: 0.30.21 pathe: 2.0.3 - '@vitest/spy@4.0.3': {} + '@vitest/spy@4.0.4': {} - '@vitest/utils@4.0.3': + '@vitest/utils@4.0.4': dependencies: - '@vitest/pretty-format': 4.0.3 + '@vitest/pretty-format': 4.0.4 tinyrainbow: 3.0.3 '@vue/compiler-core@3.5.12': @@ -8167,15 +8167,15 @@ snapshots: jiti: 2.4.0 yaml: 2.8.1 - vitest@4.0.3(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1): + vitest@4.0.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1): dependencies: - '@vitest/expect': 4.0.3 - '@vitest/mocker': 4.0.3(vite@7.1.12(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) - '@vitest/pretty-format': 4.0.3 - '@vitest/runner': 4.0.3 - '@vitest/snapshot': 4.0.3 - '@vitest/spy': 4.0.3 - '@vitest/utils': 4.0.3 + '@vitest/expect': 4.0.4 + '@vitest/mocker': 4.0.4(vite@7.1.12(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/pretty-format': 4.0.4 + '@vitest/runner': 4.0.4 + '@vitest/snapshot': 4.0.4 + '@vitest/spy': 4.0.4 + '@vitest/utils': 4.0.4 debug: 4.4.3 es-module-lexer: 1.7.0 expect-type: 1.2.2 From fd26a66f342615ab9cfac81e3875e9a4ce9060b6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 28 Oct 2025 01:03:38 +0000 Subject: [PATCH 090/133] chore(deps): update dependency @types/node to v24 (#1278) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 258 ++++++++++++++++++++++++------------------------- 2 files changed, 130 insertions(+), 130 deletions(-) diff --git a/package.json b/package.json index ff107959..0a8ee069 100644 --- a/package.json +++ b/package.json @@ -92,7 +92,7 @@ "@graphql-codegen/typescript": "^5.0.0", "@tsconfig/recommended": "1.0.10", "@types/graphlib": "^2.1.8", - "@types/node": "^22.0.0", + "@types/node": "^24.0.0", "eslint": "9.38.0", "jest": "30.2.0", "myzod": "1.12.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 82c1d6a6..8489b371 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,10 +29,10 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.1.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) + version: 6.1.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.4(@types/debug@4.1.12)(@types/node@24.9.1)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.1 - version: 6.0.1(@types/node@22.18.12)(graphql@16.11.0)(typescript@5.9.3) + version: 6.0.1(@types/node@24.9.1)(graphql@16.11.0)(typescript@5.9.3) '@graphql-codegen/typescript': specifier: ^5.0.0 version: 5.0.2(graphql@16.11.0) @@ -43,14 +43,14 @@ importers: specifier: ^2.1.8 version: 2.1.12 '@types/node': - specifier: ^22.0.0 - version: 22.18.12 + specifier: ^24.0.0 + version: 24.9.1 eslint: specifier: 9.38.0 version: 9.38.0(jiti@2.4.0) jest: specifier: 30.2.0 - version: 30.2.0(@types/node@22.18.12) + version: 30.2.0(@types/node@24.9.1) myzod: specifier: 1.12.1 version: 1.12.1 @@ -62,7 +62,7 @@ importers: version: 2.2.0 ts-jest: specifier: 29.4.5 - version: 29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.12))(typescript@5.9.3) + version: 29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@24.9.1))(typescript@5.9.3) typescript: specifier: 5.9.3 version: 5.9.3 @@ -71,7 +71,7 @@ importers: version: 1.1.0(typescript@5.9.3) vitest: specifier: ^4.0.0 - version: 4.0.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) + version: 4.0.4(@types/debug@4.1.12)(@types/node@24.9.1)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.1 version: 1.7.1 @@ -1285,8 +1285,8 @@ packages: '@types/ms@2.1.0': resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} - '@types/node@22.18.12': - resolution: {integrity: sha512-BICHQ67iqxQGFSzfCFTT7MRQ5XcBjG5aeKh5Ok38UBbPe5fxTyE+aHFxwVrGyr8GNlqFMLKD1D3P2K/1ks8tog==} + '@types/node@24.9.1': + resolution: {integrity: sha512-QoiaXANRkSXK6p0Duvt56W208du4P9Uye9hWLWgGMDTEoKPhuenzNcC4vGUmrNkiOKTlIrBoyNQYNpSwfEZXSg==} '@types/stack-utils@2.0.3': resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} @@ -3652,8 +3652,8 @@ packages: resolution: {integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==} engines: {node: '>=0.10.0'} - undici-types@6.21.0: - resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} + undici-types@7.16.0: + resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==} unist-util-is@6.0.1: resolution: {integrity: sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==} @@ -3909,7 +3909,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - '@antfu/eslint-config@6.1.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@6.1.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.4(@types/debug@4.1.12)(@types/node@24.9.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -3918,7 +3918,7 @@ snapshots: '@stylistic/eslint-plugin': 5.5.0(eslint@9.38.0(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/parser': 8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.3.24(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/eslint-plugin': 1.3.24(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.4(@types/debug@4.1.12)(@types/node@24.9.1)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.2.0 cac: 6.7.14 eslint: 9.38.0(jiti@2.4.0) @@ -4405,7 +4405,7 @@ snapshots: graphql: 16.11.0 tslib: 2.6.3 - '@graphql-codegen/cli@6.0.1(@types/node@22.18.12)(graphql@16.11.0)(typescript@5.9.3)': + '@graphql-codegen/cli@6.0.1(@types/node@24.9.1)(graphql@16.11.0)(typescript@5.9.3)': dependencies: '@babel/generator': 7.28.3 '@babel/template': 7.27.2 @@ -4416,20 +4416,20 @@ snapshots: '@graphql-tools/apollo-engine-loader': 8.0.4(graphql@16.11.0) '@graphql-tools/code-file-loader': 8.1.5(graphql@16.11.0) '@graphql-tools/git-loader': 8.0.9(graphql@16.11.0) - '@graphql-tools/github-loader': 8.0.4(@types/node@22.18.12)(graphql@16.11.0) + '@graphql-tools/github-loader': 8.0.4(@types/node@24.9.1)(graphql@16.11.0) '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.12)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@24.9.1)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) - '@inquirer/prompts': 7.8.4(@types/node@22.18.12) + '@inquirer/prompts': 7.8.4(@types/node@24.9.1) '@whatwg-node/fetch': 0.10.1 chalk: 4.1.2 cosmiconfig: 9.0.0(typescript@5.9.3) debounce: 2.2.0 detect-indent: 6.1.0 graphql: 16.11.0 - graphql-config: 5.1.3(@types/node@22.18.12)(graphql@16.11.0)(typescript@5.9.3) + graphql-config: 5.1.3(@types/node@24.9.1)(graphql@16.11.0)(typescript@5.9.3) is-glob: 4.0.3 jiti: 2.4.0 json-to-pretty-yaml: 1.2.2 @@ -4632,14 +4632,14 @@ snapshots: - bufferutil - utf-8-validate - '@graphql-tools/executor-http@1.1.9(@types/node@22.18.12)(graphql@16.11.0)': + '@graphql-tools/executor-http@1.1.9(@types/node@24.9.1)(graphql@16.11.0)': dependencies: '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/fetch': 0.10.1 extract-files: 11.0.0 graphql: 16.11.0 - meros: 1.3.0(@types/node@22.18.12) + meros: 1.3.0(@types/node@24.9.1) tslib: 2.8.1 value-or-promise: 1.0.12 transitivePeerDependencies: @@ -4678,10 +4678,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@graphql-tools/github-loader@8.0.4(@types/node@22.18.12)(graphql@16.11.0)': + '@graphql-tools/github-loader@8.0.4(@types/node@24.9.1)(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.12)(graphql@16.11.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@24.9.1)(graphql@16.11.0) '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@whatwg-node/fetch': 0.10.1 @@ -4765,11 +4765,11 @@ snapshots: graphql: 16.11.0 tslib: 2.8.1 - '@graphql-tools/url-loader@8.0.15(@types/node@22.18.12)(graphql@16.11.0)': + '@graphql-tools/url-loader@8.0.15(@types/node@24.9.1)(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/executor-graphql-ws': 1.3.2(graphql@16.11.0) - '@graphql-tools/executor-http': 1.1.9(@types/node@22.18.12)(graphql@16.11.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@24.9.1)(graphql@16.11.0) '@graphql-tools/executor-legacy-ws': 1.1.2(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@graphql-tools/wrap': 10.0.16(graphql@16.11.0) @@ -4819,27 +4819,27 @@ snapshots: '@humanwhocodes/retry@0.4.3': {} - '@inquirer/checkbox@4.2.2(@types/node@22.18.12)': + '@inquirer/checkbox@4.2.2(@types/node@24.9.1)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.12) + '@inquirer/core': 10.2.0(@types/node@24.9.1) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.12) + '@inquirer/type': 3.0.8(@types/node@24.9.1) ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.12 + '@types/node': 24.9.1 - '@inquirer/confirm@5.1.16(@types/node@22.18.12)': + '@inquirer/confirm@5.1.16(@types/node@24.9.1)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.12) - '@inquirer/type': 3.0.8(@types/node@22.18.12) + '@inquirer/core': 10.2.0(@types/node@24.9.1) + '@inquirer/type': 3.0.8(@types/node@24.9.1) optionalDependencies: - '@types/node': 22.18.12 + '@types/node': 24.9.1 - '@inquirer/core@10.2.0(@types/node@22.18.12)': + '@inquirer/core@10.2.0(@types/node@24.9.1)': dependencies: '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.12) + '@inquirer/type': 3.0.8(@types/node@24.9.1) ansi-escapes: 4.3.2 cli-width: 4.1.0 mute-stream: 2.0.0 @@ -4847,100 +4847,100 @@ snapshots: wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.12 + '@types/node': 24.9.1 - '@inquirer/editor@4.2.18(@types/node@22.18.12)': + '@inquirer/editor@4.2.18(@types/node@24.9.1)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.12) - '@inquirer/external-editor': 1.0.1(@types/node@22.18.12) - '@inquirer/type': 3.0.8(@types/node@22.18.12) + '@inquirer/core': 10.2.0(@types/node@24.9.1) + '@inquirer/external-editor': 1.0.1(@types/node@24.9.1) + '@inquirer/type': 3.0.8(@types/node@24.9.1) optionalDependencies: - '@types/node': 22.18.12 + '@types/node': 24.9.1 - '@inquirer/expand@4.0.18(@types/node@22.18.12)': + '@inquirer/expand@4.0.18(@types/node@24.9.1)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.12) - '@inquirer/type': 3.0.8(@types/node@22.18.12) + '@inquirer/core': 10.2.0(@types/node@24.9.1) + '@inquirer/type': 3.0.8(@types/node@24.9.1) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.12 + '@types/node': 24.9.1 - '@inquirer/external-editor@1.0.1(@types/node@22.18.12)': + '@inquirer/external-editor@1.0.1(@types/node@24.9.1)': dependencies: chardet: 2.1.0 iconv-lite: 0.6.3 optionalDependencies: - '@types/node': 22.18.12 + '@types/node': 24.9.1 '@inquirer/figures@1.0.13': {} - '@inquirer/input@4.2.2(@types/node@22.18.12)': + '@inquirer/input@4.2.2(@types/node@24.9.1)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.12) - '@inquirer/type': 3.0.8(@types/node@22.18.12) + '@inquirer/core': 10.2.0(@types/node@24.9.1) + '@inquirer/type': 3.0.8(@types/node@24.9.1) optionalDependencies: - '@types/node': 22.18.12 + '@types/node': 24.9.1 - '@inquirer/number@3.0.18(@types/node@22.18.12)': + '@inquirer/number@3.0.18(@types/node@24.9.1)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.12) - '@inquirer/type': 3.0.8(@types/node@22.18.12) + '@inquirer/core': 10.2.0(@types/node@24.9.1) + '@inquirer/type': 3.0.8(@types/node@24.9.1) optionalDependencies: - '@types/node': 22.18.12 + '@types/node': 24.9.1 - '@inquirer/password@4.0.18(@types/node@22.18.12)': + '@inquirer/password@4.0.18(@types/node@24.9.1)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.12) - '@inquirer/type': 3.0.8(@types/node@22.18.12) + '@inquirer/core': 10.2.0(@types/node@24.9.1) + '@inquirer/type': 3.0.8(@types/node@24.9.1) ansi-escapes: 4.3.2 optionalDependencies: - '@types/node': 22.18.12 - - '@inquirer/prompts@7.8.4(@types/node@22.18.12)': - dependencies: - '@inquirer/checkbox': 4.2.2(@types/node@22.18.12) - '@inquirer/confirm': 5.1.16(@types/node@22.18.12) - '@inquirer/editor': 4.2.18(@types/node@22.18.12) - '@inquirer/expand': 4.0.18(@types/node@22.18.12) - '@inquirer/input': 4.2.2(@types/node@22.18.12) - '@inquirer/number': 3.0.18(@types/node@22.18.12) - '@inquirer/password': 4.0.18(@types/node@22.18.12) - '@inquirer/rawlist': 4.1.6(@types/node@22.18.12) - '@inquirer/search': 3.1.1(@types/node@22.18.12) - '@inquirer/select': 4.3.2(@types/node@22.18.12) + '@types/node': 24.9.1 + + '@inquirer/prompts@7.8.4(@types/node@24.9.1)': + dependencies: + '@inquirer/checkbox': 4.2.2(@types/node@24.9.1) + '@inquirer/confirm': 5.1.16(@types/node@24.9.1) + '@inquirer/editor': 4.2.18(@types/node@24.9.1) + '@inquirer/expand': 4.0.18(@types/node@24.9.1) + '@inquirer/input': 4.2.2(@types/node@24.9.1) + '@inquirer/number': 3.0.18(@types/node@24.9.1) + '@inquirer/password': 4.0.18(@types/node@24.9.1) + '@inquirer/rawlist': 4.1.6(@types/node@24.9.1) + '@inquirer/search': 3.1.1(@types/node@24.9.1) + '@inquirer/select': 4.3.2(@types/node@24.9.1) optionalDependencies: - '@types/node': 22.18.12 + '@types/node': 24.9.1 - '@inquirer/rawlist@4.1.6(@types/node@22.18.12)': + '@inquirer/rawlist@4.1.6(@types/node@24.9.1)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.12) - '@inquirer/type': 3.0.8(@types/node@22.18.12) + '@inquirer/core': 10.2.0(@types/node@24.9.1) + '@inquirer/type': 3.0.8(@types/node@24.9.1) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.12 + '@types/node': 24.9.1 - '@inquirer/search@3.1.1(@types/node@22.18.12)': + '@inquirer/search@3.1.1(@types/node@24.9.1)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.12) + '@inquirer/core': 10.2.0(@types/node@24.9.1) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.12) + '@inquirer/type': 3.0.8(@types/node@24.9.1) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.12 + '@types/node': 24.9.1 - '@inquirer/select@4.3.2(@types/node@22.18.12)': + '@inquirer/select@4.3.2(@types/node@24.9.1)': dependencies: - '@inquirer/core': 10.2.0(@types/node@22.18.12) + '@inquirer/core': 10.2.0(@types/node@24.9.1) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@22.18.12) + '@inquirer/type': 3.0.8(@types/node@24.9.1) ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 22.18.12 + '@types/node': 24.9.1 - '@inquirer/type@3.0.8(@types/node@22.18.12)': + '@inquirer/type@3.0.8(@types/node@24.9.1)': optionalDependencies: - '@types/node': 22.18.12 + '@types/node': 24.9.1 '@isaacs/cliui@8.0.2': dependencies: @@ -4964,7 +4964,7 @@ snapshots: '@jest/console@30.2.0': dependencies: '@jest/types': 30.2.0 - '@types/node': 22.18.12 + '@types/node': 24.9.1 chalk: 4.1.2 jest-message-util: 30.2.0 jest-util: 30.2.0 @@ -4978,14 +4978,14 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.12 + '@types/node': 24.9.1 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 4.3.0 exit-x: 0.2.2 graceful-fs: 4.2.11 jest-changed-files: 30.2.0 - jest-config: 30.2.0(@types/node@22.18.12) + jest-config: 30.2.0(@types/node@24.9.1) jest-haste-map: 30.2.0 jest-message-util: 30.2.0 jest-regex-util: 30.0.1 @@ -5012,7 +5012,7 @@ snapshots: dependencies: '@jest/fake-timers': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.12 + '@types/node': 24.9.1 jest-mock: 30.2.0 '@jest/expect-utils@30.2.0': @@ -5030,7 +5030,7 @@ snapshots: dependencies: '@jest/types': 30.2.0 '@sinonjs/fake-timers': 13.0.5 - '@types/node': 22.18.12 + '@types/node': 24.9.1 jest-message-util: 30.2.0 jest-mock: 30.2.0 jest-util: 30.2.0 @@ -5048,7 +5048,7 @@ snapshots: '@jest/pattern@30.0.1': dependencies: - '@types/node': 22.18.12 + '@types/node': 24.9.1 jest-regex-util: 30.0.1 '@jest/reporters@30.2.0': @@ -5059,7 +5059,7 @@ snapshots: '@jest/transform': 30.2.0 '@jest/types': 30.2.0 '@jridgewell/trace-mapping': 0.3.25 - '@types/node': 22.18.12 + '@types/node': 24.9.1 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit-x: 0.2.2 @@ -5136,7 +5136,7 @@ snapshots: '@jest/schemas': 30.0.5 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 22.18.12 + '@types/node': 24.9.1 '@types/yargs': 17.0.33 chalk: 4.1.2 @@ -5338,9 +5338,9 @@ snapshots: '@types/ms@2.1.0': {} - '@types/node@22.18.12': + '@types/node@24.9.1': dependencies: - undici-types: 6.21.0 + undici-types: 7.16.0 '@types/stack-utils@2.0.3': {} @@ -5348,7 +5348,7 @@ snapshots: '@types/ws@8.5.13': dependencies: - '@types/node': 22.18.12 + '@types/node': 24.9.1 '@types/yargs-parser@21.0.3': {} @@ -5504,14 +5504,14 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.24(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.3.24(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.4(@types/debug@4.1.12)(@types/node@24.9.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.46.2 '@typescript-eslint/utils': 8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) eslint: 9.38.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - vitest: 4.0.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) + vitest: 4.0.4(@types/debug@4.1.12)(@types/node@24.9.1)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color @@ -5524,13 +5524,13 @@ snapshots: chai: 6.2.0 tinyrainbow: 3.0.3 - '@vitest/mocker@4.0.4(vite@7.1.12(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@4.0.4(vite@7.1.12(@types/node@24.9.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@vitest/spy': 4.0.4 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: - vite: 7.1.12(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) + vite: 7.1.12(@types/node@24.9.1)(jiti@2.4.0)(yaml@2.8.1) '@vitest/pretty-format@4.0.4': dependencies: @@ -6505,13 +6505,13 @@ snapshots: dependencies: lodash: 4.17.21 - graphql-config@5.1.3(@types/node@22.18.12)(graphql@16.11.0)(typescript@5.9.3): + graphql-config@5.1.3(@types/node@24.9.1)(graphql@16.11.0)(typescript@5.9.3): dependencies: '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) '@graphql-tools/merge': 9.0.24(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@22.18.12)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@24.9.1)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) cosmiconfig: 8.3.6(typescript@5.9.3) graphql: 16.11.0 @@ -6704,7 +6704,7 @@ snapshots: '@jest/expect': 30.2.0 '@jest/test-result': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.12 + '@types/node': 24.9.1 chalk: 4.1.2 co: 4.6.0 dedent: 1.6.0 @@ -6724,7 +6724,7 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@30.2.0(@types/node@22.18.12): + jest-cli@30.2.0(@types/node@24.9.1): dependencies: '@jest/core': 30.2.0 '@jest/test-result': 30.2.0 @@ -6732,7 +6732,7 @@ snapshots: chalk: 4.1.2 exit-x: 0.2.2 import-local: 3.2.0 - jest-config: 30.2.0(@types/node@22.18.12) + jest-config: 30.2.0(@types/node@24.9.1) jest-util: 30.2.0 jest-validate: 30.2.0 yargs: 17.7.2 @@ -6743,7 +6743,7 @@ snapshots: - supports-color - ts-node - jest-config@30.2.0(@types/node@22.18.12): + jest-config@30.2.0(@types/node@24.9.1): dependencies: '@babel/core': 7.27.4 '@jest/get-type': 30.1.0 @@ -6770,7 +6770,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 22.18.12 + '@types/node': 24.9.1 transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -6799,7 +6799,7 @@ snapshots: '@jest/environment': 30.2.0 '@jest/fake-timers': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.12 + '@types/node': 24.9.1 jest-mock: 30.2.0 jest-util: 30.2.0 jest-validate: 30.2.0 @@ -6807,7 +6807,7 @@ snapshots: jest-haste-map@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 22.18.12 + '@types/node': 24.9.1 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -6846,7 +6846,7 @@ snapshots: jest-mock@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 22.18.12 + '@types/node': 24.9.1 jest-util: 30.2.0 jest-pnp-resolver@1.2.3(jest-resolve@30.2.0): @@ -6880,7 +6880,7 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.12 + '@types/node': 24.9.1 chalk: 4.1.2 emittery: 0.13.1 exit-x: 0.2.2 @@ -6909,7 +6909,7 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.12 + '@types/node': 24.9.1 chalk: 4.1.2 cjs-module-lexer: 2.1.0 collect-v8-coverage: 1.0.2 @@ -6956,7 +6956,7 @@ snapshots: jest-util@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 22.18.12 + '@types/node': 24.9.1 chalk: 4.1.2 ci-info: 4.3.0 graceful-fs: 4.2.11 @@ -6975,7 +6975,7 @@ snapshots: dependencies: '@jest/test-result': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 22.18.12 + '@types/node': 24.9.1 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -6984,18 +6984,18 @@ snapshots: jest-worker@30.2.0: dependencies: - '@types/node': 22.18.12 + '@types/node': 24.9.1 '@ungap/structured-clone': 1.3.0 jest-util: 30.2.0 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@30.2.0(@types/node@22.18.12): + jest@30.2.0(@types/node@24.9.1): dependencies: '@jest/core': 30.2.0 '@jest/types': 30.2.0 import-local: 3.2.0 - jest-cli: 30.2.0(@types/node@22.18.12) + jest-cli: 30.2.0(@types/node@24.9.1) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -7264,9 +7264,9 @@ snapshots: merge2@1.4.1: {} - meros@1.3.0(@types/node@22.18.12): + meros@1.3.0(@types/node@24.9.1): optionalDependencies: - '@types/node': 22.18.12 + '@types/node': 24.9.1 micromark-core-commonmark@2.0.3: dependencies: @@ -8023,12 +8023,12 @@ snapshots: ts-dedent@2.2.0: {} - ts-jest@29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@22.18.12))(typescript@5.9.3): + ts-jest@29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@24.9.1))(typescript@5.9.3): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 handlebars: 4.7.8 - jest: 30.2.0(@types/node@22.18.12) + jest: 30.2.0(@types/node@24.9.1) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -8072,7 +8072,7 @@ snapshots: unc-path-regex@0.1.2: {} - undici-types@6.21.0: {} + undici-types@7.16.0: {} unist-util-is@6.0.1: dependencies: @@ -8153,7 +8153,7 @@ snapshots: value-or-promise@1.0.12: {} - vite@7.1.12(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1): + vite@7.1.12(@types/node@24.9.1)(jiti@2.4.0)(yaml@2.8.1): dependencies: esbuild: 0.25.11 fdir: 6.5.0(picomatch@4.0.3) @@ -8162,15 +8162,15 @@ snapshots: rollup: 4.52.5 tinyglobby: 0.2.15 optionalDependencies: - '@types/node': 22.18.12 + '@types/node': 24.9.1 fsevents: 2.3.3 jiti: 2.4.0 yaml: 2.8.1 - vitest@4.0.4(@types/debug@4.1.12)(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1): + vitest@4.0.4(@types/debug@4.1.12)(@types/node@24.9.1)(jiti@2.4.0)(yaml@2.8.1): dependencies: '@vitest/expect': 4.0.4 - '@vitest/mocker': 4.0.4(vite@7.1.12(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/mocker': 4.0.4(vite@7.1.12(@types/node@24.9.1)(jiti@2.4.0)(yaml@2.8.1)) '@vitest/pretty-format': 4.0.4 '@vitest/runner': 4.0.4 '@vitest/snapshot': 4.0.4 @@ -8187,11 +8187,11 @@ snapshots: tinyexec: 0.3.2 tinyglobby: 0.2.15 tinyrainbow: 3.0.3 - vite: 7.1.12(@types/node@22.18.12)(jiti@2.4.0)(yaml@2.8.1) + vite: 7.1.12(@types/node@24.9.1)(jiti@2.4.0)(yaml@2.8.1) why-is-node-running: 2.3.0 optionalDependencies: '@types/debug': 4.1.12 - '@types/node': 22.18.12 + '@types/node': 24.9.1 transitivePeerDependencies: - jiti - less From 586a3f8728029414d1e6044a36904cdab48781e3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 28 Oct 2025 20:15:07 +0000 Subject: [PATCH 091/133] chore(deps): update pnpm to v10.20.0 (#1280) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0a8ee069..009801a5 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "graphql-codegen-typescript-validation-schema", "type": "module", "version": "0.18.1", - "packageManager": "pnpm@10.19.0", + "packageManager": "pnpm@10.20.0", "description": "GraphQL Code Generator plugin to generate form validation schema from your GraphQL schema", "respository": { "type": "git", From 406a849a83c5c47b76e1689975480c3d7e481bdb Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 28 Oct 2025 20:15:32 +0000 Subject: [PATCH 092/133] chore(deps): update dependency @types/node to v24.9.2 (#1279) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 248 ++++++++++++++++++++++++------------------------- 1 file changed, 124 insertions(+), 124 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8489b371..49c46d6a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,10 +29,10 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.1.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.4(@types/debug@4.1.12)(@types/node@24.9.1)(jiti@2.4.0)(yaml@2.8.1)) + version: 6.1.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.4(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.1 - version: 6.0.1(@types/node@24.9.1)(graphql@16.11.0)(typescript@5.9.3) + version: 6.0.1(@types/node@24.9.2)(graphql@16.11.0)(typescript@5.9.3) '@graphql-codegen/typescript': specifier: ^5.0.0 version: 5.0.2(graphql@16.11.0) @@ -44,13 +44,13 @@ importers: version: 2.1.12 '@types/node': specifier: ^24.0.0 - version: 24.9.1 + version: 24.9.2 eslint: specifier: 9.38.0 version: 9.38.0(jiti@2.4.0) jest: specifier: 30.2.0 - version: 30.2.0(@types/node@24.9.1) + version: 30.2.0(@types/node@24.9.2) myzod: specifier: 1.12.1 version: 1.12.1 @@ -62,7 +62,7 @@ importers: version: 2.2.0 ts-jest: specifier: 29.4.5 - version: 29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@24.9.1))(typescript@5.9.3) + version: 29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@24.9.2))(typescript@5.9.3) typescript: specifier: 5.9.3 version: 5.9.3 @@ -71,7 +71,7 @@ importers: version: 1.1.0(typescript@5.9.3) vitest: specifier: ^4.0.0 - version: 4.0.4(@types/debug@4.1.12)(@types/node@24.9.1)(jiti@2.4.0)(yaml@2.8.1) + version: 4.0.4(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.1 version: 1.7.1 @@ -1285,8 +1285,8 @@ packages: '@types/ms@2.1.0': resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} - '@types/node@24.9.1': - resolution: {integrity: sha512-QoiaXANRkSXK6p0Duvt56W208du4P9Uye9hWLWgGMDTEoKPhuenzNcC4vGUmrNkiOKTlIrBoyNQYNpSwfEZXSg==} + '@types/node@24.9.2': + resolution: {integrity: sha512-uWN8YqxXxqFMX2RqGOrumsKeti4LlmIMIyV0lgut4jx7KQBcBiW6vkDtIBvHnHIquwNfJhk8v2OtmO8zXWHfPA==} '@types/stack-utils@2.0.3': resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} @@ -3909,7 +3909,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - '@antfu/eslint-config@6.1.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.4(@types/debug@4.1.12)(@types/node@24.9.1)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@6.1.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.4(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -3918,7 +3918,7 @@ snapshots: '@stylistic/eslint-plugin': 5.5.0(eslint@9.38.0(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/parser': 8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.3.24(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.4(@types/debug@4.1.12)(@types/node@24.9.1)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/eslint-plugin': 1.3.24(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.4(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.2.0 cac: 6.7.14 eslint: 9.38.0(jiti@2.4.0) @@ -4405,7 +4405,7 @@ snapshots: graphql: 16.11.0 tslib: 2.6.3 - '@graphql-codegen/cli@6.0.1(@types/node@24.9.1)(graphql@16.11.0)(typescript@5.9.3)': + '@graphql-codegen/cli@6.0.1(@types/node@24.9.2)(graphql@16.11.0)(typescript@5.9.3)': dependencies: '@babel/generator': 7.28.3 '@babel/template': 7.27.2 @@ -4416,20 +4416,20 @@ snapshots: '@graphql-tools/apollo-engine-loader': 8.0.4(graphql@16.11.0) '@graphql-tools/code-file-loader': 8.1.5(graphql@16.11.0) '@graphql-tools/git-loader': 8.0.9(graphql@16.11.0) - '@graphql-tools/github-loader': 8.0.4(@types/node@24.9.1)(graphql@16.11.0) + '@graphql-tools/github-loader': 8.0.4(@types/node@24.9.2)(graphql@16.11.0) '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@24.9.1)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@24.9.2)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) - '@inquirer/prompts': 7.8.4(@types/node@24.9.1) + '@inquirer/prompts': 7.8.4(@types/node@24.9.2) '@whatwg-node/fetch': 0.10.1 chalk: 4.1.2 cosmiconfig: 9.0.0(typescript@5.9.3) debounce: 2.2.0 detect-indent: 6.1.0 graphql: 16.11.0 - graphql-config: 5.1.3(@types/node@24.9.1)(graphql@16.11.0)(typescript@5.9.3) + graphql-config: 5.1.3(@types/node@24.9.2)(graphql@16.11.0)(typescript@5.9.3) is-glob: 4.0.3 jiti: 2.4.0 json-to-pretty-yaml: 1.2.2 @@ -4632,14 +4632,14 @@ snapshots: - bufferutil - utf-8-validate - '@graphql-tools/executor-http@1.1.9(@types/node@24.9.1)(graphql@16.11.0)': + '@graphql-tools/executor-http@1.1.9(@types/node@24.9.2)(graphql@16.11.0)': dependencies: '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/fetch': 0.10.1 extract-files: 11.0.0 graphql: 16.11.0 - meros: 1.3.0(@types/node@24.9.1) + meros: 1.3.0(@types/node@24.9.2) tslib: 2.8.1 value-or-promise: 1.0.12 transitivePeerDependencies: @@ -4678,10 +4678,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@graphql-tools/github-loader@8.0.4(@types/node@24.9.1)(graphql@16.11.0)': + '@graphql-tools/github-loader@8.0.4(@types/node@24.9.2)(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/executor-http': 1.1.9(@types/node@24.9.1)(graphql@16.11.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@24.9.2)(graphql@16.11.0) '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@whatwg-node/fetch': 0.10.1 @@ -4765,11 +4765,11 @@ snapshots: graphql: 16.11.0 tslib: 2.8.1 - '@graphql-tools/url-loader@8.0.15(@types/node@24.9.1)(graphql@16.11.0)': + '@graphql-tools/url-loader@8.0.15(@types/node@24.9.2)(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/executor-graphql-ws': 1.3.2(graphql@16.11.0) - '@graphql-tools/executor-http': 1.1.9(@types/node@24.9.1)(graphql@16.11.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@24.9.2)(graphql@16.11.0) '@graphql-tools/executor-legacy-ws': 1.1.2(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) '@graphql-tools/wrap': 10.0.16(graphql@16.11.0) @@ -4819,27 +4819,27 @@ snapshots: '@humanwhocodes/retry@0.4.3': {} - '@inquirer/checkbox@4.2.2(@types/node@24.9.1)': + '@inquirer/checkbox@4.2.2(@types/node@24.9.2)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.9.1) + '@inquirer/core': 10.2.0(@types/node@24.9.2) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.9.1) + '@inquirer/type': 3.0.8(@types/node@24.9.2) ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.9.1 + '@types/node': 24.9.2 - '@inquirer/confirm@5.1.16(@types/node@24.9.1)': + '@inquirer/confirm@5.1.16(@types/node@24.9.2)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.9.1) - '@inquirer/type': 3.0.8(@types/node@24.9.1) + '@inquirer/core': 10.2.0(@types/node@24.9.2) + '@inquirer/type': 3.0.8(@types/node@24.9.2) optionalDependencies: - '@types/node': 24.9.1 + '@types/node': 24.9.2 - '@inquirer/core@10.2.0(@types/node@24.9.1)': + '@inquirer/core@10.2.0(@types/node@24.9.2)': dependencies: '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.9.1) + '@inquirer/type': 3.0.8(@types/node@24.9.2) ansi-escapes: 4.3.2 cli-width: 4.1.0 mute-stream: 2.0.0 @@ -4847,100 +4847,100 @@ snapshots: wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.9.1 + '@types/node': 24.9.2 - '@inquirer/editor@4.2.18(@types/node@24.9.1)': + '@inquirer/editor@4.2.18(@types/node@24.9.2)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.9.1) - '@inquirer/external-editor': 1.0.1(@types/node@24.9.1) - '@inquirer/type': 3.0.8(@types/node@24.9.1) + '@inquirer/core': 10.2.0(@types/node@24.9.2) + '@inquirer/external-editor': 1.0.1(@types/node@24.9.2) + '@inquirer/type': 3.0.8(@types/node@24.9.2) optionalDependencies: - '@types/node': 24.9.1 + '@types/node': 24.9.2 - '@inquirer/expand@4.0.18(@types/node@24.9.1)': + '@inquirer/expand@4.0.18(@types/node@24.9.2)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.9.1) - '@inquirer/type': 3.0.8(@types/node@24.9.1) + '@inquirer/core': 10.2.0(@types/node@24.9.2) + '@inquirer/type': 3.0.8(@types/node@24.9.2) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.9.1 + '@types/node': 24.9.2 - '@inquirer/external-editor@1.0.1(@types/node@24.9.1)': + '@inquirer/external-editor@1.0.1(@types/node@24.9.2)': dependencies: chardet: 2.1.0 iconv-lite: 0.6.3 optionalDependencies: - '@types/node': 24.9.1 + '@types/node': 24.9.2 '@inquirer/figures@1.0.13': {} - '@inquirer/input@4.2.2(@types/node@24.9.1)': + '@inquirer/input@4.2.2(@types/node@24.9.2)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.9.1) - '@inquirer/type': 3.0.8(@types/node@24.9.1) + '@inquirer/core': 10.2.0(@types/node@24.9.2) + '@inquirer/type': 3.0.8(@types/node@24.9.2) optionalDependencies: - '@types/node': 24.9.1 + '@types/node': 24.9.2 - '@inquirer/number@3.0.18(@types/node@24.9.1)': + '@inquirer/number@3.0.18(@types/node@24.9.2)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.9.1) - '@inquirer/type': 3.0.8(@types/node@24.9.1) + '@inquirer/core': 10.2.0(@types/node@24.9.2) + '@inquirer/type': 3.0.8(@types/node@24.9.2) optionalDependencies: - '@types/node': 24.9.1 + '@types/node': 24.9.2 - '@inquirer/password@4.0.18(@types/node@24.9.1)': + '@inquirer/password@4.0.18(@types/node@24.9.2)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.9.1) - '@inquirer/type': 3.0.8(@types/node@24.9.1) + '@inquirer/core': 10.2.0(@types/node@24.9.2) + '@inquirer/type': 3.0.8(@types/node@24.9.2) ansi-escapes: 4.3.2 optionalDependencies: - '@types/node': 24.9.1 - - '@inquirer/prompts@7.8.4(@types/node@24.9.1)': - dependencies: - '@inquirer/checkbox': 4.2.2(@types/node@24.9.1) - '@inquirer/confirm': 5.1.16(@types/node@24.9.1) - '@inquirer/editor': 4.2.18(@types/node@24.9.1) - '@inquirer/expand': 4.0.18(@types/node@24.9.1) - '@inquirer/input': 4.2.2(@types/node@24.9.1) - '@inquirer/number': 3.0.18(@types/node@24.9.1) - '@inquirer/password': 4.0.18(@types/node@24.9.1) - '@inquirer/rawlist': 4.1.6(@types/node@24.9.1) - '@inquirer/search': 3.1.1(@types/node@24.9.1) - '@inquirer/select': 4.3.2(@types/node@24.9.1) + '@types/node': 24.9.2 + + '@inquirer/prompts@7.8.4(@types/node@24.9.2)': + dependencies: + '@inquirer/checkbox': 4.2.2(@types/node@24.9.2) + '@inquirer/confirm': 5.1.16(@types/node@24.9.2) + '@inquirer/editor': 4.2.18(@types/node@24.9.2) + '@inquirer/expand': 4.0.18(@types/node@24.9.2) + '@inquirer/input': 4.2.2(@types/node@24.9.2) + '@inquirer/number': 3.0.18(@types/node@24.9.2) + '@inquirer/password': 4.0.18(@types/node@24.9.2) + '@inquirer/rawlist': 4.1.6(@types/node@24.9.2) + '@inquirer/search': 3.1.1(@types/node@24.9.2) + '@inquirer/select': 4.3.2(@types/node@24.9.2) optionalDependencies: - '@types/node': 24.9.1 + '@types/node': 24.9.2 - '@inquirer/rawlist@4.1.6(@types/node@24.9.1)': + '@inquirer/rawlist@4.1.6(@types/node@24.9.2)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.9.1) - '@inquirer/type': 3.0.8(@types/node@24.9.1) + '@inquirer/core': 10.2.0(@types/node@24.9.2) + '@inquirer/type': 3.0.8(@types/node@24.9.2) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.9.1 + '@types/node': 24.9.2 - '@inquirer/search@3.1.1(@types/node@24.9.1)': + '@inquirer/search@3.1.1(@types/node@24.9.2)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.9.1) + '@inquirer/core': 10.2.0(@types/node@24.9.2) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.9.1) + '@inquirer/type': 3.0.8(@types/node@24.9.2) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.9.1 + '@types/node': 24.9.2 - '@inquirer/select@4.3.2(@types/node@24.9.1)': + '@inquirer/select@4.3.2(@types/node@24.9.2)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.9.1) + '@inquirer/core': 10.2.0(@types/node@24.9.2) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.9.1) + '@inquirer/type': 3.0.8(@types/node@24.9.2) ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.9.1 + '@types/node': 24.9.2 - '@inquirer/type@3.0.8(@types/node@24.9.1)': + '@inquirer/type@3.0.8(@types/node@24.9.2)': optionalDependencies: - '@types/node': 24.9.1 + '@types/node': 24.9.2 '@isaacs/cliui@8.0.2': dependencies: @@ -4964,7 +4964,7 @@ snapshots: '@jest/console@30.2.0': dependencies: '@jest/types': 30.2.0 - '@types/node': 24.9.1 + '@types/node': 24.9.2 chalk: 4.1.2 jest-message-util: 30.2.0 jest-util: 30.2.0 @@ -4978,14 +4978,14 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.9.1 + '@types/node': 24.9.2 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 4.3.0 exit-x: 0.2.2 graceful-fs: 4.2.11 jest-changed-files: 30.2.0 - jest-config: 30.2.0(@types/node@24.9.1) + jest-config: 30.2.0(@types/node@24.9.2) jest-haste-map: 30.2.0 jest-message-util: 30.2.0 jest-regex-util: 30.0.1 @@ -5012,7 +5012,7 @@ snapshots: dependencies: '@jest/fake-timers': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.9.1 + '@types/node': 24.9.2 jest-mock: 30.2.0 '@jest/expect-utils@30.2.0': @@ -5030,7 +5030,7 @@ snapshots: dependencies: '@jest/types': 30.2.0 '@sinonjs/fake-timers': 13.0.5 - '@types/node': 24.9.1 + '@types/node': 24.9.2 jest-message-util: 30.2.0 jest-mock: 30.2.0 jest-util: 30.2.0 @@ -5048,7 +5048,7 @@ snapshots: '@jest/pattern@30.0.1': dependencies: - '@types/node': 24.9.1 + '@types/node': 24.9.2 jest-regex-util: 30.0.1 '@jest/reporters@30.2.0': @@ -5059,7 +5059,7 @@ snapshots: '@jest/transform': 30.2.0 '@jest/types': 30.2.0 '@jridgewell/trace-mapping': 0.3.25 - '@types/node': 24.9.1 + '@types/node': 24.9.2 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit-x: 0.2.2 @@ -5136,7 +5136,7 @@ snapshots: '@jest/schemas': 30.0.5 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 24.9.1 + '@types/node': 24.9.2 '@types/yargs': 17.0.33 chalk: 4.1.2 @@ -5338,7 +5338,7 @@ snapshots: '@types/ms@2.1.0': {} - '@types/node@24.9.1': + '@types/node@24.9.2': dependencies: undici-types: 7.16.0 @@ -5348,7 +5348,7 @@ snapshots: '@types/ws@8.5.13': dependencies: - '@types/node': 24.9.1 + '@types/node': 24.9.2 '@types/yargs-parser@21.0.3': {} @@ -5504,14 +5504,14 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.24(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.4(@types/debug@4.1.12)(@types/node@24.9.1)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.3.24(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.4(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.46.2 '@typescript-eslint/utils': 8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) eslint: 9.38.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - vitest: 4.0.4(@types/debug@4.1.12)(@types/node@24.9.1)(jiti@2.4.0)(yaml@2.8.1) + vitest: 4.0.4(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color @@ -5524,13 +5524,13 @@ snapshots: chai: 6.2.0 tinyrainbow: 3.0.3 - '@vitest/mocker@4.0.4(vite@7.1.12(@types/node@24.9.1)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@4.0.4(vite@7.1.12(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@vitest/spy': 4.0.4 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: - vite: 7.1.12(@types/node@24.9.1)(jiti@2.4.0)(yaml@2.8.1) + vite: 7.1.12(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1) '@vitest/pretty-format@4.0.4': dependencies: @@ -6505,13 +6505,13 @@ snapshots: dependencies: lodash: 4.17.21 - graphql-config@5.1.3(@types/node@24.9.1)(graphql@16.11.0)(typescript@5.9.3): + graphql-config@5.1.3(@types/node@24.9.2)(graphql@16.11.0)(typescript@5.9.3): dependencies: '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) '@graphql-tools/merge': 9.0.24(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@24.9.1)(graphql@16.11.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@24.9.2)(graphql@16.11.0) '@graphql-tools/utils': 10.9.1(graphql@16.11.0) cosmiconfig: 8.3.6(typescript@5.9.3) graphql: 16.11.0 @@ -6704,7 +6704,7 @@ snapshots: '@jest/expect': 30.2.0 '@jest/test-result': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.9.1 + '@types/node': 24.9.2 chalk: 4.1.2 co: 4.6.0 dedent: 1.6.0 @@ -6724,7 +6724,7 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@30.2.0(@types/node@24.9.1): + jest-cli@30.2.0(@types/node@24.9.2): dependencies: '@jest/core': 30.2.0 '@jest/test-result': 30.2.0 @@ -6732,7 +6732,7 @@ snapshots: chalk: 4.1.2 exit-x: 0.2.2 import-local: 3.2.0 - jest-config: 30.2.0(@types/node@24.9.1) + jest-config: 30.2.0(@types/node@24.9.2) jest-util: 30.2.0 jest-validate: 30.2.0 yargs: 17.7.2 @@ -6743,7 +6743,7 @@ snapshots: - supports-color - ts-node - jest-config@30.2.0(@types/node@24.9.1): + jest-config@30.2.0(@types/node@24.9.2): dependencies: '@babel/core': 7.27.4 '@jest/get-type': 30.1.0 @@ -6770,7 +6770,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 24.9.1 + '@types/node': 24.9.2 transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -6799,7 +6799,7 @@ snapshots: '@jest/environment': 30.2.0 '@jest/fake-timers': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.9.1 + '@types/node': 24.9.2 jest-mock: 30.2.0 jest-util: 30.2.0 jest-validate: 30.2.0 @@ -6807,7 +6807,7 @@ snapshots: jest-haste-map@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 24.9.1 + '@types/node': 24.9.2 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -6846,7 +6846,7 @@ snapshots: jest-mock@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 24.9.1 + '@types/node': 24.9.2 jest-util: 30.2.0 jest-pnp-resolver@1.2.3(jest-resolve@30.2.0): @@ -6880,7 +6880,7 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.9.1 + '@types/node': 24.9.2 chalk: 4.1.2 emittery: 0.13.1 exit-x: 0.2.2 @@ -6909,7 +6909,7 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.9.1 + '@types/node': 24.9.2 chalk: 4.1.2 cjs-module-lexer: 2.1.0 collect-v8-coverage: 1.0.2 @@ -6956,7 +6956,7 @@ snapshots: jest-util@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 24.9.1 + '@types/node': 24.9.2 chalk: 4.1.2 ci-info: 4.3.0 graceful-fs: 4.2.11 @@ -6975,7 +6975,7 @@ snapshots: dependencies: '@jest/test-result': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.9.1 + '@types/node': 24.9.2 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -6984,18 +6984,18 @@ snapshots: jest-worker@30.2.0: dependencies: - '@types/node': 24.9.1 + '@types/node': 24.9.2 '@ungap/structured-clone': 1.3.0 jest-util: 30.2.0 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@30.2.0(@types/node@24.9.1): + jest@30.2.0(@types/node@24.9.2): dependencies: '@jest/core': 30.2.0 '@jest/types': 30.2.0 import-local: 3.2.0 - jest-cli: 30.2.0(@types/node@24.9.1) + jest-cli: 30.2.0(@types/node@24.9.2) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -7264,9 +7264,9 @@ snapshots: merge2@1.4.1: {} - meros@1.3.0(@types/node@24.9.1): + meros@1.3.0(@types/node@24.9.2): optionalDependencies: - '@types/node': 24.9.1 + '@types/node': 24.9.2 micromark-core-commonmark@2.0.3: dependencies: @@ -8023,12 +8023,12 @@ snapshots: ts-dedent@2.2.0: {} - ts-jest@29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@24.9.1))(typescript@5.9.3): + ts-jest@29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@24.9.2))(typescript@5.9.3): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 handlebars: 4.7.8 - jest: 30.2.0(@types/node@24.9.1) + jest: 30.2.0(@types/node@24.9.2) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -8153,7 +8153,7 @@ snapshots: value-or-promise@1.0.12: {} - vite@7.1.12(@types/node@24.9.1)(jiti@2.4.0)(yaml@2.8.1): + vite@7.1.12(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1): dependencies: esbuild: 0.25.11 fdir: 6.5.0(picomatch@4.0.3) @@ -8162,15 +8162,15 @@ snapshots: rollup: 4.52.5 tinyglobby: 0.2.15 optionalDependencies: - '@types/node': 24.9.1 + '@types/node': 24.9.2 fsevents: 2.3.3 jiti: 2.4.0 yaml: 2.8.1 - vitest@4.0.4(@types/debug@4.1.12)(@types/node@24.9.1)(jiti@2.4.0)(yaml@2.8.1): + vitest@4.0.4(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1): dependencies: '@vitest/expect': 4.0.4 - '@vitest/mocker': 4.0.4(vite@7.1.12(@types/node@24.9.1)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/mocker': 4.0.4(vite@7.1.12(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1)) '@vitest/pretty-format': 4.0.4 '@vitest/runner': 4.0.4 '@vitest/snapshot': 4.0.4 @@ -8187,11 +8187,11 @@ snapshots: tinyexec: 0.3.2 tinyglobby: 0.2.15 tinyrainbow: 3.0.3 - vite: 7.1.12(@types/node@24.9.1)(jiti@2.4.0)(yaml@2.8.1) + vite: 7.1.12(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1) why-is-node-running: 2.3.0 optionalDependencies: '@types/debug': 4.1.12 - '@types/node': 24.9.1 + '@types/node': 24.9.2 transitivePeerDependencies: - jiti - less From e60b8916dbc6f6377f21f935aa55aa411b2b762f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 29 Oct 2025 07:51:53 +0000 Subject: [PATCH 093/133] chore(deps): update dependency @tsconfig/recommended to v1.0.11 (#1281) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 009801a5..04f7ac71 100644 --- a/package.json +++ b/package.json @@ -90,7 +90,7 @@ "@antfu/eslint-config": "^6.0.0", "@graphql-codegen/cli": "6.0.1", "@graphql-codegen/typescript": "^5.0.0", - "@tsconfig/recommended": "1.0.10", + "@tsconfig/recommended": "1.0.11", "@types/graphlib": "^2.1.8", "@types/node": "^24.0.0", "eslint": "9.38.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 49c46d6a..99384076 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -37,8 +37,8 @@ importers: specifier: ^5.0.0 version: 5.0.2(graphql@16.11.0) '@tsconfig/recommended': - specifier: 1.0.10 - version: 1.0.10 + specifier: 1.0.11 + version: 1.0.11 '@types/graphlib': specifier: ^2.1.8 version: 2.1.12 @@ -1234,8 +1234,8 @@ packages: peerDependencies: eslint: '>=9.0.0' - '@tsconfig/recommended@1.0.10': - resolution: {integrity: sha512-cGvydvg03lONp5Z9yaplW493Vw9/um7k588mvDkm+VFPF2PZUVPx0uswq4PFpeEySsLbQRETrDRhzh4Dmxaslw==} + '@tsconfig/recommended@1.0.11': + resolution: {integrity: sha512-irACIVvr9SnQK+zsrO7TkBVTq9LAafdyrjUxv6qgNh2wPi3/hFHcKEWMMlOd4HnRIDMdtI7ciVoPcZ9EuB7xMg==} '@tybys/wasm-util@0.9.0': resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==} @@ -5277,7 +5277,7 @@ snapshots: estraverse: 5.3.0 picomatch: 4.0.3 - '@tsconfig/recommended@1.0.10': {} + '@tsconfig/recommended@1.0.11': {} '@tybys/wasm-util@0.9.0': dependencies: From d931399a5513c54d63826943660627a057d60c07 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 29 Oct 2025 19:14:57 +0000 Subject: [PATCH 094/133] chore(deps): update dependency vitest to v4.0.5 (#1282) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 94 +++++++++++++++++++++++++------------------------- 1 file changed, 47 insertions(+), 47 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 99384076..761457b2 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.1.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.4(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1)) + version: 6.1.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.5(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.1 version: 6.0.1(@types/node@24.9.2)(graphql@16.11.0)(typescript@5.9.3) @@ -71,7 +71,7 @@ importers: version: 1.1.0(typescript@5.9.3) vitest: specifier: ^4.0.0 - version: 4.0.4(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1) + version: 4.0.5(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.1 version: 1.7.1 @@ -1463,11 +1463,11 @@ packages: vitest: optional: true - '@vitest/expect@4.0.4': - resolution: {integrity: sha512-0ioMscWJtfpyH7+P82sGpAi3Si30OVV73jD+tEqXm5+rIx9LgnfdaOn45uaFkKOncABi/PHL00Yn0oW/wK4cXw==} + '@vitest/expect@4.0.5': + resolution: {integrity: sha512-DJctLVlKoddvP/G389oGmKWNG6GD9frm2FPXARziU80Rjo7SIYxQzb2YFzmQ4fVD3Q5utUYY8nUmWrqsuIlIXQ==} - '@vitest/mocker@4.0.4': - resolution: {integrity: sha512-UTtKgpjWj+pvn3lUM55nSg34098obGhSHH+KlJcXesky8b5wCUgg7s60epxrS6yAG8slZ9W8T9jGWg4PisMf5Q==} + '@vitest/mocker@4.0.5': + resolution: {integrity: sha512-iYHIy72LfbK+mL5W8zXROp6oOcJKXWeKcNjcPPsqoa18qIEDrhB6/Z08o0wRajTd6SSSDNw8NCSIHVNOMpz0mw==} peerDependencies: msw: ^2.4.9 vite: ^6.0.0 || ^7.0.0-0 @@ -1477,20 +1477,20 @@ packages: vite: optional: true - '@vitest/pretty-format@4.0.4': - resolution: {integrity: sha512-lHI2rbyrLVSd1TiHGJYyEtbOBo2SDndIsN3qY4o4xe2pBxoJLD6IICghNCvD7P+BFin6jeyHXiUICXqgl6vEaQ==} + '@vitest/pretty-format@4.0.5': + resolution: {integrity: sha512-t1T/sSdsYyNc5AZl0EMeD0jW9cpJe2cODP0R++ZQe1kTkpgrwEfxGFR/yCG4w8ZybizbXRTHU7lE8sTDD/QsGw==} - '@vitest/runner@4.0.4': - resolution: {integrity: sha512-99EDqiCkncCmvIZj3qJXBZbyoQ35ghOwVWNnQ5nj0Hnsv4Qm40HmrMJrceewjLVvsxV/JSU4qyx2CGcfMBmXJw==} + '@vitest/runner@4.0.5': + resolution: {integrity: sha512-CQVVe+YEeKSiFBD5gBAmRDQglm4PnMBYzeTmt06t5iWtsUN9StQeeKhYCea/oaqBYilf8sARG6fSctUcEL/UmQ==} - '@vitest/snapshot@4.0.4': - resolution: {integrity: sha512-XICqf5Gi4648FGoBIeRgnHWSNDp+7R5tpclGosFaUUFzY6SfcpsfHNMnC7oDu/iOLBxYfxVzaQpylEvpgii3zw==} + '@vitest/snapshot@4.0.5': + resolution: {integrity: sha512-jfmSAeR6xYNEvcD+/RxFGA1bzpqHtkVhgxo2cxXia+Q3xX7m6GpZij07rz+WyQcA/xEGn4eIS1OItkMyWsGBmQ==} - '@vitest/spy@4.0.4': - resolution: {integrity: sha512-G9L13AFyYECo40QG7E07EdYnZZYCKMTSp83p9W8Vwed0IyCG1GnpDLxObkx8uOGPXfDpdeVf24P1Yka8/q1s9g==} + '@vitest/spy@4.0.5': + resolution: {integrity: sha512-TUmVQpAQign7r8+EnZsgTF3vY9BdGofTUge1rGNbnHn2IN3FChiQoT9lrPz7A7AVUZJU2LAZXl4v66HhsNMhoA==} - '@vitest/utils@4.0.4': - resolution: {integrity: sha512-4bJLmSvZLyVbNsYFRpPYdJViG9jZyRvMZ35IF4ymXbRZoS+ycYghmwTGiscTXduUg2lgKK7POWIyXJNute1hjw==} + '@vitest/utils@4.0.5': + resolution: {integrity: sha512-V5RndUgCB5/AfNvK9zxGCrRs99IrPYtMTIdUzJMMFs9nrmE5JXExIEfjVtUteyTRiLfCm+dCRMHf/Uu7Mm8/dg==} '@vue/compiler-core@3.5.12': resolution: {integrity: sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw==} @@ -3751,18 +3751,18 @@ packages: yaml: optional: true - vitest@4.0.4: - resolution: {integrity: sha512-hV31h0/bGbtmDQc0KqaxsTO1v4ZQeF8ojDFuy4sZhFadwAqqvJA0LDw68QUocctI5EDpFMql/jVWKuPYHIf2Ew==} + vitest@4.0.5: + resolution: {integrity: sha512-4H+J28MI5oeYgGg3h5BFSkQ1g/2GKK1IR8oorH3a6EQQbb7CwjbnyBjH4PGxw9/6vpwAPNzaeUMp4Js4WJmdXQ==} engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' '@types/debug': ^4.1.12 '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0 - '@vitest/browser-playwright': 4.0.4 - '@vitest/browser-preview': 4.0.4 - '@vitest/browser-webdriverio': 4.0.4 - '@vitest/ui': 4.0.4 + '@vitest/browser-playwright': 4.0.5 + '@vitest/browser-preview': 4.0.5 + '@vitest/browser-webdriverio': 4.0.5 + '@vitest/ui': 4.0.5 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -3909,7 +3909,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - '@antfu/eslint-config@6.1.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.4(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@6.1.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.5(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -3918,7 +3918,7 @@ snapshots: '@stylistic/eslint-plugin': 5.5.0(eslint@9.38.0(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/parser': 8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.3.24(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.4(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/eslint-plugin': 1.3.24(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.5(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.2.0 cac: 6.7.14 eslint: 9.38.0(jiti@2.4.0) @@ -5504,54 +5504,54 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.24(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.4(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.3.24(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.5(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.46.2 '@typescript-eslint/utils': 8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) eslint: 9.38.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - vitest: 4.0.4(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1) + vitest: 4.0.5(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color - '@vitest/expect@4.0.4': + '@vitest/expect@4.0.5': dependencies: '@standard-schema/spec': 1.0.0 '@types/chai': 5.2.3 - '@vitest/spy': 4.0.4 - '@vitest/utils': 4.0.4 + '@vitest/spy': 4.0.5 + '@vitest/utils': 4.0.5 chai: 6.2.0 tinyrainbow: 3.0.3 - '@vitest/mocker@4.0.4(vite@7.1.12(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@4.0.5(vite@7.1.12(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1))': dependencies: - '@vitest/spy': 4.0.4 + '@vitest/spy': 4.0.5 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: vite: 7.1.12(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1) - '@vitest/pretty-format@4.0.4': + '@vitest/pretty-format@4.0.5': dependencies: tinyrainbow: 3.0.3 - '@vitest/runner@4.0.4': + '@vitest/runner@4.0.5': dependencies: - '@vitest/utils': 4.0.4 + '@vitest/utils': 4.0.5 pathe: 2.0.3 - '@vitest/snapshot@4.0.4': + '@vitest/snapshot@4.0.5': dependencies: - '@vitest/pretty-format': 4.0.4 + '@vitest/pretty-format': 4.0.5 magic-string: 0.30.21 pathe: 2.0.3 - '@vitest/spy@4.0.4': {} + '@vitest/spy@4.0.5': {} - '@vitest/utils@4.0.4': + '@vitest/utils@4.0.5': dependencies: - '@vitest/pretty-format': 4.0.4 + '@vitest/pretty-format': 4.0.5 tinyrainbow: 3.0.3 '@vue/compiler-core@3.5.12': @@ -8167,15 +8167,15 @@ snapshots: jiti: 2.4.0 yaml: 2.8.1 - vitest@4.0.4(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1): + vitest@4.0.5(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1): dependencies: - '@vitest/expect': 4.0.4 - '@vitest/mocker': 4.0.4(vite@7.1.12(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1)) - '@vitest/pretty-format': 4.0.4 - '@vitest/runner': 4.0.4 - '@vitest/snapshot': 4.0.4 - '@vitest/spy': 4.0.4 - '@vitest/utils': 4.0.4 + '@vitest/expect': 4.0.5 + '@vitest/mocker': 4.0.5(vite@7.1.12(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/pretty-format': 4.0.5 + '@vitest/runner': 4.0.5 + '@vitest/snapshot': 4.0.5 + '@vitest/spy': 4.0.5 + '@vitest/utils': 4.0.5 debug: 4.4.3 es-module-lexer: 1.7.0 expect-type: 1.2.2 From 2eb11629952938f908a1e4b00037c13f0f138e1f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 30 Oct 2025 22:35:06 +0000 Subject: [PATCH 095/133] chore(deps): update dependency @graphql-tools/utils to v10.10.0 (#1283) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 88 +++++++++++++++++++++++++------------------------- 1 file changed, 44 insertions(+), 44 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 761457b2..5d2a7536 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -19,7 +19,7 @@ importers: version: 6.1.0(graphql@16.11.0) '@graphql-tools/utils': specifier: ^10.0.0 - version: 10.9.1(graphql@16.11.0) + version: 10.10.0(graphql@16.11.0) graphlib: specifier: ^2.1.8 version: 2.1.8 @@ -800,8 +800,8 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/utils@10.9.1': - resolution: {integrity: sha512-B1wwkXk9UvU7LCBkPs8513WxOQ2H8Fo5p8HR1+Id9WmYE5+bd51vqN+MbrqvWczHCH2gwkREgHJN88tE0n1FCw==} + '@graphql-tools/utils@10.10.0': + resolution: {integrity: sha512-OOeab5Y9qeKq0zfoJCSScMcDfGcIxp05+LW2xYVCS2l3su+K3lYcg5+cAAx9n0SFxpJl8zF5denq2QDsfM7NnQ==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -4421,7 +4421,7 @@ snapshots: '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) '@graphql-tools/load': 8.1.0(graphql@16.11.0) '@graphql-tools/url-loader': 8.0.15(@types/node@24.9.2)(graphql@16.11.0) - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.11.0) '@inquirer/prompts': 7.8.4(@types/node@24.9.2) '@whatwg-node/fetch': 0.10.1 chalk: 4.1.2 @@ -4464,7 +4464,7 @@ snapshots: '@graphql-codegen/typescript-operations': 5.0.0(graphql@16.11.0) '@graphql-codegen/visitor-plugin-common': 6.1.0(graphql@16.11.0) '@graphql-tools/documents': 1.0.1(graphql@16.11.0) - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.11.0) '@graphql-typed-document-node/core': 3.2.0(graphql@16.11.0) graphql: 16.11.0 tslib: 2.6.3 @@ -4475,7 +4475,7 @@ snapshots: dependencies: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) '@graphql-tools/schema': 10.0.23(graphql@16.11.0) - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.11.0) graphql: 16.11.0 tslib: 2.6.3 @@ -4483,7 +4483,7 @@ snapshots: dependencies: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) '@graphql-codegen/visitor-plugin-common': 6.0.0(graphql@16.11.0) - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.11.0) auto-bind: 4.0.0 graphql: 16.11.0 tslib: 2.6.3 @@ -4492,7 +4492,7 @@ snapshots: '@graphql-codegen/plugin-helpers@6.0.0(graphql@16.11.0)': dependencies: - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.11.0) change-case-all: 1.0.15 common-tags: 1.8.2 graphql: 16.11.0 @@ -4503,7 +4503,7 @@ snapshots: '@graphql-codegen/schema-ast@5.0.0(graphql@16.11.0)': dependencies: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.11.0) graphql: 16.11.0 tslib: 2.6.3 @@ -4545,7 +4545,7 @@ snapshots: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) '@graphql-tools/optimize': 2.0.0(graphql@16.11.0) '@graphql-tools/relay-operation-optimizer': 7.0.21(graphql@16.11.0) - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.11.0) auto-bind: 4.0.0 change-case-all: 1.0.15 dependency-graph: 1.0.0 @@ -4561,7 +4561,7 @@ snapshots: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) '@graphql-tools/optimize': 2.0.0(graphql@16.11.0) '@graphql-tools/relay-operation-optimizer': 7.0.21(graphql@16.11.0) - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.11.0) auto-bind: 4.0.0 change-case-all: 1.0.15 dependency-graph: 1.0.0 @@ -4575,7 +4575,7 @@ snapshots: '@graphql-tools/apollo-engine-loader@8.0.4(graphql@16.11.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.11.0) '@whatwg-node/fetch': 0.10.1 graphql: 16.11.0 tslib: 2.8.1 @@ -4584,7 +4584,7 @@ snapshots: '@graphql-tools/batch-execute@9.0.6(graphql@16.11.0)': dependencies: - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.11.0) dataloader: 2.2.2 graphql: 16.11.0 tslib: 2.8.1 @@ -4593,7 +4593,7 @@ snapshots: '@graphql-tools/code-file-loader@8.1.5(graphql@16.11.0)': dependencies: '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.11.0) - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.11.0) globby: 11.1.0 graphql: 16.11.0 tslib: 2.8.1 @@ -4606,7 +4606,7 @@ snapshots: '@graphql-tools/batch-execute': 9.0.6(graphql@16.11.0) '@graphql-tools/executor': 1.3.3(graphql@16.11.0) '@graphql-tools/schema': 10.0.23(graphql@16.11.0) - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.11.0) '@repeaterjs/repeater': 3.0.6 dataloader: 2.2.2 dset: 3.1.4 @@ -4621,7 +4621,7 @@ snapshots: '@graphql-tools/executor-graphql-ws@1.3.2(graphql@16.11.0)': dependencies: - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.11.0) '@types/ws': 8.5.13 graphql: 16.11.0 graphql-ws: 5.16.0(graphql@16.11.0) @@ -4634,7 +4634,7 @@ snapshots: '@graphql-tools/executor-http@1.1.9(@types/node@24.9.2)(graphql@16.11.0)': dependencies: - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.11.0) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/fetch': 0.10.1 extract-files: 11.0.0 @@ -4647,7 +4647,7 @@ snapshots: '@graphql-tools/executor-legacy-ws@1.1.2(graphql@16.11.0)': dependencies: - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.11.0) '@types/ws': 8.5.13 graphql: 16.11.0 isomorphic-ws: 5.0.0(ws@8.18.0) @@ -4659,7 +4659,7 @@ snapshots: '@graphql-tools/executor@1.3.3(graphql@16.11.0)': dependencies: - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.11.0) '@graphql-typed-document-node/core': 3.2.0(graphql@16.11.0) '@repeaterjs/repeater': 3.0.6 graphql: 16.11.0 @@ -4669,7 +4669,7 @@ snapshots: '@graphql-tools/git-loader@8.0.9(graphql@16.11.0)': dependencies: '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.11.0) - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.11.0) graphql: 16.11.0 is-glob: 4.0.3 micromatch: 4.0.8 @@ -4683,7 +4683,7 @@ snapshots: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/executor-http': 1.1.9(@types/node@24.9.2)(graphql@16.11.0) '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.11.0) - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.11.0) '@whatwg-node/fetch': 0.10.1 graphql: 16.11.0 tslib: 2.8.1 @@ -4696,7 +4696,7 @@ snapshots: '@graphql-tools/graphql-file-loader@8.0.3(graphql@16.11.0)': dependencies: '@graphql-tools/import': 7.0.3(graphql@16.11.0) - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.11.0) globby: 11.1.0 graphql: 16.11.0 tslib: 2.8.1 @@ -4709,7 +4709,7 @@ snapshots: '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.27.4) '@babel/traverse': 7.27.4 '@babel/types': 7.28.4 - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.11.0) graphql: 16.11.0 tslib: 2.8.1 transitivePeerDependencies: @@ -4717,14 +4717,14 @@ snapshots: '@graphql-tools/import@7.0.3(graphql@16.11.0)': dependencies: - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.11.0) graphql: 16.11.0 resolve-from: 5.0.0 tslib: 2.8.1 '@graphql-tools/json-file-loader@8.0.3(graphql@16.11.0)': dependencies: - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.11.0) globby: 11.1.0 graphql: 16.11.0 tslib: 2.8.1 @@ -4733,14 +4733,14 @@ snapshots: '@graphql-tools/load@8.1.0(graphql@16.11.0)': dependencies: '@graphql-tools/schema': 10.0.23(graphql@16.11.0) - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.11.0) graphql: 16.11.0 p-limit: 3.1.0 tslib: 2.8.1 '@graphql-tools/merge@9.0.24(graphql@16.11.0)': dependencies: - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.11.0) graphql: 16.11.0 tslib: 2.8.1 @@ -4752,7 +4752,7 @@ snapshots: '@graphql-tools/relay-operation-optimizer@7.0.21(graphql@16.11.0)': dependencies: '@ardatan/relay-compiler': 12.0.3(graphql@16.11.0) - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.11.0) graphql: 16.11.0 tslib: 2.6.3 transitivePeerDependencies: @@ -4761,7 +4761,7 @@ snapshots: '@graphql-tools/schema@10.0.23(graphql@16.11.0)': dependencies: '@graphql-tools/merge': 9.0.24(graphql@16.11.0) - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.11.0) graphql: 16.11.0 tslib: 2.8.1 @@ -4771,7 +4771,7 @@ snapshots: '@graphql-tools/executor-graphql-ws': 1.3.2(graphql@16.11.0) '@graphql-tools/executor-http': 1.1.9(@types/node@24.9.2)(graphql@16.11.0) '@graphql-tools/executor-legacy-ws': 1.1.2(graphql@16.11.0) - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.11.0) '@graphql-tools/wrap': 10.0.16(graphql@16.11.0) '@types/ws': 8.5.13 '@whatwg-node/fetch': 0.10.1 @@ -4786,7 +4786,7 @@ snapshots: - encoding - utf-8-validate - '@graphql-tools/utils@10.9.1(graphql@16.11.0)': + '@graphql-tools/utils@10.10.0(graphql@16.11.0)': dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.11.0) '@whatwg-node/promise-helpers': 1.3.2 @@ -4799,7 +4799,7 @@ snapshots: dependencies: '@graphql-tools/delegate': 10.1.2(graphql@16.11.0) '@graphql-tools/schema': 10.0.23(graphql@16.11.0) - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.11.0) graphql: 16.11.0 tslib: 2.8.1 value-or-promise: 1.0.12 @@ -5760,7 +5760,7 @@ snapshots: camel-case@4.1.2: dependencies: pascal-case: 3.1.2 - tslib: 2.8.1 + tslib: 2.6.3 camelcase@5.3.1: {} @@ -5771,7 +5771,7 @@ snapshots: capital-case@1.0.4: dependencies: no-case: 3.0.4 - tslib: 2.8.1 + tslib: 2.6.3 upper-case-first: 2.0.2 ccount@2.0.1: {} @@ -5871,7 +5871,7 @@ snapshots: constant-case@3.0.4: dependencies: no-case: 3.0.4 - tslib: 2.8.1 + tslib: 2.6.3 upper-case: 2.0.2 convert-source-map@2.0.0: {} @@ -5955,7 +5955,7 @@ snapshots: dot-case@3.0.4: dependencies: no-case: 3.0.4 - tslib: 2.8.1 + tslib: 2.6.3 dset@3.1.4: {} @@ -6512,7 +6512,7 @@ snapshots: '@graphql-tools/load': 8.1.0(graphql@16.11.0) '@graphql-tools/merge': 9.0.24(graphql@16.11.0) '@graphql-tools/url-loader': 8.0.15(@types/node@24.9.2)(graphql@16.11.0) - '@graphql-tools/utils': 10.9.1(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.11.0) cosmiconfig: 8.3.6(typescript@5.9.3) graphql: 16.11.0 jiti: 2.4.0 @@ -6551,7 +6551,7 @@ snapshots: header-case@2.0.4: dependencies: capital-case: 1.0.4 - tslib: 2.8.1 + tslib: 2.6.3 html-entities@2.6.0: {} @@ -7513,7 +7513,7 @@ snapshots: no-case@3.0.4: dependencies: lower-case: 2.0.2 - tslib: 2.8.1 + tslib: 2.6.3 node-fetch@2.7.0: dependencies: @@ -7602,7 +7602,7 @@ snapshots: param-case@3.0.4: dependencies: dot-case: 3.0.4 - tslib: 2.8.1 + tslib: 2.6.3 parent-module@1.0.1: dependencies: @@ -7632,12 +7632,12 @@ snapshots: pascal-case@3.1.2: dependencies: no-case: 3.0.4 - tslib: 2.8.1 + tslib: 2.6.3 path-case@3.0.4: dependencies: dot-case: 3.0.4 - tslib: 2.8.1 + tslib: 2.6.3 path-exists@4.0.0: {} @@ -7835,7 +7835,7 @@ snapshots: sentence-case@3.0.4: dependencies: no-case: 3.0.4 - tslib: 2.8.1 + tslib: 2.6.3 upper-case-first: 2.0.2 setimmediate@1.0.5: {} @@ -7873,7 +7873,7 @@ snapshots: snake-case@3.0.4: dependencies: dot-case: 3.0.4 - tslib: 2.8.1 + tslib: 2.6.3 source-map-js@1.2.1: {} From 195f3ec22269ac3843d9f0ce4bafbbf4357a3549 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 31 Oct 2025 04:51:55 +0000 Subject: [PATCH 096/133] chore(deps): update dependency @antfu/eslint-config to v6.2.0 (#1284) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 125 +++++++++++++++++++++++-------------------------- 1 file changed, 59 insertions(+), 66 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 5d2a7536..21cbd418 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.1.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.5(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1)) + version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.5(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.1 version: 6.0.1(@types/node@24.9.2)(graphql@16.11.0)(typescript@5.9.3) @@ -85,8 +85,8 @@ packages: resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - '@antfu/eslint-config@6.1.0': - resolution: {integrity: sha512-m/L9TGvtG3r4tkfq5BY6THz7pk0g6yuJwwA0SkLEDHJJpt0upuABhs8v3SU8yaPtCGUxq8k2QTLMZ3WPg4vSdw==} + '@antfu/eslint-config@6.2.0': + resolution: {integrity: sha512-ksasd+mJk441HHodwPh3Nhmwo9jSHUmgQyfTxMQM05U7SjDS0fy2KnXnPx0Vhc/CqKiJnx8wGpQCCJibyASX9Q==} hasBin: true peerDependencies: '@eslint-react/eslint-plugin': ^2.0.1 @@ -360,8 +360,8 @@ packages: resolution: {integrity: sha512-g+RihtzFgGTx2WYCuTHbdOXJeAlGnROws0TeALx9ow/ZmOROOZkVg5wp/B44n0WJgI4SQFP1eWM2iRPlU2Y14w==} engines: {node: '>=20.11.0'} - '@es-joy/resolve.exports@1.0.0': - resolution: {integrity: sha512-bbrmzsAZ9GA/3oBS6r8PWMtZarEhKHr413hak8ArwMEZ5DtaLErnkcyEWUsXy7urBcmVu/TpDzHPDVM5uIbx9A==} + '@es-joy/resolve.exports@1.2.0': + resolution: {integrity: sha512-Q9hjxWI5xBM+qW2enxfe8wDKdFWMfd0Z29k5ZJnuBqD/CasY5Zryj09aCA6owbGATWz+39p5uIdaHXpopOcG8g==} engines: {node: '>=10'} '@esbuild/aix-ppc64@0.25.11': @@ -540,8 +540,8 @@ packages: resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - '@eslint/compat@1.4.0': - resolution: {integrity: sha512-DEzm5dKeDBPm3r08Ixli/0cmxr8LkRdwxMRUIJBlSCpAwSrvFEJpVBzV+66JhDxiaqKxnRzCXhtiMiczF7Hglg==} + '@eslint/compat@1.4.1': + resolution: {integrity: sha512-cfO82V9zxxGBxcQDr1lfaYB7wykTa0b00mGa36FrJl7iTFd0Z2cHfEYuxcBRP/iNijCsWsEkA+jzT8hGYmv33w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.40 || 9 @@ -557,14 +557,14 @@ packages: resolution: {integrity: sha512-csZAzkNhsgwb0I/UAV6/RGFTbiakPCf0ZrGmrIxQpYvGZ00PhTkSnyKNolphgIvmnJeGw6rcGVEXfTzUnFuEvw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/core@0.15.2': - resolution: {integrity: sha512-78Md3/Rrxh83gCxoUc0EiciuOHsIITzLy53m3d9UyiW8y9Dj2D29FeETqyKA+BRK76tnTp6RXWb3pCay8Oyomg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/core@0.16.0': resolution: {integrity: sha512-nmC8/totwobIiFcGkDza3GIKfAw1+hLiYVrh3I1nIomQ8PEr5cxg34jnkmGawul/ep52wGRAcyeDCNtWKSOj4Q==} 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.1': resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -581,14 +581,14 @@ packages: resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/plugin-kit@0.3.5': - resolution: {integrity: sha512-Z5kJ+wU3oA7MMIqVR9tyZRtjYPr4OC004Q4Rw7pgOKUOKkJfZ3O24nz3WYfGRpMDNmcOi3TwQOmgm7B7Tpii0w==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/plugin-kit@0.4.0': resolution: {integrity: sha512-sB5uyeq+dwCWyPi31B2gQlVlo+j5brPlWx4yZBrEaRo/nhdDE8Xke1gsGgtiBdaBTxuTkceLVuVt/pclrasb0A==} 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} + '@graphql-codegen/add@6.0.0': resolution: {integrity: sha512-biFdaURX0KTwEJPQ1wkT6BRgNasqgQ5KbCI1a3zwtLtO7XTo7/vKITPylmiU27K5DSOWYnY/1jfSqUAEBuhZrQ==} engines: {node: '>=16'} @@ -1450,8 +1450,8 @@ packages: cpu: [x64] os: [win32] - '@vitest/eslint-plugin@1.3.24': - resolution: {integrity: sha512-p1HbH4tMp6kqXS3dwFgy9Ne5Cs9UdBWnGL714m6I/xLK0QoU7MQcR+r+bUjgSFBimNrgiNzUGQ0aiFzKTiJacA==} + '@vitest/eslint-plugin@1.4.0': + resolution: {integrity: sha512-TMzJ0Vqdsc71stblzI0ZdqSnt6Bp4mJ+amD3Hv3qhKK82hBUnznYfnLwA80gdGfe5V24ysndMOoSGrol6fyvbA==} engines: {node: '>=18'} peerDependencies: eslint: '>=8.57.0' @@ -1621,8 +1621,8 @@ packages: balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - baseline-browser-mapping@2.8.20: - resolution: {integrity: sha512-JMWsdF+O8Orq3EMukbUN1QfbLK9mX2CkUmQBcW2T0s8OmdAUL5LLM/6wFwSrqXzlXB13yhyK9gTKS1rIizOduQ==} + baseline-browser-mapping@2.8.21: + resolution: {integrity: sha512-JU0h5APyQNsHOlAM7HnQnPToSDQoEBZqzu/YBlqDnEeymPnZDREeXJA3KBMQee+dKteAxZ2AtvQEvVYdZf241Q==} hasBin: true boolbase@1.0.0: @@ -1895,8 +1895,8 @@ packages: eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - electron-to-chromium@1.5.240: - resolution: {integrity: sha512-OBwbZjWgrCOH+g6uJsA2/7Twpas2OlepS9uvByJjR2datRDuKGYeD+nP8lBBks2qnB7bGJNHDUx7c/YLaT3QMQ==} + electron-to-chromium@1.5.244: + resolution: {integrity: sha512-OszpBN7xZX4vWMPJwB9illkN/znA8M36GQqQxi6MNy9axWxhOfJyZZJtSLQCpEFLHP2xK33BiWx9aIuIEXVCcw==} emittery@0.13.1: resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} @@ -2024,8 +2024,8 @@ packages: typescript: optional: true - eslint-plugin-jsdoc@61.1.8: - resolution: {integrity: sha512-2496IdYqyH0Anbho+MuL8tKJLT3JCNlJd9Apqpo5vvTwT6wlC5yBVv7nM0PFBGDyl1gxx4QfrF8SApVkCHGzzA==} + eslint-plugin-jsdoc@61.1.11: + resolution: {integrity: sha512-c+NQQOFd+ZTjFt0pfFMB8OTumExg0vf8mlJsOtLj6qTDGewtLh7bhwoDgBg6rIiTziYc8N4u4dYmSdAIn0yTEQ==} engines: {node: '>=20.11.0'} peerDependencies: eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 @@ -2069,11 +2069,11 @@ packages: peerDependencies: eslint: '>=6.0.0' - eslint-plugin-unicorn@61.0.2: - resolution: {integrity: sha512-zLihukvneYT7f74GNbVJXfWIiNQmkc/a9vYBTE4qPkQZswolWNdu+Wsp9sIXno1JOzdn6OUwLPd19ekXVkahRA==} + eslint-plugin-unicorn@62.0.0: + resolution: {integrity: sha512-HIlIkGLkvf29YEiS/ImuDZQbP12gWyx5i3C6XrRxMvVdqMroCI9qoVYCoIl17ChN+U89pn9sVwLxhIWj5nEc7g==} engines: {node: ^20.10.0 || >=21.0.0} peerDependencies: - eslint: '>=9.29.0' + eslint: '>=9.38.0' eslint-plugin-unused-imports@4.3.0: resolution: {integrity: sha512-ZFBmXMGBYfHttdRtOG9nFFpmUvMtbHSjsKrS20vdWdbfiVYsO3yA2SGYy9i9XmZJDfMGBflZGBCm70SEnFQtOA==} @@ -2703,11 +2703,6 @@ packages: resolution: {integrity: sha512-+LexoTRyYui5iOhJGn13N9ZazL23nAHGkXsa1p/C8yeq79WRfLBag6ZZ0FQG2aRoc9yfo59JT9EYCQonOkHKkQ==} engines: {node: '>=20.0.0'} - jsesc@3.0.2: - resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} - engines: {node: '>=6'} - hasBin: true - jsesc@3.1.0: resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} engines: {node: '>=6'} @@ -3048,8 +3043,8 @@ packages: node-int64@0.4.0: resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} - node-releases@2.0.26: - resolution: {integrity: sha512-S2M9YimhSjBSvYnlr5/+umAnPHE++ODwt5e2Ij6FoX45HA/s4vHdkDx1eax2pAPeAOqu4s9b7ppahsyEFdVqQA==} + node-releases@2.0.27: + resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==} normalize-path@2.1.1: resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==} @@ -3283,8 +3278,8 @@ packages: resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==} hasBin: true - regjsparser@0.12.0: - resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==} + regjsparser@0.13.0: + resolution: {integrity: sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q==} hasBin: true relay-runtime@12.0.0: @@ -3909,7 +3904,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - '@antfu/eslint-config@6.1.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.5(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.5(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -3918,7 +3913,7 @@ snapshots: '@stylistic/eslint-plugin': 5.5.0(eslint@9.38.0(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/parser': 8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.3.24(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.5(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/eslint-plugin': 1.4.0(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.5(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.2.0 cac: 6.7.14 eslint: 9.38.0(jiti@2.4.0) @@ -3928,7 +3923,7 @@ snapshots: eslint-plugin-antfu: 3.1.1(eslint@9.38.0(jiti@2.4.0)) eslint-plugin-command: 3.3.1(eslint@9.38.0(jiti@2.4.0)) eslint-plugin-import-lite: 0.3.0(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-jsdoc: 61.1.8(eslint@9.38.0(jiti@2.4.0)) + eslint-plugin-jsdoc: 61.1.11(eslint@9.38.0(jiti@2.4.0)) eslint-plugin-jsonc: 2.21.0(eslint@9.38.0(jiti@2.4.0)) eslint-plugin-n: 17.23.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) eslint-plugin-no-only-tests: 3.3.0 @@ -3936,7 +3931,7 @@ snapshots: eslint-plugin-pnpm: 1.3.0(eslint@9.38.0(jiti@2.4.0)) eslint-plugin-regexp: 2.10.0(eslint@9.38.0(jiti@2.4.0)) eslint-plugin-toml: 0.12.0(eslint@9.38.0(jiti@2.4.0)) - eslint-plugin-unicorn: 61.0.2(eslint@9.38.0(jiti@2.4.0)) + eslint-plugin-unicorn: 62.0.0(eslint@9.38.0(jiti@2.4.0)) eslint-plugin-unused-imports: 4.3.0(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0)) eslint-plugin-vue: 10.5.1(@stylistic/eslint-plugin@5.5.0(eslint@9.38.0(jiti@2.4.0)))(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.38.0(jiti@2.4.0))) eslint-plugin-yml: 1.19.0(eslint@9.38.0(jiti@2.4.0)) @@ -4236,7 +4231,7 @@ snapshots: esquery: 1.6.0 jsdoc-type-pratt-parser: 6.10.0 - '@es-joy/resolve.exports@1.0.0': {} + '@es-joy/resolve.exports@1.2.0': {} '@esbuild/aix-ppc64@0.25.11': optional: true @@ -4331,9 +4326,9 @@ snapshots: '@eslint-community/regexpp@4.12.2': {} - '@eslint/compat@1.4.0(eslint@9.38.0(jiti@2.4.0))': + '@eslint/compat@1.4.1(eslint@9.38.0(jiti@2.4.0))': dependencies: - '@eslint/core': 0.16.0 + '@eslint/core': 0.17.0 optionalDependencies: eslint: 9.38.0(jiti@2.4.0) @@ -4349,11 +4344,11 @@ snapshots: dependencies: '@eslint/core': 0.16.0 - '@eslint/core@0.15.2': + '@eslint/core@0.16.0': dependencies: '@types/json-schema': 7.0.15 - '@eslint/core@0.16.0': + '@eslint/core@0.17.0': dependencies: '@types/json-schema': 7.0.15 @@ -4376,7 +4371,7 @@ snapshots: '@eslint/markdown@7.5.0': dependencies: '@eslint/core': 0.16.0 - '@eslint/plugin-kit': 0.4.0 + '@eslint/plugin-kit': 0.4.1 github-slugger: 2.0.0 mdast-util-from-markdown: 2.0.2 mdast-util-frontmatter: 2.0.1 @@ -4389,14 +4384,14 @@ snapshots: '@eslint/object-schema@2.1.7': {} - '@eslint/plugin-kit@0.3.5': + '@eslint/plugin-kit@0.4.0': dependencies: - '@eslint/core': 0.15.2 + '@eslint/core': 0.16.0 levn: 0.4.1 - '@eslint/plugin-kit@0.4.0': + '@eslint/plugin-kit@0.4.1': dependencies: - '@eslint/core': 0.16.0 + '@eslint/core': 0.17.0 levn: 0.4.1 '@graphql-codegen/add@6.0.0(graphql@16.11.0)': @@ -5504,7 +5499,7 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.3.24(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.5(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.4.0(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.5(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.46.2 '@typescript-eslint/utils': 8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) @@ -5712,7 +5707,7 @@ snapshots: balanced-match@1.0.2: {} - baseline-browser-mapping@2.8.20: {} + baseline-browser-mapping@2.8.21: {} boolbase@1.0.0: {} @@ -5731,10 +5726,10 @@ snapshots: browserslist@4.27.0: dependencies: - baseline-browser-mapping: 2.8.20 + baseline-browser-mapping: 2.8.21 caniuse-lite: 1.0.30001751 - electron-to-chromium: 1.5.240 - node-releases: 2.0.26 + electron-to-chromium: 1.5.244 + node-releases: 2.0.27 update-browserslist-db: 1.1.4(browserslist@4.27.0) bs-logger@0.2.6: @@ -5961,7 +5956,7 @@ snapshots: eastasianwidth@0.2.0: {} - electron-to-chromium@1.5.240: {} + electron-to-chromium@1.5.244: {} emittery@0.13.1: {} @@ -6041,7 +6036,7 @@ snapshots: eslint-config-flat-gitignore@2.1.0(eslint@9.38.0(jiti@2.4.0)): dependencies: - '@eslint/compat': 1.4.0(eslint@9.38.0(jiti@2.4.0)) + '@eslint/compat': 1.4.1(eslint@9.38.0(jiti@2.4.0)) eslint: 9.38.0(jiti@2.4.0) eslint-flat-config-utils@2.1.4: @@ -6082,10 +6077,10 @@ snapshots: optionalDependencies: typescript: 5.9.3 - eslint-plugin-jsdoc@61.1.8(eslint@9.38.0(jiti@2.4.0)): + eslint-plugin-jsdoc@61.1.11(eslint@9.38.0(jiti@2.4.0)): dependencies: '@es-joy/jsdoccomment': 0.76.0 - '@es-joy/resolve.exports': 1.0.0 + '@es-joy/resolve.exports': 1.2.0 are-docs-informative: 0.0.2 comment-parser: 1.4.1 debug: 4.4.3 @@ -6175,11 +6170,11 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-unicorn@61.0.2(eslint@9.38.0(jiti@2.4.0)): + eslint-plugin-unicorn@62.0.0(eslint@9.38.0(jiti@2.4.0)): dependencies: '@babel/helper-validator-identifier': 7.28.5 '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) - '@eslint/plugin-kit': 0.3.5 + '@eslint/plugin-kit': 0.4.1 change-case: 5.4.4 ci-info: 4.3.1 clean-regexp: 1.0.0 @@ -6193,7 +6188,7 @@ snapshots: jsesc: 3.1.0 pluralize: 8.0.0 regexp-tree: 0.1.27 - regjsparser: 0.12.0 + regjsparser: 0.13.0 semver: 7.7.3 strip-indent: 4.1.1 @@ -7022,8 +7017,6 @@ snapshots: jsdoc-type-pratt-parser@6.10.0: {} - jsesc@3.0.2: {} - jsesc@3.1.0: {} json-buffer@3.0.1: {} @@ -7521,7 +7514,7 @@ snapshots: node-int64@0.4.0: {} - node-releases@2.0.26: {} + node-releases@2.0.27: {} normalize-path@2.1.1: dependencies: @@ -7745,9 +7738,9 @@ snapshots: regexp-tree@0.1.27: {} - regjsparser@0.12.0: + regjsparser@0.13.0: dependencies: - jsesc: 3.0.2 + jsesc: 3.1.0 relay-runtime@12.0.0: dependencies: From bfab5fd638c43afd6c4d1f6c45f2ed81d5db8045 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 31 Oct 2025 19:47:49 +0000 Subject: [PATCH 097/133] chore(deps): update dependency vitest to v4.0.6 (#1285) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 94 +++++++++++++++++++++++++------------------------- 1 file changed, 47 insertions(+), 47 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 21cbd418..b4e009e7 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.5(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1)) + version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.1 version: 6.0.1(@types/node@24.9.2)(graphql@16.11.0)(typescript@5.9.3) @@ -71,7 +71,7 @@ importers: version: 1.1.0(typescript@5.9.3) vitest: specifier: ^4.0.0 - version: 4.0.5(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1) + version: 4.0.6(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.1 version: 1.7.1 @@ -1463,11 +1463,11 @@ packages: vitest: optional: true - '@vitest/expect@4.0.5': - resolution: {integrity: sha512-DJctLVlKoddvP/G389oGmKWNG6GD9frm2FPXARziU80Rjo7SIYxQzb2YFzmQ4fVD3Q5utUYY8nUmWrqsuIlIXQ==} + '@vitest/expect@4.0.6': + resolution: {integrity: sha512-5j8UUlBVhOjhj4lR2Nt9sEV8b4WtbcYh8vnfhTNA2Kn5+smtevzjNq+xlBuVhnFGXiyPPNzGrOVvmyHWkS5QGg==} - '@vitest/mocker@4.0.5': - resolution: {integrity: sha512-iYHIy72LfbK+mL5W8zXROp6oOcJKXWeKcNjcPPsqoa18qIEDrhB6/Z08o0wRajTd6SSSDNw8NCSIHVNOMpz0mw==} + '@vitest/mocker@4.0.6': + resolution: {integrity: sha512-3COEIew5HqdzBFEYN9+u0dT3i/NCwppLnO1HkjGfAP1Vs3vti1Hxm/MvcbC4DAn3Szo1M7M3otiAaT83jvqIjA==} peerDependencies: msw: ^2.4.9 vite: ^6.0.0 || ^7.0.0-0 @@ -1477,20 +1477,20 @@ packages: vite: optional: true - '@vitest/pretty-format@4.0.5': - resolution: {integrity: sha512-t1T/sSdsYyNc5AZl0EMeD0jW9cpJe2cODP0R++ZQe1kTkpgrwEfxGFR/yCG4w8ZybizbXRTHU7lE8sTDD/QsGw==} + '@vitest/pretty-format@4.0.6': + resolution: {integrity: sha512-4vptgNkLIA1W1Nn5X4x8rLJBzPiJwnPc+awKtfBE5hNMVsoAl/JCCPPzNrbf+L4NKgklsis5Yp2gYa+XAS442g==} - '@vitest/runner@4.0.5': - resolution: {integrity: sha512-CQVVe+YEeKSiFBD5gBAmRDQglm4PnMBYzeTmt06t5iWtsUN9StQeeKhYCea/oaqBYilf8sARG6fSctUcEL/UmQ==} + '@vitest/runner@4.0.6': + resolution: {integrity: sha512-trPk5qpd7Jj+AiLZbV/e+KiiaGXZ8ECsRxtnPnCrJr9OW2mLB72Cb824IXgxVz/mVU3Aj4VebY+tDTPn++j1Og==} - '@vitest/snapshot@4.0.5': - resolution: {integrity: sha512-jfmSAeR6xYNEvcD+/RxFGA1bzpqHtkVhgxo2cxXia+Q3xX7m6GpZij07rz+WyQcA/xEGn4eIS1OItkMyWsGBmQ==} + '@vitest/snapshot@4.0.6': + resolution: {integrity: sha512-PaYLt7n2YzuvxhulDDu6c9EosiRuIE+FI2ECKs6yvHyhoga+2TBWI8dwBjs+IeuQaMtZTfioa9tj3uZb7nev1g==} - '@vitest/spy@4.0.5': - resolution: {integrity: sha512-TUmVQpAQign7r8+EnZsgTF3vY9BdGofTUge1rGNbnHn2IN3FChiQoT9lrPz7A7AVUZJU2LAZXl4v66HhsNMhoA==} + '@vitest/spy@4.0.6': + resolution: {integrity: sha512-g9jTUYPV1LtRPRCQfhbMintW7BTQz1n6WXYQYRQ25qkyffA4bjVXjkROokZnv7t07OqfaFKw1lPzqKGk1hmNuQ==} - '@vitest/utils@4.0.5': - resolution: {integrity: sha512-V5RndUgCB5/AfNvK9zxGCrRs99IrPYtMTIdUzJMMFs9nrmE5JXExIEfjVtUteyTRiLfCm+dCRMHf/Uu7Mm8/dg==} + '@vitest/utils@4.0.6': + resolution: {integrity: sha512-bG43VS3iYKrMIZXBo+y8Pti0O7uNju3KvNn6DrQWhQQKcLavMB+0NZfO1/QBAEbq0MaQ3QjNsnnXlGQvsh0Z6A==} '@vue/compiler-core@3.5.12': resolution: {integrity: sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw==} @@ -3746,18 +3746,18 @@ packages: yaml: optional: true - vitest@4.0.5: - resolution: {integrity: sha512-4H+J28MI5oeYgGg3h5BFSkQ1g/2GKK1IR8oorH3a6EQQbb7CwjbnyBjH4PGxw9/6vpwAPNzaeUMp4Js4WJmdXQ==} + vitest@4.0.6: + resolution: {integrity: sha512-gR7INfiVRwnEOkCk47faros/9McCZMp5LM+OMNWGLaDBSvJxIzwjgNFufkuePBNaesGRnLmNfW+ddbUJRZn0nQ==} engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' '@types/debug': ^4.1.12 '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0 - '@vitest/browser-playwright': 4.0.5 - '@vitest/browser-preview': 4.0.5 - '@vitest/browser-webdriverio': 4.0.5 - '@vitest/ui': 4.0.5 + '@vitest/browser-playwright': 4.0.6 + '@vitest/browser-preview': 4.0.6 + '@vitest/browser-webdriverio': 4.0.6 + '@vitest/ui': 4.0.6 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -3904,7 +3904,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.5(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -3913,7 +3913,7 @@ snapshots: '@stylistic/eslint-plugin': 5.5.0(eslint@9.38.0(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/parser': 8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.4.0(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.5(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/eslint-plugin': 1.4.0(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.2.0 cac: 6.7.14 eslint: 9.38.0(jiti@2.4.0) @@ -5499,54 +5499,54 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.4.0(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.5(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.4.0(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.46.2 '@typescript-eslint/utils': 8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) eslint: 9.38.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - vitest: 4.0.5(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1) + vitest: 4.0.6(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color - '@vitest/expect@4.0.5': + '@vitest/expect@4.0.6': dependencies: '@standard-schema/spec': 1.0.0 '@types/chai': 5.2.3 - '@vitest/spy': 4.0.5 - '@vitest/utils': 4.0.5 + '@vitest/spy': 4.0.6 + '@vitest/utils': 4.0.6 chai: 6.2.0 tinyrainbow: 3.0.3 - '@vitest/mocker@4.0.5(vite@7.1.12(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@4.0.6(vite@7.1.12(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1))': dependencies: - '@vitest/spy': 4.0.5 + '@vitest/spy': 4.0.6 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: vite: 7.1.12(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1) - '@vitest/pretty-format@4.0.5': + '@vitest/pretty-format@4.0.6': dependencies: tinyrainbow: 3.0.3 - '@vitest/runner@4.0.5': + '@vitest/runner@4.0.6': dependencies: - '@vitest/utils': 4.0.5 + '@vitest/utils': 4.0.6 pathe: 2.0.3 - '@vitest/snapshot@4.0.5': + '@vitest/snapshot@4.0.6': dependencies: - '@vitest/pretty-format': 4.0.5 + '@vitest/pretty-format': 4.0.6 magic-string: 0.30.21 pathe: 2.0.3 - '@vitest/spy@4.0.5': {} + '@vitest/spy@4.0.6': {} - '@vitest/utils@4.0.5': + '@vitest/utils@4.0.6': dependencies: - '@vitest/pretty-format': 4.0.5 + '@vitest/pretty-format': 4.0.6 tinyrainbow: 3.0.3 '@vue/compiler-core@3.5.12': @@ -8160,15 +8160,15 @@ snapshots: jiti: 2.4.0 yaml: 2.8.1 - vitest@4.0.5(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1): + vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1): dependencies: - '@vitest/expect': 4.0.5 - '@vitest/mocker': 4.0.5(vite@7.1.12(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1)) - '@vitest/pretty-format': 4.0.5 - '@vitest/runner': 4.0.5 - '@vitest/snapshot': 4.0.5 - '@vitest/spy': 4.0.5 - '@vitest/utils': 4.0.5 + '@vitest/expect': 4.0.6 + '@vitest/mocker': 4.0.6(vite@7.1.12(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/pretty-format': 4.0.6 + '@vitest/runner': 4.0.6 + '@vitest/snapshot': 4.0.6 + '@vitest/spy': 4.0.6 + '@vitest/utils': 4.0.6 debug: 4.4.3 es-module-lexer: 1.7.0 expect-type: 1.2.2 From 25ac7c01c22d2a03246f88c7293cb42e288033c3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 1 Nov 2025 00:04:11 +0000 Subject: [PATCH 098/133] chore(deps): update dependency eslint to v9.39.0 (#1286) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 279 +++++++++++++++++++++++-------------------------- 2 files changed, 133 insertions(+), 148 deletions(-) diff --git a/package.json b/package.json index 04f7ac71..7c9b310b 100644 --- a/package.json +++ b/package.json @@ -93,7 +93,7 @@ "@tsconfig/recommended": "1.0.11", "@types/graphlib": "^2.1.8", "@types/node": "^24.0.0", - "eslint": "9.38.0", + "eslint": "9.39.0", "jest": "30.2.0", "myzod": "1.12.1", "npm-run-all2": "8.0.4", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b4e009e7..f27d2302 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1)) + version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.1 version: 6.0.1(@types/node@24.9.2)(graphql@16.11.0)(typescript@5.9.3) @@ -46,8 +46,8 @@ importers: specifier: ^24.0.0 version: 24.9.2 eslint: - specifier: 9.38.0 - version: 9.38.0(jiti@2.4.0) + specifier: 9.39.0 + version: 9.39.0(jiti@2.4.0) jest: specifier: 30.2.0 version: 30.2.0(@types/node@24.9.2) @@ -532,10 +532,6 @@ packages: peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - '@eslint-community/regexpp@4.12.1': - resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} - engines: {node: ^12.0.0 || ^14.0.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} @@ -553,8 +549,8 @@ packages: 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.1': - resolution: {integrity: sha512-csZAzkNhsgwb0I/UAV6/RGFTbiakPCf0ZrGmrIxQpYvGZ00PhTkSnyKNolphgIvmnJeGw6rcGVEXfTzUnFuEvw==} + '@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.16.0': @@ -569,8 +565,8 @@ packages: resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/js@9.38.0': - resolution: {integrity: sha512-UZ1VpFvXf9J06YG9xQBdnzU+kthors6KjhMAl6f4gH4usHyh31rUf2DLGInT8RFYIReYXNSydgPY0V2LuWgl7A==} + '@eslint/js@9.39.0': + resolution: {integrity: sha512-BIhe0sW91JGPiaF1mOuPy5v8NflqfjIcDNpC+LbW9f609WVRX1rArrhi6Z2ymvrAry9jw+5POTj4t2t62o8Bmw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/markdown@7.5.0': @@ -581,10 +577,6 @@ packages: 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.0': - resolution: {integrity: sha512-sB5uyeq+dwCWyPi31B2gQlVlo+j5brPlWx4yZBrEaRo/nhdDE8Xke1gsGgtiBdaBTxuTkceLVuVt/pclrasb0A==} - 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} @@ -2122,8 +2114,8 @@ packages: resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - eslint@9.38.0: - resolution: {integrity: sha512-t5aPOpmtJcZcz5UJyY2GbvpDlsK5E8JqRqoKtfiKE3cNh437KIqfJr3A3AKf5k64NPx6d0G3dno6XDY05PqPtw==} + eslint@9.39.0: + resolution: {integrity: sha512-iy2GE3MHrYTL5lrCtMZ0X1KLEKKUjmK0kzwcnefhR66txcEmXZD2YWgR5GNdcEwkNx3a0siYkSvl0vIC+Svjmg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true peerDependencies: @@ -3904,44 +3896,44 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 - '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.38.0(jiti@2.4.0)) + '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.39.0(jiti@2.4.0)) '@eslint/markdown': 7.5.0 - '@stylistic/eslint-plugin': 5.5.0(eslint@9.38.0(jiti@2.4.0)) - '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) - '@typescript-eslint/parser': 8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.4.0(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1)) + '@stylistic/eslint-plugin': 5.5.0(eslint@9.39.0(jiti@2.4.0)) + '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/parser': 8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3) + '@vitest/eslint-plugin': 1.4.0(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.2.0 cac: 6.7.14 - eslint: 9.38.0(jiti@2.4.0) - eslint-config-flat-gitignore: 2.1.0(eslint@9.38.0(jiti@2.4.0)) + eslint: 9.39.0(jiti@2.4.0) + eslint-config-flat-gitignore: 2.1.0(eslint@9.39.0(jiti@2.4.0)) eslint-flat-config-utils: 2.1.4 - eslint-merge-processors: 2.0.0(eslint@9.38.0(jiti@2.4.0)) - eslint-plugin-antfu: 3.1.1(eslint@9.38.0(jiti@2.4.0)) - eslint-plugin-command: 3.3.1(eslint@9.38.0(jiti@2.4.0)) - eslint-plugin-import-lite: 0.3.0(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-jsdoc: 61.1.11(eslint@9.38.0(jiti@2.4.0)) - eslint-plugin-jsonc: 2.21.0(eslint@9.38.0(jiti@2.4.0)) - eslint-plugin-n: 17.23.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) + eslint-merge-processors: 2.0.0(eslint@9.39.0(jiti@2.4.0)) + eslint-plugin-antfu: 3.1.1(eslint@9.39.0(jiti@2.4.0)) + eslint-plugin-command: 3.3.1(eslint@9.39.0(jiti@2.4.0)) + eslint-plugin-import-lite: 0.3.0(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3) + eslint-plugin-jsdoc: 61.1.11(eslint@9.39.0(jiti@2.4.0)) + eslint-plugin-jsonc: 2.21.0(eslint@9.39.0(jiti@2.4.0)) + eslint-plugin-n: 17.23.1(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3) eslint-plugin-no-only-tests: 3.3.0 - eslint-plugin-perfectionist: 4.15.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-pnpm: 1.3.0(eslint@9.38.0(jiti@2.4.0)) - eslint-plugin-regexp: 2.10.0(eslint@9.38.0(jiti@2.4.0)) - eslint-plugin-toml: 0.12.0(eslint@9.38.0(jiti@2.4.0)) - eslint-plugin-unicorn: 62.0.0(eslint@9.38.0(jiti@2.4.0)) - eslint-plugin-unused-imports: 4.3.0(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0)) - eslint-plugin-vue: 10.5.1(@stylistic/eslint-plugin@5.5.0(eslint@9.38.0(jiti@2.4.0)))(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.38.0(jiti@2.4.0))) - eslint-plugin-yml: 1.19.0(eslint@9.38.0(jiti@2.4.0)) - eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0)) + eslint-plugin-perfectionist: 4.15.1(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3) + eslint-plugin-pnpm: 1.3.0(eslint@9.39.0(jiti@2.4.0)) + eslint-plugin-regexp: 2.10.0(eslint@9.39.0(jiti@2.4.0)) + eslint-plugin-toml: 0.12.0(eslint@9.39.0(jiti@2.4.0)) + eslint-plugin-unicorn: 62.0.0(eslint@9.39.0(jiti@2.4.0)) + eslint-plugin-unused-imports: 4.3.0(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.0(jiti@2.4.0)) + eslint-plugin-vue: 10.5.1(@stylistic/eslint-plugin@5.5.0(eslint@9.39.0(jiti@2.4.0)))(@typescript-eslint/parser@8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.39.0(jiti@2.4.0))) + eslint-plugin-yml: 1.19.0(eslint@9.39.0(jiti@2.4.0)) + eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.0(jiti@2.4.0)) globals: 16.4.0 jsonc-eslint-parser: 2.4.1 local-pkg: 1.1.2 parse-gitignore: 2.0.0 toml-eslint-parser: 0.10.0 - vue-eslint-parser: 10.2.0(eslint@9.38.0(jiti@2.4.0)) + vue-eslint-parser: 10.2.0(eslint@9.39.0(jiti@2.4.0)) yaml-eslint-parser: 1.3.0 transitivePeerDependencies: - '@eslint/json' @@ -4311,26 +4303,24 @@ snapshots: '@esbuild/win32-x64@0.25.11': optional: true - '@eslint-community/eslint-plugin-eslint-comments@4.5.0(eslint@9.38.0(jiti@2.4.0))': + '@eslint-community/eslint-plugin-eslint-comments@4.5.0(eslint@9.39.0(jiti@2.4.0))': dependencies: escape-string-regexp: 4.0.0 - eslint: 9.38.0(jiti@2.4.0) + eslint: 9.39.0(jiti@2.4.0) ignore: 5.3.2 - '@eslint-community/eslint-utils@4.9.0(eslint@9.38.0(jiti@2.4.0))': + '@eslint-community/eslint-utils@4.9.0(eslint@9.39.0(jiti@2.4.0))': dependencies: - eslint: 9.38.0(jiti@2.4.0) + eslint: 9.39.0(jiti@2.4.0) eslint-visitor-keys: 3.4.3 - '@eslint-community/regexpp@4.12.1': {} - '@eslint-community/regexpp@4.12.2': {} - '@eslint/compat@1.4.1(eslint@9.38.0(jiti@2.4.0))': + '@eslint/compat@1.4.1(eslint@9.39.0(jiti@2.4.0))': dependencies: '@eslint/core': 0.17.0 optionalDependencies: - eslint: 9.38.0(jiti@2.4.0) + eslint: 9.39.0(jiti@2.4.0) '@eslint/config-array@0.21.1': dependencies: @@ -4340,9 +4330,9 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/config-helpers@0.4.1': + '@eslint/config-helpers@0.4.2': dependencies: - '@eslint/core': 0.16.0 + '@eslint/core': 0.17.0 '@eslint/core@0.16.0': dependencies: @@ -4366,7 +4356,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/js@9.38.0': {} + '@eslint/js@9.39.0': {} '@eslint/markdown@7.5.0': dependencies: @@ -4384,11 +4374,6 @@ snapshots: '@eslint/object-schema@2.1.7': {} - '@eslint/plugin-kit@0.4.0': - dependencies: - '@eslint/core': 0.16.0 - levn: 0.4.1 - '@eslint/plugin-kit@0.4.1': dependencies: '@eslint/core': 0.17.0 @@ -5262,11 +5247,11 @@ snapshots: '@standard-schema/spec@1.0.0': {} - '@stylistic/eslint-plugin@5.5.0(eslint@9.38.0(jiti@2.4.0))': + '@stylistic/eslint-plugin@5.5.0(eslint@9.39.0(jiti@2.4.0))': dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.0(jiti@2.4.0)) '@typescript-eslint/types': 8.46.2 - eslint: 9.38.0(jiti@2.4.0) + eslint: 9.39.0(jiti@2.4.0) eslint-visitor-keys: 4.2.1 espree: 10.4.0 estraverse: 5.3.0 @@ -5351,15 +5336,15 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)': + '@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3)': dependencies: '@eslint-community/regexpp': 4.12.2 - '@typescript-eslint/parser': 8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/parser': 8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/scope-manager': 8.46.2 - '@typescript-eslint/type-utils': 8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) - '@typescript-eslint/utils': 8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/type-utils': 8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/utils': 8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/visitor-keys': 8.46.2 - eslint: 9.38.0(jiti@2.4.0) + eslint: 9.39.0(jiti@2.4.0) graphemer: 1.4.0 ignore: 7.0.5 natural-compare: 1.4.0 @@ -5368,14 +5353,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)': + '@typescript-eslint/parser@8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3)': dependencies: '@typescript-eslint/scope-manager': 8.46.2 '@typescript-eslint/types': 8.46.2 '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.9.3) '@typescript-eslint/visitor-keys': 8.46.2 debug: 4.4.3 - eslint: 9.38.0(jiti@2.4.0) + eslint: 9.39.0(jiti@2.4.0) typescript: 5.9.3 transitivePeerDependencies: - supports-color @@ -5398,13 +5383,13 @@ snapshots: dependencies: typescript: 5.9.3 - '@typescript-eslint/type-utils@8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)': + '@typescript-eslint/type-utils@8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3)': dependencies: '@typescript-eslint/types': 8.46.2 '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.9.3) - '@typescript-eslint/utils': 8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/utils': 8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3) debug: 4.4.3 - eslint: 9.38.0(jiti@2.4.0) + eslint: 9.39.0(jiti@2.4.0) ts-api-utils: 2.1.0(typescript@5.9.3) typescript: 5.9.3 transitivePeerDependencies: @@ -5428,13 +5413,13 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)': + '@typescript-eslint/utils@8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3)': dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.0(jiti@2.4.0)) '@typescript-eslint/scope-manager': 8.46.2 '@typescript-eslint/types': 8.46.2 '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.9.3) - eslint: 9.38.0(jiti@2.4.0) + eslint: 9.39.0(jiti@2.4.0) typescript: 5.9.3 transitivePeerDependencies: - supports-color @@ -5499,11 +5484,11 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.4.0(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.4.0(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.46.2 - '@typescript-eslint/utils': 8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) - eslint: 9.38.0(jiti@2.4.0) + '@typescript-eslint/utils': 8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3) + eslint: 9.39.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 vitest: 4.0.6(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1) @@ -6024,60 +6009,60 @@ snapshots: escape-string-regexp@5.0.0: {} - eslint-compat-utils@0.5.1(eslint@9.38.0(jiti@2.4.0)): + eslint-compat-utils@0.5.1(eslint@9.39.0(jiti@2.4.0)): dependencies: - eslint: 9.38.0(jiti@2.4.0) + eslint: 9.39.0(jiti@2.4.0) semver: 7.7.3 - eslint-compat-utils@0.6.5(eslint@9.38.0(jiti@2.4.0)): + eslint-compat-utils@0.6.5(eslint@9.39.0(jiti@2.4.0)): dependencies: - eslint: 9.38.0(jiti@2.4.0) + eslint: 9.39.0(jiti@2.4.0) semver: 7.7.3 - eslint-config-flat-gitignore@2.1.0(eslint@9.38.0(jiti@2.4.0)): + eslint-config-flat-gitignore@2.1.0(eslint@9.39.0(jiti@2.4.0)): dependencies: - '@eslint/compat': 1.4.1(eslint@9.38.0(jiti@2.4.0)) - eslint: 9.38.0(jiti@2.4.0) + '@eslint/compat': 1.4.1(eslint@9.39.0(jiti@2.4.0)) + eslint: 9.39.0(jiti@2.4.0) eslint-flat-config-utils@2.1.4: dependencies: pathe: 2.0.3 - eslint-json-compat-utils@0.2.1(eslint@9.38.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.1): + eslint-json-compat-utils@0.2.1(eslint@9.39.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.1): dependencies: - eslint: 9.38.0(jiti@2.4.0) + eslint: 9.39.0(jiti@2.4.0) esquery: 1.6.0 jsonc-eslint-parser: 2.4.1 - eslint-merge-processors@2.0.0(eslint@9.38.0(jiti@2.4.0)): + eslint-merge-processors@2.0.0(eslint@9.39.0(jiti@2.4.0)): dependencies: - eslint: 9.38.0(jiti@2.4.0) + eslint: 9.39.0(jiti@2.4.0) - eslint-plugin-antfu@3.1.1(eslint@9.38.0(jiti@2.4.0)): + eslint-plugin-antfu@3.1.1(eslint@9.39.0(jiti@2.4.0)): dependencies: - eslint: 9.38.0(jiti@2.4.0) + eslint: 9.39.0(jiti@2.4.0) - eslint-plugin-command@3.3.1(eslint@9.38.0(jiti@2.4.0)): + eslint-plugin-command@3.3.1(eslint@9.39.0(jiti@2.4.0)): dependencies: '@es-joy/jsdoccomment': 0.50.2 - eslint: 9.38.0(jiti@2.4.0) + eslint: 9.39.0(jiti@2.4.0) - eslint-plugin-es-x@7.8.0(eslint@9.38.0(jiti@2.4.0)): + eslint-plugin-es-x@7.8.0(eslint@9.39.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.0(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.2 - eslint: 9.38.0(jiti@2.4.0) - eslint-compat-utils: 0.5.1(eslint@9.38.0(jiti@2.4.0)) + eslint: 9.39.0(jiti@2.4.0) + eslint-compat-utils: 0.5.1(eslint@9.39.0(jiti@2.4.0)) - eslint-plugin-import-lite@0.3.0(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3): + eslint-plugin-import-lite@0.3.0(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.0(jiti@2.4.0)) '@typescript-eslint/types': 8.46.2 - eslint: 9.38.0(jiti@2.4.0) + eslint: 9.39.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - eslint-plugin-jsdoc@61.1.11(eslint@9.38.0(jiti@2.4.0)): + eslint-plugin-jsdoc@61.1.11(eslint@9.39.0(jiti@2.4.0)): dependencies: '@es-joy/jsdoccomment': 0.76.0 '@es-joy/resolve.exports': 1.2.0 @@ -6085,7 +6070,7 @@ snapshots: comment-parser: 1.4.1 debug: 4.4.3 escape-string-regexp: 4.0.0 - eslint: 9.38.0(jiti@2.4.0) + eslint: 9.39.0(jiti@2.4.0) espree: 10.4.0 esquery: 1.6.0 html-entities: 2.6.0 @@ -6097,13 +6082,13 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-jsonc@2.21.0(eslint@9.38.0(jiti@2.4.0)): + eslint-plugin-jsonc@2.21.0(eslint@9.39.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.0(jiti@2.4.0)) diff-sequences: 27.5.1 - eslint: 9.38.0(jiti@2.4.0) - eslint-compat-utils: 0.6.5(eslint@9.38.0(jiti@2.4.0)) - eslint-json-compat-utils: 0.2.1(eslint@9.38.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.1) + eslint: 9.39.0(jiti@2.4.0) + eslint-compat-utils: 0.6.5(eslint@9.39.0(jiti@2.4.0)) + eslint-json-compat-utils: 0.2.1(eslint@9.39.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.1) espree: 10.4.0 graphemer: 1.4.0 jsonc-eslint-parser: 2.4.1 @@ -6112,12 +6097,12 @@ snapshots: transitivePeerDependencies: - '@eslint/json' - eslint-plugin-n@17.23.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3): + eslint-plugin-n@17.23.1(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.0(jiti@2.4.0)) enhanced-resolve: 5.18.3 - eslint: 9.38.0(jiti@2.4.0) - eslint-plugin-es-x: 7.8.0(eslint@9.38.0(jiti@2.4.0)) + eslint: 9.39.0(jiti@2.4.0) + eslint-plugin-es-x: 7.8.0(eslint@9.39.0(jiti@2.4.0)) get-tsconfig: 4.13.0 globals: 15.15.0 globrex: 0.1.2 @@ -6129,57 +6114,57 @@ snapshots: eslint-plugin-no-only-tests@3.3.0: {} - eslint-plugin-perfectionist@4.15.1(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3): + eslint-plugin-perfectionist@4.15.1(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3): dependencies: '@typescript-eslint/types': 8.46.2 - '@typescript-eslint/utils': 8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) - eslint: 9.38.0(jiti@2.4.0) + '@typescript-eslint/utils': 8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3) + eslint: 9.39.0(jiti@2.4.0) natural-orderby: 5.0.0 transitivePeerDependencies: - supports-color - typescript - eslint-plugin-pnpm@1.3.0(eslint@9.38.0(jiti@2.4.0)): + eslint-plugin-pnpm@1.3.0(eslint@9.39.0(jiti@2.4.0)): dependencies: empathic: 2.0.0 - eslint: 9.38.0(jiti@2.4.0) + eslint: 9.39.0(jiti@2.4.0) jsonc-eslint-parser: 2.4.1 pathe: 2.0.3 pnpm-workspace-yaml: 1.3.0 tinyglobby: 0.2.15 yaml-eslint-parser: 1.3.0 - eslint-plugin-regexp@2.10.0(eslint@9.38.0(jiti@2.4.0)): + eslint-plugin-regexp@2.10.0(eslint@9.39.0(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.0(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.2 comment-parser: 1.4.1 - eslint: 9.38.0(jiti@2.4.0) + eslint: 9.39.0(jiti@2.4.0) jsdoc-type-pratt-parser: 4.8.0 refa: 0.12.1 regexp-ast-analysis: 0.7.1 scslre: 0.3.0 - eslint-plugin-toml@0.12.0(eslint@9.38.0(jiti@2.4.0)): + eslint-plugin-toml@0.12.0(eslint@9.39.0(jiti@2.4.0)): dependencies: debug: 4.4.3 - eslint: 9.38.0(jiti@2.4.0) - eslint-compat-utils: 0.6.5(eslint@9.38.0(jiti@2.4.0)) + eslint: 9.39.0(jiti@2.4.0) + eslint-compat-utils: 0.6.5(eslint@9.39.0(jiti@2.4.0)) lodash: 4.17.21 toml-eslint-parser: 0.10.0 transitivePeerDependencies: - supports-color - eslint-plugin-unicorn@62.0.0(eslint@9.38.0(jiti@2.4.0)): + eslint-plugin-unicorn@62.0.0(eslint@9.39.0(jiti@2.4.0)): dependencies: '@babel/helper-validator-identifier': 7.28.5 - '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.0(jiti@2.4.0)) '@eslint/plugin-kit': 0.4.1 change-case: 5.4.4 ci-info: 4.3.1 clean-regexp: 1.0.0 core-js-compat: 3.46.0 - eslint: 9.38.0(jiti@2.4.0) + eslint: 9.39.0(jiti@2.4.0) esquery: 1.6.0 find-up-simple: 1.0.1 globals: 16.4.0 @@ -6192,42 +6177,42 @@ snapshots: semver: 7.7.3 strip-indent: 4.1.1 - eslint-plugin-unused-imports@4.3.0(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0)): + eslint-plugin-unused-imports@4.3.0(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.0(jiti@2.4.0)): dependencies: - eslint: 9.38.0(jiti@2.4.0) + eslint: 9.39.0(jiti@2.4.0) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-vue@10.5.1(@stylistic/eslint-plugin@5.5.0(eslint@9.38.0(jiti@2.4.0)))(@typescript-eslint/parser@8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.38.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.38.0(jiti@2.4.0))): + eslint-plugin-vue@10.5.1(@stylistic/eslint-plugin@5.5.0(eslint@9.39.0(jiti@2.4.0)))(@typescript-eslint/parser@8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.39.0(jiti@2.4.0))): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) - eslint: 9.38.0(jiti@2.4.0) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.0(jiti@2.4.0)) + eslint: 9.39.0(jiti@2.4.0) natural-compare: 1.4.0 nth-check: 2.1.1 postcss-selector-parser: 6.1.2 semver: 7.7.3 - vue-eslint-parser: 10.2.0(eslint@9.38.0(jiti@2.4.0)) + vue-eslint-parser: 10.2.0(eslint@9.39.0(jiti@2.4.0)) xml-name-validator: 4.0.0 optionalDependencies: - '@stylistic/eslint-plugin': 5.5.0(eslint@9.38.0(jiti@2.4.0)) - '@typescript-eslint/parser': 8.46.2(eslint@9.38.0(jiti@2.4.0))(typescript@5.9.3) + '@stylistic/eslint-plugin': 5.5.0(eslint@9.39.0(jiti@2.4.0)) + '@typescript-eslint/parser': 8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-yml@1.19.0(eslint@9.38.0(jiti@2.4.0)): + eslint-plugin-yml@1.19.0(eslint@9.39.0(jiti@2.4.0)): dependencies: debug: 4.4.3 diff-sequences: 27.5.1 escape-string-regexp: 4.0.0 - eslint: 9.38.0(jiti@2.4.0) - eslint-compat-utils: 0.6.5(eslint@9.38.0(jiti@2.4.0)) + eslint: 9.39.0(jiti@2.4.0) + eslint-compat-utils: 0.6.5(eslint@9.39.0(jiti@2.4.0)) natural-compare: 1.4.0 yaml-eslint-parser: 1.3.0 transitivePeerDependencies: - supports-color - eslint-processor-vue-blocks@2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.38.0(jiti@2.4.0)): + eslint-processor-vue-blocks@2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.0(jiti@2.4.0)): dependencies: '@vue/compiler-sfc': 3.5.12 - eslint: 9.38.0(jiti@2.4.0) + eslint: 9.39.0(jiti@2.4.0) eslint-scope@8.4.0: dependencies: @@ -6238,16 +6223,16 @@ snapshots: eslint-visitor-keys@4.2.1: {} - eslint@9.38.0(jiti@2.4.0): + eslint@9.39.0(jiti@2.4.0): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.4.0)) - '@eslint-community/regexpp': 4.12.1 + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.0(jiti@2.4.0)) + '@eslint-community/regexpp': 4.12.2 '@eslint/config-array': 0.21.1 - '@eslint/config-helpers': 0.4.1 - '@eslint/core': 0.16.0 + '@eslint/config-helpers': 0.4.2 + '@eslint/core': 0.17.0 '@eslint/eslintrc': 3.3.1 - '@eslint/js': 9.38.0 - '@eslint/plugin-kit': 0.4.0 + '@eslint/js': 9.39.0 + '@eslint/plugin-kit': 0.4.1 '@humanfs/node': 0.16.7 '@humanwhocodes/module-importer': 1.0.1 '@humanwhocodes/retry': 0.4.3 @@ -8199,10 +8184,10 @@ snapshots: - tsx - yaml - vue-eslint-parser@10.2.0(eslint@9.38.0(jiti@2.4.0)): + vue-eslint-parser@10.2.0(eslint@9.39.0(jiti@2.4.0)): dependencies: debug: 4.4.3 - eslint: 9.38.0(jiti@2.4.0) + eslint: 9.39.0(jiti@2.4.0) eslint-scope: 8.4.0 eslint-visitor-keys: 4.2.1 espree: 10.4.0 From 5ba2ee3a8b3351f2cc9ade10a0020a9ff73cf8f0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 1 Nov 2025 17:58:56 +0000 Subject: [PATCH 099/133] chore(deps): update dependency graphql to v16.12.0 (#1287) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 374 ++++++++++++++++++++++++------------------------- 1 file changed, 187 insertions(+), 187 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f27d2302..e0254244 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -10,32 +10,32 @@ importers: dependencies: '@graphql-codegen/plugin-helpers': specifier: ^6.0.0 - version: 6.0.0(graphql@16.11.0) + version: 6.0.0(graphql@16.12.0) '@graphql-codegen/schema-ast': specifier: 5.0.0 - version: 5.0.0(graphql@16.11.0) + version: 5.0.0(graphql@16.12.0) '@graphql-codegen/visitor-plugin-common': specifier: ^6.0.0 - version: 6.1.0(graphql@16.11.0) + version: 6.1.0(graphql@16.12.0) '@graphql-tools/utils': specifier: ^10.0.0 - version: 10.10.0(graphql@16.11.0) + version: 10.10.0(graphql@16.12.0) graphlib: specifier: ^2.1.8 version: 2.1.8 graphql: specifier: ^16.6.0 - version: 16.11.0 + version: 16.12.0 devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.1 - version: 6.0.1(@types/node@24.9.2)(graphql@16.11.0)(typescript@5.9.3) + version: 6.0.1(@types/node@24.9.2)(graphql@16.12.0)(typescript@5.9.3) '@graphql-codegen/typescript': specifier: ^5.0.0 - version: 5.0.2(graphql@16.11.0) + version: 5.0.2(graphql@16.12.0) '@tsconfig/recommended': specifier: 1.0.11 version: 1.0.11 @@ -2367,8 +2367,8 @@ packages: peerDependencies: graphql: '>=0.11 <=16' - graphql@16.11.0: - resolution: {integrity: sha512-mS1lbMsxgQj6hge1XZ6p7GPhbrtFwUFYi3wRzXAC/FmYnyXMTvvI3td3rjmQ2u8ewXueaSvRPWaEcgVVOT9Jnw==} + graphql@16.12.0: + resolution: {integrity: sha512-DKKrynuQRne0PNpEbzuEdHlYOMksHSUI8Zc9Unei5gTsMNA2/vMpoMz/yKba50pejK56qj98qM0SjYxAKi13gQ==} engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} handlebars@4.7.8: @@ -3947,14 +3947,14 @@ snapshots: package-manager-detector: 1.5.0 tinyexec: 1.0.1 - '@ardatan/relay-compiler@12.0.3(graphql@16.11.0)': + '@ardatan/relay-compiler@12.0.3(graphql@16.12.0)': dependencies: '@babel/generator': 7.28.3 '@babel/parser': 7.28.4 '@babel/runtime': 7.28.4 chalk: 4.1.2 fb-watchman: 2.0.2 - graphql: 16.11.0 + graphql: 16.12.0 immutable: 3.7.6 invariant: 2.2.4 nullthrows: 1.1.1 @@ -4379,37 +4379,37 @@ snapshots: '@eslint/core': 0.17.0 levn: 0.4.1 - '@graphql-codegen/add@6.0.0(graphql@16.11.0)': + '@graphql-codegen/add@6.0.0(graphql@16.12.0)': dependencies: - '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) - graphql: 16.11.0 + '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) + graphql: 16.12.0 tslib: 2.6.3 - '@graphql-codegen/cli@6.0.1(@types/node@24.9.2)(graphql@16.11.0)(typescript@5.9.3)': + '@graphql-codegen/cli@6.0.1(@types/node@24.9.2)(graphql@16.12.0)(typescript@5.9.3)': dependencies: '@babel/generator': 7.28.3 '@babel/template': 7.27.2 '@babel/types': 7.28.4 - '@graphql-codegen/client-preset': 5.0.0(graphql@16.11.0) - '@graphql-codegen/core': 5.0.0(graphql@16.11.0) - '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) - '@graphql-tools/apollo-engine-loader': 8.0.4(graphql@16.11.0) - '@graphql-tools/code-file-loader': 8.1.5(graphql@16.11.0) - '@graphql-tools/git-loader': 8.0.9(graphql@16.11.0) - '@graphql-tools/github-loader': 8.0.4(@types/node@24.9.2)(graphql@16.11.0) - '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) - '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) - '@graphql-tools/load': 8.1.0(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@24.9.2)(graphql@16.11.0) - '@graphql-tools/utils': 10.10.0(graphql@16.11.0) + '@graphql-codegen/client-preset': 5.0.0(graphql@16.12.0) + '@graphql-codegen/core': 5.0.0(graphql@16.12.0) + '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) + '@graphql-tools/apollo-engine-loader': 8.0.4(graphql@16.12.0) + '@graphql-tools/code-file-loader': 8.1.5(graphql@16.12.0) + '@graphql-tools/git-loader': 8.0.9(graphql@16.12.0) + '@graphql-tools/github-loader': 8.0.4(@types/node@24.9.2)(graphql@16.12.0) + '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.12.0) + '@graphql-tools/json-file-loader': 8.0.3(graphql@16.12.0) + '@graphql-tools/load': 8.1.0(graphql@16.12.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@24.9.2)(graphql@16.12.0) + '@graphql-tools/utils': 10.10.0(graphql@16.12.0) '@inquirer/prompts': 7.8.4(@types/node@24.9.2) '@whatwg-node/fetch': 0.10.1 chalk: 4.1.2 cosmiconfig: 9.0.0(typescript@5.9.3) debounce: 2.2.0 detect-indent: 6.1.0 - graphql: 16.11.0 - graphql-config: 5.1.3(@types/node@24.9.2)(graphql@16.11.0)(typescript@5.9.3) + graphql: 16.12.0 + graphql-config: 5.1.3(@types/node@24.9.2)(graphql@16.12.0)(typescript@5.9.3) is-glob: 4.0.3 jiti: 2.4.0 json-to-pretty-yaml: 1.2.2 @@ -4432,179 +4432,179 @@ snapshots: - typescript - utf-8-validate - '@graphql-codegen/client-preset@5.0.0(graphql@16.11.0)': + '@graphql-codegen/client-preset@5.0.0(graphql@16.12.0)': dependencies: '@babel/helper-plugin-utils': 7.27.1 '@babel/template': 7.27.2 - '@graphql-codegen/add': 6.0.0(graphql@16.11.0) - '@graphql-codegen/gql-tag-operations': 5.0.0(graphql@16.11.0) - '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) - '@graphql-codegen/typed-document-node': 6.0.0(graphql@16.11.0) - '@graphql-codegen/typescript': 5.0.2(graphql@16.11.0) - '@graphql-codegen/typescript-operations': 5.0.0(graphql@16.11.0) - '@graphql-codegen/visitor-plugin-common': 6.1.0(graphql@16.11.0) - '@graphql-tools/documents': 1.0.1(graphql@16.11.0) - '@graphql-tools/utils': 10.10.0(graphql@16.11.0) - '@graphql-typed-document-node/core': 3.2.0(graphql@16.11.0) - graphql: 16.11.0 + '@graphql-codegen/add': 6.0.0(graphql@16.12.0) + '@graphql-codegen/gql-tag-operations': 5.0.0(graphql@16.12.0) + '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) + '@graphql-codegen/typed-document-node': 6.0.0(graphql@16.12.0) + '@graphql-codegen/typescript': 5.0.2(graphql@16.12.0) + '@graphql-codegen/typescript-operations': 5.0.0(graphql@16.12.0) + '@graphql-codegen/visitor-plugin-common': 6.1.0(graphql@16.12.0) + '@graphql-tools/documents': 1.0.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0) + graphql: 16.12.0 tslib: 2.6.3 transitivePeerDependencies: - encoding - '@graphql-codegen/core@5.0.0(graphql@16.11.0)': + '@graphql-codegen/core@5.0.0(graphql@16.12.0)': dependencies: - '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) - '@graphql-tools/schema': 10.0.23(graphql@16.11.0) - '@graphql-tools/utils': 10.10.0(graphql@16.11.0) - graphql: 16.11.0 + '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) + '@graphql-tools/schema': 10.0.23(graphql@16.12.0) + '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + graphql: 16.12.0 tslib: 2.6.3 - '@graphql-codegen/gql-tag-operations@5.0.0(graphql@16.11.0)': + '@graphql-codegen/gql-tag-operations@5.0.0(graphql@16.12.0)': dependencies: - '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) - '@graphql-codegen/visitor-plugin-common': 6.0.0(graphql@16.11.0) - '@graphql-tools/utils': 10.10.0(graphql@16.11.0) + '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) + '@graphql-codegen/visitor-plugin-common': 6.0.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.0(graphql@16.12.0) auto-bind: 4.0.0 - graphql: 16.11.0 + graphql: 16.12.0 tslib: 2.6.3 transitivePeerDependencies: - encoding - '@graphql-codegen/plugin-helpers@6.0.0(graphql@16.11.0)': + '@graphql-codegen/plugin-helpers@6.0.0(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.0(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.12.0) change-case-all: 1.0.15 common-tags: 1.8.2 - graphql: 16.11.0 + graphql: 16.12.0 import-from: 4.0.0 lodash: 4.17.21 tslib: 2.6.3 - '@graphql-codegen/schema-ast@5.0.0(graphql@16.11.0)': + '@graphql-codegen/schema-ast@5.0.0(graphql@16.12.0)': dependencies: - '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) - '@graphql-tools/utils': 10.10.0(graphql@16.11.0) - graphql: 16.11.0 + '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + graphql: 16.12.0 tslib: 2.6.3 - '@graphql-codegen/typed-document-node@6.0.0(graphql@16.11.0)': + '@graphql-codegen/typed-document-node@6.0.0(graphql@16.12.0)': dependencies: - '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) - '@graphql-codegen/visitor-plugin-common': 6.0.0(graphql@16.11.0) + '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) + '@graphql-codegen/visitor-plugin-common': 6.0.0(graphql@16.12.0) auto-bind: 4.0.0 change-case-all: 1.0.15 - graphql: 16.11.0 + graphql: 16.12.0 tslib: 2.6.3 transitivePeerDependencies: - encoding - '@graphql-codegen/typescript-operations@5.0.0(graphql@16.11.0)': + '@graphql-codegen/typescript-operations@5.0.0(graphql@16.12.0)': dependencies: - '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) - '@graphql-codegen/typescript': 5.0.2(graphql@16.11.0) - '@graphql-codegen/visitor-plugin-common': 6.0.0(graphql@16.11.0) + '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) + '@graphql-codegen/typescript': 5.0.2(graphql@16.12.0) + '@graphql-codegen/visitor-plugin-common': 6.0.0(graphql@16.12.0) auto-bind: 4.0.0 - graphql: 16.11.0 + graphql: 16.12.0 tslib: 2.6.3 transitivePeerDependencies: - encoding - '@graphql-codegen/typescript@5.0.2(graphql@16.11.0)': + '@graphql-codegen/typescript@5.0.2(graphql@16.12.0)': dependencies: - '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) - '@graphql-codegen/schema-ast': 5.0.0(graphql@16.11.0) - '@graphql-codegen/visitor-plugin-common': 6.1.0(graphql@16.11.0) + '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) + '@graphql-codegen/schema-ast': 5.0.0(graphql@16.12.0) + '@graphql-codegen/visitor-plugin-common': 6.1.0(graphql@16.12.0) auto-bind: 4.0.0 - graphql: 16.11.0 + graphql: 16.12.0 tslib: 2.6.3 transitivePeerDependencies: - encoding - '@graphql-codegen/visitor-plugin-common@6.0.0(graphql@16.11.0)': + '@graphql-codegen/visitor-plugin-common@6.0.0(graphql@16.12.0)': dependencies: - '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) - '@graphql-tools/optimize': 2.0.0(graphql@16.11.0) - '@graphql-tools/relay-operation-optimizer': 7.0.21(graphql@16.11.0) - '@graphql-tools/utils': 10.10.0(graphql@16.11.0) + '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) + '@graphql-tools/optimize': 2.0.0(graphql@16.12.0) + '@graphql-tools/relay-operation-optimizer': 7.0.21(graphql@16.12.0) + '@graphql-tools/utils': 10.10.0(graphql@16.12.0) auto-bind: 4.0.0 change-case-all: 1.0.15 dependency-graph: 1.0.0 - graphql: 16.11.0 - graphql-tag: 2.12.6(graphql@16.11.0) + graphql: 16.12.0 + graphql-tag: 2.12.6(graphql@16.12.0) parse-filepath: 1.0.2 tslib: 2.6.3 transitivePeerDependencies: - encoding - '@graphql-codegen/visitor-plugin-common@6.1.0(graphql@16.11.0)': + '@graphql-codegen/visitor-plugin-common@6.1.0(graphql@16.12.0)': dependencies: - '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.11.0) - '@graphql-tools/optimize': 2.0.0(graphql@16.11.0) - '@graphql-tools/relay-operation-optimizer': 7.0.21(graphql@16.11.0) - '@graphql-tools/utils': 10.10.0(graphql@16.11.0) + '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) + '@graphql-tools/optimize': 2.0.0(graphql@16.12.0) + '@graphql-tools/relay-operation-optimizer': 7.0.21(graphql@16.12.0) + '@graphql-tools/utils': 10.10.0(graphql@16.12.0) auto-bind: 4.0.0 change-case-all: 1.0.15 dependency-graph: 1.0.0 - graphql: 16.11.0 - graphql-tag: 2.12.6(graphql@16.11.0) + graphql: 16.12.0 + graphql-tag: 2.12.6(graphql@16.12.0) parse-filepath: 1.0.2 tslib: 2.6.3 transitivePeerDependencies: - encoding - '@graphql-tools/apollo-engine-loader@8.0.4(graphql@16.11.0)': + '@graphql-tools/apollo-engine-loader@8.0.4(graphql@16.12.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/utils': 10.10.0(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.12.0) '@whatwg-node/fetch': 0.10.1 - graphql: 16.11.0 + graphql: 16.12.0 tslib: 2.8.1 transitivePeerDependencies: - encoding - '@graphql-tools/batch-execute@9.0.6(graphql@16.11.0)': + '@graphql-tools/batch-execute@9.0.6(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.0(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.12.0) dataloader: 2.2.2 - graphql: 16.11.0 + graphql: 16.12.0 tslib: 2.8.1 value-or-promise: 1.0.12 - '@graphql-tools/code-file-loader@8.1.5(graphql@16.11.0)': + '@graphql-tools/code-file-loader@8.1.5(graphql@16.12.0)': dependencies: - '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.11.0) - '@graphql-tools/utils': 10.10.0(graphql@16.11.0) + '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.12.0) + '@graphql-tools/utils': 10.10.0(graphql@16.12.0) globby: 11.1.0 - graphql: 16.11.0 + graphql: 16.12.0 tslib: 2.8.1 unixify: 1.0.0 transitivePeerDependencies: - supports-color - '@graphql-tools/delegate@10.1.2(graphql@16.11.0)': + '@graphql-tools/delegate@10.1.2(graphql@16.12.0)': dependencies: - '@graphql-tools/batch-execute': 9.0.6(graphql@16.11.0) - '@graphql-tools/executor': 1.3.3(graphql@16.11.0) - '@graphql-tools/schema': 10.0.23(graphql@16.11.0) - '@graphql-tools/utils': 10.10.0(graphql@16.11.0) + '@graphql-tools/batch-execute': 9.0.6(graphql@16.12.0) + '@graphql-tools/executor': 1.3.3(graphql@16.12.0) + '@graphql-tools/schema': 10.0.23(graphql@16.12.0) + '@graphql-tools/utils': 10.10.0(graphql@16.12.0) '@repeaterjs/repeater': 3.0.6 dataloader: 2.2.2 dset: 3.1.4 - graphql: 16.11.0 + graphql: 16.12.0 tslib: 2.8.1 - '@graphql-tools/documents@1.0.1(graphql@16.11.0)': + '@graphql-tools/documents@1.0.1(graphql@16.12.0)': dependencies: - graphql: 16.11.0 + graphql: 16.12.0 lodash.sortby: 4.7.0 tslib: 2.8.1 - '@graphql-tools/executor-graphql-ws@1.3.2(graphql@16.11.0)': + '@graphql-tools/executor-graphql-ws@1.3.2(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.0(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.12.0) '@types/ws': 8.5.13 - graphql: 16.11.0 - graphql-ws: 5.16.0(graphql@16.11.0) + graphql: 16.12.0 + graphql-ws: 5.16.0(graphql@16.12.0) isomorphic-ws: 5.0.0(ws@8.18.0) tslib: 2.8.1 ws: 8.18.0 @@ -4612,24 +4612,24 @@ snapshots: - bufferutil - utf-8-validate - '@graphql-tools/executor-http@1.1.9(@types/node@24.9.2)(graphql@16.11.0)': + '@graphql-tools/executor-http@1.1.9(@types/node@24.9.2)(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.0(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.12.0) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/fetch': 0.10.1 extract-files: 11.0.0 - graphql: 16.11.0 + graphql: 16.12.0 meros: 1.3.0(@types/node@24.9.2) tslib: 2.8.1 value-or-promise: 1.0.12 transitivePeerDependencies: - '@types/node' - '@graphql-tools/executor-legacy-ws@1.1.2(graphql@16.11.0)': + '@graphql-tools/executor-legacy-ws@1.1.2(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.0(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.12.0) '@types/ws': 8.5.13 - graphql: 16.11.0 + graphql: 16.12.0 isomorphic-ws: 5.0.0(ws@8.18.0) tslib: 2.8.1 ws: 8.18.0 @@ -4637,20 +4637,20 @@ snapshots: - bufferutil - utf-8-validate - '@graphql-tools/executor@1.3.3(graphql@16.11.0)': + '@graphql-tools/executor@1.3.3(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.0(graphql@16.11.0) - '@graphql-typed-document-node/core': 3.2.0(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0) '@repeaterjs/repeater': 3.0.6 - graphql: 16.11.0 + graphql: 16.12.0 tslib: 2.8.1 value-or-promise: 1.0.12 - '@graphql-tools/git-loader@8.0.9(graphql@16.11.0)': + '@graphql-tools/git-loader@8.0.9(graphql@16.12.0)': dependencies: - '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.11.0) - '@graphql-tools/utils': 10.10.0(graphql@16.11.0) - graphql: 16.11.0 + '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.12.0) + '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + graphql: 16.12.0 is-glob: 4.0.3 micromatch: 4.0.8 tslib: 2.8.1 @@ -4658,14 +4658,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@graphql-tools/github-loader@8.0.4(@types/node@24.9.2)(graphql@16.11.0)': + '@graphql-tools/github-loader@8.0.4(@types/node@24.9.2)(graphql@16.12.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/executor-http': 1.1.9(@types/node@24.9.2)(graphql@16.11.0) - '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.11.0) - '@graphql-tools/utils': 10.10.0(graphql@16.11.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@24.9.2)(graphql@16.12.0) + '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.12.0) + '@graphql-tools/utils': 10.10.0(graphql@16.12.0) '@whatwg-node/fetch': 0.10.1 - graphql: 16.11.0 + graphql: 16.12.0 tslib: 2.8.1 value-or-promise: 1.0.12 transitivePeerDependencies: @@ -4673,89 +4673,89 @@ snapshots: - encoding - supports-color - '@graphql-tools/graphql-file-loader@8.0.3(graphql@16.11.0)': + '@graphql-tools/graphql-file-loader@8.0.3(graphql@16.12.0)': dependencies: - '@graphql-tools/import': 7.0.3(graphql@16.11.0) - '@graphql-tools/utils': 10.10.0(graphql@16.11.0) + '@graphql-tools/import': 7.0.3(graphql@16.12.0) + '@graphql-tools/utils': 10.10.0(graphql@16.12.0) globby: 11.1.0 - graphql: 16.11.0 + graphql: 16.12.0 tslib: 2.8.1 unixify: 1.0.0 - '@graphql-tools/graphql-tag-pluck@8.3.4(graphql@16.11.0)': + '@graphql-tools/graphql-tag-pluck@8.3.4(graphql@16.12.0)': dependencies: '@babel/core': 7.27.4 '@babel/parser': 7.28.4 '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.27.4) '@babel/traverse': 7.27.4 '@babel/types': 7.28.4 - '@graphql-tools/utils': 10.10.0(graphql@16.11.0) - graphql: 16.11.0 + '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + graphql: 16.12.0 tslib: 2.8.1 transitivePeerDependencies: - supports-color - '@graphql-tools/import@7.0.3(graphql@16.11.0)': + '@graphql-tools/import@7.0.3(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.0(graphql@16.11.0) - graphql: 16.11.0 + '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + graphql: 16.12.0 resolve-from: 5.0.0 tslib: 2.8.1 - '@graphql-tools/json-file-loader@8.0.3(graphql@16.11.0)': + '@graphql-tools/json-file-loader@8.0.3(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.0(graphql@16.11.0) + '@graphql-tools/utils': 10.10.0(graphql@16.12.0) globby: 11.1.0 - graphql: 16.11.0 + graphql: 16.12.0 tslib: 2.8.1 unixify: 1.0.0 - '@graphql-tools/load@8.1.0(graphql@16.11.0)': + '@graphql-tools/load@8.1.0(graphql@16.12.0)': dependencies: - '@graphql-tools/schema': 10.0.23(graphql@16.11.0) - '@graphql-tools/utils': 10.10.0(graphql@16.11.0) - graphql: 16.11.0 + '@graphql-tools/schema': 10.0.23(graphql@16.12.0) + '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + graphql: 16.12.0 p-limit: 3.1.0 tslib: 2.8.1 - '@graphql-tools/merge@9.0.24(graphql@16.11.0)': + '@graphql-tools/merge@9.0.24(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.0(graphql@16.11.0) - graphql: 16.11.0 + '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + graphql: 16.12.0 tslib: 2.8.1 - '@graphql-tools/optimize@2.0.0(graphql@16.11.0)': + '@graphql-tools/optimize@2.0.0(graphql@16.12.0)': dependencies: - graphql: 16.11.0 + graphql: 16.12.0 tslib: 2.6.3 - '@graphql-tools/relay-operation-optimizer@7.0.21(graphql@16.11.0)': + '@graphql-tools/relay-operation-optimizer@7.0.21(graphql@16.12.0)': dependencies: - '@ardatan/relay-compiler': 12.0.3(graphql@16.11.0) - '@graphql-tools/utils': 10.10.0(graphql@16.11.0) - graphql: 16.11.0 + '@ardatan/relay-compiler': 12.0.3(graphql@16.12.0) + '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + graphql: 16.12.0 tslib: 2.6.3 transitivePeerDependencies: - encoding - '@graphql-tools/schema@10.0.23(graphql@16.11.0)': + '@graphql-tools/schema@10.0.23(graphql@16.12.0)': dependencies: - '@graphql-tools/merge': 9.0.24(graphql@16.11.0) - '@graphql-tools/utils': 10.10.0(graphql@16.11.0) - graphql: 16.11.0 + '@graphql-tools/merge': 9.0.24(graphql@16.12.0) + '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + graphql: 16.12.0 tslib: 2.8.1 - '@graphql-tools/url-loader@8.0.15(@types/node@24.9.2)(graphql@16.11.0)': + '@graphql-tools/url-loader@8.0.15(@types/node@24.9.2)(graphql@16.12.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/executor-graphql-ws': 1.3.2(graphql@16.11.0) - '@graphql-tools/executor-http': 1.1.9(@types/node@24.9.2)(graphql@16.11.0) - '@graphql-tools/executor-legacy-ws': 1.1.2(graphql@16.11.0) - '@graphql-tools/utils': 10.10.0(graphql@16.11.0) - '@graphql-tools/wrap': 10.0.16(graphql@16.11.0) + '@graphql-tools/executor-graphql-ws': 1.3.2(graphql@16.12.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@24.9.2)(graphql@16.12.0) + '@graphql-tools/executor-legacy-ws': 1.1.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/wrap': 10.0.16(graphql@16.12.0) '@types/ws': 8.5.13 '@whatwg-node/fetch': 0.10.1 - graphql: 16.11.0 + graphql: 16.12.0 isomorphic-ws: 5.0.0(ws@8.18.0) tslib: 2.8.1 value-or-promise: 1.0.12 @@ -4766,27 +4766,27 @@ snapshots: - encoding - utf-8-validate - '@graphql-tools/utils@10.10.0(graphql@16.11.0)': + '@graphql-tools/utils@10.10.0(graphql@16.12.0)': dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.11.0) + '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0) '@whatwg-node/promise-helpers': 1.3.2 cross-inspect: 1.0.1 dset: 3.1.4 - graphql: 16.11.0 + graphql: 16.12.0 tslib: 2.8.1 - '@graphql-tools/wrap@10.0.16(graphql@16.11.0)': + '@graphql-tools/wrap@10.0.16(graphql@16.12.0)': dependencies: - '@graphql-tools/delegate': 10.1.2(graphql@16.11.0) - '@graphql-tools/schema': 10.0.23(graphql@16.11.0) - '@graphql-tools/utils': 10.10.0(graphql@16.11.0) - graphql: 16.11.0 + '@graphql-tools/delegate': 10.1.2(graphql@16.12.0) + '@graphql-tools/schema': 10.0.23(graphql@16.12.0) + '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + graphql: 16.12.0 tslib: 2.8.1 value-or-promise: 1.0.12 - '@graphql-typed-document-node/core@3.2.0(graphql@16.11.0)': + '@graphql-typed-document-node/core@3.2.0(graphql@16.12.0)': dependencies: - graphql: 16.11.0 + graphql: 16.12.0 '@humanfs/core@0.19.1': {} @@ -6485,16 +6485,16 @@ snapshots: dependencies: lodash: 4.17.21 - graphql-config@5.1.3(@types/node@24.9.2)(graphql@16.11.0)(typescript@5.9.3): + graphql-config@5.1.3(@types/node@24.9.2)(graphql@16.12.0)(typescript@5.9.3): dependencies: - '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.11.0) - '@graphql-tools/json-file-loader': 8.0.3(graphql@16.11.0) - '@graphql-tools/load': 8.1.0(graphql@16.11.0) - '@graphql-tools/merge': 9.0.24(graphql@16.11.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@24.9.2)(graphql@16.11.0) - '@graphql-tools/utils': 10.10.0(graphql@16.11.0) + '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.12.0) + '@graphql-tools/json-file-loader': 8.0.3(graphql@16.12.0) + '@graphql-tools/load': 8.1.0(graphql@16.12.0) + '@graphql-tools/merge': 9.0.24(graphql@16.12.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@24.9.2)(graphql@16.12.0) + '@graphql-tools/utils': 10.10.0(graphql@16.12.0) cosmiconfig: 8.3.6(typescript@5.9.3) - graphql: 16.11.0 + graphql: 16.12.0 jiti: 2.4.0 minimatch: 9.0.5 string-env-interpolation: 1.0.1 @@ -6506,16 +6506,16 @@ snapshots: - typescript - utf-8-validate - graphql-tag@2.12.6(graphql@16.11.0): + graphql-tag@2.12.6(graphql@16.12.0): dependencies: - graphql: 16.11.0 + graphql: 16.12.0 tslib: 2.6.3 - graphql-ws@5.16.0(graphql@16.11.0): + graphql-ws@5.16.0(graphql@16.12.0): dependencies: - graphql: 16.11.0 + graphql: 16.12.0 - graphql@16.11.0: {} + graphql@16.12.0: {} handlebars@4.7.8: dependencies: From 1e380c79332cd8d25dbf23cb2d96ab007a8a553b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 3 Nov 2025 02:33:37 +0000 Subject: [PATCH 100/133] chore(deps): update dependency @types/node to v24.10.0 (#1288) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 248 ++++++++++++++++++++++++------------------------- 1 file changed, 124 insertions(+), 124 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index e0254244..d3520401 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,10 +29,10 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1)) + version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.1 - version: 6.0.1(@types/node@24.9.2)(graphql@16.12.0)(typescript@5.9.3) + version: 6.0.1(@types/node@24.10.0)(graphql@16.12.0)(typescript@5.9.3) '@graphql-codegen/typescript': specifier: ^5.0.0 version: 5.0.2(graphql@16.12.0) @@ -44,13 +44,13 @@ importers: version: 2.1.12 '@types/node': specifier: ^24.0.0 - version: 24.9.2 + version: 24.10.0 eslint: specifier: 9.39.0 version: 9.39.0(jiti@2.4.0) jest: specifier: 30.2.0 - version: 30.2.0(@types/node@24.9.2) + version: 30.2.0(@types/node@24.10.0) myzod: specifier: 1.12.1 version: 1.12.1 @@ -62,7 +62,7 @@ importers: version: 2.2.0 ts-jest: specifier: 29.4.5 - version: 29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@24.9.2))(typescript@5.9.3) + version: 29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@24.10.0))(typescript@5.9.3) typescript: specifier: 5.9.3 version: 5.9.3 @@ -71,7 +71,7 @@ importers: version: 1.1.0(typescript@5.9.3) vitest: specifier: ^4.0.0 - version: 4.0.6(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1) + version: 4.0.6(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.1 version: 1.7.1 @@ -1277,8 +1277,8 @@ packages: '@types/ms@2.1.0': resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} - '@types/node@24.9.2': - resolution: {integrity: sha512-uWN8YqxXxqFMX2RqGOrumsKeti4LlmIMIyV0lgut4jx7KQBcBiW6vkDtIBvHnHIquwNfJhk8v2OtmO8zXWHfPA==} + '@types/node@24.10.0': + resolution: {integrity: sha512-qzQZRBqkFsYyaSWXuEHc2WR9c0a0CXwiE5FWUvn7ZM+vdy1uZLfCunD38UzhuB7YN/J11ndbDBcTmOdxJo9Q7A==} '@types/stack-utils@2.0.3': resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} @@ -3896,7 +3896,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -3905,7 +3905,7 @@ snapshots: '@stylistic/eslint-plugin': 5.5.0(eslint@9.39.0(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/parser': 8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.4.0(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/eslint-plugin': 1.4.0(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.2.0 cac: 6.7.14 eslint: 9.39.0(jiti@2.4.0) @@ -4385,7 +4385,7 @@ snapshots: graphql: 16.12.0 tslib: 2.6.3 - '@graphql-codegen/cli@6.0.1(@types/node@24.9.2)(graphql@16.12.0)(typescript@5.9.3)': + '@graphql-codegen/cli@6.0.1(@types/node@24.10.0)(graphql@16.12.0)(typescript@5.9.3)': dependencies: '@babel/generator': 7.28.3 '@babel/template': 7.27.2 @@ -4396,20 +4396,20 @@ snapshots: '@graphql-tools/apollo-engine-loader': 8.0.4(graphql@16.12.0) '@graphql-tools/code-file-loader': 8.1.5(graphql@16.12.0) '@graphql-tools/git-loader': 8.0.9(graphql@16.12.0) - '@graphql-tools/github-loader': 8.0.4(@types/node@24.9.2)(graphql@16.12.0) + '@graphql-tools/github-loader': 8.0.4(@types/node@24.10.0)(graphql@16.12.0) '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.12.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.12.0) '@graphql-tools/load': 8.1.0(graphql@16.12.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@24.9.2)(graphql@16.12.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@24.10.0)(graphql@16.12.0) '@graphql-tools/utils': 10.10.0(graphql@16.12.0) - '@inquirer/prompts': 7.8.4(@types/node@24.9.2) + '@inquirer/prompts': 7.8.4(@types/node@24.10.0) '@whatwg-node/fetch': 0.10.1 chalk: 4.1.2 cosmiconfig: 9.0.0(typescript@5.9.3) debounce: 2.2.0 detect-indent: 6.1.0 graphql: 16.12.0 - graphql-config: 5.1.3(@types/node@24.9.2)(graphql@16.12.0)(typescript@5.9.3) + graphql-config: 5.1.3(@types/node@24.10.0)(graphql@16.12.0)(typescript@5.9.3) is-glob: 4.0.3 jiti: 2.4.0 json-to-pretty-yaml: 1.2.2 @@ -4612,14 +4612,14 @@ snapshots: - bufferutil - utf-8-validate - '@graphql-tools/executor-http@1.1.9(@types/node@24.9.2)(graphql@16.12.0)': + '@graphql-tools/executor-http@1.1.9(@types/node@24.10.0)(graphql@16.12.0)': dependencies: '@graphql-tools/utils': 10.10.0(graphql@16.12.0) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/fetch': 0.10.1 extract-files: 11.0.0 graphql: 16.12.0 - meros: 1.3.0(@types/node@24.9.2) + meros: 1.3.0(@types/node@24.10.0) tslib: 2.8.1 value-or-promise: 1.0.12 transitivePeerDependencies: @@ -4658,10 +4658,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@graphql-tools/github-loader@8.0.4(@types/node@24.9.2)(graphql@16.12.0)': + '@graphql-tools/github-loader@8.0.4(@types/node@24.10.0)(graphql@16.12.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/executor-http': 1.1.9(@types/node@24.9.2)(graphql@16.12.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@24.10.0)(graphql@16.12.0) '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.12.0) '@graphql-tools/utils': 10.10.0(graphql@16.12.0) '@whatwg-node/fetch': 0.10.1 @@ -4745,11 +4745,11 @@ snapshots: graphql: 16.12.0 tslib: 2.8.1 - '@graphql-tools/url-loader@8.0.15(@types/node@24.9.2)(graphql@16.12.0)': + '@graphql-tools/url-loader@8.0.15(@types/node@24.10.0)(graphql@16.12.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/executor-graphql-ws': 1.3.2(graphql@16.12.0) - '@graphql-tools/executor-http': 1.1.9(@types/node@24.9.2)(graphql@16.12.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@24.10.0)(graphql@16.12.0) '@graphql-tools/executor-legacy-ws': 1.1.2(graphql@16.12.0) '@graphql-tools/utils': 10.10.0(graphql@16.12.0) '@graphql-tools/wrap': 10.0.16(graphql@16.12.0) @@ -4799,27 +4799,27 @@ snapshots: '@humanwhocodes/retry@0.4.3': {} - '@inquirer/checkbox@4.2.2(@types/node@24.9.2)': + '@inquirer/checkbox@4.2.2(@types/node@24.10.0)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.9.2) + '@inquirer/core': 10.2.0(@types/node@24.10.0) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.9.2) + '@inquirer/type': 3.0.8(@types/node@24.10.0) ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.9.2 + '@types/node': 24.10.0 - '@inquirer/confirm@5.1.16(@types/node@24.9.2)': + '@inquirer/confirm@5.1.16(@types/node@24.10.0)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.9.2) - '@inquirer/type': 3.0.8(@types/node@24.9.2) + '@inquirer/core': 10.2.0(@types/node@24.10.0) + '@inquirer/type': 3.0.8(@types/node@24.10.0) optionalDependencies: - '@types/node': 24.9.2 + '@types/node': 24.10.0 - '@inquirer/core@10.2.0(@types/node@24.9.2)': + '@inquirer/core@10.2.0(@types/node@24.10.0)': dependencies: '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.9.2) + '@inquirer/type': 3.0.8(@types/node@24.10.0) ansi-escapes: 4.3.2 cli-width: 4.1.0 mute-stream: 2.0.0 @@ -4827,100 +4827,100 @@ snapshots: wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.9.2 + '@types/node': 24.10.0 - '@inquirer/editor@4.2.18(@types/node@24.9.2)': + '@inquirer/editor@4.2.18(@types/node@24.10.0)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.9.2) - '@inquirer/external-editor': 1.0.1(@types/node@24.9.2) - '@inquirer/type': 3.0.8(@types/node@24.9.2) + '@inquirer/core': 10.2.0(@types/node@24.10.0) + '@inquirer/external-editor': 1.0.1(@types/node@24.10.0) + '@inquirer/type': 3.0.8(@types/node@24.10.0) optionalDependencies: - '@types/node': 24.9.2 + '@types/node': 24.10.0 - '@inquirer/expand@4.0.18(@types/node@24.9.2)': + '@inquirer/expand@4.0.18(@types/node@24.10.0)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.9.2) - '@inquirer/type': 3.0.8(@types/node@24.9.2) + '@inquirer/core': 10.2.0(@types/node@24.10.0) + '@inquirer/type': 3.0.8(@types/node@24.10.0) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.9.2 + '@types/node': 24.10.0 - '@inquirer/external-editor@1.0.1(@types/node@24.9.2)': + '@inquirer/external-editor@1.0.1(@types/node@24.10.0)': dependencies: chardet: 2.1.0 iconv-lite: 0.6.3 optionalDependencies: - '@types/node': 24.9.2 + '@types/node': 24.10.0 '@inquirer/figures@1.0.13': {} - '@inquirer/input@4.2.2(@types/node@24.9.2)': + '@inquirer/input@4.2.2(@types/node@24.10.0)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.9.2) - '@inquirer/type': 3.0.8(@types/node@24.9.2) + '@inquirer/core': 10.2.0(@types/node@24.10.0) + '@inquirer/type': 3.0.8(@types/node@24.10.0) optionalDependencies: - '@types/node': 24.9.2 + '@types/node': 24.10.0 - '@inquirer/number@3.0.18(@types/node@24.9.2)': + '@inquirer/number@3.0.18(@types/node@24.10.0)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.9.2) - '@inquirer/type': 3.0.8(@types/node@24.9.2) + '@inquirer/core': 10.2.0(@types/node@24.10.0) + '@inquirer/type': 3.0.8(@types/node@24.10.0) optionalDependencies: - '@types/node': 24.9.2 + '@types/node': 24.10.0 - '@inquirer/password@4.0.18(@types/node@24.9.2)': + '@inquirer/password@4.0.18(@types/node@24.10.0)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.9.2) - '@inquirer/type': 3.0.8(@types/node@24.9.2) + '@inquirer/core': 10.2.0(@types/node@24.10.0) + '@inquirer/type': 3.0.8(@types/node@24.10.0) ansi-escapes: 4.3.2 optionalDependencies: - '@types/node': 24.9.2 - - '@inquirer/prompts@7.8.4(@types/node@24.9.2)': - dependencies: - '@inquirer/checkbox': 4.2.2(@types/node@24.9.2) - '@inquirer/confirm': 5.1.16(@types/node@24.9.2) - '@inquirer/editor': 4.2.18(@types/node@24.9.2) - '@inquirer/expand': 4.0.18(@types/node@24.9.2) - '@inquirer/input': 4.2.2(@types/node@24.9.2) - '@inquirer/number': 3.0.18(@types/node@24.9.2) - '@inquirer/password': 4.0.18(@types/node@24.9.2) - '@inquirer/rawlist': 4.1.6(@types/node@24.9.2) - '@inquirer/search': 3.1.1(@types/node@24.9.2) - '@inquirer/select': 4.3.2(@types/node@24.9.2) + '@types/node': 24.10.0 + + '@inquirer/prompts@7.8.4(@types/node@24.10.0)': + dependencies: + '@inquirer/checkbox': 4.2.2(@types/node@24.10.0) + '@inquirer/confirm': 5.1.16(@types/node@24.10.0) + '@inquirer/editor': 4.2.18(@types/node@24.10.0) + '@inquirer/expand': 4.0.18(@types/node@24.10.0) + '@inquirer/input': 4.2.2(@types/node@24.10.0) + '@inquirer/number': 3.0.18(@types/node@24.10.0) + '@inquirer/password': 4.0.18(@types/node@24.10.0) + '@inquirer/rawlist': 4.1.6(@types/node@24.10.0) + '@inquirer/search': 3.1.1(@types/node@24.10.0) + '@inquirer/select': 4.3.2(@types/node@24.10.0) optionalDependencies: - '@types/node': 24.9.2 + '@types/node': 24.10.0 - '@inquirer/rawlist@4.1.6(@types/node@24.9.2)': + '@inquirer/rawlist@4.1.6(@types/node@24.10.0)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.9.2) - '@inquirer/type': 3.0.8(@types/node@24.9.2) + '@inquirer/core': 10.2.0(@types/node@24.10.0) + '@inquirer/type': 3.0.8(@types/node@24.10.0) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.9.2 + '@types/node': 24.10.0 - '@inquirer/search@3.1.1(@types/node@24.9.2)': + '@inquirer/search@3.1.1(@types/node@24.10.0)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.9.2) + '@inquirer/core': 10.2.0(@types/node@24.10.0) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.9.2) + '@inquirer/type': 3.0.8(@types/node@24.10.0) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.9.2 + '@types/node': 24.10.0 - '@inquirer/select@4.3.2(@types/node@24.9.2)': + '@inquirer/select@4.3.2(@types/node@24.10.0)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.9.2) + '@inquirer/core': 10.2.0(@types/node@24.10.0) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.9.2) + '@inquirer/type': 3.0.8(@types/node@24.10.0) ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.9.2 + '@types/node': 24.10.0 - '@inquirer/type@3.0.8(@types/node@24.9.2)': + '@inquirer/type@3.0.8(@types/node@24.10.0)': optionalDependencies: - '@types/node': 24.9.2 + '@types/node': 24.10.0 '@isaacs/cliui@8.0.2': dependencies: @@ -4944,7 +4944,7 @@ snapshots: '@jest/console@30.2.0': dependencies: '@jest/types': 30.2.0 - '@types/node': 24.9.2 + '@types/node': 24.10.0 chalk: 4.1.2 jest-message-util: 30.2.0 jest-util: 30.2.0 @@ -4958,14 +4958,14 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.9.2 + '@types/node': 24.10.0 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 4.3.0 exit-x: 0.2.2 graceful-fs: 4.2.11 jest-changed-files: 30.2.0 - jest-config: 30.2.0(@types/node@24.9.2) + jest-config: 30.2.0(@types/node@24.10.0) jest-haste-map: 30.2.0 jest-message-util: 30.2.0 jest-regex-util: 30.0.1 @@ -4992,7 +4992,7 @@ snapshots: dependencies: '@jest/fake-timers': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.9.2 + '@types/node': 24.10.0 jest-mock: 30.2.0 '@jest/expect-utils@30.2.0': @@ -5010,7 +5010,7 @@ snapshots: dependencies: '@jest/types': 30.2.0 '@sinonjs/fake-timers': 13.0.5 - '@types/node': 24.9.2 + '@types/node': 24.10.0 jest-message-util: 30.2.0 jest-mock: 30.2.0 jest-util: 30.2.0 @@ -5028,7 +5028,7 @@ snapshots: '@jest/pattern@30.0.1': dependencies: - '@types/node': 24.9.2 + '@types/node': 24.10.0 jest-regex-util: 30.0.1 '@jest/reporters@30.2.0': @@ -5039,7 +5039,7 @@ snapshots: '@jest/transform': 30.2.0 '@jest/types': 30.2.0 '@jridgewell/trace-mapping': 0.3.25 - '@types/node': 24.9.2 + '@types/node': 24.10.0 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit-x: 0.2.2 @@ -5116,7 +5116,7 @@ snapshots: '@jest/schemas': 30.0.5 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 24.9.2 + '@types/node': 24.10.0 '@types/yargs': 17.0.33 chalk: 4.1.2 @@ -5318,7 +5318,7 @@ snapshots: '@types/ms@2.1.0': {} - '@types/node@24.9.2': + '@types/node@24.10.0': dependencies: undici-types: 7.16.0 @@ -5328,7 +5328,7 @@ snapshots: '@types/ws@8.5.13': dependencies: - '@types/node': 24.9.2 + '@types/node': 24.10.0 '@types/yargs-parser@21.0.3': {} @@ -5484,14 +5484,14 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.4.0(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.4.0(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.46.2 '@typescript-eslint/utils': 8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3) eslint: 9.39.0(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - vitest: 4.0.6(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1) + vitest: 4.0.6(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color @@ -5504,13 +5504,13 @@ snapshots: chai: 6.2.0 tinyrainbow: 3.0.3 - '@vitest/mocker@4.0.6(vite@7.1.12(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@4.0.6(vite@7.1.12(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@vitest/spy': 4.0.6 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: - vite: 7.1.12(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1) + vite: 7.1.12(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1) '@vitest/pretty-format@4.0.6': dependencies: @@ -6485,13 +6485,13 @@ snapshots: dependencies: lodash: 4.17.21 - graphql-config@5.1.3(@types/node@24.9.2)(graphql@16.12.0)(typescript@5.9.3): + graphql-config@5.1.3(@types/node@24.10.0)(graphql@16.12.0)(typescript@5.9.3): dependencies: '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.12.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.12.0) '@graphql-tools/load': 8.1.0(graphql@16.12.0) '@graphql-tools/merge': 9.0.24(graphql@16.12.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@24.9.2)(graphql@16.12.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@24.10.0)(graphql@16.12.0) '@graphql-tools/utils': 10.10.0(graphql@16.12.0) cosmiconfig: 8.3.6(typescript@5.9.3) graphql: 16.12.0 @@ -6684,7 +6684,7 @@ snapshots: '@jest/expect': 30.2.0 '@jest/test-result': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.9.2 + '@types/node': 24.10.0 chalk: 4.1.2 co: 4.6.0 dedent: 1.6.0 @@ -6704,7 +6704,7 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@30.2.0(@types/node@24.9.2): + jest-cli@30.2.0(@types/node@24.10.0): dependencies: '@jest/core': 30.2.0 '@jest/test-result': 30.2.0 @@ -6712,7 +6712,7 @@ snapshots: chalk: 4.1.2 exit-x: 0.2.2 import-local: 3.2.0 - jest-config: 30.2.0(@types/node@24.9.2) + jest-config: 30.2.0(@types/node@24.10.0) jest-util: 30.2.0 jest-validate: 30.2.0 yargs: 17.7.2 @@ -6723,7 +6723,7 @@ snapshots: - supports-color - ts-node - jest-config@30.2.0(@types/node@24.9.2): + jest-config@30.2.0(@types/node@24.10.0): dependencies: '@babel/core': 7.27.4 '@jest/get-type': 30.1.0 @@ -6750,7 +6750,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 24.9.2 + '@types/node': 24.10.0 transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -6779,7 +6779,7 @@ snapshots: '@jest/environment': 30.2.0 '@jest/fake-timers': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.9.2 + '@types/node': 24.10.0 jest-mock: 30.2.0 jest-util: 30.2.0 jest-validate: 30.2.0 @@ -6787,7 +6787,7 @@ snapshots: jest-haste-map@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 24.9.2 + '@types/node': 24.10.0 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -6826,7 +6826,7 @@ snapshots: jest-mock@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 24.9.2 + '@types/node': 24.10.0 jest-util: 30.2.0 jest-pnp-resolver@1.2.3(jest-resolve@30.2.0): @@ -6860,7 +6860,7 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.9.2 + '@types/node': 24.10.0 chalk: 4.1.2 emittery: 0.13.1 exit-x: 0.2.2 @@ -6889,7 +6889,7 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.9.2 + '@types/node': 24.10.0 chalk: 4.1.2 cjs-module-lexer: 2.1.0 collect-v8-coverage: 1.0.2 @@ -6936,7 +6936,7 @@ snapshots: jest-util@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 24.9.2 + '@types/node': 24.10.0 chalk: 4.1.2 ci-info: 4.3.0 graceful-fs: 4.2.11 @@ -6955,7 +6955,7 @@ snapshots: dependencies: '@jest/test-result': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.9.2 + '@types/node': 24.10.0 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -6964,18 +6964,18 @@ snapshots: jest-worker@30.2.0: dependencies: - '@types/node': 24.9.2 + '@types/node': 24.10.0 '@ungap/structured-clone': 1.3.0 jest-util: 30.2.0 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@30.2.0(@types/node@24.9.2): + jest@30.2.0(@types/node@24.10.0): dependencies: '@jest/core': 30.2.0 '@jest/types': 30.2.0 import-local: 3.2.0 - jest-cli: 30.2.0(@types/node@24.9.2) + jest-cli: 30.2.0(@types/node@24.10.0) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -7242,9 +7242,9 @@ snapshots: merge2@1.4.1: {} - meros@1.3.0(@types/node@24.9.2): + meros@1.3.0(@types/node@24.10.0): optionalDependencies: - '@types/node': 24.9.2 + '@types/node': 24.10.0 micromark-core-commonmark@2.0.3: dependencies: @@ -8001,12 +8001,12 @@ snapshots: ts-dedent@2.2.0: {} - ts-jest@29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@24.9.2))(typescript@5.9.3): + ts-jest@29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@24.10.0))(typescript@5.9.3): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 handlebars: 4.7.8 - jest: 30.2.0(@types/node@24.9.2) + jest: 30.2.0(@types/node@24.10.0) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -8131,7 +8131,7 @@ snapshots: value-or-promise@1.0.12: {} - vite@7.1.12(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1): + vite@7.1.12(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1): dependencies: esbuild: 0.25.11 fdir: 6.5.0(picomatch@4.0.3) @@ -8140,15 +8140,15 @@ snapshots: rollup: 4.52.5 tinyglobby: 0.2.15 optionalDependencies: - '@types/node': 24.9.2 + '@types/node': 24.10.0 fsevents: 2.3.3 jiti: 2.4.0 yaml: 2.8.1 - vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1): + vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1): dependencies: '@vitest/expect': 4.0.6 - '@vitest/mocker': 4.0.6(vite@7.1.12(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/mocker': 4.0.6(vite@7.1.12(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1)) '@vitest/pretty-format': 4.0.6 '@vitest/runner': 4.0.6 '@vitest/snapshot': 4.0.6 @@ -8165,11 +8165,11 @@ snapshots: tinyexec: 0.3.2 tinyglobby: 0.2.15 tinyrainbow: 3.0.3 - vite: 7.1.12(@types/node@24.9.2)(jiti@2.4.0)(yaml@2.8.1) + vite: 7.1.12(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1) why-is-node-running: 2.3.0 optionalDependencies: '@types/debug': 4.1.12 - '@types/node': 24.9.2 + '@types/node': 24.10.0 transitivePeerDependencies: - jiti - less From b1b94f6d5e5d5e2b60061eccedbaab5be28d8840 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 3 Nov 2025 22:39:44 +0000 Subject: [PATCH 101/133] chore(deps): update dependency eslint to v9.39.1 (#1289) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 248 ++++++++++++++++++++++++------------------------- 2 files changed, 125 insertions(+), 125 deletions(-) diff --git a/package.json b/package.json index 7c9b310b..5d3013ad 100644 --- a/package.json +++ b/package.json @@ -93,7 +93,7 @@ "@tsconfig/recommended": "1.0.11", "@types/graphlib": "^2.1.8", "@types/node": "^24.0.0", - "eslint": "9.39.0", + "eslint": "9.39.1", "jest": "30.2.0", "myzod": "1.12.1", "npm-run-all2": "8.0.4", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d3520401..48d03c1f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1)) + version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.1 version: 6.0.1(@types/node@24.10.0)(graphql@16.12.0)(typescript@5.9.3) @@ -46,8 +46,8 @@ importers: specifier: ^24.0.0 version: 24.10.0 eslint: - specifier: 9.39.0 - version: 9.39.0(jiti@2.4.0) + specifier: 9.39.1 + version: 9.39.1(jiti@2.4.0) jest: specifier: 30.2.0 version: 30.2.0(@types/node@24.10.0) @@ -565,8 +565,8 @@ packages: resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/js@9.39.0': - resolution: {integrity: sha512-BIhe0sW91JGPiaF1mOuPy5v8NflqfjIcDNpC+LbW9f609WVRX1rArrhi6Z2ymvrAry9jw+5POTj4t2t62o8Bmw==} + '@eslint/js@9.39.1': + resolution: {integrity: sha512-S26Stp4zCy88tH94QbBv3XCuzRQiZ9yXofEILmglYTh/Ug/a9/umqvgFtYBAo3Lp0nsI/5/qH1CCrbdK3AP1Tw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/markdown@7.5.0': @@ -2114,8 +2114,8 @@ packages: resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - eslint@9.39.0: - resolution: {integrity: sha512-iy2GE3MHrYTL5lrCtMZ0X1KLEKKUjmK0kzwcnefhR66txcEmXZD2YWgR5GNdcEwkNx3a0siYkSvl0vIC+Svjmg==} + eslint@9.39.1: + resolution: {integrity: sha512-BhHmn2yNOFA9H9JmmIVKJmd288g9hrVRDkdoIgRCRuSySRUHH7r/DI6aAXW9T1WwUuY3DFgrcaqB+deURBLR5g==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true peerDependencies: @@ -3896,44 +3896,44 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 - '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.39.0(jiti@2.4.0)) + '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.39.1(jiti@2.4.0)) '@eslint/markdown': 7.5.0 - '@stylistic/eslint-plugin': 5.5.0(eslint@9.39.0(jiti@2.4.0)) - '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3) - '@typescript-eslint/parser': 8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.4.0(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1)) + '@stylistic/eslint-plugin': 5.5.0(eslint@9.39.1(jiti@2.4.0)) + '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/parser': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) + '@vitest/eslint-plugin': 1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.2.0 cac: 6.7.14 - eslint: 9.39.0(jiti@2.4.0) - eslint-config-flat-gitignore: 2.1.0(eslint@9.39.0(jiti@2.4.0)) + eslint: 9.39.1(jiti@2.4.0) + eslint-config-flat-gitignore: 2.1.0(eslint@9.39.1(jiti@2.4.0)) eslint-flat-config-utils: 2.1.4 - eslint-merge-processors: 2.0.0(eslint@9.39.0(jiti@2.4.0)) - eslint-plugin-antfu: 3.1.1(eslint@9.39.0(jiti@2.4.0)) - eslint-plugin-command: 3.3.1(eslint@9.39.0(jiti@2.4.0)) - eslint-plugin-import-lite: 0.3.0(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-jsdoc: 61.1.11(eslint@9.39.0(jiti@2.4.0)) - eslint-plugin-jsonc: 2.21.0(eslint@9.39.0(jiti@2.4.0)) - eslint-plugin-n: 17.23.1(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3) + eslint-merge-processors: 2.0.0(eslint@9.39.1(jiti@2.4.0)) + eslint-plugin-antfu: 3.1.1(eslint@9.39.1(jiti@2.4.0)) + eslint-plugin-command: 3.3.1(eslint@9.39.1(jiti@2.4.0)) + eslint-plugin-import-lite: 0.3.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) + eslint-plugin-jsdoc: 61.1.11(eslint@9.39.1(jiti@2.4.0)) + eslint-plugin-jsonc: 2.21.0(eslint@9.39.1(jiti@2.4.0)) + eslint-plugin-n: 17.23.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) eslint-plugin-no-only-tests: 3.3.0 - eslint-plugin-perfectionist: 4.15.1(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-pnpm: 1.3.0(eslint@9.39.0(jiti@2.4.0)) - eslint-plugin-regexp: 2.10.0(eslint@9.39.0(jiti@2.4.0)) - eslint-plugin-toml: 0.12.0(eslint@9.39.0(jiti@2.4.0)) - eslint-plugin-unicorn: 62.0.0(eslint@9.39.0(jiti@2.4.0)) - eslint-plugin-unused-imports: 4.3.0(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.0(jiti@2.4.0)) - eslint-plugin-vue: 10.5.1(@stylistic/eslint-plugin@5.5.0(eslint@9.39.0(jiti@2.4.0)))(@typescript-eslint/parser@8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.39.0(jiti@2.4.0))) - eslint-plugin-yml: 1.19.0(eslint@9.39.0(jiti@2.4.0)) - eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.0(jiti@2.4.0)) + eslint-plugin-perfectionist: 4.15.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) + eslint-plugin-pnpm: 1.3.0(eslint@9.39.1(jiti@2.4.0)) + eslint-plugin-regexp: 2.10.0(eslint@9.39.1(jiti@2.4.0)) + eslint-plugin-toml: 0.12.0(eslint@9.39.1(jiti@2.4.0)) + eslint-plugin-unicorn: 62.0.0(eslint@9.39.1(jiti@2.4.0)) + eslint-plugin-unused-imports: 4.3.0(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0)) + eslint-plugin-vue: 10.5.1(@stylistic/eslint-plugin@5.5.0(eslint@9.39.1(jiti@2.4.0)))(@typescript-eslint/parser@8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.39.1(jiti@2.4.0))) + eslint-plugin-yml: 1.19.0(eslint@9.39.1(jiti@2.4.0)) + eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0)) globals: 16.4.0 jsonc-eslint-parser: 2.4.1 local-pkg: 1.1.2 parse-gitignore: 2.0.0 toml-eslint-parser: 0.10.0 - vue-eslint-parser: 10.2.0(eslint@9.39.0(jiti@2.4.0)) + vue-eslint-parser: 10.2.0(eslint@9.39.1(jiti@2.4.0)) yaml-eslint-parser: 1.3.0 transitivePeerDependencies: - '@eslint/json' @@ -4303,24 +4303,24 @@ snapshots: '@esbuild/win32-x64@0.25.11': optional: true - '@eslint-community/eslint-plugin-eslint-comments@4.5.0(eslint@9.39.0(jiti@2.4.0))': + '@eslint-community/eslint-plugin-eslint-comments@4.5.0(eslint@9.39.1(jiti@2.4.0))': dependencies: escape-string-regexp: 4.0.0 - eslint: 9.39.0(jiti@2.4.0) + eslint: 9.39.1(jiti@2.4.0) ignore: 5.3.2 - '@eslint-community/eslint-utils@4.9.0(eslint@9.39.0(jiti@2.4.0))': + '@eslint-community/eslint-utils@4.9.0(eslint@9.39.1(jiti@2.4.0))': dependencies: - eslint: 9.39.0(jiti@2.4.0) + eslint: 9.39.1(jiti@2.4.0) eslint-visitor-keys: 3.4.3 '@eslint-community/regexpp@4.12.2': {} - '@eslint/compat@1.4.1(eslint@9.39.0(jiti@2.4.0))': + '@eslint/compat@1.4.1(eslint@9.39.1(jiti@2.4.0))': dependencies: '@eslint/core': 0.17.0 optionalDependencies: - eslint: 9.39.0(jiti@2.4.0) + eslint: 9.39.1(jiti@2.4.0) '@eslint/config-array@0.21.1': dependencies: @@ -4356,7 +4356,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/js@9.39.0': {} + '@eslint/js@9.39.1': {} '@eslint/markdown@7.5.0': dependencies: @@ -5247,11 +5247,11 @@ snapshots: '@standard-schema/spec@1.0.0': {} - '@stylistic/eslint-plugin@5.5.0(eslint@9.39.0(jiti@2.4.0))': + '@stylistic/eslint-plugin@5.5.0(eslint@9.39.1(jiti@2.4.0))': dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.4.0)) '@typescript-eslint/types': 8.46.2 - eslint: 9.39.0(jiti@2.4.0) + eslint: 9.39.1(jiti@2.4.0) eslint-visitor-keys: 4.2.1 espree: 10.4.0 estraverse: 5.3.0 @@ -5336,15 +5336,15 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3)': + '@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)': dependencies: '@eslint-community/regexpp': 4.12.2 - '@typescript-eslint/parser': 8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/parser': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/scope-manager': 8.46.2 - '@typescript-eslint/type-utils': 8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3) - '@typescript-eslint/utils': 8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/type-utils': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/utils': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/visitor-keys': 8.46.2 - eslint: 9.39.0(jiti@2.4.0) + eslint: 9.39.1(jiti@2.4.0) graphemer: 1.4.0 ignore: 7.0.5 natural-compare: 1.4.0 @@ -5353,14 +5353,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3)': + '@typescript-eslint/parser@8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)': dependencies: '@typescript-eslint/scope-manager': 8.46.2 '@typescript-eslint/types': 8.46.2 '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.9.3) '@typescript-eslint/visitor-keys': 8.46.2 debug: 4.4.3 - eslint: 9.39.0(jiti@2.4.0) + eslint: 9.39.1(jiti@2.4.0) typescript: 5.9.3 transitivePeerDependencies: - supports-color @@ -5383,13 +5383,13 @@ snapshots: dependencies: typescript: 5.9.3 - '@typescript-eslint/type-utils@8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3)': + '@typescript-eslint/type-utils@8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)': dependencies: '@typescript-eslint/types': 8.46.2 '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.9.3) - '@typescript-eslint/utils': 8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/utils': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) debug: 4.4.3 - eslint: 9.39.0(jiti@2.4.0) + eslint: 9.39.1(jiti@2.4.0) ts-api-utils: 2.1.0(typescript@5.9.3) typescript: 5.9.3 transitivePeerDependencies: @@ -5413,13 +5413,13 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3)': + '@typescript-eslint/utils@8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)': dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.4.0)) '@typescript-eslint/scope-manager': 8.46.2 '@typescript-eslint/types': 8.46.2 '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.9.3) - eslint: 9.39.0(jiti@2.4.0) + eslint: 9.39.1(jiti@2.4.0) typescript: 5.9.3 transitivePeerDependencies: - supports-color @@ -5484,11 +5484,11 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.4.0(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.46.2 - '@typescript-eslint/utils': 8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3) - eslint: 9.39.0(jiti@2.4.0) + '@typescript-eslint/utils': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) + eslint: 9.39.1(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 vitest: 4.0.6(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1) @@ -6009,60 +6009,60 @@ snapshots: escape-string-regexp@5.0.0: {} - eslint-compat-utils@0.5.1(eslint@9.39.0(jiti@2.4.0)): + eslint-compat-utils@0.5.1(eslint@9.39.1(jiti@2.4.0)): dependencies: - eslint: 9.39.0(jiti@2.4.0) + eslint: 9.39.1(jiti@2.4.0) semver: 7.7.3 - eslint-compat-utils@0.6.5(eslint@9.39.0(jiti@2.4.0)): + eslint-compat-utils@0.6.5(eslint@9.39.1(jiti@2.4.0)): dependencies: - eslint: 9.39.0(jiti@2.4.0) + eslint: 9.39.1(jiti@2.4.0) semver: 7.7.3 - eslint-config-flat-gitignore@2.1.0(eslint@9.39.0(jiti@2.4.0)): + eslint-config-flat-gitignore@2.1.0(eslint@9.39.1(jiti@2.4.0)): dependencies: - '@eslint/compat': 1.4.1(eslint@9.39.0(jiti@2.4.0)) - eslint: 9.39.0(jiti@2.4.0) + '@eslint/compat': 1.4.1(eslint@9.39.1(jiti@2.4.0)) + eslint: 9.39.1(jiti@2.4.0) eslint-flat-config-utils@2.1.4: dependencies: pathe: 2.0.3 - eslint-json-compat-utils@0.2.1(eslint@9.39.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.1): + eslint-json-compat-utils@0.2.1(eslint@9.39.1(jiti@2.4.0))(jsonc-eslint-parser@2.4.1): dependencies: - eslint: 9.39.0(jiti@2.4.0) + eslint: 9.39.1(jiti@2.4.0) esquery: 1.6.0 jsonc-eslint-parser: 2.4.1 - eslint-merge-processors@2.0.0(eslint@9.39.0(jiti@2.4.0)): + eslint-merge-processors@2.0.0(eslint@9.39.1(jiti@2.4.0)): dependencies: - eslint: 9.39.0(jiti@2.4.0) + eslint: 9.39.1(jiti@2.4.0) - eslint-plugin-antfu@3.1.1(eslint@9.39.0(jiti@2.4.0)): + eslint-plugin-antfu@3.1.1(eslint@9.39.1(jiti@2.4.0)): dependencies: - eslint: 9.39.0(jiti@2.4.0) + eslint: 9.39.1(jiti@2.4.0) - eslint-plugin-command@3.3.1(eslint@9.39.0(jiti@2.4.0)): + eslint-plugin-command@3.3.1(eslint@9.39.1(jiti@2.4.0)): dependencies: '@es-joy/jsdoccomment': 0.50.2 - eslint: 9.39.0(jiti@2.4.0) + eslint: 9.39.1(jiti@2.4.0) - eslint-plugin-es-x@7.8.0(eslint@9.39.0(jiti@2.4.0)): + eslint-plugin-es-x@7.8.0(eslint@9.39.1(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.2 - eslint: 9.39.0(jiti@2.4.0) - eslint-compat-utils: 0.5.1(eslint@9.39.0(jiti@2.4.0)) + eslint: 9.39.1(jiti@2.4.0) + eslint-compat-utils: 0.5.1(eslint@9.39.1(jiti@2.4.0)) - eslint-plugin-import-lite@0.3.0(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3): + eslint-plugin-import-lite@0.3.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.4.0)) '@typescript-eslint/types': 8.46.2 - eslint: 9.39.0(jiti@2.4.0) + eslint: 9.39.1(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - eslint-plugin-jsdoc@61.1.11(eslint@9.39.0(jiti@2.4.0)): + eslint-plugin-jsdoc@61.1.11(eslint@9.39.1(jiti@2.4.0)): dependencies: '@es-joy/jsdoccomment': 0.76.0 '@es-joy/resolve.exports': 1.2.0 @@ -6070,7 +6070,7 @@ snapshots: comment-parser: 1.4.1 debug: 4.4.3 escape-string-regexp: 4.0.0 - eslint: 9.39.0(jiti@2.4.0) + eslint: 9.39.1(jiti@2.4.0) espree: 10.4.0 esquery: 1.6.0 html-entities: 2.6.0 @@ -6082,13 +6082,13 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-jsonc@2.21.0(eslint@9.39.0(jiti@2.4.0)): + eslint-plugin-jsonc@2.21.0(eslint@9.39.1(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.4.0)) diff-sequences: 27.5.1 - eslint: 9.39.0(jiti@2.4.0) - eslint-compat-utils: 0.6.5(eslint@9.39.0(jiti@2.4.0)) - eslint-json-compat-utils: 0.2.1(eslint@9.39.0(jiti@2.4.0))(jsonc-eslint-parser@2.4.1) + eslint: 9.39.1(jiti@2.4.0) + eslint-compat-utils: 0.6.5(eslint@9.39.1(jiti@2.4.0)) + eslint-json-compat-utils: 0.2.1(eslint@9.39.1(jiti@2.4.0))(jsonc-eslint-parser@2.4.1) espree: 10.4.0 graphemer: 1.4.0 jsonc-eslint-parser: 2.4.1 @@ -6097,12 +6097,12 @@ snapshots: transitivePeerDependencies: - '@eslint/json' - eslint-plugin-n@17.23.1(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3): + eslint-plugin-n@17.23.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.4.0)) enhanced-resolve: 5.18.3 - eslint: 9.39.0(jiti@2.4.0) - eslint-plugin-es-x: 7.8.0(eslint@9.39.0(jiti@2.4.0)) + eslint: 9.39.1(jiti@2.4.0) + eslint-plugin-es-x: 7.8.0(eslint@9.39.1(jiti@2.4.0)) get-tsconfig: 4.13.0 globals: 15.15.0 globrex: 0.1.2 @@ -6114,57 +6114,57 @@ snapshots: eslint-plugin-no-only-tests@3.3.0: {} - eslint-plugin-perfectionist@4.15.1(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3): + eslint-plugin-perfectionist@4.15.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3): dependencies: '@typescript-eslint/types': 8.46.2 - '@typescript-eslint/utils': 8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3) - eslint: 9.39.0(jiti@2.4.0) + '@typescript-eslint/utils': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) + eslint: 9.39.1(jiti@2.4.0) natural-orderby: 5.0.0 transitivePeerDependencies: - supports-color - typescript - eslint-plugin-pnpm@1.3.0(eslint@9.39.0(jiti@2.4.0)): + eslint-plugin-pnpm@1.3.0(eslint@9.39.1(jiti@2.4.0)): dependencies: empathic: 2.0.0 - eslint: 9.39.0(jiti@2.4.0) + eslint: 9.39.1(jiti@2.4.0) jsonc-eslint-parser: 2.4.1 pathe: 2.0.3 pnpm-workspace-yaml: 1.3.0 tinyglobby: 0.2.15 yaml-eslint-parser: 1.3.0 - eslint-plugin-regexp@2.10.0(eslint@9.39.0(jiti@2.4.0)): + eslint-plugin-regexp@2.10.0(eslint@9.39.1(jiti@2.4.0)): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.4.0)) '@eslint-community/regexpp': 4.12.2 comment-parser: 1.4.1 - eslint: 9.39.0(jiti@2.4.0) + eslint: 9.39.1(jiti@2.4.0) jsdoc-type-pratt-parser: 4.8.0 refa: 0.12.1 regexp-ast-analysis: 0.7.1 scslre: 0.3.0 - eslint-plugin-toml@0.12.0(eslint@9.39.0(jiti@2.4.0)): + eslint-plugin-toml@0.12.0(eslint@9.39.1(jiti@2.4.0)): dependencies: debug: 4.4.3 - eslint: 9.39.0(jiti@2.4.0) - eslint-compat-utils: 0.6.5(eslint@9.39.0(jiti@2.4.0)) + eslint: 9.39.1(jiti@2.4.0) + eslint-compat-utils: 0.6.5(eslint@9.39.1(jiti@2.4.0)) lodash: 4.17.21 toml-eslint-parser: 0.10.0 transitivePeerDependencies: - supports-color - eslint-plugin-unicorn@62.0.0(eslint@9.39.0(jiti@2.4.0)): + eslint-plugin-unicorn@62.0.0(eslint@9.39.1(jiti@2.4.0)): dependencies: '@babel/helper-validator-identifier': 7.28.5 - '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.4.0)) '@eslint/plugin-kit': 0.4.1 change-case: 5.4.4 ci-info: 4.3.1 clean-regexp: 1.0.0 core-js-compat: 3.46.0 - eslint: 9.39.0(jiti@2.4.0) + eslint: 9.39.1(jiti@2.4.0) esquery: 1.6.0 find-up-simple: 1.0.1 globals: 16.4.0 @@ -6177,42 +6177,42 @@ snapshots: semver: 7.7.3 strip-indent: 4.1.1 - eslint-plugin-unused-imports@4.3.0(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.0(jiti@2.4.0)): + eslint-plugin-unused-imports@4.3.0(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0)): dependencies: - eslint: 9.39.0(jiti@2.4.0) + eslint: 9.39.1(jiti@2.4.0) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-vue@10.5.1(@stylistic/eslint-plugin@5.5.0(eslint@9.39.0(jiti@2.4.0)))(@typescript-eslint/parser@8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.0(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.39.0(jiti@2.4.0))): + eslint-plugin-vue@10.5.1(@stylistic/eslint-plugin@5.5.0(eslint@9.39.1(jiti@2.4.0)))(@typescript-eslint/parser@8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.39.1(jiti@2.4.0))): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.0(jiti@2.4.0)) - eslint: 9.39.0(jiti@2.4.0) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.4.0)) + eslint: 9.39.1(jiti@2.4.0) natural-compare: 1.4.0 nth-check: 2.1.1 postcss-selector-parser: 6.1.2 semver: 7.7.3 - vue-eslint-parser: 10.2.0(eslint@9.39.0(jiti@2.4.0)) + vue-eslint-parser: 10.2.0(eslint@9.39.1(jiti@2.4.0)) xml-name-validator: 4.0.0 optionalDependencies: - '@stylistic/eslint-plugin': 5.5.0(eslint@9.39.0(jiti@2.4.0)) - '@typescript-eslint/parser': 8.46.2(eslint@9.39.0(jiti@2.4.0))(typescript@5.9.3) + '@stylistic/eslint-plugin': 5.5.0(eslint@9.39.1(jiti@2.4.0)) + '@typescript-eslint/parser': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-yml@1.19.0(eslint@9.39.0(jiti@2.4.0)): + eslint-plugin-yml@1.19.0(eslint@9.39.1(jiti@2.4.0)): dependencies: debug: 4.4.3 diff-sequences: 27.5.1 escape-string-regexp: 4.0.0 - eslint: 9.39.0(jiti@2.4.0) - eslint-compat-utils: 0.6.5(eslint@9.39.0(jiti@2.4.0)) + eslint: 9.39.1(jiti@2.4.0) + eslint-compat-utils: 0.6.5(eslint@9.39.1(jiti@2.4.0)) natural-compare: 1.4.0 yaml-eslint-parser: 1.3.0 transitivePeerDependencies: - supports-color - eslint-processor-vue-blocks@2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.0(jiti@2.4.0)): + eslint-processor-vue-blocks@2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0)): dependencies: '@vue/compiler-sfc': 3.5.12 - eslint: 9.39.0(jiti@2.4.0) + eslint: 9.39.1(jiti@2.4.0) eslint-scope@8.4.0: dependencies: @@ -6223,15 +6223,15 @@ snapshots: eslint-visitor-keys@4.2.1: {} - eslint@9.39.0(jiti@2.4.0): + eslint@9.39.1(jiti@2.4.0): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.0(jiti@2.4.0)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.4.0)) '@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.1 - '@eslint/js': 9.39.0 + '@eslint/js': 9.39.1 '@eslint/plugin-kit': 0.4.1 '@humanfs/node': 0.16.7 '@humanwhocodes/module-importer': 1.0.1 @@ -8184,10 +8184,10 @@ snapshots: - tsx - yaml - vue-eslint-parser@10.2.0(eslint@9.39.0(jiti@2.4.0)): + vue-eslint-parser@10.2.0(eslint@9.39.1(jiti@2.4.0)): dependencies: debug: 4.4.3 - eslint: 9.39.0(jiti@2.4.0) + eslint: 9.39.1(jiti@2.4.0) eslint-scope: 8.4.0 eslint-visitor-keys: 4.2.1 espree: 10.4.0 From 90bb392b87ae424cc222706ebfbb57986eda265a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 4 Nov 2025 16:50:21 +0000 Subject: [PATCH 102/133] chore(deps): update dependency @graphql-tools/utils to v10.10.1 (#1290) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 67 +++++++++++++++++++++++++------------------------- 1 file changed, 33 insertions(+), 34 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 48d03c1f..dfab9053 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -19,7 +19,7 @@ importers: version: 6.1.0(graphql@16.12.0) '@graphql-tools/utils': specifier: ^10.0.0 - version: 10.10.0(graphql@16.12.0) + version: 10.10.1(graphql@16.12.0) graphlib: specifier: ^2.1.8 version: 2.1.8 @@ -792,8 +792,8 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/utils@10.10.0': - resolution: {integrity: sha512-OOeab5Y9qeKq0zfoJCSScMcDfGcIxp05+LW2xYVCS2l3su+K3lYcg5+cAAx9n0SFxpJl8zF5denq2QDsfM7NnQ==} + '@graphql-tools/utils@10.10.1': + resolution: {integrity: sha512-9iOZ7x6tuIpp/dviNmTCSH1cDDNLIcrj6T3WKH9lU4nRWx5Pr0e7Faj7T/HmP2Njrjik63dJWuDVRxfQSTOc4g==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -4401,7 +4401,7 @@ snapshots: '@graphql-tools/json-file-loader': 8.0.3(graphql@16.12.0) '@graphql-tools/load': 8.1.0(graphql@16.12.0) '@graphql-tools/url-loader': 8.0.15(@types/node@24.10.0)(graphql@16.12.0) - '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.1(graphql@16.12.0) '@inquirer/prompts': 7.8.4(@types/node@24.10.0) '@whatwg-node/fetch': 0.10.1 chalk: 4.1.2 @@ -4444,7 +4444,7 @@ snapshots: '@graphql-codegen/typescript-operations': 5.0.0(graphql@16.12.0) '@graphql-codegen/visitor-plugin-common': 6.1.0(graphql@16.12.0) '@graphql-tools/documents': 1.0.1(graphql@16.12.0) - '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.1(graphql@16.12.0) '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0) graphql: 16.12.0 tslib: 2.6.3 @@ -4455,7 +4455,7 @@ snapshots: dependencies: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) '@graphql-tools/schema': 10.0.23(graphql@16.12.0) - '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.1(graphql@16.12.0) graphql: 16.12.0 tslib: 2.6.3 @@ -4463,7 +4463,7 @@ snapshots: dependencies: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) '@graphql-codegen/visitor-plugin-common': 6.0.0(graphql@16.12.0) - '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.1(graphql@16.12.0) auto-bind: 4.0.0 graphql: 16.12.0 tslib: 2.6.3 @@ -4472,7 +4472,7 @@ snapshots: '@graphql-codegen/plugin-helpers@6.0.0(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.1(graphql@16.12.0) change-case-all: 1.0.15 common-tags: 1.8.2 graphql: 16.12.0 @@ -4483,7 +4483,7 @@ snapshots: '@graphql-codegen/schema-ast@5.0.0(graphql@16.12.0)': dependencies: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) - '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.1(graphql@16.12.0) graphql: 16.12.0 tslib: 2.6.3 @@ -4525,7 +4525,7 @@ snapshots: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) '@graphql-tools/optimize': 2.0.0(graphql@16.12.0) '@graphql-tools/relay-operation-optimizer': 7.0.21(graphql@16.12.0) - '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.1(graphql@16.12.0) auto-bind: 4.0.0 change-case-all: 1.0.15 dependency-graph: 1.0.0 @@ -4541,7 +4541,7 @@ snapshots: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) '@graphql-tools/optimize': 2.0.0(graphql@16.12.0) '@graphql-tools/relay-operation-optimizer': 7.0.21(graphql@16.12.0) - '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.1(graphql@16.12.0) auto-bind: 4.0.0 change-case-all: 1.0.15 dependency-graph: 1.0.0 @@ -4555,7 +4555,7 @@ snapshots: '@graphql-tools/apollo-engine-loader@8.0.4(graphql@16.12.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.1(graphql@16.12.0) '@whatwg-node/fetch': 0.10.1 graphql: 16.12.0 tslib: 2.8.1 @@ -4564,7 +4564,7 @@ snapshots: '@graphql-tools/batch-execute@9.0.6(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.1(graphql@16.12.0) dataloader: 2.2.2 graphql: 16.12.0 tslib: 2.8.1 @@ -4573,7 +4573,7 @@ snapshots: '@graphql-tools/code-file-loader@8.1.5(graphql@16.12.0)': dependencies: '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.12.0) - '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.1(graphql@16.12.0) globby: 11.1.0 graphql: 16.12.0 tslib: 2.8.1 @@ -4586,7 +4586,7 @@ snapshots: '@graphql-tools/batch-execute': 9.0.6(graphql@16.12.0) '@graphql-tools/executor': 1.3.3(graphql@16.12.0) '@graphql-tools/schema': 10.0.23(graphql@16.12.0) - '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.1(graphql@16.12.0) '@repeaterjs/repeater': 3.0.6 dataloader: 2.2.2 dset: 3.1.4 @@ -4601,7 +4601,7 @@ snapshots: '@graphql-tools/executor-graphql-ws@1.3.2(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.1(graphql@16.12.0) '@types/ws': 8.5.13 graphql: 16.12.0 graphql-ws: 5.16.0(graphql@16.12.0) @@ -4614,7 +4614,7 @@ snapshots: '@graphql-tools/executor-http@1.1.9(@types/node@24.10.0)(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.1(graphql@16.12.0) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/fetch': 0.10.1 extract-files: 11.0.0 @@ -4627,7 +4627,7 @@ snapshots: '@graphql-tools/executor-legacy-ws@1.1.2(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.1(graphql@16.12.0) '@types/ws': 8.5.13 graphql: 16.12.0 isomorphic-ws: 5.0.0(ws@8.18.0) @@ -4639,7 +4639,7 @@ snapshots: '@graphql-tools/executor@1.3.3(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.1(graphql@16.12.0) '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0) '@repeaterjs/repeater': 3.0.6 graphql: 16.12.0 @@ -4649,7 +4649,7 @@ snapshots: '@graphql-tools/git-loader@8.0.9(graphql@16.12.0)': dependencies: '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.12.0) - '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.1(graphql@16.12.0) graphql: 16.12.0 is-glob: 4.0.3 micromatch: 4.0.8 @@ -4663,7 +4663,7 @@ snapshots: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/executor-http': 1.1.9(@types/node@24.10.0)(graphql@16.12.0) '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.12.0) - '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.1(graphql@16.12.0) '@whatwg-node/fetch': 0.10.1 graphql: 16.12.0 tslib: 2.8.1 @@ -4676,7 +4676,7 @@ snapshots: '@graphql-tools/graphql-file-loader@8.0.3(graphql@16.12.0)': dependencies: '@graphql-tools/import': 7.0.3(graphql@16.12.0) - '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.1(graphql@16.12.0) globby: 11.1.0 graphql: 16.12.0 tslib: 2.8.1 @@ -4689,7 +4689,7 @@ snapshots: '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.27.4) '@babel/traverse': 7.27.4 '@babel/types': 7.28.4 - '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.1(graphql@16.12.0) graphql: 16.12.0 tslib: 2.8.1 transitivePeerDependencies: @@ -4697,14 +4697,14 @@ snapshots: '@graphql-tools/import@7.0.3(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.1(graphql@16.12.0) graphql: 16.12.0 resolve-from: 5.0.0 tslib: 2.8.1 '@graphql-tools/json-file-loader@8.0.3(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.1(graphql@16.12.0) globby: 11.1.0 graphql: 16.12.0 tslib: 2.8.1 @@ -4713,14 +4713,14 @@ snapshots: '@graphql-tools/load@8.1.0(graphql@16.12.0)': dependencies: '@graphql-tools/schema': 10.0.23(graphql@16.12.0) - '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.1(graphql@16.12.0) graphql: 16.12.0 p-limit: 3.1.0 tslib: 2.8.1 '@graphql-tools/merge@9.0.24(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.1(graphql@16.12.0) graphql: 16.12.0 tslib: 2.8.1 @@ -4732,7 +4732,7 @@ snapshots: '@graphql-tools/relay-operation-optimizer@7.0.21(graphql@16.12.0)': dependencies: '@ardatan/relay-compiler': 12.0.3(graphql@16.12.0) - '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.1(graphql@16.12.0) graphql: 16.12.0 tslib: 2.6.3 transitivePeerDependencies: @@ -4741,7 +4741,7 @@ snapshots: '@graphql-tools/schema@10.0.23(graphql@16.12.0)': dependencies: '@graphql-tools/merge': 9.0.24(graphql@16.12.0) - '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.1(graphql@16.12.0) graphql: 16.12.0 tslib: 2.8.1 @@ -4751,7 +4751,7 @@ snapshots: '@graphql-tools/executor-graphql-ws': 1.3.2(graphql@16.12.0) '@graphql-tools/executor-http': 1.1.9(@types/node@24.10.0)(graphql@16.12.0) '@graphql-tools/executor-legacy-ws': 1.1.2(graphql@16.12.0) - '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.1(graphql@16.12.0) '@graphql-tools/wrap': 10.0.16(graphql@16.12.0) '@types/ws': 8.5.13 '@whatwg-node/fetch': 0.10.1 @@ -4766,12 +4766,11 @@ snapshots: - encoding - utf-8-validate - '@graphql-tools/utils@10.10.0(graphql@16.12.0)': + '@graphql-tools/utils@10.10.1(graphql@16.12.0)': dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0) '@whatwg-node/promise-helpers': 1.3.2 cross-inspect: 1.0.1 - dset: 3.1.4 graphql: 16.12.0 tslib: 2.8.1 @@ -4779,7 +4778,7 @@ snapshots: dependencies: '@graphql-tools/delegate': 10.1.2(graphql@16.12.0) '@graphql-tools/schema': 10.0.23(graphql@16.12.0) - '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.1(graphql@16.12.0) graphql: 16.12.0 tslib: 2.8.1 value-or-promise: 1.0.12 @@ -6492,7 +6491,7 @@ snapshots: '@graphql-tools/load': 8.1.0(graphql@16.12.0) '@graphql-tools/merge': 9.0.24(graphql@16.12.0) '@graphql-tools/url-loader': 8.0.15(@types/node@24.10.0)(graphql@16.12.0) - '@graphql-tools/utils': 10.10.0(graphql@16.12.0) + '@graphql-tools/utils': 10.10.1(graphql@16.12.0) cosmiconfig: 8.3.6(typescript@5.9.3) graphql: 16.12.0 jiti: 2.4.0 From 967cd8ba0a97df362ac82ff18a1a881a91f0027e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 4 Nov 2025 16:50:51 +0000 Subject: [PATCH 103/133] chore(deps): update dependency vitest to v4.0.7 (#1291) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 310 ++++++++++++++++++++++++------------------------- 1 file changed, 155 insertions(+), 155 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index dfab9053..2fbaf9cf 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1)) + version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.7(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.1 version: 6.0.1(@types/node@24.10.0)(graphql@16.12.0)(typescript@5.9.3) @@ -71,7 +71,7 @@ importers: version: 1.1.0(typescript@5.9.3) vitest: specifier: ^4.0.0 - version: 4.0.6(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1) + version: 4.0.7(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.1 version: 1.7.1 @@ -364,158 +364,158 @@ packages: resolution: {integrity: sha512-Q9hjxWI5xBM+qW2enxfe8wDKdFWMfd0Z29k5ZJnuBqD/CasY5Zryj09aCA6owbGATWz+39p5uIdaHXpopOcG8g==} engines: {node: '>=10'} - '@esbuild/aix-ppc64@0.25.11': - resolution: {integrity: sha512-Xt1dOL13m8u0WE8iplx9Ibbm+hFAO0GsU2P34UNoDGvZYkY8ifSiy6Zuc1lYxfG7svWE2fzqCUmFp5HCn51gJg==} + '@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.25.11': - resolution: {integrity: sha512-9slpyFBc4FPPz48+f6jyiXOx/Y4v34TUeDDXJpZqAWQn/08lKGeD8aDp9TMn9jDz2CiEuHwfhRmGBvpnd/PWIQ==} + '@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.25.11': - resolution: {integrity: sha512-uoa7dU+Dt3HYsethkJ1k6Z9YdcHjTrSb5NUy66ZfZaSV8hEYGD5ZHbEMXnqLFlbBflLsl89Zke7CAdDJ4JI+Gg==} + '@esbuild/android-arm@0.25.12': + resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==} engines: {node: '>=18'} cpu: [arm] os: [android] - '@esbuild/android-x64@0.25.11': - resolution: {integrity: sha512-Sgiab4xBjPU1QoPEIqS3Xx+R2lezu0LKIEcYe6pftr56PqPygbB7+szVnzoShbx64MUupqoE0KyRlN7gezbl8g==} + '@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.25.11': - resolution: {integrity: sha512-VekY0PBCukppoQrycFxUqkCojnTQhdec0vevUL/EDOCnXd9LKWqD/bHwMPzigIJXPhC59Vd1WFIL57SKs2mg4w==} + '@esbuild/darwin-arm64@0.25.12': + resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==} engines: {node: '>=18'} cpu: [arm64] os: [darwin] - '@esbuild/darwin-x64@0.25.11': - resolution: {integrity: sha512-+hfp3yfBalNEpTGp9loYgbknjR695HkqtY3d3/JjSRUyPg/xd6q+mQqIb5qdywnDxRZykIHs3axEqU6l1+oWEQ==} + '@esbuild/darwin-x64@0.25.12': + resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==} engines: {node: '>=18'} cpu: [x64] os: [darwin] - '@esbuild/freebsd-arm64@0.25.11': - resolution: {integrity: sha512-CmKjrnayyTJF2eVuO//uSjl/K3KsMIeYeyN7FyDBjsR3lnSJHaXlVoAK8DZa7lXWChbuOk7NjAc7ygAwrnPBhA==} + '@esbuild/freebsd-arm64@0.25.12': + resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==} engines: {node: '>=18'} cpu: [arm64] os: [freebsd] - '@esbuild/freebsd-x64@0.25.11': - resolution: {integrity: sha512-Dyq+5oscTJvMaYPvW3x3FLpi2+gSZTCE/1ffdwuM6G1ARang/mb3jvjxs0mw6n3Lsw84ocfo9CrNMqc5lTfGOw==} + '@esbuild/freebsd-x64@0.25.12': + resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==} engines: {node: '>=18'} cpu: [x64] os: [freebsd] - '@esbuild/linux-arm64@0.25.11': - resolution: {integrity: sha512-Qr8AzcplUhGvdyUF08A1kHU3Vr2O88xxP0Tm8GcdVOUm25XYcMPp2YqSVHbLuXzYQMf9Bh/iKx7YPqECs6ffLA==} + '@esbuild/linux-arm64@0.25.12': + resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==} engines: {node: '>=18'} cpu: [arm64] os: [linux] - '@esbuild/linux-arm@0.25.11': - resolution: {integrity: sha512-TBMv6B4kCfrGJ8cUPo7vd6NECZH/8hPpBHHlYI3qzoYFvWu2AdTvZNuU/7hsbKWqu/COU7NIK12dHAAqBLLXgw==} + '@esbuild/linux-arm@0.25.12': + resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==} engines: {node: '>=18'} cpu: [arm] os: [linux] - '@esbuild/linux-ia32@0.25.11': - resolution: {integrity: sha512-TmnJg8BMGPehs5JKrCLqyWTVAvielc615jbkOirATQvWWB1NMXY77oLMzsUjRLa0+ngecEmDGqt5jiDC6bfvOw==} + '@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.25.11': - resolution: {integrity: sha512-DIGXL2+gvDaXlaq8xruNXUJdT5tF+SBbJQKbWy/0J7OhU8gOHOzKmGIlfTTl6nHaCOoipxQbuJi7O++ldrxgMw==} + '@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.25.11': - resolution: {integrity: sha512-Osx1nALUJu4pU43o9OyjSCXokFkFbyzjXb6VhGIJZQ5JZi8ylCQ9/LFagolPsHtgw6himDSyb5ETSfmp4rpiKQ==} + '@esbuild/linux-mips64el@0.25.12': + resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==} engines: {node: '>=18'} cpu: [mips64el] os: [linux] - '@esbuild/linux-ppc64@0.25.11': - resolution: {integrity: sha512-nbLFgsQQEsBa8XSgSTSlrnBSrpoWh7ioFDUmwo158gIm5NNP+17IYmNWzaIzWmgCxq56vfr34xGkOcZ7jX6CPw==} + '@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.25.11': - resolution: {integrity: sha512-HfyAmqZi9uBAbgKYP1yGuI7tSREXwIb438q0nqvlpxAOs3XnZ8RsisRfmVsgV486NdjD7Mw2UrFSw51lzUk1ww==} + '@esbuild/linux-riscv64@0.25.12': + resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==} engines: {node: '>=18'} cpu: [riscv64] os: [linux] - '@esbuild/linux-s390x@0.25.11': - resolution: {integrity: sha512-HjLqVgSSYnVXRisyfmzsH6mXqyvj0SA7pG5g+9W7ESgwA70AXYNpfKBqh1KbTxmQVaYxpzA/SvlB9oclGPbApw==} + '@esbuild/linux-s390x@0.25.12': + resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==} engines: {node: '>=18'} cpu: [s390x] os: [linux] - '@esbuild/linux-x64@0.25.11': - resolution: {integrity: sha512-HSFAT4+WYjIhrHxKBwGmOOSpphjYkcswF449j6EjsjbinTZbp8PJtjsVK1XFJStdzXdy/jaddAep2FGY+wyFAQ==} + '@esbuild/linux-x64@0.25.12': + resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==} engines: {node: '>=18'} cpu: [x64] os: [linux] - '@esbuild/netbsd-arm64@0.25.11': - resolution: {integrity: sha512-hr9Oxj1Fa4r04dNpWr3P8QKVVsjQhqrMSUzZzf+LZcYjZNqhA3IAfPQdEh1FLVUJSiu6sgAwp3OmwBfbFgG2Xg==} + '@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.25.11': - resolution: {integrity: sha512-u7tKA+qbzBydyj0vgpu+5h5AeudxOAGncb8N6C9Kh1N4n7wU1Xw1JDApsRjpShRpXRQlJLb9wY28ELpwdPcZ7A==} + '@esbuild/netbsd-x64@0.25.12': + resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==} engines: {node: '>=18'} cpu: [x64] os: [netbsd] - '@esbuild/openbsd-arm64@0.25.11': - resolution: {integrity: sha512-Qq6YHhayieor3DxFOoYM1q0q1uMFYb7cSpLD2qzDSvK1NAvqFi8Xgivv0cFC6J+hWVw2teCYltyy9/m/14ryHg==} + '@esbuild/openbsd-arm64@0.25.12': + resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==} engines: {node: '>=18'} cpu: [arm64] os: [openbsd] - '@esbuild/openbsd-x64@0.25.11': - resolution: {integrity: sha512-CN+7c++kkbrckTOz5hrehxWN7uIhFFlmS/hqziSFVWpAzpWrQoAG4chH+nN3Be+Kzv/uuo7zhX716x3Sn2Jduw==} + '@esbuild/openbsd-x64@0.25.12': + resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==} engines: {node: '>=18'} cpu: [x64] os: [openbsd] - '@esbuild/openharmony-arm64@0.25.11': - resolution: {integrity: sha512-rOREuNIQgaiR+9QuNkbkxubbp8MSO9rONmwP5nKncnWJ9v5jQ4JxFnLu4zDSRPf3x4u+2VN4pM4RdyIzDty/wQ==} + '@esbuild/openharmony-arm64@0.25.12': + resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==} engines: {node: '>=18'} cpu: [arm64] os: [openharmony] - '@esbuild/sunos-x64@0.25.11': - resolution: {integrity: sha512-nq2xdYaWxyg9DcIyXkZhcYulC6pQ2FuCgem3LI92IwMgIZ69KHeY8T4Y88pcwoLIjbed8n36CyKoYRDygNSGhA==} + '@esbuild/sunos-x64@0.25.12': + resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==} engines: {node: '>=18'} cpu: [x64] os: [sunos] - '@esbuild/win32-arm64@0.25.11': - resolution: {integrity: sha512-3XxECOWJq1qMZ3MN8srCJ/QfoLpL+VaxD/WfNRm1O3B4+AZ/BnLVgFbUV3eiRYDMXetciH16dwPbbHqwe1uU0Q==} + '@esbuild/win32-arm64@0.25.12': + resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==} engines: {node: '>=18'} cpu: [arm64] os: [win32] - '@esbuild/win32-ia32@0.25.11': - resolution: {integrity: sha512-3ukss6gb9XZ8TlRyJlgLn17ecsK4NSQTmdIXRASVsiS2sQ6zPPZklNJT5GR5tE/MUarymmy8kCEf5xPCNCqVOA==} + '@esbuild/win32-ia32@0.25.12': + resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==} engines: {node: '>=18'} cpu: [ia32] os: [win32] - '@esbuild/win32-x64@0.25.11': - resolution: {integrity: sha512-D7Hpz6A2L4hzsRpPaCYkQnGOotdUpDzSGRIv9I+1ITdHROSFUWW95ZPZWQmGka1Fg7W3zFJowyn9WGwMJ0+KPA==} + '@esbuild/win32-x64@0.25.12': + resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==} engines: {node: '>=18'} cpu: [x64] os: [win32] @@ -1455,11 +1455,11 @@ packages: vitest: optional: true - '@vitest/expect@4.0.6': - resolution: {integrity: sha512-5j8UUlBVhOjhj4lR2Nt9sEV8b4WtbcYh8vnfhTNA2Kn5+smtevzjNq+xlBuVhnFGXiyPPNzGrOVvmyHWkS5QGg==} + '@vitest/expect@4.0.7': + resolution: {integrity: sha512-jGRG6HghnJDjljdjYIoVzX17S6uCVCBRFnsgdLGJ6CaxfPh8kzUKe/2n533y4O/aeZ/sIr7q7GbuEbeGDsWv4Q==} - '@vitest/mocker@4.0.6': - resolution: {integrity: sha512-3COEIew5HqdzBFEYN9+u0dT3i/NCwppLnO1HkjGfAP1Vs3vti1Hxm/MvcbC4DAn3Szo1M7M3otiAaT83jvqIjA==} + '@vitest/mocker@4.0.7': + resolution: {integrity: sha512-OsDwLS7WnpuNslOV6bJkXVYVV/6RSc4eeVxV7h9wxQPNxnjRvTTrIikfwCbMyl8XJmW6oOccBj2Q07YwZtQcCw==} peerDependencies: msw: ^2.4.9 vite: ^6.0.0 || ^7.0.0-0 @@ -1469,20 +1469,20 @@ packages: vite: optional: true - '@vitest/pretty-format@4.0.6': - resolution: {integrity: sha512-4vptgNkLIA1W1Nn5X4x8rLJBzPiJwnPc+awKtfBE5hNMVsoAl/JCCPPzNrbf+L4NKgklsis5Yp2gYa+XAS442g==} + '@vitest/pretty-format@4.0.7': + resolution: {integrity: sha512-YY//yxqTmk29+/pK+Wi1UB4DUH3lSVgIm+M10rAJ74pOSMgT7rydMSc+vFuq9LjZLhFvVEXir8EcqMke3SVM6Q==} - '@vitest/runner@4.0.6': - resolution: {integrity: sha512-trPk5qpd7Jj+AiLZbV/e+KiiaGXZ8ECsRxtnPnCrJr9OW2mLB72Cb824IXgxVz/mVU3Aj4VebY+tDTPn++j1Og==} + '@vitest/runner@4.0.7': + resolution: {integrity: sha512-orU1lsu4PxLEcDWfjVCNGIedOSF/YtZ+XMrd1PZb90E68khWCNzD8y1dtxtgd0hyBIQk8XggteKN/38VQLvzuw==} - '@vitest/snapshot@4.0.6': - resolution: {integrity: sha512-PaYLt7n2YzuvxhulDDu6c9EosiRuIE+FI2ECKs6yvHyhoga+2TBWI8dwBjs+IeuQaMtZTfioa9tj3uZb7nev1g==} + '@vitest/snapshot@4.0.7': + resolution: {integrity: sha512-xJL+Nkw0OjaUXXQf13B8iKK5pI9QVtN9uOtzNHYuG/o/B7fIEg0DQ+xOe0/RcqwDEI15rud1k7y5xznBKGUXAA==} - '@vitest/spy@4.0.6': - resolution: {integrity: sha512-g9jTUYPV1LtRPRCQfhbMintW7BTQz1n6WXYQYRQ25qkyffA4bjVXjkROokZnv7t07OqfaFKw1lPzqKGk1hmNuQ==} + '@vitest/spy@4.0.7': + resolution: {integrity: sha512-FW4X8hzIEn4z+HublB4hBF/FhCVaXfIHm8sUfvlznrcy1MQG7VooBgZPMtVCGZtHi0yl3KESaXTqsKh16d8cFg==} - '@vitest/utils@4.0.6': - resolution: {integrity: sha512-bG43VS3iYKrMIZXBo+y8Pti0O7uNju3KvNn6DrQWhQQKcLavMB+0NZfO1/QBAEbq0MaQ3QjNsnnXlGQvsh0Z6A==} + '@vitest/utils@4.0.7': + resolution: {integrity: sha512-HNrg9CM/Z4ZWB6RuExhuC6FPmLipiShKVMnT9JlQvfhwR47JatWLChA6mtZqVHqypE6p/z6ofcjbyWpM7YLxPQ==} '@vue/compiler-core@3.5.12': resolution: {integrity: sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw==} @@ -1929,8 +1929,8 @@ packages: es-module-lexer@1.7.0: resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} - esbuild@0.25.11: - resolution: {integrity: sha512-KohQwyzrKTQmhXDW1PjCv3Tyspn9n5GcY2RTDqeORIdIJY8yKIF7sTSopFmn/wpMPW4rdPXI0UE5LJLuq3bx0Q==} + esbuild@0.25.12: + resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==} engines: {node: '>=18'} hasBin: true @@ -3738,18 +3738,18 @@ packages: yaml: optional: true - vitest@4.0.6: - resolution: {integrity: sha512-gR7INfiVRwnEOkCk47faros/9McCZMp5LM+OMNWGLaDBSvJxIzwjgNFufkuePBNaesGRnLmNfW+ddbUJRZn0nQ==} + vitest@4.0.7: + resolution: {integrity: sha512-xQroKAadK503CrmbzCISvQUjeuvEZzv6U0wlnlVFOi5i3gnzfH4onyQ29f3lzpe0FresAiTAd3aqK0Bi/jLI8w==} engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' '@types/debug': ^4.1.12 '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0 - '@vitest/browser-playwright': 4.0.6 - '@vitest/browser-preview': 4.0.6 - '@vitest/browser-webdriverio': 4.0.6 - '@vitest/ui': 4.0.6 + '@vitest/browser-playwright': 4.0.7 + '@vitest/browser-preview': 4.0.7 + '@vitest/browser-webdriverio': 4.0.7 + '@vitest/ui': 4.0.7 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -3896,7 +3896,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.7(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -3905,7 +3905,7 @@ snapshots: '@stylistic/eslint-plugin': 5.5.0(eslint@9.39.1(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/parser': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/eslint-plugin': 1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.7(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.2.0 cac: 6.7.14 eslint: 9.39.1(jiti@2.4.0) @@ -4225,82 +4225,82 @@ snapshots: '@es-joy/resolve.exports@1.2.0': {} - '@esbuild/aix-ppc64@0.25.11': + '@esbuild/aix-ppc64@0.25.12': optional: true - '@esbuild/android-arm64@0.25.11': + '@esbuild/android-arm64@0.25.12': optional: true - '@esbuild/android-arm@0.25.11': + '@esbuild/android-arm@0.25.12': optional: true - '@esbuild/android-x64@0.25.11': + '@esbuild/android-x64@0.25.12': optional: true - '@esbuild/darwin-arm64@0.25.11': + '@esbuild/darwin-arm64@0.25.12': optional: true - '@esbuild/darwin-x64@0.25.11': + '@esbuild/darwin-x64@0.25.12': optional: true - '@esbuild/freebsd-arm64@0.25.11': + '@esbuild/freebsd-arm64@0.25.12': optional: true - '@esbuild/freebsd-x64@0.25.11': + '@esbuild/freebsd-x64@0.25.12': optional: true - '@esbuild/linux-arm64@0.25.11': + '@esbuild/linux-arm64@0.25.12': optional: true - '@esbuild/linux-arm@0.25.11': + '@esbuild/linux-arm@0.25.12': optional: true - '@esbuild/linux-ia32@0.25.11': + '@esbuild/linux-ia32@0.25.12': optional: true - '@esbuild/linux-loong64@0.25.11': + '@esbuild/linux-loong64@0.25.12': optional: true - '@esbuild/linux-mips64el@0.25.11': + '@esbuild/linux-mips64el@0.25.12': optional: true - '@esbuild/linux-ppc64@0.25.11': + '@esbuild/linux-ppc64@0.25.12': optional: true - '@esbuild/linux-riscv64@0.25.11': + '@esbuild/linux-riscv64@0.25.12': optional: true - '@esbuild/linux-s390x@0.25.11': + '@esbuild/linux-s390x@0.25.12': optional: true - '@esbuild/linux-x64@0.25.11': + '@esbuild/linux-x64@0.25.12': optional: true - '@esbuild/netbsd-arm64@0.25.11': + '@esbuild/netbsd-arm64@0.25.12': optional: true - '@esbuild/netbsd-x64@0.25.11': + '@esbuild/netbsd-x64@0.25.12': optional: true - '@esbuild/openbsd-arm64@0.25.11': + '@esbuild/openbsd-arm64@0.25.12': optional: true - '@esbuild/openbsd-x64@0.25.11': + '@esbuild/openbsd-x64@0.25.12': optional: true - '@esbuild/openharmony-arm64@0.25.11': + '@esbuild/openharmony-arm64@0.25.12': optional: true - '@esbuild/sunos-x64@0.25.11': + '@esbuild/sunos-x64@0.25.12': optional: true - '@esbuild/win32-arm64@0.25.11': + '@esbuild/win32-arm64@0.25.12': optional: true - '@esbuild/win32-ia32@0.25.11': + '@esbuild/win32-ia32@0.25.12': optional: true - '@esbuild/win32-x64@0.25.11': + '@esbuild/win32-x64@0.25.12': optional: true '@eslint-community/eslint-plugin-eslint-comments@4.5.0(eslint@9.39.1(jiti@2.4.0))': @@ -5483,54 +5483,54 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.7(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.46.2 '@typescript-eslint/utils': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) eslint: 9.39.1(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - vitest: 4.0.6(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1) + vitest: 4.0.7(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color - '@vitest/expect@4.0.6': + '@vitest/expect@4.0.7': dependencies: '@standard-schema/spec': 1.0.0 '@types/chai': 5.2.3 - '@vitest/spy': 4.0.6 - '@vitest/utils': 4.0.6 + '@vitest/spy': 4.0.7 + '@vitest/utils': 4.0.7 chai: 6.2.0 tinyrainbow: 3.0.3 - '@vitest/mocker@4.0.6(vite@7.1.12(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@4.0.7(vite@7.1.12(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1))': dependencies: - '@vitest/spy': 4.0.6 + '@vitest/spy': 4.0.7 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: vite: 7.1.12(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1) - '@vitest/pretty-format@4.0.6': + '@vitest/pretty-format@4.0.7': dependencies: tinyrainbow: 3.0.3 - '@vitest/runner@4.0.6': + '@vitest/runner@4.0.7': dependencies: - '@vitest/utils': 4.0.6 + '@vitest/utils': 4.0.7 pathe: 2.0.3 - '@vitest/snapshot@4.0.6': + '@vitest/snapshot@4.0.7': dependencies: - '@vitest/pretty-format': 4.0.6 + '@vitest/pretty-format': 4.0.7 magic-string: 0.30.21 pathe: 2.0.3 - '@vitest/spy@4.0.6': {} + '@vitest/spy@4.0.7': {} - '@vitest/utils@4.0.6': + '@vitest/utils@4.0.7': dependencies: - '@vitest/pretty-format': 4.0.6 + '@vitest/pretty-format': 4.0.7 tinyrainbow: 3.0.3 '@vue/compiler-core@3.5.12': @@ -5969,34 +5969,34 @@ snapshots: es-module-lexer@1.7.0: {} - esbuild@0.25.11: + esbuild@0.25.12: optionalDependencies: - '@esbuild/aix-ppc64': 0.25.11 - '@esbuild/android-arm': 0.25.11 - '@esbuild/android-arm64': 0.25.11 - '@esbuild/android-x64': 0.25.11 - '@esbuild/darwin-arm64': 0.25.11 - '@esbuild/darwin-x64': 0.25.11 - '@esbuild/freebsd-arm64': 0.25.11 - '@esbuild/freebsd-x64': 0.25.11 - '@esbuild/linux-arm': 0.25.11 - '@esbuild/linux-arm64': 0.25.11 - '@esbuild/linux-ia32': 0.25.11 - '@esbuild/linux-loong64': 0.25.11 - '@esbuild/linux-mips64el': 0.25.11 - '@esbuild/linux-ppc64': 0.25.11 - '@esbuild/linux-riscv64': 0.25.11 - '@esbuild/linux-s390x': 0.25.11 - '@esbuild/linux-x64': 0.25.11 - '@esbuild/netbsd-arm64': 0.25.11 - '@esbuild/netbsd-x64': 0.25.11 - '@esbuild/openbsd-arm64': 0.25.11 - '@esbuild/openbsd-x64': 0.25.11 - '@esbuild/openharmony-arm64': 0.25.11 - '@esbuild/sunos-x64': 0.25.11 - '@esbuild/win32-arm64': 0.25.11 - '@esbuild/win32-ia32': 0.25.11 - '@esbuild/win32-x64': 0.25.11 + '@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.2.0: {} @@ -8132,7 +8132,7 @@ snapshots: vite@7.1.12(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1): dependencies: - esbuild: 0.25.11 + esbuild: 0.25.12 fdir: 6.5.0(picomatch@4.0.3) picomatch: 4.0.3 postcss: 8.5.6 @@ -8144,15 +8144,15 @@ snapshots: jiti: 2.4.0 yaml: 2.8.1 - vitest@4.0.6(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1): + vitest@4.0.7(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1): dependencies: - '@vitest/expect': 4.0.6 - '@vitest/mocker': 4.0.6(vite@7.1.12(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1)) - '@vitest/pretty-format': 4.0.6 - '@vitest/runner': 4.0.6 - '@vitest/snapshot': 4.0.6 - '@vitest/spy': 4.0.6 - '@vitest/utils': 4.0.6 + '@vitest/expect': 4.0.7 + '@vitest/mocker': 4.0.7(vite@7.1.12(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/pretty-format': 4.0.7 + '@vitest/runner': 4.0.7 + '@vitest/snapshot': 4.0.7 + '@vitest/spy': 4.0.7 + '@vitest/utils': 4.0.7 debug: 4.4.3 es-module-lexer: 1.7.0 expect-type: 1.2.2 From 592b17744326200a26eb5adaa09d0b5f2ba56eb6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 7 Nov 2025 14:59:41 +0000 Subject: [PATCH 104/133] chore(deps): update dependency vitest to v4.0.8 (#1292) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 113 +++++++++++++++++++++++++------------------------ 1 file changed, 57 insertions(+), 56 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2fbaf9cf..c97d523b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.7(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1)) + version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.8(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.1 version: 6.0.1(@types/node@24.10.0)(graphql@16.12.0)(typescript@5.9.3) @@ -71,7 +71,7 @@ importers: version: 1.1.0(typescript@5.9.3) vitest: specifier: ^4.0.0 - version: 4.0.7(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1) + version: 4.0.8(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.1 version: 1.7.1 @@ -1455,11 +1455,11 @@ packages: vitest: optional: true - '@vitest/expect@4.0.7': - resolution: {integrity: sha512-jGRG6HghnJDjljdjYIoVzX17S6uCVCBRFnsgdLGJ6CaxfPh8kzUKe/2n533y4O/aeZ/sIr7q7GbuEbeGDsWv4Q==} + '@vitest/expect@4.0.8': + resolution: {integrity: sha512-Rv0eabdP/xjAHQGr8cjBm+NnLHNoL268lMDK85w2aAGLFoVKLd8QGnVon5lLtkXQCoYaNL0wg04EGnyKkkKhPA==} - '@vitest/mocker@4.0.7': - resolution: {integrity: sha512-OsDwLS7WnpuNslOV6bJkXVYVV/6RSc4eeVxV7h9wxQPNxnjRvTTrIikfwCbMyl8XJmW6oOccBj2Q07YwZtQcCw==} + '@vitest/mocker@4.0.8': + resolution: {integrity: sha512-9FRM3MZCedXH3+pIh+ME5Up2NBBHDq0wqwhOKkN4VnvCiKbVxddqH9mSGPZeawjd12pCOGnl+lo/ZGHt0/dQSg==} peerDependencies: msw: ^2.4.9 vite: ^6.0.0 || ^7.0.0-0 @@ -1469,20 +1469,20 @@ packages: vite: optional: true - '@vitest/pretty-format@4.0.7': - resolution: {integrity: sha512-YY//yxqTmk29+/pK+Wi1UB4DUH3lSVgIm+M10rAJ74pOSMgT7rydMSc+vFuq9LjZLhFvVEXir8EcqMke3SVM6Q==} + '@vitest/pretty-format@4.0.8': + resolution: {integrity: sha512-qRrjdRkINi9DaZHAimV+8ia9Gq6LeGz2CgIEmMLz3sBDYV53EsnLZbJMR1q84z1HZCMsf7s0orDgZn7ScXsZKg==} - '@vitest/runner@4.0.7': - resolution: {integrity: sha512-orU1lsu4PxLEcDWfjVCNGIedOSF/YtZ+XMrd1PZb90E68khWCNzD8y1dtxtgd0hyBIQk8XggteKN/38VQLvzuw==} + '@vitest/runner@4.0.8': + resolution: {integrity: sha512-mdY8Sf1gsM8hKJUQfiPT3pn1n8RF4QBcJYFslgWh41JTfrK1cbqY8whpGCFzBl45LN028g0njLCYm0d7XxSaQQ==} - '@vitest/snapshot@4.0.7': - resolution: {integrity: sha512-xJL+Nkw0OjaUXXQf13B8iKK5pI9QVtN9uOtzNHYuG/o/B7fIEg0DQ+xOe0/RcqwDEI15rud1k7y5xznBKGUXAA==} + '@vitest/snapshot@4.0.8': + resolution: {integrity: sha512-Nar9OTU03KGiubrIOFhcfHg8FYaRaNT+bh5VUlNz8stFhCZPNrJvmZkhsr1jtaYvuefYFwK2Hwrq026u4uPWCw==} - '@vitest/spy@4.0.7': - resolution: {integrity: sha512-FW4X8hzIEn4z+HublB4hBF/FhCVaXfIHm8sUfvlznrcy1MQG7VooBgZPMtVCGZtHi0yl3KESaXTqsKh16d8cFg==} + '@vitest/spy@4.0.8': + resolution: {integrity: sha512-nvGVqUunyCgZH7kmo+Ord4WgZ7lN0sOULYXUOYuHr55dvg9YvMz3izfB189Pgp28w0vWFbEEfNc/c3VTrqrXeA==} - '@vitest/utils@4.0.7': - resolution: {integrity: sha512-HNrg9CM/Z4ZWB6RuExhuC6FPmLipiShKVMnT9JlQvfhwR47JatWLChA6mtZqVHqypE6p/z6ofcjbyWpM7YLxPQ==} + '@vitest/utils@4.0.8': + resolution: {integrity: sha512-pdk2phO5NDvEFfUTxcTP8RFYjVj/kfLSPIN5ebP2Mu9kcIMeAQTbknqcFEyBcC4z2pJlJI9aS5UQjcYfhmKAow==} '@vue/compiler-core@3.5.12': resolution: {integrity: sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw==} @@ -3512,8 +3512,9 @@ packages: tinyexec@0.3.2: resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} - tinyexec@1.0.1: - resolution: {integrity: sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==} + tinyexec@1.0.2: + resolution: {integrity: sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==} + engines: {node: '>=18'} tinyglobby@0.2.15: resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} @@ -3698,8 +3699,8 @@ packages: resolution: {integrity: sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==} engines: {node: '>=12'} - vite@7.1.12: - resolution: {integrity: sha512-ZWyE8YXEXqJrrSLvYgrRP7p62OziLW7xI5HYGWFzOvupfAlrLvURSzv/FyGyy0eidogEM3ujU+kUG1zuHgb6Ug==} + vite@7.2.2: + resolution: {integrity: sha512-BxAKBWmIbrDgrokdGZH1IgkIk/5mMHDreLDmCJ0qpyJaAteP8NvMhkwr/ZCQNqNH97bw/dANTE9PDzqwJghfMQ==} engines: {node: ^20.19.0 || >=22.12.0} hasBin: true peerDependencies: @@ -3738,18 +3739,18 @@ packages: yaml: optional: true - vitest@4.0.7: - resolution: {integrity: sha512-xQroKAadK503CrmbzCISvQUjeuvEZzv6U0wlnlVFOi5i3gnzfH4onyQ29f3lzpe0FresAiTAd3aqK0Bi/jLI8w==} + vitest@4.0.8: + resolution: {integrity: sha512-urzu3NCEV0Qa0Y2PwvBtRgmNtxhj5t5ULw7cuKhIHh3OrkKTLlut0lnBOv9qe5OvbkMH2g38G7KPDCTpIytBVg==} engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' '@types/debug': ^4.1.12 '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0 - '@vitest/browser-playwright': 4.0.7 - '@vitest/browser-preview': 4.0.7 - '@vitest/browser-webdriverio': 4.0.7 - '@vitest/ui': 4.0.7 + '@vitest/browser-playwright': 4.0.8 + '@vitest/browser-preview': 4.0.8 + '@vitest/browser-webdriverio': 4.0.8 + '@vitest/ui': 4.0.8 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -3896,7 +3897,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.7(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.8(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -3905,7 +3906,7 @@ snapshots: '@stylistic/eslint-plugin': 5.5.0(eslint@9.39.1(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/parser': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.7(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/eslint-plugin': 1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.8(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.2.0 cac: 6.7.14 eslint: 9.39.1(jiti@2.4.0) @@ -3945,7 +3946,7 @@ snapshots: '@antfu/install-pkg@1.1.0': dependencies: package-manager-detector: 1.5.0 - tinyexec: 1.0.1 + tinyexec: 1.0.2 '@ardatan/relay-compiler@12.0.3(graphql@16.12.0)': dependencies: @@ -5483,54 +5484,54 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.7(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.8(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.46.2 '@typescript-eslint/utils': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) eslint: 9.39.1(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - vitest: 4.0.7(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1) + vitest: 4.0.8(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color - '@vitest/expect@4.0.7': + '@vitest/expect@4.0.8': dependencies: '@standard-schema/spec': 1.0.0 '@types/chai': 5.2.3 - '@vitest/spy': 4.0.7 - '@vitest/utils': 4.0.7 + '@vitest/spy': 4.0.8 + '@vitest/utils': 4.0.8 chai: 6.2.0 tinyrainbow: 3.0.3 - '@vitest/mocker@4.0.7(vite@7.1.12(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@4.0.8(vite@7.2.2(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1))': dependencies: - '@vitest/spy': 4.0.7 + '@vitest/spy': 4.0.8 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: - vite: 7.1.12(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1) + vite: 7.2.2(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1) - '@vitest/pretty-format@4.0.7': + '@vitest/pretty-format@4.0.8': dependencies: tinyrainbow: 3.0.3 - '@vitest/runner@4.0.7': + '@vitest/runner@4.0.8': dependencies: - '@vitest/utils': 4.0.7 + '@vitest/utils': 4.0.8 pathe: 2.0.3 - '@vitest/snapshot@4.0.7': + '@vitest/snapshot@4.0.8': dependencies: - '@vitest/pretty-format': 4.0.7 + '@vitest/pretty-format': 4.0.8 magic-string: 0.30.21 pathe: 2.0.3 - '@vitest/spy@4.0.7': {} + '@vitest/spy@4.0.8': {} - '@vitest/utils@4.0.7': + '@vitest/utils@4.0.8': dependencies: - '@vitest/pretty-format': 4.0.7 + '@vitest/pretty-format': 4.0.8 tinyrainbow: 3.0.3 '@vue/compiler-core@3.5.12': @@ -7957,7 +7958,7 @@ snapshots: tinyexec@0.3.2: {} - tinyexec@1.0.1: {} + tinyexec@1.0.2: {} tinyglobby@0.2.15: dependencies: @@ -8130,7 +8131,7 @@ snapshots: value-or-promise@1.0.12: {} - vite@7.1.12(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1): + vite@7.2.2(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1): dependencies: esbuild: 0.25.12 fdir: 6.5.0(picomatch@4.0.3) @@ -8144,15 +8145,15 @@ snapshots: jiti: 2.4.0 yaml: 2.8.1 - vitest@4.0.7(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1): + vitest@4.0.8(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1): dependencies: - '@vitest/expect': 4.0.7 - '@vitest/mocker': 4.0.7(vite@7.1.12(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1)) - '@vitest/pretty-format': 4.0.7 - '@vitest/runner': 4.0.7 - '@vitest/snapshot': 4.0.7 - '@vitest/spy': 4.0.7 - '@vitest/utils': 4.0.7 + '@vitest/expect': 4.0.8 + '@vitest/mocker': 4.0.8(vite@7.2.2(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/pretty-format': 4.0.8 + '@vitest/runner': 4.0.8 + '@vitest/snapshot': 4.0.8 + '@vitest/spy': 4.0.8 + '@vitest/utils': 4.0.8 debug: 4.4.3 es-module-lexer: 1.7.0 expect-type: 1.2.2 @@ -8164,7 +8165,7 @@ snapshots: tinyexec: 0.3.2 tinyglobby: 0.2.15 tinyrainbow: 3.0.3 - vite: 7.1.12(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1) + vite: 7.2.2(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1) why-is-node-running: 2.3.0 optionalDependencies: '@types/debug': 4.1.12 From 752f8723471dd38b8d27b050fb97f4e48941f6ab Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 10 Nov 2025 01:54:25 +0000 Subject: [PATCH 105/133] chore(deps): update pnpm to v10.21.0 (#1293) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5d3013ad..03172ead 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "graphql-codegen-typescript-validation-schema", "type": "module", "version": "0.18.1", - "packageManager": "pnpm@10.20.0", + "packageManager": "pnpm@10.21.0", "description": "GraphQL Code Generator plugin to generate form validation schema from your GraphQL schema", "respository": { "type": "git", From eb116e0239e946d5fe6e770ad3206c1670431fef Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 11 Nov 2025 04:30:13 +0000 Subject: [PATCH 106/133] chore(deps): update dependency @tsconfig/recommended to v1.0.12 (#1294) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 03172ead..fe975736 100644 --- a/package.json +++ b/package.json @@ -90,7 +90,7 @@ "@antfu/eslint-config": "^6.0.0", "@graphql-codegen/cli": "6.0.1", "@graphql-codegen/typescript": "^5.0.0", - "@tsconfig/recommended": "1.0.11", + "@tsconfig/recommended": "1.0.12", "@types/graphlib": "^2.1.8", "@types/node": "^24.0.0", "eslint": "9.39.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c97d523b..558e54c3 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -37,8 +37,8 @@ importers: specifier: ^5.0.0 version: 5.0.2(graphql@16.12.0) '@tsconfig/recommended': - specifier: 1.0.11 - version: 1.0.11 + specifier: 1.0.12 + version: 1.0.12 '@types/graphlib': specifier: ^2.1.8 version: 2.1.12 @@ -1226,8 +1226,8 @@ packages: peerDependencies: eslint: '>=9.0.0' - '@tsconfig/recommended@1.0.11': - resolution: {integrity: sha512-irACIVvr9SnQK+zsrO7TkBVTq9LAafdyrjUxv6qgNh2wPi3/hFHcKEWMMlOd4HnRIDMdtI7ciVoPcZ9EuB7xMg==} + '@tsconfig/recommended@1.0.12': + resolution: {integrity: sha512-S4HA/QRT24s5O42t/G+nYI2V88K6RGPKCodImparTnlBGb3MPfq8D7gkM7lL7yNQ1zbTAdBNfcwqsCbTjceNpA==} '@tybys/wasm-util@0.9.0': resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==} @@ -5257,7 +5257,7 @@ snapshots: estraverse: 5.3.0 picomatch: 4.0.3 - '@tsconfig/recommended@1.0.11': {} + '@tsconfig/recommended@1.0.12': {} '@tybys/wasm-util@0.9.0': dependencies: From 87b84e9a55588995fc9dd5979ef534a343412374 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 11 Nov 2025 22:48:59 +0000 Subject: [PATCH 107/133] chore(deps): update dependency @graphql-tools/utils to v10.10.2 (#1295) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 66 +++++++++++++++++++++++++------------------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 558e54c3..619cb72f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -19,7 +19,7 @@ importers: version: 6.1.0(graphql@16.12.0) '@graphql-tools/utils': specifier: ^10.0.0 - version: 10.10.1(graphql@16.12.0) + version: 10.10.2(graphql@16.12.0) graphlib: specifier: ^2.1.8 version: 2.1.8 @@ -792,8 +792,8 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/utils@10.10.1': - resolution: {integrity: sha512-9iOZ7x6tuIpp/dviNmTCSH1cDDNLIcrj6T3WKH9lU4nRWx5Pr0e7Faj7T/HmP2Njrjik63dJWuDVRxfQSTOc4g==} + '@graphql-tools/utils@10.10.2': + resolution: {integrity: sha512-aVPIAsZ8PMomO2UODO+uG8YCwYOfPthHO2b8pXqixlXx01L0B01qGkrQ0KYJDI/gozNNFXiZ3TfoFMXSGnPiow==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -4402,7 +4402,7 @@ snapshots: '@graphql-tools/json-file-loader': 8.0.3(graphql@16.12.0) '@graphql-tools/load': 8.1.0(graphql@16.12.0) '@graphql-tools/url-loader': 8.0.15(@types/node@24.10.0)(graphql@16.12.0) - '@graphql-tools/utils': 10.10.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.2(graphql@16.12.0) '@inquirer/prompts': 7.8.4(@types/node@24.10.0) '@whatwg-node/fetch': 0.10.1 chalk: 4.1.2 @@ -4445,7 +4445,7 @@ snapshots: '@graphql-codegen/typescript-operations': 5.0.0(graphql@16.12.0) '@graphql-codegen/visitor-plugin-common': 6.1.0(graphql@16.12.0) '@graphql-tools/documents': 1.0.1(graphql@16.12.0) - '@graphql-tools/utils': 10.10.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.2(graphql@16.12.0) '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0) graphql: 16.12.0 tslib: 2.6.3 @@ -4456,7 +4456,7 @@ snapshots: dependencies: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) '@graphql-tools/schema': 10.0.23(graphql@16.12.0) - '@graphql-tools/utils': 10.10.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.2(graphql@16.12.0) graphql: 16.12.0 tslib: 2.6.3 @@ -4464,7 +4464,7 @@ snapshots: dependencies: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) '@graphql-codegen/visitor-plugin-common': 6.0.0(graphql@16.12.0) - '@graphql-tools/utils': 10.10.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.2(graphql@16.12.0) auto-bind: 4.0.0 graphql: 16.12.0 tslib: 2.6.3 @@ -4473,7 +4473,7 @@ snapshots: '@graphql-codegen/plugin-helpers@6.0.0(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.2(graphql@16.12.0) change-case-all: 1.0.15 common-tags: 1.8.2 graphql: 16.12.0 @@ -4484,7 +4484,7 @@ snapshots: '@graphql-codegen/schema-ast@5.0.0(graphql@16.12.0)': dependencies: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) - '@graphql-tools/utils': 10.10.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.2(graphql@16.12.0) graphql: 16.12.0 tslib: 2.6.3 @@ -4526,7 +4526,7 @@ snapshots: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) '@graphql-tools/optimize': 2.0.0(graphql@16.12.0) '@graphql-tools/relay-operation-optimizer': 7.0.21(graphql@16.12.0) - '@graphql-tools/utils': 10.10.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.2(graphql@16.12.0) auto-bind: 4.0.0 change-case-all: 1.0.15 dependency-graph: 1.0.0 @@ -4542,7 +4542,7 @@ snapshots: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) '@graphql-tools/optimize': 2.0.0(graphql@16.12.0) '@graphql-tools/relay-operation-optimizer': 7.0.21(graphql@16.12.0) - '@graphql-tools/utils': 10.10.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.2(graphql@16.12.0) auto-bind: 4.0.0 change-case-all: 1.0.15 dependency-graph: 1.0.0 @@ -4556,7 +4556,7 @@ snapshots: '@graphql-tools/apollo-engine-loader@8.0.4(graphql@16.12.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/utils': 10.10.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.2(graphql@16.12.0) '@whatwg-node/fetch': 0.10.1 graphql: 16.12.0 tslib: 2.8.1 @@ -4565,7 +4565,7 @@ snapshots: '@graphql-tools/batch-execute@9.0.6(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.2(graphql@16.12.0) dataloader: 2.2.2 graphql: 16.12.0 tslib: 2.8.1 @@ -4574,7 +4574,7 @@ snapshots: '@graphql-tools/code-file-loader@8.1.5(graphql@16.12.0)': dependencies: '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.12.0) - '@graphql-tools/utils': 10.10.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.2(graphql@16.12.0) globby: 11.1.0 graphql: 16.12.0 tslib: 2.8.1 @@ -4587,7 +4587,7 @@ snapshots: '@graphql-tools/batch-execute': 9.0.6(graphql@16.12.0) '@graphql-tools/executor': 1.3.3(graphql@16.12.0) '@graphql-tools/schema': 10.0.23(graphql@16.12.0) - '@graphql-tools/utils': 10.10.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.2(graphql@16.12.0) '@repeaterjs/repeater': 3.0.6 dataloader: 2.2.2 dset: 3.1.4 @@ -4602,7 +4602,7 @@ snapshots: '@graphql-tools/executor-graphql-ws@1.3.2(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.2(graphql@16.12.0) '@types/ws': 8.5.13 graphql: 16.12.0 graphql-ws: 5.16.0(graphql@16.12.0) @@ -4615,7 +4615,7 @@ snapshots: '@graphql-tools/executor-http@1.1.9(@types/node@24.10.0)(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.2(graphql@16.12.0) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/fetch': 0.10.1 extract-files: 11.0.0 @@ -4628,7 +4628,7 @@ snapshots: '@graphql-tools/executor-legacy-ws@1.1.2(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.2(graphql@16.12.0) '@types/ws': 8.5.13 graphql: 16.12.0 isomorphic-ws: 5.0.0(ws@8.18.0) @@ -4640,7 +4640,7 @@ snapshots: '@graphql-tools/executor@1.3.3(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.2(graphql@16.12.0) '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0) '@repeaterjs/repeater': 3.0.6 graphql: 16.12.0 @@ -4650,7 +4650,7 @@ snapshots: '@graphql-tools/git-loader@8.0.9(graphql@16.12.0)': dependencies: '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.12.0) - '@graphql-tools/utils': 10.10.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.2(graphql@16.12.0) graphql: 16.12.0 is-glob: 4.0.3 micromatch: 4.0.8 @@ -4664,7 +4664,7 @@ snapshots: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/executor-http': 1.1.9(@types/node@24.10.0)(graphql@16.12.0) '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.12.0) - '@graphql-tools/utils': 10.10.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.2(graphql@16.12.0) '@whatwg-node/fetch': 0.10.1 graphql: 16.12.0 tslib: 2.8.1 @@ -4677,7 +4677,7 @@ snapshots: '@graphql-tools/graphql-file-loader@8.0.3(graphql@16.12.0)': dependencies: '@graphql-tools/import': 7.0.3(graphql@16.12.0) - '@graphql-tools/utils': 10.10.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.2(graphql@16.12.0) globby: 11.1.0 graphql: 16.12.0 tslib: 2.8.1 @@ -4690,7 +4690,7 @@ snapshots: '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.27.4) '@babel/traverse': 7.27.4 '@babel/types': 7.28.4 - '@graphql-tools/utils': 10.10.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.2(graphql@16.12.0) graphql: 16.12.0 tslib: 2.8.1 transitivePeerDependencies: @@ -4698,14 +4698,14 @@ snapshots: '@graphql-tools/import@7.0.3(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.2(graphql@16.12.0) graphql: 16.12.0 resolve-from: 5.0.0 tslib: 2.8.1 '@graphql-tools/json-file-loader@8.0.3(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.2(graphql@16.12.0) globby: 11.1.0 graphql: 16.12.0 tslib: 2.8.1 @@ -4714,14 +4714,14 @@ snapshots: '@graphql-tools/load@8.1.0(graphql@16.12.0)': dependencies: '@graphql-tools/schema': 10.0.23(graphql@16.12.0) - '@graphql-tools/utils': 10.10.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.2(graphql@16.12.0) graphql: 16.12.0 p-limit: 3.1.0 tslib: 2.8.1 '@graphql-tools/merge@9.0.24(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.2(graphql@16.12.0) graphql: 16.12.0 tslib: 2.8.1 @@ -4733,7 +4733,7 @@ snapshots: '@graphql-tools/relay-operation-optimizer@7.0.21(graphql@16.12.0)': dependencies: '@ardatan/relay-compiler': 12.0.3(graphql@16.12.0) - '@graphql-tools/utils': 10.10.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.2(graphql@16.12.0) graphql: 16.12.0 tslib: 2.6.3 transitivePeerDependencies: @@ -4742,7 +4742,7 @@ snapshots: '@graphql-tools/schema@10.0.23(graphql@16.12.0)': dependencies: '@graphql-tools/merge': 9.0.24(graphql@16.12.0) - '@graphql-tools/utils': 10.10.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.2(graphql@16.12.0) graphql: 16.12.0 tslib: 2.8.1 @@ -4752,7 +4752,7 @@ snapshots: '@graphql-tools/executor-graphql-ws': 1.3.2(graphql@16.12.0) '@graphql-tools/executor-http': 1.1.9(@types/node@24.10.0)(graphql@16.12.0) '@graphql-tools/executor-legacy-ws': 1.1.2(graphql@16.12.0) - '@graphql-tools/utils': 10.10.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.2(graphql@16.12.0) '@graphql-tools/wrap': 10.0.16(graphql@16.12.0) '@types/ws': 8.5.13 '@whatwg-node/fetch': 0.10.1 @@ -4767,7 +4767,7 @@ snapshots: - encoding - utf-8-validate - '@graphql-tools/utils@10.10.1(graphql@16.12.0)': + '@graphql-tools/utils@10.10.2(graphql@16.12.0)': dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0) '@whatwg-node/promise-helpers': 1.3.2 @@ -4779,7 +4779,7 @@ snapshots: dependencies: '@graphql-tools/delegate': 10.1.2(graphql@16.12.0) '@graphql-tools/schema': 10.0.23(graphql@16.12.0) - '@graphql-tools/utils': 10.10.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.2(graphql@16.12.0) graphql: 16.12.0 tslib: 2.8.1 value-or-promise: 1.0.12 @@ -6492,7 +6492,7 @@ snapshots: '@graphql-tools/load': 8.1.0(graphql@16.12.0) '@graphql-tools/merge': 9.0.24(graphql@16.12.0) '@graphql-tools/url-loader': 8.0.15(@types/node@24.10.0)(graphql@16.12.0) - '@graphql-tools/utils': 10.10.1(graphql@16.12.0) + '@graphql-tools/utils': 10.10.2(graphql@16.12.0) cosmiconfig: 8.3.6(typescript@5.9.3) graphql: 16.12.0 jiti: 2.4.0 From 613eb4e7061ce821813f80cf66700d6943e91a39 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 12 Nov 2025 03:40:43 +0000 Subject: [PATCH 108/133] chore(deps): update dependency @types/node to v24.10.1 (#1296) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 248 ++++++++++++++++++++++++------------------------- 1 file changed, 124 insertions(+), 124 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 619cb72f..76726e0e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,10 +29,10 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.8(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1)) + version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.8(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.1 - version: 6.0.1(@types/node@24.10.0)(graphql@16.12.0)(typescript@5.9.3) + version: 6.0.1(@types/node@24.10.1)(graphql@16.12.0)(typescript@5.9.3) '@graphql-codegen/typescript': specifier: ^5.0.0 version: 5.0.2(graphql@16.12.0) @@ -44,13 +44,13 @@ importers: version: 2.1.12 '@types/node': specifier: ^24.0.0 - version: 24.10.0 + version: 24.10.1 eslint: specifier: 9.39.1 version: 9.39.1(jiti@2.4.0) jest: specifier: 30.2.0 - version: 30.2.0(@types/node@24.10.0) + version: 30.2.0(@types/node@24.10.1) myzod: specifier: 1.12.1 version: 1.12.1 @@ -62,7 +62,7 @@ importers: version: 2.2.0 ts-jest: specifier: 29.4.5 - version: 29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@24.10.0))(typescript@5.9.3) + version: 29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@24.10.1))(typescript@5.9.3) typescript: specifier: 5.9.3 version: 5.9.3 @@ -71,7 +71,7 @@ importers: version: 1.1.0(typescript@5.9.3) vitest: specifier: ^4.0.0 - version: 4.0.8(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1) + version: 4.0.8(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.1 version: 1.7.1 @@ -1277,8 +1277,8 @@ packages: '@types/ms@2.1.0': resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} - '@types/node@24.10.0': - resolution: {integrity: sha512-qzQZRBqkFsYyaSWXuEHc2WR9c0a0CXwiE5FWUvn7ZM+vdy1uZLfCunD38UzhuB7YN/J11ndbDBcTmOdxJo9Q7A==} + '@types/node@24.10.1': + resolution: {integrity: sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ==} '@types/stack-utils@2.0.3': resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} @@ -3897,7 +3897,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.8(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.8(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -3906,7 +3906,7 @@ snapshots: '@stylistic/eslint-plugin': 5.5.0(eslint@9.39.1(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/parser': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.8(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/eslint-plugin': 1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.8(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.2.0 cac: 6.7.14 eslint: 9.39.1(jiti@2.4.0) @@ -4386,7 +4386,7 @@ snapshots: graphql: 16.12.0 tslib: 2.6.3 - '@graphql-codegen/cli@6.0.1(@types/node@24.10.0)(graphql@16.12.0)(typescript@5.9.3)': + '@graphql-codegen/cli@6.0.1(@types/node@24.10.1)(graphql@16.12.0)(typescript@5.9.3)': dependencies: '@babel/generator': 7.28.3 '@babel/template': 7.27.2 @@ -4397,20 +4397,20 @@ snapshots: '@graphql-tools/apollo-engine-loader': 8.0.4(graphql@16.12.0) '@graphql-tools/code-file-loader': 8.1.5(graphql@16.12.0) '@graphql-tools/git-loader': 8.0.9(graphql@16.12.0) - '@graphql-tools/github-loader': 8.0.4(@types/node@24.10.0)(graphql@16.12.0) + '@graphql-tools/github-loader': 8.0.4(@types/node@24.10.1)(graphql@16.12.0) '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.12.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.12.0) '@graphql-tools/load': 8.1.0(graphql@16.12.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@24.10.0)(graphql@16.12.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@24.10.1)(graphql@16.12.0) '@graphql-tools/utils': 10.10.2(graphql@16.12.0) - '@inquirer/prompts': 7.8.4(@types/node@24.10.0) + '@inquirer/prompts': 7.8.4(@types/node@24.10.1) '@whatwg-node/fetch': 0.10.1 chalk: 4.1.2 cosmiconfig: 9.0.0(typescript@5.9.3) debounce: 2.2.0 detect-indent: 6.1.0 graphql: 16.12.0 - graphql-config: 5.1.3(@types/node@24.10.0)(graphql@16.12.0)(typescript@5.9.3) + graphql-config: 5.1.3(@types/node@24.10.1)(graphql@16.12.0)(typescript@5.9.3) is-glob: 4.0.3 jiti: 2.4.0 json-to-pretty-yaml: 1.2.2 @@ -4613,14 +4613,14 @@ snapshots: - bufferutil - utf-8-validate - '@graphql-tools/executor-http@1.1.9(@types/node@24.10.0)(graphql@16.12.0)': + '@graphql-tools/executor-http@1.1.9(@types/node@24.10.1)(graphql@16.12.0)': dependencies: '@graphql-tools/utils': 10.10.2(graphql@16.12.0) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/fetch': 0.10.1 extract-files: 11.0.0 graphql: 16.12.0 - meros: 1.3.0(@types/node@24.10.0) + meros: 1.3.0(@types/node@24.10.1) tslib: 2.8.1 value-or-promise: 1.0.12 transitivePeerDependencies: @@ -4659,10 +4659,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@graphql-tools/github-loader@8.0.4(@types/node@24.10.0)(graphql@16.12.0)': + '@graphql-tools/github-loader@8.0.4(@types/node@24.10.1)(graphql@16.12.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/executor-http': 1.1.9(@types/node@24.10.0)(graphql@16.12.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@24.10.1)(graphql@16.12.0) '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.12.0) '@graphql-tools/utils': 10.10.2(graphql@16.12.0) '@whatwg-node/fetch': 0.10.1 @@ -4746,11 +4746,11 @@ snapshots: graphql: 16.12.0 tslib: 2.8.1 - '@graphql-tools/url-loader@8.0.15(@types/node@24.10.0)(graphql@16.12.0)': + '@graphql-tools/url-loader@8.0.15(@types/node@24.10.1)(graphql@16.12.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/executor-graphql-ws': 1.3.2(graphql@16.12.0) - '@graphql-tools/executor-http': 1.1.9(@types/node@24.10.0)(graphql@16.12.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@24.10.1)(graphql@16.12.0) '@graphql-tools/executor-legacy-ws': 1.1.2(graphql@16.12.0) '@graphql-tools/utils': 10.10.2(graphql@16.12.0) '@graphql-tools/wrap': 10.0.16(graphql@16.12.0) @@ -4799,27 +4799,27 @@ snapshots: '@humanwhocodes/retry@0.4.3': {} - '@inquirer/checkbox@4.2.2(@types/node@24.10.0)': + '@inquirer/checkbox@4.2.2(@types/node@24.10.1)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.10.0) + '@inquirer/core': 10.2.0(@types/node@24.10.1) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.10.0) + '@inquirer/type': 3.0.8(@types/node@24.10.1) ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.10.0 + '@types/node': 24.10.1 - '@inquirer/confirm@5.1.16(@types/node@24.10.0)': + '@inquirer/confirm@5.1.16(@types/node@24.10.1)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.10.0) - '@inquirer/type': 3.0.8(@types/node@24.10.0) + '@inquirer/core': 10.2.0(@types/node@24.10.1) + '@inquirer/type': 3.0.8(@types/node@24.10.1) optionalDependencies: - '@types/node': 24.10.0 + '@types/node': 24.10.1 - '@inquirer/core@10.2.0(@types/node@24.10.0)': + '@inquirer/core@10.2.0(@types/node@24.10.1)': dependencies: '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.10.0) + '@inquirer/type': 3.0.8(@types/node@24.10.1) ansi-escapes: 4.3.2 cli-width: 4.1.0 mute-stream: 2.0.0 @@ -4827,100 +4827,100 @@ snapshots: wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.10.0 + '@types/node': 24.10.1 - '@inquirer/editor@4.2.18(@types/node@24.10.0)': + '@inquirer/editor@4.2.18(@types/node@24.10.1)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.10.0) - '@inquirer/external-editor': 1.0.1(@types/node@24.10.0) - '@inquirer/type': 3.0.8(@types/node@24.10.0) + '@inquirer/core': 10.2.0(@types/node@24.10.1) + '@inquirer/external-editor': 1.0.1(@types/node@24.10.1) + '@inquirer/type': 3.0.8(@types/node@24.10.1) optionalDependencies: - '@types/node': 24.10.0 + '@types/node': 24.10.1 - '@inquirer/expand@4.0.18(@types/node@24.10.0)': + '@inquirer/expand@4.0.18(@types/node@24.10.1)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.10.0) - '@inquirer/type': 3.0.8(@types/node@24.10.0) + '@inquirer/core': 10.2.0(@types/node@24.10.1) + '@inquirer/type': 3.0.8(@types/node@24.10.1) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.10.0 + '@types/node': 24.10.1 - '@inquirer/external-editor@1.0.1(@types/node@24.10.0)': + '@inquirer/external-editor@1.0.1(@types/node@24.10.1)': dependencies: chardet: 2.1.0 iconv-lite: 0.6.3 optionalDependencies: - '@types/node': 24.10.0 + '@types/node': 24.10.1 '@inquirer/figures@1.0.13': {} - '@inquirer/input@4.2.2(@types/node@24.10.0)': + '@inquirer/input@4.2.2(@types/node@24.10.1)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.10.0) - '@inquirer/type': 3.0.8(@types/node@24.10.0) + '@inquirer/core': 10.2.0(@types/node@24.10.1) + '@inquirer/type': 3.0.8(@types/node@24.10.1) optionalDependencies: - '@types/node': 24.10.0 + '@types/node': 24.10.1 - '@inquirer/number@3.0.18(@types/node@24.10.0)': + '@inquirer/number@3.0.18(@types/node@24.10.1)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.10.0) - '@inquirer/type': 3.0.8(@types/node@24.10.0) + '@inquirer/core': 10.2.0(@types/node@24.10.1) + '@inquirer/type': 3.0.8(@types/node@24.10.1) optionalDependencies: - '@types/node': 24.10.0 + '@types/node': 24.10.1 - '@inquirer/password@4.0.18(@types/node@24.10.0)': + '@inquirer/password@4.0.18(@types/node@24.10.1)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.10.0) - '@inquirer/type': 3.0.8(@types/node@24.10.0) + '@inquirer/core': 10.2.0(@types/node@24.10.1) + '@inquirer/type': 3.0.8(@types/node@24.10.1) ansi-escapes: 4.3.2 optionalDependencies: - '@types/node': 24.10.0 - - '@inquirer/prompts@7.8.4(@types/node@24.10.0)': - dependencies: - '@inquirer/checkbox': 4.2.2(@types/node@24.10.0) - '@inquirer/confirm': 5.1.16(@types/node@24.10.0) - '@inquirer/editor': 4.2.18(@types/node@24.10.0) - '@inquirer/expand': 4.0.18(@types/node@24.10.0) - '@inquirer/input': 4.2.2(@types/node@24.10.0) - '@inquirer/number': 3.0.18(@types/node@24.10.0) - '@inquirer/password': 4.0.18(@types/node@24.10.0) - '@inquirer/rawlist': 4.1.6(@types/node@24.10.0) - '@inquirer/search': 3.1.1(@types/node@24.10.0) - '@inquirer/select': 4.3.2(@types/node@24.10.0) + '@types/node': 24.10.1 + + '@inquirer/prompts@7.8.4(@types/node@24.10.1)': + dependencies: + '@inquirer/checkbox': 4.2.2(@types/node@24.10.1) + '@inquirer/confirm': 5.1.16(@types/node@24.10.1) + '@inquirer/editor': 4.2.18(@types/node@24.10.1) + '@inquirer/expand': 4.0.18(@types/node@24.10.1) + '@inquirer/input': 4.2.2(@types/node@24.10.1) + '@inquirer/number': 3.0.18(@types/node@24.10.1) + '@inquirer/password': 4.0.18(@types/node@24.10.1) + '@inquirer/rawlist': 4.1.6(@types/node@24.10.1) + '@inquirer/search': 3.1.1(@types/node@24.10.1) + '@inquirer/select': 4.3.2(@types/node@24.10.1) optionalDependencies: - '@types/node': 24.10.0 + '@types/node': 24.10.1 - '@inquirer/rawlist@4.1.6(@types/node@24.10.0)': + '@inquirer/rawlist@4.1.6(@types/node@24.10.1)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.10.0) - '@inquirer/type': 3.0.8(@types/node@24.10.0) + '@inquirer/core': 10.2.0(@types/node@24.10.1) + '@inquirer/type': 3.0.8(@types/node@24.10.1) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.10.0 + '@types/node': 24.10.1 - '@inquirer/search@3.1.1(@types/node@24.10.0)': + '@inquirer/search@3.1.1(@types/node@24.10.1)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.10.0) + '@inquirer/core': 10.2.0(@types/node@24.10.1) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.10.0) + '@inquirer/type': 3.0.8(@types/node@24.10.1) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.10.0 + '@types/node': 24.10.1 - '@inquirer/select@4.3.2(@types/node@24.10.0)': + '@inquirer/select@4.3.2(@types/node@24.10.1)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.10.0) + '@inquirer/core': 10.2.0(@types/node@24.10.1) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.10.0) + '@inquirer/type': 3.0.8(@types/node@24.10.1) ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.10.0 + '@types/node': 24.10.1 - '@inquirer/type@3.0.8(@types/node@24.10.0)': + '@inquirer/type@3.0.8(@types/node@24.10.1)': optionalDependencies: - '@types/node': 24.10.0 + '@types/node': 24.10.1 '@isaacs/cliui@8.0.2': dependencies: @@ -4944,7 +4944,7 @@ snapshots: '@jest/console@30.2.0': dependencies: '@jest/types': 30.2.0 - '@types/node': 24.10.0 + '@types/node': 24.10.1 chalk: 4.1.2 jest-message-util: 30.2.0 jest-util: 30.2.0 @@ -4958,14 +4958,14 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.10.0 + '@types/node': 24.10.1 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 4.3.0 exit-x: 0.2.2 graceful-fs: 4.2.11 jest-changed-files: 30.2.0 - jest-config: 30.2.0(@types/node@24.10.0) + jest-config: 30.2.0(@types/node@24.10.1) jest-haste-map: 30.2.0 jest-message-util: 30.2.0 jest-regex-util: 30.0.1 @@ -4992,7 +4992,7 @@ snapshots: dependencies: '@jest/fake-timers': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.10.0 + '@types/node': 24.10.1 jest-mock: 30.2.0 '@jest/expect-utils@30.2.0': @@ -5010,7 +5010,7 @@ snapshots: dependencies: '@jest/types': 30.2.0 '@sinonjs/fake-timers': 13.0.5 - '@types/node': 24.10.0 + '@types/node': 24.10.1 jest-message-util: 30.2.0 jest-mock: 30.2.0 jest-util: 30.2.0 @@ -5028,7 +5028,7 @@ snapshots: '@jest/pattern@30.0.1': dependencies: - '@types/node': 24.10.0 + '@types/node': 24.10.1 jest-regex-util: 30.0.1 '@jest/reporters@30.2.0': @@ -5039,7 +5039,7 @@ snapshots: '@jest/transform': 30.2.0 '@jest/types': 30.2.0 '@jridgewell/trace-mapping': 0.3.25 - '@types/node': 24.10.0 + '@types/node': 24.10.1 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit-x: 0.2.2 @@ -5116,7 +5116,7 @@ snapshots: '@jest/schemas': 30.0.5 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 24.10.0 + '@types/node': 24.10.1 '@types/yargs': 17.0.33 chalk: 4.1.2 @@ -5318,7 +5318,7 @@ snapshots: '@types/ms@2.1.0': {} - '@types/node@24.10.0': + '@types/node@24.10.1': dependencies: undici-types: 7.16.0 @@ -5328,7 +5328,7 @@ snapshots: '@types/ws@8.5.13': dependencies: - '@types/node': 24.10.0 + '@types/node': 24.10.1 '@types/yargs-parser@21.0.3': {} @@ -5484,14 +5484,14 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.8(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.8(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.46.2 '@typescript-eslint/utils': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) eslint: 9.39.1(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - vitest: 4.0.8(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1) + vitest: 4.0.8(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color @@ -5504,13 +5504,13 @@ snapshots: chai: 6.2.0 tinyrainbow: 3.0.3 - '@vitest/mocker@4.0.8(vite@7.2.2(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@4.0.8(vite@7.2.2(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@vitest/spy': 4.0.8 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: - vite: 7.2.2(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1) + vite: 7.2.2(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) '@vitest/pretty-format@4.0.8': dependencies: @@ -6485,13 +6485,13 @@ snapshots: dependencies: lodash: 4.17.21 - graphql-config@5.1.3(@types/node@24.10.0)(graphql@16.12.0)(typescript@5.9.3): + graphql-config@5.1.3(@types/node@24.10.1)(graphql@16.12.0)(typescript@5.9.3): dependencies: '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.12.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.12.0) '@graphql-tools/load': 8.1.0(graphql@16.12.0) '@graphql-tools/merge': 9.0.24(graphql@16.12.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@24.10.0)(graphql@16.12.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@24.10.1)(graphql@16.12.0) '@graphql-tools/utils': 10.10.2(graphql@16.12.0) cosmiconfig: 8.3.6(typescript@5.9.3) graphql: 16.12.0 @@ -6684,7 +6684,7 @@ snapshots: '@jest/expect': 30.2.0 '@jest/test-result': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.10.0 + '@types/node': 24.10.1 chalk: 4.1.2 co: 4.6.0 dedent: 1.6.0 @@ -6704,7 +6704,7 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@30.2.0(@types/node@24.10.0): + jest-cli@30.2.0(@types/node@24.10.1): dependencies: '@jest/core': 30.2.0 '@jest/test-result': 30.2.0 @@ -6712,7 +6712,7 @@ snapshots: chalk: 4.1.2 exit-x: 0.2.2 import-local: 3.2.0 - jest-config: 30.2.0(@types/node@24.10.0) + jest-config: 30.2.0(@types/node@24.10.1) jest-util: 30.2.0 jest-validate: 30.2.0 yargs: 17.7.2 @@ -6723,7 +6723,7 @@ snapshots: - supports-color - ts-node - jest-config@30.2.0(@types/node@24.10.0): + jest-config@30.2.0(@types/node@24.10.1): dependencies: '@babel/core': 7.27.4 '@jest/get-type': 30.1.0 @@ -6750,7 +6750,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 24.10.0 + '@types/node': 24.10.1 transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -6779,7 +6779,7 @@ snapshots: '@jest/environment': 30.2.0 '@jest/fake-timers': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.10.0 + '@types/node': 24.10.1 jest-mock: 30.2.0 jest-util: 30.2.0 jest-validate: 30.2.0 @@ -6787,7 +6787,7 @@ snapshots: jest-haste-map@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 24.10.0 + '@types/node': 24.10.1 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -6826,7 +6826,7 @@ snapshots: jest-mock@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 24.10.0 + '@types/node': 24.10.1 jest-util: 30.2.0 jest-pnp-resolver@1.2.3(jest-resolve@30.2.0): @@ -6860,7 +6860,7 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.10.0 + '@types/node': 24.10.1 chalk: 4.1.2 emittery: 0.13.1 exit-x: 0.2.2 @@ -6889,7 +6889,7 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.10.0 + '@types/node': 24.10.1 chalk: 4.1.2 cjs-module-lexer: 2.1.0 collect-v8-coverage: 1.0.2 @@ -6936,7 +6936,7 @@ snapshots: jest-util@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 24.10.0 + '@types/node': 24.10.1 chalk: 4.1.2 ci-info: 4.3.0 graceful-fs: 4.2.11 @@ -6955,7 +6955,7 @@ snapshots: dependencies: '@jest/test-result': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.10.0 + '@types/node': 24.10.1 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -6964,18 +6964,18 @@ snapshots: jest-worker@30.2.0: dependencies: - '@types/node': 24.10.0 + '@types/node': 24.10.1 '@ungap/structured-clone': 1.3.0 jest-util: 30.2.0 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@30.2.0(@types/node@24.10.0): + jest@30.2.0(@types/node@24.10.1): dependencies: '@jest/core': 30.2.0 '@jest/types': 30.2.0 import-local: 3.2.0 - jest-cli: 30.2.0(@types/node@24.10.0) + jest-cli: 30.2.0(@types/node@24.10.1) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -7242,9 +7242,9 @@ snapshots: merge2@1.4.1: {} - meros@1.3.0(@types/node@24.10.0): + meros@1.3.0(@types/node@24.10.1): optionalDependencies: - '@types/node': 24.10.0 + '@types/node': 24.10.1 micromark-core-commonmark@2.0.3: dependencies: @@ -8001,12 +8001,12 @@ snapshots: ts-dedent@2.2.0: {} - ts-jest@29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@24.10.0))(typescript@5.9.3): + ts-jest@29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@24.10.1))(typescript@5.9.3): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 handlebars: 4.7.8 - jest: 30.2.0(@types/node@24.10.0) + jest: 30.2.0(@types/node@24.10.1) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -8131,7 +8131,7 @@ snapshots: value-or-promise@1.0.12: {} - vite@7.2.2(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1): + vite@7.2.2(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1): dependencies: esbuild: 0.25.12 fdir: 6.5.0(picomatch@4.0.3) @@ -8140,15 +8140,15 @@ snapshots: rollup: 4.52.5 tinyglobby: 0.2.15 optionalDependencies: - '@types/node': 24.10.0 + '@types/node': 24.10.1 fsevents: 2.3.3 jiti: 2.4.0 yaml: 2.8.1 - vitest@4.0.8(@types/debug@4.1.12)(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1): + vitest@4.0.8(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1): dependencies: '@vitest/expect': 4.0.8 - '@vitest/mocker': 4.0.8(vite@7.2.2(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/mocker': 4.0.8(vite@7.2.2(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) '@vitest/pretty-format': 4.0.8 '@vitest/runner': 4.0.8 '@vitest/snapshot': 4.0.8 @@ -8165,11 +8165,11 @@ snapshots: tinyexec: 0.3.2 tinyglobby: 0.2.15 tinyrainbow: 3.0.3 - vite: 7.2.2(@types/node@24.10.0)(jiti@2.4.0)(yaml@2.8.1) + vite: 7.2.2(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) why-is-node-running: 2.3.0 optionalDependencies: '@types/debug': 4.1.12 - '@types/node': 24.10.0 + '@types/node': 24.10.1 transitivePeerDependencies: - jiti - less From 076a9c6d3612ca2a2d098911f61f5fa066885451 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 12 Nov 2025 19:46:29 +0000 Subject: [PATCH 109/133] chore(deps): update dependency @graphql-tools/utils to v10.10.3 (#1297) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 66 +++++++++++++++++++++++++------------------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 76726e0e..160fedf2 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -19,7 +19,7 @@ importers: version: 6.1.0(graphql@16.12.0) '@graphql-tools/utils': specifier: ^10.0.0 - version: 10.10.2(graphql@16.12.0) + version: 10.10.3(graphql@16.12.0) graphlib: specifier: ^2.1.8 version: 2.1.8 @@ -792,8 +792,8 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/utils@10.10.2': - resolution: {integrity: sha512-aVPIAsZ8PMomO2UODO+uG8YCwYOfPthHO2b8pXqixlXx01L0B01qGkrQ0KYJDI/gozNNFXiZ3TfoFMXSGnPiow==} + '@graphql-tools/utils@10.10.3': + resolution: {integrity: sha512-2EdYiefeLLxsoeZTukSNZJ0E/Z5NnWBUGK2VJa0DQj1scDhVd93HeT1eW9TszJOYmIh3eWAKLv58ri/1XUmdsQ==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -4402,7 +4402,7 @@ snapshots: '@graphql-tools/json-file-loader': 8.0.3(graphql@16.12.0) '@graphql-tools/load': 8.1.0(graphql@16.12.0) '@graphql-tools/url-loader': 8.0.15(@types/node@24.10.1)(graphql@16.12.0) - '@graphql-tools/utils': 10.10.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) '@inquirer/prompts': 7.8.4(@types/node@24.10.1) '@whatwg-node/fetch': 0.10.1 chalk: 4.1.2 @@ -4445,7 +4445,7 @@ snapshots: '@graphql-codegen/typescript-operations': 5.0.0(graphql@16.12.0) '@graphql-codegen/visitor-plugin-common': 6.1.0(graphql@16.12.0) '@graphql-tools/documents': 1.0.1(graphql@16.12.0) - '@graphql-tools/utils': 10.10.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0) graphql: 16.12.0 tslib: 2.6.3 @@ -4456,7 +4456,7 @@ snapshots: dependencies: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) '@graphql-tools/schema': 10.0.23(graphql@16.12.0) - '@graphql-tools/utils': 10.10.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) graphql: 16.12.0 tslib: 2.6.3 @@ -4464,7 +4464,7 @@ snapshots: dependencies: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) '@graphql-codegen/visitor-plugin-common': 6.0.0(graphql@16.12.0) - '@graphql-tools/utils': 10.10.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) auto-bind: 4.0.0 graphql: 16.12.0 tslib: 2.6.3 @@ -4473,7 +4473,7 @@ snapshots: '@graphql-codegen/plugin-helpers@6.0.0(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) change-case-all: 1.0.15 common-tags: 1.8.2 graphql: 16.12.0 @@ -4484,7 +4484,7 @@ snapshots: '@graphql-codegen/schema-ast@5.0.0(graphql@16.12.0)': dependencies: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) - '@graphql-tools/utils': 10.10.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) graphql: 16.12.0 tslib: 2.6.3 @@ -4526,7 +4526,7 @@ snapshots: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) '@graphql-tools/optimize': 2.0.0(graphql@16.12.0) '@graphql-tools/relay-operation-optimizer': 7.0.21(graphql@16.12.0) - '@graphql-tools/utils': 10.10.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) auto-bind: 4.0.0 change-case-all: 1.0.15 dependency-graph: 1.0.0 @@ -4542,7 +4542,7 @@ snapshots: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) '@graphql-tools/optimize': 2.0.0(graphql@16.12.0) '@graphql-tools/relay-operation-optimizer': 7.0.21(graphql@16.12.0) - '@graphql-tools/utils': 10.10.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) auto-bind: 4.0.0 change-case-all: 1.0.15 dependency-graph: 1.0.0 @@ -4556,7 +4556,7 @@ snapshots: '@graphql-tools/apollo-engine-loader@8.0.4(graphql@16.12.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/utils': 10.10.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) '@whatwg-node/fetch': 0.10.1 graphql: 16.12.0 tslib: 2.8.1 @@ -4565,7 +4565,7 @@ snapshots: '@graphql-tools/batch-execute@9.0.6(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) dataloader: 2.2.2 graphql: 16.12.0 tslib: 2.8.1 @@ -4574,7 +4574,7 @@ snapshots: '@graphql-tools/code-file-loader@8.1.5(graphql@16.12.0)': dependencies: '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.12.0) - '@graphql-tools/utils': 10.10.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) globby: 11.1.0 graphql: 16.12.0 tslib: 2.8.1 @@ -4587,7 +4587,7 @@ snapshots: '@graphql-tools/batch-execute': 9.0.6(graphql@16.12.0) '@graphql-tools/executor': 1.3.3(graphql@16.12.0) '@graphql-tools/schema': 10.0.23(graphql@16.12.0) - '@graphql-tools/utils': 10.10.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) '@repeaterjs/repeater': 3.0.6 dataloader: 2.2.2 dset: 3.1.4 @@ -4602,7 +4602,7 @@ snapshots: '@graphql-tools/executor-graphql-ws@1.3.2(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) '@types/ws': 8.5.13 graphql: 16.12.0 graphql-ws: 5.16.0(graphql@16.12.0) @@ -4615,7 +4615,7 @@ snapshots: '@graphql-tools/executor-http@1.1.9(@types/node@24.10.1)(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/fetch': 0.10.1 extract-files: 11.0.0 @@ -4628,7 +4628,7 @@ snapshots: '@graphql-tools/executor-legacy-ws@1.1.2(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) '@types/ws': 8.5.13 graphql: 16.12.0 isomorphic-ws: 5.0.0(ws@8.18.0) @@ -4640,7 +4640,7 @@ snapshots: '@graphql-tools/executor@1.3.3(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0) '@repeaterjs/repeater': 3.0.6 graphql: 16.12.0 @@ -4650,7 +4650,7 @@ snapshots: '@graphql-tools/git-loader@8.0.9(graphql@16.12.0)': dependencies: '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.12.0) - '@graphql-tools/utils': 10.10.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) graphql: 16.12.0 is-glob: 4.0.3 micromatch: 4.0.8 @@ -4664,7 +4664,7 @@ snapshots: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/executor-http': 1.1.9(@types/node@24.10.1)(graphql@16.12.0) '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.12.0) - '@graphql-tools/utils': 10.10.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) '@whatwg-node/fetch': 0.10.1 graphql: 16.12.0 tslib: 2.8.1 @@ -4677,7 +4677,7 @@ snapshots: '@graphql-tools/graphql-file-loader@8.0.3(graphql@16.12.0)': dependencies: '@graphql-tools/import': 7.0.3(graphql@16.12.0) - '@graphql-tools/utils': 10.10.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) globby: 11.1.0 graphql: 16.12.0 tslib: 2.8.1 @@ -4690,7 +4690,7 @@ snapshots: '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.27.4) '@babel/traverse': 7.27.4 '@babel/types': 7.28.4 - '@graphql-tools/utils': 10.10.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) graphql: 16.12.0 tslib: 2.8.1 transitivePeerDependencies: @@ -4698,14 +4698,14 @@ snapshots: '@graphql-tools/import@7.0.3(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) graphql: 16.12.0 resolve-from: 5.0.0 tslib: 2.8.1 '@graphql-tools/json-file-loader@8.0.3(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) globby: 11.1.0 graphql: 16.12.0 tslib: 2.8.1 @@ -4714,14 +4714,14 @@ snapshots: '@graphql-tools/load@8.1.0(graphql@16.12.0)': dependencies: '@graphql-tools/schema': 10.0.23(graphql@16.12.0) - '@graphql-tools/utils': 10.10.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) graphql: 16.12.0 p-limit: 3.1.0 tslib: 2.8.1 '@graphql-tools/merge@9.0.24(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) graphql: 16.12.0 tslib: 2.8.1 @@ -4733,7 +4733,7 @@ snapshots: '@graphql-tools/relay-operation-optimizer@7.0.21(graphql@16.12.0)': dependencies: '@ardatan/relay-compiler': 12.0.3(graphql@16.12.0) - '@graphql-tools/utils': 10.10.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) graphql: 16.12.0 tslib: 2.6.3 transitivePeerDependencies: @@ -4742,7 +4742,7 @@ snapshots: '@graphql-tools/schema@10.0.23(graphql@16.12.0)': dependencies: '@graphql-tools/merge': 9.0.24(graphql@16.12.0) - '@graphql-tools/utils': 10.10.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) graphql: 16.12.0 tslib: 2.8.1 @@ -4752,7 +4752,7 @@ snapshots: '@graphql-tools/executor-graphql-ws': 1.3.2(graphql@16.12.0) '@graphql-tools/executor-http': 1.1.9(@types/node@24.10.1)(graphql@16.12.0) '@graphql-tools/executor-legacy-ws': 1.1.2(graphql@16.12.0) - '@graphql-tools/utils': 10.10.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) '@graphql-tools/wrap': 10.0.16(graphql@16.12.0) '@types/ws': 8.5.13 '@whatwg-node/fetch': 0.10.1 @@ -4767,7 +4767,7 @@ snapshots: - encoding - utf-8-validate - '@graphql-tools/utils@10.10.2(graphql@16.12.0)': + '@graphql-tools/utils@10.10.3(graphql@16.12.0)': dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0) '@whatwg-node/promise-helpers': 1.3.2 @@ -4779,7 +4779,7 @@ snapshots: dependencies: '@graphql-tools/delegate': 10.1.2(graphql@16.12.0) '@graphql-tools/schema': 10.0.23(graphql@16.12.0) - '@graphql-tools/utils': 10.10.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) graphql: 16.12.0 tslib: 2.8.1 value-or-promise: 1.0.12 @@ -6492,7 +6492,7 @@ snapshots: '@graphql-tools/load': 8.1.0(graphql@16.12.0) '@graphql-tools/merge': 9.0.24(graphql@16.12.0) '@graphql-tools/url-loader': 8.0.15(@types/node@24.10.1)(graphql@16.12.0) - '@graphql-tools/utils': 10.10.2(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) cosmiconfig: 8.3.6(typescript@5.9.3) graphql: 16.12.0 jiti: 2.4.0 From 80bb2e198fbe1ee3afcc43791fde322f1d633115 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 12 Nov 2025 23:53:31 +0000 Subject: [PATCH 110/133] chore(deps): update graphqlcodegenerator monorepo (#1298) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 612 ++++++++++++++++++++++++++++++++++++++++--------- 2 files changed, 505 insertions(+), 109 deletions(-) diff --git a/package.json b/package.json index fe975736..67733ef6 100644 --- a/package.json +++ b/package.json @@ -88,7 +88,7 @@ }, "devDependencies": { "@antfu/eslint-config": "^6.0.0", - "@graphql-codegen/cli": "6.0.1", + "@graphql-codegen/cli": "6.0.2", "@graphql-codegen/typescript": "^5.0.0", "@tsconfig/recommended": "1.0.12", "@types/graphlib": "^2.1.8", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 160fedf2..75dab216 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -16,7 +16,7 @@ importers: version: 5.0.0(graphql@16.12.0) '@graphql-codegen/visitor-plugin-common': specifier: ^6.0.0 - version: 6.1.0(graphql@16.12.0) + version: 6.1.1(graphql@16.12.0) '@graphql-tools/utils': specifier: ^10.0.0 version: 10.10.3(graphql@16.12.0) @@ -31,11 +31,11 @@ importers: specifier: ^6.0.0 version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.8(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': - specifier: 6.0.1 - version: 6.0.1(@types/node@24.10.1)(graphql@16.12.0)(typescript@5.9.3) + specifier: 6.0.2 + version: 6.0.2(@types/node@24.10.1)(graphql@16.12.0)(typescript@5.9.3) '@graphql-codegen/typescript': specifier: ^5.0.0 - version: 5.0.2(graphql@16.12.0) + version: 5.0.3(graphql@16.12.0) '@tsconfig/recommended': specifier: 1.0.12 version: 1.0.12 @@ -173,6 +173,10 @@ packages: resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==} engines: {node: '>=6.9.0'} + '@babel/generator@7.28.5': + resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==} + engines: {node: '>=6.9.0'} + '@babel/helper-compilation-targets@7.27.2': resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==} engines: {node: '>=6.9.0'} @@ -207,11 +211,6 @@ packages: resolution: {integrity: sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug==} engines: {node: '>=6.9.0'} - '@babel/parser@7.28.4': - resolution: {integrity: sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==} - engines: {node: '>=6.0.0'} - hasBin: true - '@babel/parser@7.28.5': resolution: {integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==} engines: {node: '>=6.0.0'} @@ -352,6 +351,18 @@ packages: '@emnapi/wasi-threads@1.0.2': resolution: {integrity: sha512-5n3nTJblwRi8LlXkJ9eBzu+kZR8Yxcc7ubakyQTFzPMtIhFpUBRbsnc2Dv88IZDIbCDlBiWrknhB4Lsz7mg6BA==} + '@envelop/core@5.4.0': + resolution: {integrity: sha512-/1fat63pySE8rw/dZZArEVytLD90JApY85deDJ0/34gm+yhQ3k70CloSUevxoOE4YCGveG3s9SJJfQeeB4NAtQ==} + engines: {node: '>=18.0.0'} + + '@envelop/instrumentation@1.0.0': + resolution: {integrity: sha512-cxgkB66RQB95H3X27jlnxCRNTmPuSTgmBAq6/4n2Dtv4hsk4yz8FadA1ggmd0uZzvKqWD6CR+WFgTjhDqg7eyw==} + engines: {node: '>=18.0.0'} + + '@envelop/types@5.2.1': + resolution: {integrity: sha512-CsFmA3u3c2QoLDTfEpGr4t25fjMU31nyvse7IzWTvb0ZycuPjMjb0fjlheh+PbhBYb9YLugnT2uY6Mwcg1o+Zg==} + engines: {node: '>=18.0.0'} + '@es-joy/jsdoccomment@0.50.2': resolution: {integrity: sha512-YAdE/IJSpwbOTiaURNCKECdAwqrJuFiZhylmesBcIRawtYKnBR2wxPhoIewMg+Yu+QuYvHfJNReWpoxGBKOChA==} engines: {node: '>=18'} @@ -581,14 +592,17 @@ packages: resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@fastify/busboy@3.2.0': + resolution: {integrity: sha512-m9FVDXU3GT2ITSe0UaMA5rU3QkfC/UXtCU8y0gSN/GugTqtVldOBWIB5V6V3sbmenVZUIpU6f+mPEO2+m5iTaA==} + '@graphql-codegen/add@6.0.0': resolution: {integrity: sha512-biFdaURX0KTwEJPQ1wkT6BRgNasqgQ5KbCI1a3zwtLtO7XTo7/vKITPylmiU27K5DSOWYnY/1jfSqUAEBuhZrQ==} engines: {node: '>=16'} peerDependencies: graphql: ^0.8.0 || ^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-codegen/cli@6.0.1': - resolution: {integrity: sha512-6iP91joxb7phdicDrIF8Cv9ah2QpPVXUUu7rbOaQKvqey+QKYmHcxGCi9r5/7p4lUiHZPQvfB7xDHURHQca1SA==} + '@graphql-codegen/cli@6.0.2': + resolution: {integrity: sha512-W+0ime0xMrCyG77q+5xiPkkqPLuXJcTx0Zr9TTOxF4zIqWKVsuImS3qVxtpeTx+GRbb8VWv9IedWMtt91JGzQg==} engines: {node: '>=16'} hasBin: true peerDependencies: @@ -598,8 +612,8 @@ packages: '@parcel/watcher': optional: true - '@graphql-codegen/client-preset@5.0.0': - resolution: {integrity: sha512-nVBgJDVahYm/uAVzm2v3tucdqk5iABke+boHPIofj3AzrYZnjTeTvEybqHo9RsEvKyTVKBi6NktkU9fKrOQMQw==} + '@graphql-codegen/client-preset@5.1.2': + resolution: {integrity: sha512-xFZFVVGD3bKIsetWEq0dG0+yiP5jS9dB+6u3vee3yY5wPaCGr629izndyxIFLtU8o9MCGnjBrFcGnH3OWkuT2A==} engines: {node: '>=16'} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -614,8 +628,8 @@ packages: peerDependencies: graphql: ^0.8.0 || ^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-codegen/gql-tag-operations@5.0.0': - resolution: {integrity: sha512-kC2pc/tyzVc1laZtlfuQHqYxF4UqB4YXzAboFfeY1cxrxCh/+H70jHnfA1O4vhPndiRd+XZA8wxPv0hIqDXYaA==} + '@graphql-codegen/gql-tag-operations@5.0.4': + resolution: {integrity: sha512-2PPGSXGR6NQyoOtG/mY1e88CC4pDV162dVYVGzd787ut4Ys76fovdtVojJUiyF5zek1xdGFPeek3N4lFqIpkaQ==} engines: {node: '>=16'} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -632,14 +646,14 @@ packages: peerDependencies: graphql: ^0.8.0 || ^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-codegen/typed-document-node@6.0.0': - resolution: {integrity: sha512-OYmbadwvjq19yCZjioy901pLI9YV6i7A0fP3MpcJlo2uQVY27RJPcN2NeLfFzXdHr6f5bm9exqB6X1iKimfA2Q==} + '@graphql-codegen/typed-document-node@6.1.1': + resolution: {integrity: sha512-tNSpkt9vG+6pgtR6gLjPZtOkrSm8zyhehKZDOxi8JIDL+KIbmU2VelpvZg0QJb/ycQd64n2aJ+UN08fGqgt4Cw==} engines: {node: '>=16'} peerDependencies: graphql: ^0.8.0 || ^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-codegen/typescript-operations@5.0.0': - resolution: {integrity: sha512-mqgp/lp5v7w+RYj5AJ/BVquP+sgje3EAgg++62ciolOB5zzWT8en09cRdNq4UZfszCYTOtlhCG7NQAAcSae37A==} + '@graphql-codegen/typescript-operations@5.0.3': + resolution: {integrity: sha512-eDBphTR7iWwEb12NZqoZ1drZeF+wb3Qps1TEjqZu01YOVVwl/p+OvKMDXYZMuF638Ewr2fmIRhfO6KRvC7wj2A==} engines: {node: '>=16'} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -648,23 +662,21 @@ packages: graphql-sock: optional: true - '@graphql-codegen/typescript@5.0.2': - resolution: {integrity: sha512-OJYXpS9SRf4VFzqu3ZH/RmTftGhAVTCmscH63iPlvTlCT8NBmpSHdZ875AEa38LugdL8XgUcGsI3pprP3e5j/w==} + '@graphql-codegen/typescript@5.0.3': + resolution: {integrity: sha512-8iU460ft+9gBYP1FMy2Uz4xvuAtbnArXaW0PG/w4oBaX6EKNraFgK4QVzCddWFx4TsJqTubuC4ADyyF3WSsGGg==} engines: {node: '>=16'} peerDependencies: graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@graphql-codegen/visitor-plugin-common@6.0.0': - resolution: {integrity: sha512-K05Jv2elOeFstH3i+Ah0Pi9do6NYUvrbdhEkP+UvP9fmIro1hCKwcIEP7j4VFz8mt3gAC3dB5KVJDoyaPUgi4Q==} + '@graphql-codegen/visitor-plugin-common@6.1.1': + resolution: {integrity: sha512-31ZEoa9nA9J1ENJU1EDfnnlFFmW8G54tQpJdJ126JQtJkgSHON29UQ/fDXndSF7v0nO+IoPKWLBVYwHnz8v7ug==} engines: {node: '>=16'} peerDependencies: graphql: ^0.8.0 || ^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-codegen/visitor-plugin-common@6.1.0': - resolution: {integrity: sha512-AvGO1pe+b/kAa7+WBDlNDXOruRZWv/NnhLHgTggiW2XWRv33biuzg4cF1UTdpR2jmESZzJU4kXngLLX8RYJWLA==} - engines: {node: '>=16'} - peerDependencies: - graphql: ^0.8.0 || ^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-hive/signal@2.0.0': + resolution: {integrity: sha512-Pz8wB3K0iU6ae9S1fWfsmJX24CcGeTo6hE7T44ucmV/ALKRj+bxClmqrYcDT7v3f0d12Rh4FAXBb6gon+WkDpQ==} + engines: {node: '>=20.0.0'} '@graphql-tools/apollo-engine-loader@8.0.4': resolution: {integrity: sha512-dwFhFDvqRr1+UkSPVYciz202a0TInKe1at+eS3YYoirg2FacaCuQDeGWG4w3rLJQXKnGhFAdFUfgBMt2ZqXxYA==} @@ -672,6 +684,12 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + '@graphql-tools/batch-execute@10.0.3': + resolution: {integrity: sha512-QH9tKbBQcLeSToXufGKRKWZUpVFJ+gRzJ8wSjz0amQXxpHiF8sEAIJKy9CmgRfnhvt31BjOMTr1sUS4xbhj7lw==} + engines: {node: '>=20.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + '@graphql-tools/batch-execute@9.0.6': resolution: {integrity: sha512-S0mLTUJQJuItGmwouYZyXeFaRWOVmVCAMLi33M5PuZbnsoTwKMB/YPPkAQ72ay3GfclnW66XcO4EClbVynw7eQ==} engines: {node: '>=16.0.0'} @@ -690,45 +708,81 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + '@graphql-tools/delegate@11.1.2': + resolution: {integrity: sha512-C6W4DM+z3nN7OkV08CAuBUmCW+etmfiKzlpx09oEGBWzw61eYQdKlqp1qqeKtYebELam9LkHTa1n8/rilv5PXw==} + engines: {node: '>=20.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + '@graphql-tools/documents@1.0.1': resolution: {integrity: sha512-aweoMH15wNJ8g7b2r4C4WRuJxZ0ca8HtNO54rkye/3duxTkW4fGBEutCx03jCIr5+a1l+4vFJNP859QnAVBVCA==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + '@graphql-tools/executor-common@1.0.4': + resolution: {integrity: sha512-EKkVjo1Fbx+qK5ZeI+KneeoGzk6HU6aL4E0bX4J3lfnjyaZVESbODCDS/9bBcrV1X2dEby9MfWqA6fkFodP+hw==} + engines: {node: '>=20.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + '@graphql-tools/executor-graphql-ws@1.3.2': resolution: {integrity: sha512-m+7+g3dSyaomuJAgDoG/9RcZC5/hGEpDQjmKmbLf/WvGdv5fLJNsuoJ7pIjlT5r7wQJNjEPGoHeh9pD/YykRww==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + '@graphql-tools/executor-graphql-ws@3.1.2': + resolution: {integrity: sha512-nlBXYrWkZ+VFIVU2QrRNnWImBwZglY/uuyK0/dkFMFy9FEjZmErLpGv62PZqQUSEjPakNgUil+T94CUHGebR9w==} + engines: {node: '>=20.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + '@graphql-tools/executor-http@1.1.9': resolution: {integrity: sha512-dJRj78QEGNNnlhkhqPUG9z+1uAr7znZ4dzabEVgY5uSXTmUIFcTKpOGYv2/QAuvyqGN40XxbcdVRJta6XHX2BQ==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + '@graphql-tools/executor-http@3.0.6': + resolution: {integrity: sha512-gTcSdaJWbqYKg/aVQ/T+sIC6Isa4jjx+QhVMyawgivmdbLTg0UgsbR6g97eNVoxnRzFq/CuPSy71IHQeq8Q6iA==} + engines: {node: '>=20.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + '@graphql-tools/executor-legacy-ws@1.1.2': resolution: {integrity: sha512-Bjgny4svnOVOCKXuiS6oSiZB3oy/GVMHh+6CbztlA+YcDu6jUiB7fTQiJuZA/c+e3xTxl9xMe3zOsEKwuHy07A==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + '@graphql-tools/executor-legacy-ws@1.1.23': + resolution: {integrity: sha512-wwS6ZlJDaC+zxE1DcfYrPJk1ynQ0xcbOWS/x8dy4hO6ZCjRawkogoqN3Muab0E9RzuwF29LRu+aOH6isO5mQKg==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + '@graphql-tools/executor@1.3.3': resolution: {integrity: sha512-lpkgokF6vjGHNluANOTsWoSM0vuvUuVpjY1810tvM6Vlyoq2tJ+nmqweGbMsq/GLhmZQP1lY/nOkj2zPJXLWiw==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + '@graphql-tools/executor@1.4.13': + resolution: {integrity: sha512-2hTSRfH2kb4ua0ANOV/K6xUoCZsHAE6igE1bimtWUK7v0bowPIxGRKRPpF8JLbImpsJuTCC4HGOCMy7otg3FIQ==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + '@graphql-tools/git-loader@8.0.9': resolution: {integrity: sha512-buiGwz6C5kPAn5ROIfa+IlYO05n/veuQ2H6rv+dvxB8XUGTQ0beO1jSUeDaLuxWBfWUxEaaKdqB6WIGA2y75fA==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/github-loader@8.0.4': - resolution: {integrity: sha512-9CQ6moBPZS2ZEcodqG03r2+xX4zZSu1H4VfK1y4GwSPwow6T2crgW//8/j3HWfUI8FxPCiLjCFeGjlaskhdjJQ==} - engines: {node: '>=16.0.0'} + '@graphql-tools/github-loader@9.0.4': + resolution: {integrity: sha512-w8RRhOTS1Qn2/MUWO2ogtLok6/0p15IdAoYfkCW7duCTPWWG/blCtiYNDyrOZahjCuL4WrxL9+JZfj+6nXSpIQ==} + engines: {node: '>=20.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -738,6 +792,12 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + '@graphql-tools/graphql-tag-pluck@8.3.25': + resolution: {integrity: sha512-b8oTBe0mDQDh3zPcKCkaTPmjLv1TJslBUKXPNLfu5CWS2+gL8Z/z0UuAhCe5gTveuKDJYjkEO7xcct9JfcDi4g==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + '@graphql-tools/graphql-tag-pluck@8.3.4': resolution: {integrity: sha512-prb+3Pec8qxgouZVBA4jOXGTxKFEw7w2IPPLnz1P06EgxBvRQXTcHtRo9HNWSGMYO4jUrpYiIqlq/Jzjlgb3rA==} engines: {node: '>=16.0.0'} @@ -768,14 +828,20 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + '@graphql-tools/merge@9.1.5': + resolution: {integrity: sha512-eVcir6nCcOC/Wzv7ZAng3xec3dj6FehE8+h9TvgvUyrDEKVMdFfrO6etRFZ2hucWVcY8S6drx7zQx04N4lPM8Q==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + '@graphql-tools/optimize@2.0.0': resolution: {integrity: sha512-nhdT+CRGDZ+bk68ic+Jw1OZ99YCDIKYA5AlVAnBHJvMawSx9YQqQAIj4refNc1/LRieGiuWvhbG3jvPVYho0Dg==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/relay-operation-optimizer@7.0.21': - resolution: {integrity: sha512-vMdU0+XfeBh9RCwPqRsr3A05hPA3MsahFn/7OAwXzMySA5EVnSH5R4poWNs3h1a0yT0tDPLhxORhK7qJdSWj2A==} + '@graphql-tools/relay-operation-optimizer@7.0.25': + resolution: {integrity: sha512-1S7qq9eyO6ygPNWX2lZd+oxbpl63OhnTTw8+t5OWprM2Tzws9HEosLUpsMR85z1gbezeKtUDt9a2bsSyu4MMFg==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -786,12 +852,24 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + '@graphql-tools/schema@10.0.29': + resolution: {integrity: sha512-+Htiupnq6U/AWOEAJerIOGT1pAf4u43Q3n2JmFpqFfYJchz6sKWZ7L9Lpe/NusaaUQty/IOF+eQlNFypEaWxhg==} + engines: {node: '>=16.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + '@graphql-tools/url-loader@8.0.15': resolution: {integrity: sha512-4cCSaUFK/cULxDnU6mwwRLsFKxEswuFmG7/J68ic+CyJYUVMCc0x2QoKG4E2oeTY2dYIzlT39BmOT4+auqjDmw==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + '@graphql-tools/url-loader@9.0.4': + resolution: {integrity: sha512-UNLU9g3IcZjldb08hsBLp6G8YPzZwC38bZ8PFFs/QyXXPFXzoXECT8rHLzvt32w3YFGSbTpj8FiS/KMdTQHZCg==} + engines: {node: '>=20.0.0'} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + '@graphql-tools/utils@10.10.3': resolution: {integrity: sha512-2EdYiefeLLxsoeZTukSNZJ0E/Z5NnWBUGK2VJa0DQj1scDhVd93HeT1eW9TszJOYmIh3eWAKLv58ri/1XUmdsQ==} engines: {node: '>=16.0.0'} @@ -804,6 +882,12 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + '@graphql-tools/wrap@11.0.4': + resolution: {integrity: sha512-bX1X2QC1oFiH+1nTLhWVx4fp2xoXbDvL+eEiozuWCv7PeZoBs7EgklKZFtpWbcSdNA3L3EuA8JM6mf2jOG6/Sg==} + engines: {node: '>=20.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: @@ -1499,14 +1583,26 @@ packages: '@vue/shared@3.5.12': resolution: {integrity: sha512-L2RPSAwUFbgZH20etwrXyVyCBu9OxRSi8T/38QsvnkJyvq2LufW2lDCOzm7t/U9C1mkhJGWYfCuFBCmIuNivrg==} + '@whatwg-node/disposablestack@0.0.6': + resolution: {integrity: sha512-LOtTn+JgJvX8WfBVJtF08TGrdjuFzGJc4mkP8EdDI8ADbvO7kiexYep1o8dwnt0okb0jYclCDXF13xU7Ge4zSw==} + engines: {node: '>=18.0.0'} + '@whatwg-node/fetch@0.10.1': resolution: {integrity: sha512-gmPOLrsjSZWEZlr9Oe5+wWFBq3CG6fN13rGlM91Jsj/vZ95G9CCvrORGBAxMXy0AJGiC83aYiHXn3JzTzXQmbA==} engines: {node: '>=18.0.0'} + '@whatwg-node/fetch@0.10.13': + resolution: {integrity: sha512-b4PhJ+zYj4357zwk4TTuF2nEe0vVtOrwdsrNo5hL+u1ojXNhh1FgJ6pg1jzDlwlT4oBdzfSwaBwMCtFCsIWg8Q==} + engines: {node: '>=18.0.0'} + '@whatwg-node/node-fetch@0.7.2': resolution: {integrity: sha512-OAAEIbyspvQwkcRGutYN3D0a+hzQogvcZ7I3hf6vg742ZEq52yMJTGtkwjl3KZRmzzUltd/oEMxEGsXFLjnuLQ==} engines: {node: '>=18.0.0'} + '@whatwg-node/node-fetch@0.8.4': + resolution: {integrity: sha512-AlKLc57loGoyYlrzDbejB9EeR+pfdJdGzbYnkEuZaGekFboBwzfVYVMsy88PMriqPI1ORpiGYGgSSWpx7a2sDA==} + engines: {node: '>=18.0.0'} + '@whatwg-node/promise-helpers@1.3.2': resolution: {integrity: sha512-Nst5JdK47VIl9UcGwtv2Rcgyn5lWtZ0/mhRQ4G8NN2isxpq2TO30iqHzmwoJycjWuyUfg3GFXqP/gFHXeV57IA==} engines: {node: '>=16.0.0'} @@ -1816,9 +1912,16 @@ packages: engines: {node: '>=4'} hasBin: true + data-uri-to-buffer@4.0.1: + resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==} + engines: {node: '>= 12'} + dataloader@2.2.2: resolution: {integrity: sha512-8YnDaaf7N3k/q5HnTJVuzSyLETjoZjVmHc4AeKAzOvKHEFQKcn64OKBfzHYtE9zGjctNM7V9I0MfnUVLpi7M5g==} + dataloader@2.2.3: + resolution: {integrity: sha512-y2krtASINtPFS1rSDjacrFgn1dcUuoREVabwlOGOe4SdxenREqwjwjElAdwvbGM7kgZz9a3KVicWR7vcz8rnzA==} + debounce@2.2.0: resolution: {integrity: sha512-Xks6RUDLZFdz8LIdR6q0MTH44k7FikOmnh5xkSjMig6ch45afc8sjTjRQf3P6ax8dMgcQrYO/AR2RGWURrruqw==} engines: {node: '>=18'} @@ -2228,6 +2331,10 @@ packages: picomatch: optional: true + fetch-blob@3.2.0: + resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==} + engines: {node: ^12.20 || >= 14.13} + file-entry-cache@8.0.0: resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} engines: {node: '>=16.0.0'} @@ -2263,6 +2370,10 @@ packages: resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==} engines: {node: '>=0.4.x'} + formdata-polyfill@4.0.10: + resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==} + engines: {node: '>=12.20.0'} + fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} @@ -2367,6 +2478,25 @@ packages: peerDependencies: graphql: '>=0.11 <=16' + graphql-ws@6.0.6: + resolution: {integrity: sha512-zgfER9s+ftkGKUZgc0xbx8T7/HMO4AV5/YuYiFc+AtgcO5T0v8AxYYNQ+ltzuzDZgNkYJaFspm5MMYLjQzrkmw==} + engines: {node: '>=20'} + peerDependencies: + '@fastify/websocket': ^10 || ^11 + crossws: ~0.3 + graphql: ^15.10.1 || ^16 + uWebSockets.js: ^20 + ws: ^8 + peerDependenciesMeta: + '@fastify/websocket': + optional: true + crossws: + optional: true + uWebSockets.js: + optional: true + ws: + optional: true + graphql@16.12.0: resolution: {integrity: sha512-DKKrynuQRne0PNpEbzuEdHlYOMksHSUI8Zc9Unei5gTsMNA2/vMpoMz/yKba50pejK56qj98qM0SjYxAKi13gQ==} engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} @@ -2517,6 +2647,11 @@ packages: peerDependencies: ws: '*' + isows@1.0.7: + resolution: {integrity: sha512-I1fSfDCZL5P0v33sVqeTDSpcstAg/N+wF5HS033mogOVIp4B+oHC7oOCsA3axAbBSGTJ8QubbNmnIRN/h8U7hg==} + peerDependencies: + ws: '*' + istanbul-lib-coverage@3.2.2: resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} engines: {node: '>=8'} @@ -2874,6 +3009,15 @@ packages: '@types/node': optional: true + meros@1.3.2: + resolution: {integrity: sha512-Q3mobPbvEx7XbwhnC1J1r60+5H6EZyNccdzSz0eGexJRwouUtTZxPVRGdqKtxlpD84ScK4+tIGldkqDtCKdI0A==} + engines: {node: '>=13'} + peerDependencies: + '@types/node': '>=13' + peerDependenciesMeta: + '@types/node': + optional: true + micromark-core-commonmark@2.0.3: resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==} @@ -3023,6 +3167,11 @@ packages: no-case@3.0.4: resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} + node-domexception@1.0.0: + resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} + engines: {node: '>=10.5.0'} + deprecated: Use your platform's native DOMException instead + node-fetch@2.7.0: resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} engines: {node: 4.x || >=6.0.0} @@ -3032,6 +3181,10 @@ packages: encoding: optional: true + node-fetch@3.3.2: + resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + node-int64@0.4.0: resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} @@ -3491,6 +3644,10 @@ packages: swap-case@2.0.2: resolution: {integrity: sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw==} + sync-fetch@0.6.0-2: + resolution: {integrity: sha512-c7AfkZ9udatCuAy9RSfiGPpeOKKUAUK5e1cXadLOGUjasdxqYqAK0jTNkM/FSEyJ3a5Ra27j/tw/PS0qLmaF/A==} + engines: {node: '>=18'} + synckit@0.11.11: resolution: {integrity: sha512-MeQTA1r0litLUf0Rp/iisCaL8761lKAZHaimlbGK4j0HysC4PLfqygQj9srcs0m2RdtDYnF8UuYyKpbjHYp7Jw==} engines: {node: ^14.18.0 || >=16.0.0} @@ -3503,6 +3660,10 @@ packages: resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} engines: {node: '>=8'} + timeout-signal@2.0.0: + resolution: {integrity: sha512-YBGpG4bWsHoPvofT6y/5iqulfXIiIErl5B0LdtHT1mGXDFTAhhRrbUpTvBgYbovr+3cKblya2WAOcpoy90XguA==} + engines: {node: '>=16'} + tiny-case@1.0.3: resolution: {integrity: sha512-Eet/eeMhkO6TX8mnUteS9zgPbUMQa4I6Kkp5ORiBD5476/m+PIRiumP5tmh5ioJpH7k51Kehawy2UDfsnxxY8Q==} @@ -3782,9 +3943,17 @@ packages: walker@1.0.8: resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} + web-streams-polyfill@3.3.3: + resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==} + engines: {node: '>= 8'} + webidl-conversions@3.0.1: resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + whatwg-mimetype@4.0.0: + resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==} + engines: {node: '>=18'} + whatwg-url@5.0.0: resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} @@ -3845,6 +4014,18 @@ packages: utf-8-validate: optional: true + ws@8.18.3: + resolution: {integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + xml-name-validator@4.0.0: resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} engines: {node: '>=12'} @@ -3950,8 +4131,8 @@ snapshots: '@ardatan/relay-compiler@12.0.3(graphql@16.12.0)': dependencies: - '@babel/generator': 7.28.3 - '@babel/parser': 7.28.4 + '@babel/generator': 7.28.5 + '@babel/parser': 7.28.5 '@babel/runtime': 7.28.4 chalk: 4.1.2 fb-watchman: 2.0.2 @@ -3982,14 +4163,14 @@ snapshots: dependencies: '@ampproject/remapping': 2.3.0 '@babel/code-frame': 7.27.1 - '@babel/generator': 7.27.5 + '@babel/generator': 7.28.3 '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.4) '@babel/helpers': 7.27.6 - '@babel/parser': 7.28.4 + '@babel/parser': 7.28.5 '@babel/template': 7.27.2 '@babel/traverse': 7.27.4 - '@babel/types': 7.28.4 + '@babel/types': 7.28.5 convert-source-map: 2.0.0 debug: 4.4.3 gensync: 1.0.0-beta.2 @@ -4000,16 +4181,24 @@ snapshots: '@babel/generator@7.27.5': dependencies: - '@babel/parser': 7.28.4 - '@babel/types': 7.28.4 + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 jsesc: 3.1.0 '@babel/generator@7.28.3': dependencies: - '@babel/parser': 7.28.4 - '@babel/types': 7.28.4 + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 + jsesc: 3.1.0 + + '@babel/generator@7.28.5': + dependencies: + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 jsesc: 3.1.0 @@ -4025,7 +4214,7 @@ snapshots: '@babel/helper-module-imports@7.27.1': dependencies: '@babel/traverse': 7.27.4 - '@babel/types': 7.28.4 + '@babel/types': 7.28.5 transitivePeerDependencies: - supports-color @@ -4049,11 +4238,7 @@ snapshots: '@babel/helpers@7.27.6': dependencies: '@babel/template': 7.27.2 - '@babel/types': 7.28.4 - - '@babel/parser@7.28.4': - dependencies: - '@babel/types': 7.28.4 + '@babel/types': 7.28.5 '@babel/parser@7.28.5': dependencies: @@ -4154,16 +4339,16 @@ snapshots: '@babel/template@7.27.2': dependencies: '@babel/code-frame': 7.27.1 - '@babel/parser': 7.28.4 - '@babel/types': 7.28.4 + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 '@babel/traverse@7.27.4': dependencies: '@babel/code-frame': 7.27.1 '@babel/generator': 7.28.3 - '@babel/parser': 7.28.4 + '@babel/parser': 7.28.5 '@babel/template': 7.27.2 - '@babel/types': 7.28.4 + '@babel/types': 7.28.5 debug: 4.4.3 globals: 11.12.0 transitivePeerDependencies: @@ -4208,6 +4393,23 @@ snapshots: tslib: 2.8.1 optional: true + '@envelop/core@5.4.0': + dependencies: + '@envelop/instrumentation': 1.0.0 + '@envelop/types': 5.2.1 + '@whatwg-node/promise-helpers': 1.3.2 + tslib: 2.8.1 + + '@envelop/instrumentation@1.0.0': + dependencies: + '@whatwg-node/promise-helpers': 1.3.2 + tslib: 2.8.1 + + '@envelop/types@5.2.1': + dependencies: + '@whatwg-node/promise-helpers': 1.3.2 + tslib: 2.8.1 + '@es-joy/jsdoccomment@0.50.2': dependencies: '@types/estree': 1.0.8 @@ -4380,28 +4582,30 @@ snapshots: '@eslint/core': 0.17.0 levn: 0.4.1 + '@fastify/busboy@3.2.0': {} + '@graphql-codegen/add@6.0.0(graphql@16.12.0)': dependencies: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) graphql: 16.12.0 tslib: 2.6.3 - '@graphql-codegen/cli@6.0.1(@types/node@24.10.1)(graphql@16.12.0)(typescript@5.9.3)': + '@graphql-codegen/cli@6.0.2(@types/node@24.10.1)(graphql@16.12.0)(typescript@5.9.3)': dependencies: '@babel/generator': 7.28.3 '@babel/template': 7.27.2 - '@babel/types': 7.28.4 - '@graphql-codegen/client-preset': 5.0.0(graphql@16.12.0) + '@babel/types': 7.28.5 + '@graphql-codegen/client-preset': 5.1.2(graphql@16.12.0) '@graphql-codegen/core': 5.0.0(graphql@16.12.0) '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) '@graphql-tools/apollo-engine-loader': 8.0.4(graphql@16.12.0) '@graphql-tools/code-file-loader': 8.1.5(graphql@16.12.0) '@graphql-tools/git-loader': 8.0.9(graphql@16.12.0) - '@graphql-tools/github-loader': 8.0.4(@types/node@24.10.1)(graphql@16.12.0) + '@graphql-tools/github-loader': 9.0.4(@types/node@24.10.1)(graphql@16.12.0) '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.12.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.12.0) '@graphql-tools/load': 8.1.0(graphql@16.12.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@24.10.1)(graphql@16.12.0) + '@graphql-tools/url-loader': 9.0.4(@types/node@24.10.1)(graphql@16.12.0) '@graphql-tools/utils': 10.10.3(graphql@16.12.0) '@inquirer/prompts': 7.8.4(@types/node@24.10.1) '@whatwg-node/fetch': 0.10.1 @@ -4424,26 +4628,29 @@ snapshots: yaml: 2.8.1 yargs: 17.7.2 transitivePeerDependencies: + - '@fastify/websocket' - '@types/node' - bufferutil - cosmiconfig-toml-loader + - crossws - encoding - graphql-sock - supports-color - typescript + - uWebSockets.js - utf-8-validate - '@graphql-codegen/client-preset@5.0.0(graphql@16.12.0)': + '@graphql-codegen/client-preset@5.1.2(graphql@16.12.0)': dependencies: '@babel/helper-plugin-utils': 7.27.1 '@babel/template': 7.27.2 '@graphql-codegen/add': 6.0.0(graphql@16.12.0) - '@graphql-codegen/gql-tag-operations': 5.0.0(graphql@16.12.0) + '@graphql-codegen/gql-tag-operations': 5.0.4(graphql@16.12.0) '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) - '@graphql-codegen/typed-document-node': 6.0.0(graphql@16.12.0) - '@graphql-codegen/typescript': 5.0.2(graphql@16.12.0) - '@graphql-codegen/typescript-operations': 5.0.0(graphql@16.12.0) - '@graphql-codegen/visitor-plugin-common': 6.1.0(graphql@16.12.0) + '@graphql-codegen/typed-document-node': 6.1.1(graphql@16.12.0) + '@graphql-codegen/typescript': 5.0.3(graphql@16.12.0) + '@graphql-codegen/typescript-operations': 5.0.3(graphql@16.12.0) + '@graphql-codegen/visitor-plugin-common': 6.1.1(graphql@16.12.0) '@graphql-tools/documents': 1.0.1(graphql@16.12.0) '@graphql-tools/utils': 10.10.3(graphql@16.12.0) '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0) @@ -4460,10 +4667,10 @@ snapshots: graphql: 16.12.0 tslib: 2.6.3 - '@graphql-codegen/gql-tag-operations@5.0.0(graphql@16.12.0)': + '@graphql-codegen/gql-tag-operations@5.0.4(graphql@16.12.0)': dependencies: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) - '@graphql-codegen/visitor-plugin-common': 6.0.0(graphql@16.12.0) + '@graphql-codegen/visitor-plugin-common': 6.1.1(graphql@16.12.0) '@graphql-tools/utils': 10.10.3(graphql@16.12.0) auto-bind: 4.0.0 graphql: 16.12.0 @@ -4488,10 +4695,10 @@ snapshots: graphql: 16.12.0 tslib: 2.6.3 - '@graphql-codegen/typed-document-node@6.0.0(graphql@16.12.0)': + '@graphql-codegen/typed-document-node@6.1.1(graphql@16.12.0)': dependencies: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) - '@graphql-codegen/visitor-plugin-common': 6.0.0(graphql@16.12.0) + '@graphql-codegen/visitor-plugin-common': 6.1.1(graphql@16.12.0) auto-bind: 4.0.0 change-case-all: 1.0.15 graphql: 16.12.0 @@ -4499,33 +4706,33 @@ snapshots: transitivePeerDependencies: - encoding - '@graphql-codegen/typescript-operations@5.0.0(graphql@16.12.0)': + '@graphql-codegen/typescript-operations@5.0.3(graphql@16.12.0)': dependencies: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) - '@graphql-codegen/typescript': 5.0.2(graphql@16.12.0) - '@graphql-codegen/visitor-plugin-common': 6.0.0(graphql@16.12.0) + '@graphql-codegen/typescript': 5.0.3(graphql@16.12.0) + '@graphql-codegen/visitor-plugin-common': 6.1.1(graphql@16.12.0) auto-bind: 4.0.0 graphql: 16.12.0 tslib: 2.6.3 transitivePeerDependencies: - encoding - '@graphql-codegen/typescript@5.0.2(graphql@16.12.0)': + '@graphql-codegen/typescript@5.0.3(graphql@16.12.0)': dependencies: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) '@graphql-codegen/schema-ast': 5.0.0(graphql@16.12.0) - '@graphql-codegen/visitor-plugin-common': 6.1.0(graphql@16.12.0) + '@graphql-codegen/visitor-plugin-common': 6.1.1(graphql@16.12.0) auto-bind: 4.0.0 graphql: 16.12.0 tslib: 2.6.3 transitivePeerDependencies: - encoding - '@graphql-codegen/visitor-plugin-common@6.0.0(graphql@16.12.0)': + '@graphql-codegen/visitor-plugin-common@6.1.1(graphql@16.12.0)': dependencies: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) '@graphql-tools/optimize': 2.0.0(graphql@16.12.0) - '@graphql-tools/relay-operation-optimizer': 7.0.21(graphql@16.12.0) + '@graphql-tools/relay-operation-optimizer': 7.0.25(graphql@16.12.0) '@graphql-tools/utils': 10.10.3(graphql@16.12.0) auto-bind: 4.0.0 change-case-all: 1.0.15 @@ -4537,21 +4744,7 @@ snapshots: transitivePeerDependencies: - encoding - '@graphql-codegen/visitor-plugin-common@6.1.0(graphql@16.12.0)': - dependencies: - '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) - '@graphql-tools/optimize': 2.0.0(graphql@16.12.0) - '@graphql-tools/relay-operation-optimizer': 7.0.21(graphql@16.12.0) - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) - auto-bind: 4.0.0 - change-case-all: 1.0.15 - dependency-graph: 1.0.0 - graphql: 16.12.0 - graphql-tag: 2.12.6(graphql@16.12.0) - parse-filepath: 1.0.2 - tslib: 2.6.3 - transitivePeerDependencies: - - encoding + '@graphql-hive/signal@2.0.0': {} '@graphql-tools/apollo-engine-loader@8.0.4(graphql@16.12.0)': dependencies: @@ -4563,6 +4756,14 @@ snapshots: transitivePeerDependencies: - encoding + '@graphql-tools/batch-execute@10.0.3(graphql@16.12.0)': + dependencies: + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@whatwg-node/promise-helpers': 1.3.2 + dataloader: 2.2.3 + graphql: 16.12.0 + tslib: 2.8.1 + '@graphql-tools/batch-execute@9.0.6(graphql@16.12.0)': dependencies: '@graphql-tools/utils': 10.10.3(graphql@16.12.0) @@ -4594,12 +4795,30 @@ snapshots: graphql: 16.12.0 tslib: 2.8.1 + '@graphql-tools/delegate@11.1.2(graphql@16.12.0)': + dependencies: + '@graphql-tools/batch-execute': 10.0.3(graphql@16.12.0) + '@graphql-tools/executor': 1.4.13(graphql@16.12.0) + '@graphql-tools/schema': 10.0.29(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@repeaterjs/repeater': 3.0.6 + '@whatwg-node/promise-helpers': 1.3.2 + dataloader: 2.2.3 + graphql: 16.12.0 + tslib: 2.8.1 + '@graphql-tools/documents@1.0.1(graphql@16.12.0)': dependencies: graphql: 16.12.0 lodash.sortby: 4.7.0 tslib: 2.8.1 + '@graphql-tools/executor-common@1.0.4(graphql@16.12.0)': + dependencies: + '@envelop/core': 5.4.0 + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + graphql: 16.12.0 + '@graphql-tools/executor-graphql-ws@1.3.2(graphql@16.12.0)': dependencies: '@graphql-tools/utils': 10.10.3(graphql@16.12.0) @@ -4613,6 +4832,23 @@ snapshots: - bufferutil - utf-8-validate + '@graphql-tools/executor-graphql-ws@3.1.2(graphql@16.12.0)': + dependencies: + '@graphql-tools/executor-common': 1.0.4(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@whatwg-node/disposablestack': 0.0.6 + graphql: 16.12.0 + graphql-ws: 6.0.6(graphql@16.12.0)(ws@8.18.3) + isows: 1.0.7(ws@8.18.3) + tslib: 2.8.1 + ws: 8.18.3 + transitivePeerDependencies: + - '@fastify/websocket' + - bufferutil + - crossws + - uWebSockets.js + - utf-8-validate + '@graphql-tools/executor-http@1.1.9(@types/node@24.10.1)(graphql@16.12.0)': dependencies: '@graphql-tools/utils': 10.10.3(graphql@16.12.0) @@ -4626,6 +4862,21 @@ snapshots: transitivePeerDependencies: - '@types/node' + '@graphql-tools/executor-http@3.0.6(@types/node@24.10.1)(graphql@16.12.0)': + dependencies: + '@graphql-hive/signal': 2.0.0 + '@graphql-tools/executor-common': 1.0.4(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@repeaterjs/repeater': 3.0.6 + '@whatwg-node/disposablestack': 0.0.6 + '@whatwg-node/fetch': 0.10.13 + '@whatwg-node/promise-helpers': 1.3.2 + graphql: 16.12.0 + meros: 1.3.2(@types/node@24.10.1) + tslib: 2.8.1 + transitivePeerDependencies: + - '@types/node' + '@graphql-tools/executor-legacy-ws@1.1.2(graphql@16.12.0)': dependencies: '@graphql-tools/utils': 10.10.3(graphql@16.12.0) @@ -4638,6 +4889,18 @@ snapshots: - bufferutil - utf-8-validate + '@graphql-tools/executor-legacy-ws@1.1.23(graphql@16.12.0)': + dependencies: + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@types/ws': 8.5.13 + graphql: 16.12.0 + isomorphic-ws: 5.0.0(ws@8.18.0) + tslib: 2.8.1 + ws: 8.18.0 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + '@graphql-tools/executor@1.3.3(graphql@16.12.0)': dependencies: '@graphql-tools/utils': 10.10.3(graphql@16.12.0) @@ -4647,6 +4910,16 @@ snapshots: tslib: 2.8.1 value-or-promise: 1.0.12 + '@graphql-tools/executor@1.4.13(graphql@16.12.0)': + dependencies: + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0) + '@repeaterjs/repeater': 3.0.6 + '@whatwg-node/disposablestack': 0.0.6 + '@whatwg-node/promise-helpers': 1.3.2 + graphql: 16.12.0 + tslib: 2.8.1 + '@graphql-tools/git-loader@8.0.9(graphql@16.12.0)': dependencies: '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.12.0) @@ -4659,19 +4932,18 @@ snapshots: transitivePeerDependencies: - supports-color - '@graphql-tools/github-loader@8.0.4(@types/node@24.10.1)(graphql@16.12.0)': + '@graphql-tools/github-loader@9.0.4(@types/node@24.10.1)(graphql@16.12.0)': dependencies: - '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/executor-http': 1.1.9(@types/node@24.10.1)(graphql@16.12.0) - '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.12.0) + '@graphql-tools/executor-http': 3.0.6(@types/node@24.10.1)(graphql@16.12.0) + '@graphql-tools/graphql-tag-pluck': 8.3.25(graphql@16.12.0) '@graphql-tools/utils': 10.10.3(graphql@16.12.0) - '@whatwg-node/fetch': 0.10.1 + '@whatwg-node/fetch': 0.10.13 + '@whatwg-node/promise-helpers': 1.3.2 graphql: 16.12.0 + sync-fetch: 0.6.0-2 tslib: 2.8.1 - value-or-promise: 1.0.12 transitivePeerDependencies: - '@types/node' - - encoding - supports-color '@graphql-tools/graphql-file-loader@8.0.3(graphql@16.12.0)': @@ -4683,13 +4955,26 @@ snapshots: tslib: 2.8.1 unixify: 1.0.0 + '@graphql-tools/graphql-tag-pluck@8.3.25(graphql@16.12.0)': + dependencies: + '@babel/core': 7.27.4 + '@babel/parser': 7.28.5 + '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.27.4) + '@babel/traverse': 7.27.4 + '@babel/types': 7.28.5 + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + graphql: 16.12.0 + tslib: 2.8.1 + transitivePeerDependencies: + - supports-color + '@graphql-tools/graphql-tag-pluck@8.3.4(graphql@16.12.0)': dependencies: '@babel/core': 7.27.4 - '@babel/parser': 7.28.4 + '@babel/parser': 7.28.5 '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.27.4) '@babel/traverse': 7.27.4 - '@babel/types': 7.28.4 + '@babel/types': 7.28.5 '@graphql-tools/utils': 10.10.3(graphql@16.12.0) graphql: 16.12.0 tslib: 2.8.1 @@ -4725,12 +5010,18 @@ snapshots: graphql: 16.12.0 tslib: 2.8.1 + '@graphql-tools/merge@9.1.5(graphql@16.12.0)': + dependencies: + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + graphql: 16.12.0 + tslib: 2.8.1 + '@graphql-tools/optimize@2.0.0(graphql@16.12.0)': dependencies: graphql: 16.12.0 tslib: 2.6.3 - '@graphql-tools/relay-operation-optimizer@7.0.21(graphql@16.12.0)': + '@graphql-tools/relay-operation-optimizer@7.0.25(graphql@16.12.0)': dependencies: '@ardatan/relay-compiler': 12.0.3(graphql@16.12.0) '@graphql-tools/utils': 10.10.3(graphql@16.12.0) @@ -4746,6 +5037,13 @@ snapshots: graphql: 16.12.0 tslib: 2.8.1 + '@graphql-tools/schema@10.0.29(graphql@16.12.0)': + dependencies: + '@graphql-tools/merge': 9.1.5(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + graphql: 16.12.0 + tslib: 2.8.1 + '@graphql-tools/url-loader@8.0.15(@types/node@24.10.1)(graphql@16.12.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 @@ -4767,6 +5065,29 @@ snapshots: - encoding - utf-8-validate + '@graphql-tools/url-loader@9.0.4(@types/node@24.10.1)(graphql@16.12.0)': + dependencies: + '@graphql-tools/executor-graphql-ws': 3.1.2(graphql@16.12.0) + '@graphql-tools/executor-http': 3.0.6(@types/node@24.10.1)(graphql@16.12.0) + '@graphql-tools/executor-legacy-ws': 1.1.23(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/wrap': 11.0.4(graphql@16.12.0) + '@types/ws': 8.5.13 + '@whatwg-node/fetch': 0.10.13 + '@whatwg-node/promise-helpers': 1.3.2 + graphql: 16.12.0 + isomorphic-ws: 5.0.0(ws@8.18.0) + sync-fetch: 0.6.0-2 + tslib: 2.8.1 + ws: 8.18.0 + transitivePeerDependencies: + - '@fastify/websocket' + - '@types/node' + - bufferutil + - crossws + - uWebSockets.js + - utf-8-validate + '@graphql-tools/utils@10.10.3(graphql@16.12.0)': dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0) @@ -4784,6 +5105,15 @@ snapshots: tslib: 2.8.1 value-or-promise: 1.0.12 + '@graphql-tools/wrap@11.0.4(graphql@16.12.0)': + dependencies: + '@graphql-tools/delegate': 11.1.2(graphql@16.12.0) + '@graphql-tools/schema': 10.0.29(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@whatwg-node/promise-helpers': 1.3.2 + graphql: 16.12.0 + tslib: 2.8.1 + '@graphql-typed-document-node/core@3.2.0(graphql@16.12.0)': dependencies: graphql: 16.12.0 @@ -5266,24 +5596,24 @@ snapshots: '@types/babel__core@7.20.5': dependencies: - '@babel/parser': 7.28.4 - '@babel/types': 7.28.4 + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 '@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.28.4 + '@babel/types': 7.28.5 '@types/babel__template@7.4.4': dependencies: - '@babel/parser': 7.28.4 - '@babel/types': 7.28.4 + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 '@types/babel__traverse@7.20.6': dependencies: - '@babel/types': 7.28.4 + '@babel/types': 7.28.5 '@types/chai@5.2.3': dependencies: @@ -5566,11 +5896,21 @@ snapshots: '@vue/shared@3.5.12': {} + '@whatwg-node/disposablestack@0.0.6': + dependencies: + '@whatwg-node/promise-helpers': 1.3.2 + tslib: 2.8.1 + '@whatwg-node/fetch@0.10.1': dependencies: '@whatwg-node/node-fetch': 0.7.2 urlpattern-polyfill: 10.0.0 + '@whatwg-node/fetch@0.10.13': + dependencies: + '@whatwg-node/node-fetch': 0.8.4 + urlpattern-polyfill: 10.0.0 + '@whatwg-node/node-fetch@0.7.2': dependencies: '@kamilkisiela/fast-url-parser': 1.1.4 @@ -5578,6 +5918,13 @@ snapshots: fast-querystring: 1.1.2 tslib: 2.8.1 + '@whatwg-node/node-fetch@0.8.4': + dependencies: + '@fastify/busboy': 3.2.0 + '@whatwg-node/disposablestack': 0.0.6 + '@whatwg-node/promise-helpers': 1.3.2 + tslib: 2.8.1 + '@whatwg-node/promise-helpers@1.3.2': dependencies: tslib: 2.8.1 @@ -5896,8 +6243,12 @@ snapshots: cssesc@3.0.0: {} + data-uri-to-buffer@4.0.1: {} + dataloader@2.2.2: {} + dataloader@2.2.3: {} + debounce@2.2.0: {} debug@4.4.3: @@ -6377,6 +6728,11 @@ snapshots: optionalDependencies: picomatch: 4.0.3 + fetch-blob@3.2.0: + dependencies: + node-domexception: 1.0.0 + web-streams-polyfill: 3.3.3 + file-entry-cache@8.0.0: dependencies: flat-cache: 4.0.1 @@ -6411,6 +6767,10 @@ snapshots: format@0.2.2: {} + formdata-polyfill@4.0.10: + dependencies: + fetch-blob: 3.2.0 + fs.realpath@1.0.0: {} fsevents@2.3.3: @@ -6515,6 +6875,12 @@ snapshots: dependencies: graphql: 16.12.0 + graphql-ws@6.0.6(graphql@16.12.0)(ws@8.18.3): + dependencies: + graphql: 16.12.0 + optionalDependencies: + ws: 8.18.3 + graphql@16.12.0: {} handlebars@4.7.8: @@ -6635,12 +7001,16 @@ snapshots: dependencies: ws: 8.18.0 + isows@1.0.7(ws@8.18.3): + dependencies: + ws: 8.18.3 + istanbul-lib-coverage@3.2.2: {} istanbul-lib-instrument@6.0.3: dependencies: '@babel/core': 7.27.4 - '@babel/parser': 7.28.4 + '@babel/parser': 7.28.5 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 semver: 7.7.3 @@ -6655,7 +7025,7 @@ snapshots: istanbul-lib-source-maps@5.0.6: dependencies: - '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/trace-mapping': 0.3.31 debug: 4.4.3 istanbul-lib-coverage: 3.2.2 transitivePeerDependencies: @@ -7246,6 +7616,10 @@ snapshots: optionalDependencies: '@types/node': 24.10.1 + meros@1.3.2(@types/node@24.10.1): + optionalDependencies: + '@types/node': 24.10.1 + micromark-core-commonmark@2.0.3: dependencies: decode-named-character-reference: 1.2.0 @@ -7493,10 +7867,18 @@ snapshots: lower-case: 2.0.2 tslib: 2.6.3 + node-domexception@1.0.0: {} + node-fetch@2.7.0: dependencies: whatwg-url: 5.0.0 + node-fetch@3.3.2: + dependencies: + data-uri-to-buffer: 4.0.1 + fetch-blob: 3.2.0 + formdata-polyfill: 4.0.10 + node-int64@0.4.0: {} node-releases@2.0.27: {} @@ -7940,6 +8322,12 @@ snapshots: dependencies: tslib: 2.6.3 + sync-fetch@0.6.0-2: + dependencies: + node-fetch: 3.3.2 + timeout-signal: 2.0.0 + whatwg-mimetype: 4.0.0 + synckit@0.11.11: dependencies: '@pkgr/core': 0.2.9 @@ -7952,6 +8340,8 @@ snapshots: glob: 7.2.3 minimatch: 3.1.2 + timeout-signal@2.0.0: {} + tiny-case@1.0.3: {} tinybench@2.9.0: {} @@ -8121,7 +8511,7 @@ snapshots: v8-to-istanbul@9.3.0: dependencies: - '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/trace-mapping': 0.3.31 '@types/istanbul-lib-coverage': 2.0.6 convert-source-map: 2.0.0 @@ -8200,8 +8590,12 @@ snapshots: dependencies: makeerror: 1.0.12 + web-streams-polyfill@3.3.3: {} + webidl-conversions@3.0.1: {} + whatwg-mimetype@4.0.0: {} + whatwg-url@5.0.0: dependencies: tr46: 0.0.3 @@ -8257,6 +8651,8 @@ snapshots: ws@8.18.0: {} + ws@8.18.3: {} + xml-name-validator@4.0.0: {} y18n@5.0.8: {} From 5c790bb7d877816b39d3e46aefecdde3a645d0dd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 12 Nov 2025 23:54:04 +0000 Subject: [PATCH 111/133] chore(deps): update pnpm to v10.22.0 (#1299) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 67733ef6..247bd846 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "graphql-codegen-typescript-validation-schema", "type": "module", "version": "0.18.1", - "packageManager": "pnpm@10.21.0", + "packageManager": "pnpm@10.22.0", "description": "GraphQL Code Generator plugin to generate form validation schema from your GraphQL schema", "respository": { "type": "git", From 1a5f21eec1699e640bcaf51ac238ac5c5e99cdc6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 13 Nov 2025 07:04:00 +0000 Subject: [PATCH 112/133] chore(deps): update dependency @tsconfig/recommended to v1.0.13 (#1300) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 247bd846..c6a159ab 100644 --- a/package.json +++ b/package.json @@ -90,7 +90,7 @@ "@antfu/eslint-config": "^6.0.0", "@graphql-codegen/cli": "6.0.2", "@graphql-codegen/typescript": "^5.0.0", - "@tsconfig/recommended": "1.0.12", + "@tsconfig/recommended": "1.0.13", "@types/graphlib": "^2.1.8", "@types/node": "^24.0.0", "eslint": "9.39.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 75dab216..3fa432fb 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -37,8 +37,8 @@ importers: specifier: ^5.0.0 version: 5.0.3(graphql@16.12.0) '@tsconfig/recommended': - specifier: 1.0.12 - version: 1.0.12 + specifier: 1.0.13 + version: 1.0.13 '@types/graphlib': specifier: ^2.1.8 version: 2.1.12 @@ -1310,8 +1310,8 @@ packages: peerDependencies: eslint: '>=9.0.0' - '@tsconfig/recommended@1.0.12': - resolution: {integrity: sha512-S4HA/QRT24s5O42t/G+nYI2V88K6RGPKCodImparTnlBGb3MPfq8D7gkM7lL7yNQ1zbTAdBNfcwqsCbTjceNpA==} + '@tsconfig/recommended@1.0.13': + resolution: {integrity: sha512-sySRuBfMKyKO/j2ZAhR8kSembhjuPEV4Ra3AHtmWLq51+iGaudr45crPSzNC5b7/Ctrh9dfUpBuTlYrH6rM58Q==} '@tybys/wasm-util@0.9.0': resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==} @@ -5587,7 +5587,7 @@ snapshots: estraverse: 5.3.0 picomatch: 4.0.3 - '@tsconfig/recommended@1.0.12': {} + '@tsconfig/recommended@1.0.13': {} '@tybys/wasm-util@0.9.0': dependencies: From 3a3da73a91d6e2f404c9b2b40689729e218f53d8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 13 Nov 2025 21:08:33 +0000 Subject: [PATCH 113/133] chore(deps): update graphqlcodegenerator monorepo (#1301) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 44 +++++++++++++++++++++++++++++++++----------- 1 file changed, 33 insertions(+), 11 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3fa432fb..7ba51a17 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -16,7 +16,7 @@ importers: version: 5.0.0(graphql@16.12.0) '@graphql-codegen/visitor-plugin-common': specifier: ^6.0.0 - version: 6.1.1(graphql@16.12.0) + version: 6.1.2(graphql@16.12.0) '@graphql-tools/utils': specifier: ^10.0.0 version: 10.10.3(graphql@16.12.0) @@ -35,7 +35,7 @@ importers: version: 6.0.2(@types/node@24.10.1)(graphql@16.12.0)(typescript@5.9.3) '@graphql-codegen/typescript': specifier: ^5.0.0 - version: 5.0.3(graphql@16.12.0) + version: 5.0.4(graphql@16.12.0) '@tsconfig/recommended': specifier: 1.0.13 version: 1.0.13 @@ -662,8 +662,8 @@ packages: graphql-sock: optional: true - '@graphql-codegen/typescript@5.0.3': - resolution: {integrity: sha512-8iU460ft+9gBYP1FMy2Uz4xvuAtbnArXaW0PG/w4oBaX6EKNraFgK4QVzCddWFx4TsJqTubuC4ADyyF3WSsGGg==} + '@graphql-codegen/typescript@5.0.4': + resolution: {integrity: sha512-q6S8hX+aR4BzeGgolac4gp22rBnXbLhedmOwT1UBT9e3lGNmNpYC7WJUEzAPjWf6z1lRSNmojLlwEjTnffhKNA==} engines: {node: '>=16'} peerDependencies: graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -674,6 +674,12 @@ packages: peerDependencies: graphql: ^0.8.0 || ^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-codegen/visitor-plugin-common@6.1.2': + resolution: {integrity: sha512-zYdrhJKgk8kqE1Xz5/m/Ua42zk+rIvYB/FHh3dE1AhZ6b1IDqgKjF3LnkT+K2qenf9EfT4yNjXd5CEKMeXfHyg==} + engines: {node: '>=16'} + peerDependencies: + graphql: ^0.8.0 || ^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-hive/signal@2.0.0': resolution: {integrity: sha512-Pz8wB3K0iU6ae9S1fWfsmJX24CcGeTo6hE7T44ucmV/ALKRj+bxClmqrYcDT7v3f0d12Rh4FAXBb6gon+WkDpQ==} engines: {node: '>=20.0.0'} @@ -4076,7 +4082,7 @@ snapshots: '@ampproject/remapping@2.3.0': dependencies: '@jridgewell/gen-mapping': 0.3.13 - '@jridgewell/trace-mapping': 0.3.31 + '@jridgewell/trace-mapping': 0.3.25 '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.8(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: @@ -4163,7 +4169,7 @@ snapshots: dependencies: '@ampproject/remapping': 2.3.0 '@babel/code-frame': 7.27.1 - '@babel/generator': 7.28.3 + '@babel/generator': 7.28.5 '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.4) '@babel/helpers': 7.27.6 @@ -4648,9 +4654,9 @@ snapshots: '@graphql-codegen/gql-tag-operations': 5.0.4(graphql@16.12.0) '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) '@graphql-codegen/typed-document-node': 6.1.1(graphql@16.12.0) - '@graphql-codegen/typescript': 5.0.3(graphql@16.12.0) + '@graphql-codegen/typescript': 5.0.4(graphql@16.12.0) '@graphql-codegen/typescript-operations': 5.0.3(graphql@16.12.0) - '@graphql-codegen/visitor-plugin-common': 6.1.1(graphql@16.12.0) + '@graphql-codegen/visitor-plugin-common': 6.1.2(graphql@16.12.0) '@graphql-tools/documents': 1.0.1(graphql@16.12.0) '@graphql-tools/utils': 10.10.3(graphql@16.12.0) '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0) @@ -4709,7 +4715,7 @@ snapshots: '@graphql-codegen/typescript-operations@5.0.3(graphql@16.12.0)': dependencies: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) - '@graphql-codegen/typescript': 5.0.3(graphql@16.12.0) + '@graphql-codegen/typescript': 5.0.4(graphql@16.12.0) '@graphql-codegen/visitor-plugin-common': 6.1.1(graphql@16.12.0) auto-bind: 4.0.0 graphql: 16.12.0 @@ -4717,11 +4723,11 @@ snapshots: transitivePeerDependencies: - encoding - '@graphql-codegen/typescript@5.0.3(graphql@16.12.0)': + '@graphql-codegen/typescript@5.0.4(graphql@16.12.0)': dependencies: '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) '@graphql-codegen/schema-ast': 5.0.0(graphql@16.12.0) - '@graphql-codegen/visitor-plugin-common': 6.1.1(graphql@16.12.0) + '@graphql-codegen/visitor-plugin-common': 6.1.2(graphql@16.12.0) auto-bind: 4.0.0 graphql: 16.12.0 tslib: 2.6.3 @@ -4744,6 +4750,22 @@ snapshots: transitivePeerDependencies: - encoding + '@graphql-codegen/visitor-plugin-common@6.1.2(graphql@16.12.0)': + dependencies: + '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) + '@graphql-tools/optimize': 2.0.0(graphql@16.12.0) + '@graphql-tools/relay-operation-optimizer': 7.0.25(graphql@16.12.0) + '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + auto-bind: 4.0.0 + change-case-all: 1.0.15 + dependency-graph: 1.0.0 + graphql: 16.12.0 + graphql-tag: 2.12.6(graphql@16.12.0) + parse-filepath: 1.0.2 + tslib: 2.6.3 + transitivePeerDependencies: + - encoding + '@graphql-hive/signal@2.0.0': {} '@graphql-tools/apollo-engine-loader@8.0.4(graphql@16.12.0)': From 932dde1cbdd2555f2a042a46c2477e4e152e2cb5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 14 Nov 2025 12:05:09 +0000 Subject: [PATCH 114/133] chore(deps): update dependency vitest to v4.0.9 (#1302) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 286 ++++++++++++++++++++++++------------------------- 1 file changed, 143 insertions(+), 143 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7ba51a17..28fa1f46 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.8(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) + version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.9(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.2 version: 6.0.2(@types/node@24.10.1)(graphql@16.12.0)(typescript@5.9.3) @@ -71,7 +71,7 @@ importers: version: 1.1.0(typescript@5.9.3) vitest: specifier: ^4.0.0 - version: 4.0.8(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) + version: 4.0.9(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.1 version: 1.7.1 @@ -1184,113 +1184,113 @@ packages: '@repeaterjs/repeater@3.0.6': resolution: {integrity: sha512-Javneu5lsuhwNCryN+pXH93VPQ8g0dBX7wItHFgYiwQmzE1sVdg5tWHiOgHywzL2W21XQopa7IwIEnNbmeUJYA==} - '@rollup/rollup-android-arm-eabi@4.52.5': - resolution: {integrity: sha512-8c1vW4ocv3UOMp9K+gToY5zL2XiiVw3k7f1ksf4yO1FlDFQ1C2u72iACFnSOceJFsWskc2WZNqeRhFRPzv+wtQ==} + '@rollup/rollup-android-arm-eabi@4.53.2': + resolution: {integrity: sha512-yDPzwsgiFO26RJA4nZo8I+xqzh7sJTZIWQOxn+/XOdPE31lAvLIYCKqjV+lNH/vxE2L2iH3plKxDCRK6i+CwhA==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.52.5': - resolution: {integrity: sha512-mQGfsIEFcu21mvqkEKKu2dYmtuSZOBMmAl5CFlPGLY94Vlcm+zWApK7F/eocsNzp8tKmbeBP8yXyAbx0XHsFNA==} + '@rollup/rollup-android-arm64@4.53.2': + resolution: {integrity: sha512-k8FontTxIE7b0/OGKeSN5B6j25EuppBcWM33Z19JoVT7UTXFSo3D9CdU39wGTeb29NO3XxpMNauh09B+Ibw+9g==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.52.5': - resolution: {integrity: sha512-takF3CR71mCAGA+v794QUZ0b6ZSrgJkArC+gUiG6LB6TQty9T0Mqh3m2ImRBOxS2IeYBo4lKWIieSvnEk2OQWA==} + '@rollup/rollup-darwin-arm64@4.53.2': + resolution: {integrity: sha512-A6s4gJpomNBtJ2yioj8bflM2oogDwzUiMl2yNJ2v9E7++sHrSrsQ29fOfn5DM/iCzpWcebNYEdXpaK4tr2RhfQ==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.52.5': - resolution: {integrity: sha512-W901Pla8Ya95WpxDn//VF9K9u2JbocwV/v75TE0YIHNTbhqUTv9w4VuQ9MaWlNOkkEfFwkdNhXgcLqPSmHy0fA==} + '@rollup/rollup-darwin-x64@4.53.2': + resolution: {integrity: sha512-e6XqVmXlHrBlG56obu9gDRPW3O3hLxpwHpLsBJvuI8qqnsrtSZ9ERoWUXtPOkY8c78WghyPHZdmPhHLWNdAGEw==} cpu: [x64] os: [darwin] - '@rollup/rollup-freebsd-arm64@4.52.5': - resolution: {integrity: sha512-QofO7i7JycsYOWxe0GFqhLmF6l1TqBswJMvICnRUjqCx8b47MTo46W8AoeQwiokAx3zVryVnxtBMcGcnX12LvA==} + '@rollup/rollup-freebsd-arm64@4.53.2': + resolution: {integrity: sha512-v0E9lJW8VsrwPux5Qe5CwmH/CF/2mQs6xU1MF3nmUxmZUCHazCjLgYvToOk+YuuUqLQBio1qkkREhxhc656ViA==} cpu: [arm64] os: [freebsd] - '@rollup/rollup-freebsd-x64@4.52.5': - resolution: {integrity: sha512-jr21b/99ew8ujZubPo9skbrItHEIE50WdV86cdSoRkKtmWa+DDr6fu2c/xyRT0F/WazZpam6kk7IHBerSL7LDQ==} + '@rollup/rollup-freebsd-x64@4.53.2': + resolution: {integrity: sha512-ClAmAPx3ZCHtp6ysl4XEhWU69GUB1D+s7G9YjHGhIGCSrsg00nEGRRZHmINYxkdoJehde8VIsDC5t9C0gb6yqA==} cpu: [x64] os: [freebsd] - '@rollup/rollup-linux-arm-gnueabihf@4.52.5': - resolution: {integrity: sha512-PsNAbcyv9CcecAUagQefwX8fQn9LQ4nZkpDboBOttmyffnInRy8R8dSg6hxxl2Re5QhHBf6FYIDhIj5v982ATQ==} + '@rollup/rollup-linux-arm-gnueabihf@4.53.2': + resolution: {integrity: sha512-EPlb95nUsz6Dd9Qy13fI5kUPXNSljaG9FiJ4YUGU1O/Q77i5DYFW5KR8g1OzTcdZUqQQ1KdDqsTohdFVwCwjqg==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.52.5': - resolution: {integrity: sha512-Fw4tysRutyQc/wwkmcyoqFtJhh0u31K+Q6jYjeicsGJJ7bbEq8LwPWV/w0cnzOqR2m694/Af6hpFayLJZkG2VQ==} + '@rollup/rollup-linux-arm-musleabihf@4.53.2': + resolution: {integrity: sha512-BOmnVW+khAUX+YZvNfa0tGTEMVVEerOxN0pDk2E6N6DsEIa2Ctj48FOMfNDdrwinocKaC7YXUZ1pHlKpnkja/Q==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.52.5': - resolution: {integrity: sha512-a+3wVnAYdQClOTlyapKmyI6BLPAFYs0JM8HRpgYZQO02rMR09ZcV9LbQB+NL6sljzG38869YqThrRnfPMCDtZg==} + '@rollup/rollup-linux-arm64-gnu@4.53.2': + resolution: {integrity: sha512-Xt2byDZ+6OVNuREgBXr4+CZDJtrVso5woFtpKdGPhpTPHcNG7D8YXeQzpNbFRxzTVqJf7kvPMCub/pcGUWgBjA==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.52.5': - resolution: {integrity: sha512-AvttBOMwO9Pcuuf7m9PkC1PUIKsfaAJ4AYhy944qeTJgQOqJYJ9oVl2nYgY7Rk0mkbsuOpCAYSs6wLYB2Xiw0Q==} + '@rollup/rollup-linux-arm64-musl@4.53.2': + resolution: {integrity: sha512-+LdZSldy/I9N8+klim/Y1HsKbJ3BbInHav5qE9Iy77dtHC/pibw1SR/fXlWyAk0ThnpRKoODwnAuSjqxFRDHUQ==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-loong64-gnu@4.52.5': - resolution: {integrity: sha512-DkDk8pmXQV2wVrF6oq5tONK6UHLz/XcEVow4JTTerdeV1uqPeHxwcg7aFsfnSm9L+OO8WJsWotKM2JJPMWrQtA==} + '@rollup/rollup-linux-loong64-gnu@4.53.2': + resolution: {integrity: sha512-8ms8sjmyc1jWJS6WdNSA23rEfdjWB30LH8Wqj0Cqvv7qSHnvw6kgMMXRdop6hkmGPlyYBdRPkjJnj3KCUHV/uQ==} cpu: [loong64] os: [linux] - '@rollup/rollup-linux-ppc64-gnu@4.52.5': - resolution: {integrity: sha512-W/b9ZN/U9+hPQVvlGwjzi+Wy4xdoH2I8EjaCkMvzpI7wJUs8sWJ03Rq96jRnHkSrcHTpQe8h5Tg3ZzUPGauvAw==} + '@rollup/rollup-linux-ppc64-gnu@4.53.2': + resolution: {integrity: sha512-3HRQLUQbpBDMmzoxPJYd3W6vrVHOo2cVW8RUo87Xz0JPJcBLBr5kZ1pGcQAhdZgX9VV7NbGNipah1omKKe23/g==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.52.5': - resolution: {integrity: sha512-sjQLr9BW7R/ZiXnQiWPkErNfLMkkWIoCz7YMn27HldKsADEKa5WYdobaa1hmN6slu9oWQbB6/jFpJ+P2IkVrmw==} + '@rollup/rollup-linux-riscv64-gnu@4.53.2': + resolution: {integrity: sha512-fMjKi+ojnmIvhk34gZP94vjogXNNUKMEYs+EDaB/5TG/wUkoeua7p7VCHnE6T2Tx+iaghAqQX8teQzcvrYpaQA==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-riscv64-musl@4.52.5': - resolution: {integrity: sha512-hq3jU/kGyjXWTvAh2awn8oHroCbrPm8JqM7RUpKjalIRWWXE01CQOf/tUNWNHjmbMHg/hmNCwc/Pz3k1T/j/Lg==} + '@rollup/rollup-linux-riscv64-musl@4.53.2': + resolution: {integrity: sha512-XuGFGU+VwUUV5kLvoAdi0Wz5Xbh2SrjIxCtZj6Wq8MDp4bflb/+ThZsVxokM7n0pcbkEr2h5/pzqzDYI7cCgLQ==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.52.5': - resolution: {integrity: sha512-gn8kHOrku8D4NGHMK1Y7NA7INQTRdVOntt1OCYypZPRt6skGbddska44K8iocdpxHTMMNui5oH4elPH4QOLrFQ==} + '@rollup/rollup-linux-s390x-gnu@4.53.2': + resolution: {integrity: sha512-w6yjZF0P+NGzWR3AXWX9zc0DNEGdtvykB03uhonSHMRa+oWA6novflo2WaJr6JZakG2ucsyb+rvhrKac6NIy+w==} cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.52.5': - resolution: {integrity: sha512-hXGLYpdhiNElzN770+H2nlx+jRog8TyynpTVzdlc6bndktjKWyZyiCsuDAlpd+j+W+WNqfcyAWz9HxxIGfZm1Q==} + '@rollup/rollup-linux-x64-gnu@4.53.2': + resolution: {integrity: sha512-yo8d6tdfdeBArzC7T/PnHd7OypfI9cbuZzPnzLJIyKYFhAQ8SvlkKtKBMbXDxe1h03Rcr7u++nFS7tqXz87Gtw==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.52.5': - resolution: {integrity: sha512-arCGIcuNKjBoKAXD+y7XomR9gY6Mw7HnFBv5Rw7wQRvwYLR7gBAgV7Mb2QTyjXfTveBNFAtPt46/36vV9STLNg==} + '@rollup/rollup-linux-x64-musl@4.53.2': + resolution: {integrity: sha512-ah59c1YkCxKExPP8O9PwOvs+XRLKwh/mV+3YdKqQ5AMQ0r4M4ZDuOrpWkUaqO7fzAHdINzV9tEVu8vNw48z0lA==} cpu: [x64] os: [linux] - '@rollup/rollup-openharmony-arm64@4.52.5': - resolution: {integrity: sha512-QoFqB6+/9Rly/RiPjaomPLmR/13cgkIGfA40LHly9zcH1S0bN2HVFYk3a1eAyHQyjs3ZJYlXvIGtcCs5tko9Cw==} + '@rollup/rollup-openharmony-arm64@4.53.2': + resolution: {integrity: sha512-4VEd19Wmhr+Zy7hbUsFZ6YXEiP48hE//KPLCSVNY5RMGX2/7HZ+QkN55a3atM1C/BZCGIgqN+xrVgtdak2S9+A==} cpu: [arm64] os: [openharmony] - '@rollup/rollup-win32-arm64-msvc@4.52.5': - resolution: {integrity: sha512-w0cDWVR6MlTstla1cIfOGyl8+qb93FlAVutcor14Gf5Md5ap5ySfQ7R9S/NjNaMLSFdUnKGEasmVnu3lCMqB7w==} + '@rollup/rollup-win32-arm64-msvc@4.53.2': + resolution: {integrity: sha512-IlbHFYc/pQCgew/d5fslcy1KEaYVCJ44G8pajugd8VoOEI8ODhtb/j8XMhLpwHCMB3yk2J07ctup10gpw2nyMA==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.52.5': - resolution: {integrity: sha512-Aufdpzp7DpOTULJCuvzqcItSGDH73pF3ko/f+ckJhxQyHtp67rHw3HMNxoIdDMUITJESNE6a8uh4Lo4SLouOUg==} + '@rollup/rollup-win32-ia32-msvc@4.53.2': + resolution: {integrity: sha512-lNlPEGgdUfSzdCWU176ku/dQRnA7W+Gp8d+cWv73jYrb8uT7HTVVxq62DUYxjbaByuf1Yk0RIIAbDzp+CnOTFg==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-gnu@4.52.5': - resolution: {integrity: sha512-UGBUGPFp1vkj6p8wCRraqNhqwX/4kNQPS57BCFc8wYh0g94iVIW33wJtQAx3G7vrjjNtRaxiMUylM0ktp/TRSQ==} + '@rollup/rollup-win32-x64-gnu@4.53.2': + resolution: {integrity: sha512-S6YojNVrHybQis2lYov1sd+uj7K0Q05NxHcGktuMMdIQ2VixGwAfbJ23NnlvvVV1bdpR2m5MsNBViHJKcA4ADw==} cpu: [x64] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.52.5': - resolution: {integrity: sha512-TAcgQh2sSkykPRWLrdyy2AiceMckNf5loITqXxFI5VuQjS5tSuw3WlwdN8qv8vzjLAUTvYaH/mVjSFpbkFbpTg==} + '@rollup/rollup-win32-x64-msvc@4.53.2': + resolution: {integrity: sha512-k+/Rkcyx//P6fetPoLMb8pBeqJBNGx81uuf7iljX9++yNBVRDQgD04L+SVXmXmh5ZP4/WOp4mWF0kmi06PW2tA==} cpu: [x64] os: [win32] @@ -1545,11 +1545,11 @@ packages: vitest: optional: true - '@vitest/expect@4.0.8': - resolution: {integrity: sha512-Rv0eabdP/xjAHQGr8cjBm+NnLHNoL268lMDK85w2aAGLFoVKLd8QGnVon5lLtkXQCoYaNL0wg04EGnyKkkKhPA==} + '@vitest/expect@4.0.9': + resolution: {integrity: sha512-C2vyXf5/Jfj1vl4DQYxjib3jzyuswMi/KHHVN2z+H4v16hdJ7jMZ0OGe3uOVIt6LyJsAofDdaJNIFEpQcrSTFw==} - '@vitest/mocker@4.0.8': - resolution: {integrity: sha512-9FRM3MZCedXH3+pIh+ME5Up2NBBHDq0wqwhOKkN4VnvCiKbVxddqH9mSGPZeawjd12pCOGnl+lo/ZGHt0/dQSg==} + '@vitest/mocker@4.0.9': + resolution: {integrity: sha512-PUyaowQFHW+9FKb4dsvvBM4o025rWMlEDXdWRxIOilGaHREYTi5Q2Rt9VCgXgPy/hHZu1LeuXtrA/GdzOatP2g==} peerDependencies: msw: ^2.4.9 vite: ^6.0.0 || ^7.0.0-0 @@ -1559,20 +1559,20 @@ packages: vite: optional: true - '@vitest/pretty-format@4.0.8': - resolution: {integrity: sha512-qRrjdRkINi9DaZHAimV+8ia9Gq6LeGz2CgIEmMLz3sBDYV53EsnLZbJMR1q84z1HZCMsf7s0orDgZn7ScXsZKg==} + '@vitest/pretty-format@4.0.9': + resolution: {integrity: sha512-Hor0IBTwEi/uZqB7pvGepyElaM8J75pYjrrqbC8ZYMB9/4n5QA63KC15xhT+sqHpdGWfdnPo96E8lQUxs2YzSQ==} - '@vitest/runner@4.0.8': - resolution: {integrity: sha512-mdY8Sf1gsM8hKJUQfiPT3pn1n8RF4QBcJYFslgWh41JTfrK1cbqY8whpGCFzBl45LN028g0njLCYm0d7XxSaQQ==} + '@vitest/runner@4.0.9': + resolution: {integrity: sha512-aF77tsXdEvIJRkj9uJZnHtovsVIx22Ambft9HudC+XuG/on1NY/bf5dlDti1N35eJT+QZLb4RF/5dTIG18s98w==} - '@vitest/snapshot@4.0.8': - resolution: {integrity: sha512-Nar9OTU03KGiubrIOFhcfHg8FYaRaNT+bh5VUlNz8stFhCZPNrJvmZkhsr1jtaYvuefYFwK2Hwrq026u4uPWCw==} + '@vitest/snapshot@4.0.9': + resolution: {integrity: sha512-r1qR4oYstPbnOjg0Vgd3E8ADJbi4ditCzqr+Z9foUrRhIy778BleNyZMeAJ2EjV+r4ASAaDsdciC9ryMy8xMMg==} - '@vitest/spy@4.0.8': - resolution: {integrity: sha512-nvGVqUunyCgZH7kmo+Ord4WgZ7lN0sOULYXUOYuHr55dvg9YvMz3izfB189Pgp28w0vWFbEEfNc/c3VTrqrXeA==} + '@vitest/spy@4.0.9': + resolution: {integrity: sha512-J9Ttsq0hDXmxmT8CUOWUr1cqqAj2FJRGTdyEjSR+NjoOGKEqkEWj+09yC0HhI8t1W6t4Ctqawl1onHgipJve1A==} - '@vitest/utils@4.0.8': - resolution: {integrity: sha512-pdk2phO5NDvEFfUTxcTP8RFYjVj/kfLSPIN5ebP2Mu9kcIMeAQTbknqcFEyBcC4z2pJlJI9aS5UQjcYfhmKAow==} + '@vitest/utils@4.0.9': + resolution: {integrity: sha512-cEol6ygTzY4rUPvNZM19sDf7zGa35IYTm9wfzkHoT/f5jX10IOY7QleWSOh5T0e3I3WVozwK5Asom79qW8DiuQ==} '@vue/compiler-core@3.5.12': resolution: {integrity: sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw==} @@ -1783,8 +1783,8 @@ packages: ccount@2.0.1: resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} - chai@6.2.0: - resolution: {integrity: sha512-aUTnJc/JipRzJrNADXVvpVqi6CO0dn3nx4EVPxijri+fj3LUUDyZQOgVeW54Ob3Y1Xh9Iz8f+CgaCl8v0mn9bA==} + chai@6.2.1: + resolution: {integrity: sha512-p4Z49OGG5W/WBCPSS/dH3jQ73kD6tiMmUM+bckNK6Jr5JHMG3k9bg/BvKR8lKmtVBKmOiuVaV2ws8s9oSbwysg==} engines: {node: '>=18'} chalk@4.1.2: @@ -3479,8 +3479,8 @@ packages: rfdc@1.4.1: resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} - rollup@4.52.5: - resolution: {integrity: sha512-3GuObel8h7Kqdjt0gxkEzaifHTqLVW56Y/bjN7PSQtkKr0w3V/QYSdt6QWYtd7A1xUtYQigtdUfgj1RvWVtorw==} + rollup@4.53.2: + resolution: {integrity: sha512-MHngMYwGJVi6Fmnk6ISmnk7JAHRNF0UkuucA0CUW3N3a4KnONPEZz+vUanQP/ZC/iY1Qkf3bwPWzyY84wEks1g==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true @@ -3906,18 +3906,18 @@ packages: yaml: optional: true - vitest@4.0.8: - resolution: {integrity: sha512-urzu3NCEV0Qa0Y2PwvBtRgmNtxhj5t5ULw7cuKhIHh3OrkKTLlut0lnBOv9qe5OvbkMH2g38G7KPDCTpIytBVg==} + vitest@4.0.9: + resolution: {integrity: sha512-E0Ja2AX4th+CG33yAFRC+d1wFx2pzU5r6HtG6LiPSE04flaE0qB6YyjSw9ZcpJAtVPfsvZGtJlKWZpuW7EHRxg==} engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' '@types/debug': ^4.1.12 '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0 - '@vitest/browser-playwright': 4.0.8 - '@vitest/browser-preview': 4.0.8 - '@vitest/browser-webdriverio': 4.0.8 - '@vitest/ui': 4.0.8 + '@vitest/browser-playwright': 4.0.9 + '@vitest/browser-preview': 4.0.9 + '@vitest/browser-webdriverio': 4.0.9 + '@vitest/ui': 4.0.9 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -4084,7 +4084,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.8(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.9(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -4093,7 +4093,7 @@ snapshots: '@stylistic/eslint-plugin': 5.5.0(eslint@9.39.1(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/parser': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.8(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/eslint-plugin': 1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.9(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.2.0 cac: 6.7.14 eslint: 9.39.1(jiti@2.4.0) @@ -5519,70 +5519,70 @@ snapshots: '@repeaterjs/repeater@3.0.6': {} - '@rollup/rollup-android-arm-eabi@4.52.5': + '@rollup/rollup-android-arm-eabi@4.53.2': optional: true - '@rollup/rollup-android-arm64@4.52.5': + '@rollup/rollup-android-arm64@4.53.2': optional: true - '@rollup/rollup-darwin-arm64@4.52.5': + '@rollup/rollup-darwin-arm64@4.53.2': optional: true - '@rollup/rollup-darwin-x64@4.52.5': + '@rollup/rollup-darwin-x64@4.53.2': optional: true - '@rollup/rollup-freebsd-arm64@4.52.5': + '@rollup/rollup-freebsd-arm64@4.53.2': optional: true - '@rollup/rollup-freebsd-x64@4.52.5': + '@rollup/rollup-freebsd-x64@4.53.2': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.52.5': + '@rollup/rollup-linux-arm-gnueabihf@4.53.2': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.52.5': + '@rollup/rollup-linux-arm-musleabihf@4.53.2': optional: true - '@rollup/rollup-linux-arm64-gnu@4.52.5': + '@rollup/rollup-linux-arm64-gnu@4.53.2': optional: true - '@rollup/rollup-linux-arm64-musl@4.52.5': + '@rollup/rollup-linux-arm64-musl@4.53.2': optional: true - '@rollup/rollup-linux-loong64-gnu@4.52.5': + '@rollup/rollup-linux-loong64-gnu@4.53.2': optional: true - '@rollup/rollup-linux-ppc64-gnu@4.52.5': + '@rollup/rollup-linux-ppc64-gnu@4.53.2': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.52.5': + '@rollup/rollup-linux-riscv64-gnu@4.53.2': optional: true - '@rollup/rollup-linux-riscv64-musl@4.52.5': + '@rollup/rollup-linux-riscv64-musl@4.53.2': optional: true - '@rollup/rollup-linux-s390x-gnu@4.52.5': + '@rollup/rollup-linux-s390x-gnu@4.53.2': optional: true - '@rollup/rollup-linux-x64-gnu@4.52.5': + '@rollup/rollup-linux-x64-gnu@4.53.2': optional: true - '@rollup/rollup-linux-x64-musl@4.52.5': + '@rollup/rollup-linux-x64-musl@4.53.2': optional: true - '@rollup/rollup-openharmony-arm64@4.52.5': + '@rollup/rollup-openharmony-arm64@4.53.2': optional: true - '@rollup/rollup-win32-arm64-msvc@4.52.5': + '@rollup/rollup-win32-arm64-msvc@4.53.2': optional: true - '@rollup/rollup-win32-ia32-msvc@4.52.5': + '@rollup/rollup-win32-ia32-msvc@4.53.2': optional: true - '@rollup/rollup-win32-x64-gnu@4.52.5': + '@rollup/rollup-win32-x64-gnu@4.53.2': optional: true - '@rollup/rollup-win32-x64-msvc@4.52.5': + '@rollup/rollup-win32-x64-msvc@4.53.2': optional: true '@sinclair/typebox@0.34.33': {} @@ -5836,54 +5836,54 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.8(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.9(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.46.2 '@typescript-eslint/utils': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) eslint: 9.39.1(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - vitest: 4.0.8(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) + vitest: 4.0.9(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color - '@vitest/expect@4.0.8': + '@vitest/expect@4.0.9': dependencies: '@standard-schema/spec': 1.0.0 '@types/chai': 5.2.3 - '@vitest/spy': 4.0.8 - '@vitest/utils': 4.0.8 - chai: 6.2.0 + '@vitest/spy': 4.0.9 + '@vitest/utils': 4.0.9 + chai: 6.2.1 tinyrainbow: 3.0.3 - '@vitest/mocker@4.0.8(vite@7.2.2(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@4.0.9(vite@7.2.2(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: - '@vitest/spy': 4.0.8 + '@vitest/spy': 4.0.9 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: vite: 7.2.2(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) - '@vitest/pretty-format@4.0.8': + '@vitest/pretty-format@4.0.9': dependencies: tinyrainbow: 3.0.3 - '@vitest/runner@4.0.8': + '@vitest/runner@4.0.9': dependencies: - '@vitest/utils': 4.0.8 + '@vitest/utils': 4.0.9 pathe: 2.0.3 - '@vitest/snapshot@4.0.8': + '@vitest/snapshot@4.0.9': dependencies: - '@vitest/pretty-format': 4.0.8 + '@vitest/pretty-format': 4.0.9 magic-string: 0.30.21 pathe: 2.0.3 - '@vitest/spy@4.0.8': {} + '@vitest/spy@4.0.9': {} - '@vitest/utils@4.0.8': + '@vitest/utils@4.0.9': dependencies: - '@vitest/pretty-format': 4.0.8 + '@vitest/pretty-format': 4.0.9 tinyrainbow: 3.0.3 '@vue/compiler-core@3.5.12': @@ -6125,7 +6125,7 @@ snapshots: ccount@2.0.1: {} - chai@6.2.0: {} + chai@6.2.1: {} chalk@4.1.2: dependencies: @@ -8168,32 +8168,32 @@ snapshots: rfdc@1.4.1: {} - rollup@4.52.5: + rollup@4.53.2: dependencies: '@types/estree': 1.0.8 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.52.5 - '@rollup/rollup-android-arm64': 4.52.5 - '@rollup/rollup-darwin-arm64': 4.52.5 - '@rollup/rollup-darwin-x64': 4.52.5 - '@rollup/rollup-freebsd-arm64': 4.52.5 - '@rollup/rollup-freebsd-x64': 4.52.5 - '@rollup/rollup-linux-arm-gnueabihf': 4.52.5 - '@rollup/rollup-linux-arm-musleabihf': 4.52.5 - '@rollup/rollup-linux-arm64-gnu': 4.52.5 - '@rollup/rollup-linux-arm64-musl': 4.52.5 - '@rollup/rollup-linux-loong64-gnu': 4.52.5 - '@rollup/rollup-linux-ppc64-gnu': 4.52.5 - '@rollup/rollup-linux-riscv64-gnu': 4.52.5 - '@rollup/rollup-linux-riscv64-musl': 4.52.5 - '@rollup/rollup-linux-s390x-gnu': 4.52.5 - '@rollup/rollup-linux-x64-gnu': 4.52.5 - '@rollup/rollup-linux-x64-musl': 4.52.5 - '@rollup/rollup-openharmony-arm64': 4.52.5 - '@rollup/rollup-win32-arm64-msvc': 4.52.5 - '@rollup/rollup-win32-ia32-msvc': 4.52.5 - '@rollup/rollup-win32-x64-gnu': 4.52.5 - '@rollup/rollup-win32-x64-msvc': 4.52.5 + '@rollup/rollup-android-arm-eabi': 4.53.2 + '@rollup/rollup-android-arm64': 4.53.2 + '@rollup/rollup-darwin-arm64': 4.53.2 + '@rollup/rollup-darwin-x64': 4.53.2 + '@rollup/rollup-freebsd-arm64': 4.53.2 + '@rollup/rollup-freebsd-x64': 4.53.2 + '@rollup/rollup-linux-arm-gnueabihf': 4.53.2 + '@rollup/rollup-linux-arm-musleabihf': 4.53.2 + '@rollup/rollup-linux-arm64-gnu': 4.53.2 + '@rollup/rollup-linux-arm64-musl': 4.53.2 + '@rollup/rollup-linux-loong64-gnu': 4.53.2 + '@rollup/rollup-linux-ppc64-gnu': 4.53.2 + '@rollup/rollup-linux-riscv64-gnu': 4.53.2 + '@rollup/rollup-linux-riscv64-musl': 4.53.2 + '@rollup/rollup-linux-s390x-gnu': 4.53.2 + '@rollup/rollup-linux-x64-gnu': 4.53.2 + '@rollup/rollup-linux-x64-musl': 4.53.2 + '@rollup/rollup-openharmony-arm64': 4.53.2 + '@rollup/rollup-win32-arm64-msvc': 4.53.2 + '@rollup/rollup-win32-ia32-msvc': 4.53.2 + '@rollup/rollup-win32-x64-gnu': 4.53.2 + '@rollup/rollup-win32-x64-msvc': 4.53.2 fsevents: 2.3.3 run-parallel@1.2.0: @@ -8549,7 +8549,7 @@ snapshots: fdir: 6.5.0(picomatch@4.0.3) picomatch: 4.0.3 postcss: 8.5.6 - rollup: 4.52.5 + rollup: 4.53.2 tinyglobby: 0.2.15 optionalDependencies: '@types/node': 24.10.1 @@ -8557,15 +8557,15 @@ snapshots: jiti: 2.4.0 yaml: 2.8.1 - vitest@4.0.8(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1): + vitest@4.0.9(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1): dependencies: - '@vitest/expect': 4.0.8 - '@vitest/mocker': 4.0.8(vite@7.2.2(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) - '@vitest/pretty-format': 4.0.8 - '@vitest/runner': 4.0.8 - '@vitest/snapshot': 4.0.8 - '@vitest/spy': 4.0.8 - '@vitest/utils': 4.0.8 + '@vitest/expect': 4.0.9 + '@vitest/mocker': 4.0.9(vite@7.2.2(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/pretty-format': 4.0.9 + '@vitest/runner': 4.0.9 + '@vitest/snapshot': 4.0.9 + '@vitest/spy': 4.0.9 + '@vitest/utils': 4.0.9 debug: 4.4.3 es-module-lexer: 1.7.0 expect-type: 1.2.2 From f8d37f4689f35bf5dfab2086851c81de292b3863 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 17 Nov 2025 15:01:36 +0000 Subject: [PATCH 115/133] chore(deps): update dependency vitest to v4.0.10 (#1303) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 94 +++++++++++++++++++++++++------------------------- 1 file changed, 47 insertions(+), 47 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 28fa1f46..65b5d175 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.9(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) + version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.10(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.2 version: 6.0.2(@types/node@24.10.1)(graphql@16.12.0)(typescript@5.9.3) @@ -71,7 +71,7 @@ importers: version: 1.1.0(typescript@5.9.3) vitest: specifier: ^4.0.0 - version: 4.0.9(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) + version: 4.0.10(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.1 version: 1.7.1 @@ -1545,11 +1545,11 @@ packages: vitest: optional: true - '@vitest/expect@4.0.9': - resolution: {integrity: sha512-C2vyXf5/Jfj1vl4DQYxjib3jzyuswMi/KHHVN2z+H4v16hdJ7jMZ0OGe3uOVIt6LyJsAofDdaJNIFEpQcrSTFw==} + '@vitest/expect@4.0.10': + resolution: {integrity: sha512-3QkTX/lK39FBNwARCQRSQr0TP9+ywSdxSX+LgbJ2M1WmveXP72anTbnp2yl5fH+dU6SUmBzNMrDHs80G8G2DZg==} - '@vitest/mocker@4.0.9': - resolution: {integrity: sha512-PUyaowQFHW+9FKb4dsvvBM4o025rWMlEDXdWRxIOilGaHREYTi5Q2Rt9VCgXgPy/hHZu1LeuXtrA/GdzOatP2g==} + '@vitest/mocker@4.0.10': + resolution: {integrity: sha512-e2OfdexYkjkg8Hh3L9NVEfbwGXq5IZbDovkf30qW2tOh7Rh9sVtmSr2ztEXOFbymNxS4qjzLXUQIvATvN4B+lg==} peerDependencies: msw: ^2.4.9 vite: ^6.0.0 || ^7.0.0-0 @@ -1559,20 +1559,20 @@ packages: vite: optional: true - '@vitest/pretty-format@4.0.9': - resolution: {integrity: sha512-Hor0IBTwEi/uZqB7pvGepyElaM8J75pYjrrqbC8ZYMB9/4n5QA63KC15xhT+sqHpdGWfdnPo96E8lQUxs2YzSQ==} + '@vitest/pretty-format@4.0.10': + resolution: {integrity: sha512-99EQbpa/zuDnvVjthwz5bH9o8iPefoQZ63WV8+bsRJZNw3qQSvSltfut8yu1Jc9mqOYi7pEbsKxYTi/rjaq6PA==} - '@vitest/runner@4.0.9': - resolution: {integrity: sha512-aF77tsXdEvIJRkj9uJZnHtovsVIx22Ambft9HudC+XuG/on1NY/bf5dlDti1N35eJT+QZLb4RF/5dTIG18s98w==} + '@vitest/runner@4.0.10': + resolution: {integrity: sha512-EXU2iSkKvNwtlL8L8doCpkyclw0mc/t4t9SeOnfOFPyqLmQwuceMPA4zJBa6jw0MKsZYbw7kAn+gl7HxrlB8UQ==} - '@vitest/snapshot@4.0.9': - resolution: {integrity: sha512-r1qR4oYstPbnOjg0Vgd3E8ADJbi4ditCzqr+Z9foUrRhIy778BleNyZMeAJ2EjV+r4ASAaDsdciC9ryMy8xMMg==} + '@vitest/snapshot@4.0.10': + resolution: {integrity: sha512-2N4X2ZZl7kZw0qeGdQ41H0KND96L3qX1RgwuCfy6oUsF2ISGD/HpSbmms+CkIOsQmg2kulwfhJ4CI0asnZlvkg==} - '@vitest/spy@4.0.9': - resolution: {integrity: sha512-J9Ttsq0hDXmxmT8CUOWUr1cqqAj2FJRGTdyEjSR+NjoOGKEqkEWj+09yC0HhI8t1W6t4Ctqawl1onHgipJve1A==} + '@vitest/spy@4.0.10': + resolution: {integrity: sha512-AsY6sVS8OLb96GV5RoG8B6I35GAbNrC49AO+jNRF9YVGb/g9t+hzNm1H6kD0NDp8tt7VJLs6hb7YMkDXqu03iw==} - '@vitest/utils@4.0.9': - resolution: {integrity: sha512-cEol6ygTzY4rUPvNZM19sDf7zGa35IYTm9wfzkHoT/f5jX10IOY7QleWSOh5T0e3I3WVozwK5Asom79qW8DiuQ==} + '@vitest/utils@4.0.10': + resolution: {integrity: sha512-kOuqWnEwZNtQxMKg3WmPK1vmhZu9WcoX69iwWjVz+jvKTsF1emzsv3eoPcDr6ykA3qP2bsCQE7CwqfNtAVzsmg==} '@vue/compiler-core@3.5.12': resolution: {integrity: sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw==} @@ -3906,18 +3906,18 @@ packages: yaml: optional: true - vitest@4.0.9: - resolution: {integrity: sha512-E0Ja2AX4th+CG33yAFRC+d1wFx2pzU5r6HtG6LiPSE04flaE0qB6YyjSw9ZcpJAtVPfsvZGtJlKWZpuW7EHRxg==} + vitest@4.0.10: + resolution: {integrity: sha512-2Fqty3MM9CDwOVet/jaQalYlbcjATZwPYGcqpiYQqgQ/dLC7GuHdISKgTYIVF/kaishKxLzleKWWfbSDklyIKg==} engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' '@types/debug': ^4.1.12 '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0 - '@vitest/browser-playwright': 4.0.9 - '@vitest/browser-preview': 4.0.9 - '@vitest/browser-webdriverio': 4.0.9 - '@vitest/ui': 4.0.9 + '@vitest/browser-playwright': 4.0.10 + '@vitest/browser-preview': 4.0.10 + '@vitest/browser-webdriverio': 4.0.10 + '@vitest/ui': 4.0.10 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -4084,7 +4084,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.9(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.10(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -4093,7 +4093,7 @@ snapshots: '@stylistic/eslint-plugin': 5.5.0(eslint@9.39.1(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/parser': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.9(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/eslint-plugin': 1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.10(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.2.0 cac: 6.7.14 eslint: 9.39.1(jiti@2.4.0) @@ -5836,54 +5836,54 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.9(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.10(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.46.2 '@typescript-eslint/utils': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) eslint: 9.39.1(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - vitest: 4.0.9(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) + vitest: 4.0.10(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color - '@vitest/expect@4.0.9': + '@vitest/expect@4.0.10': dependencies: '@standard-schema/spec': 1.0.0 '@types/chai': 5.2.3 - '@vitest/spy': 4.0.9 - '@vitest/utils': 4.0.9 + '@vitest/spy': 4.0.10 + '@vitest/utils': 4.0.10 chai: 6.2.1 tinyrainbow: 3.0.3 - '@vitest/mocker@4.0.9(vite@7.2.2(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@4.0.10(vite@7.2.2(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: - '@vitest/spy': 4.0.9 + '@vitest/spy': 4.0.10 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: vite: 7.2.2(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) - '@vitest/pretty-format@4.0.9': + '@vitest/pretty-format@4.0.10': dependencies: tinyrainbow: 3.0.3 - '@vitest/runner@4.0.9': + '@vitest/runner@4.0.10': dependencies: - '@vitest/utils': 4.0.9 + '@vitest/utils': 4.0.10 pathe: 2.0.3 - '@vitest/snapshot@4.0.9': + '@vitest/snapshot@4.0.10': dependencies: - '@vitest/pretty-format': 4.0.9 + '@vitest/pretty-format': 4.0.10 magic-string: 0.30.21 pathe: 2.0.3 - '@vitest/spy@4.0.9': {} + '@vitest/spy@4.0.10': {} - '@vitest/utils@4.0.9': + '@vitest/utils@4.0.10': dependencies: - '@vitest/pretty-format': 4.0.9 + '@vitest/pretty-format': 4.0.10 tinyrainbow: 3.0.3 '@vue/compiler-core@3.5.12': @@ -8557,15 +8557,15 @@ snapshots: jiti: 2.4.0 yaml: 2.8.1 - vitest@4.0.9(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1): + vitest@4.0.10(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1): dependencies: - '@vitest/expect': 4.0.9 - '@vitest/mocker': 4.0.9(vite@7.2.2(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) - '@vitest/pretty-format': 4.0.9 - '@vitest/runner': 4.0.9 - '@vitest/snapshot': 4.0.9 - '@vitest/spy': 4.0.9 - '@vitest/utils': 4.0.9 + '@vitest/expect': 4.0.10 + '@vitest/mocker': 4.0.10(vite@7.2.2(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/pretty-format': 4.0.10 + '@vitest/runner': 4.0.10 + '@vitest/snapshot': 4.0.10 + '@vitest/spy': 4.0.10 + '@vitest/utils': 4.0.10 debug: 4.4.3 es-module-lexer: 1.7.0 expect-type: 1.2.2 From 2c5e4046f165a759670a96dcbdfc5ae79d26078e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 12:40:48 +0000 Subject: [PATCH 116/133] chore(deps): update dependency vitest to v4.0.12 (#1304) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 291 +++++++++++++++++++++++++------------------------ 1 file changed, 147 insertions(+), 144 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 65b5d175..f61fe018 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.10(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) + version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.12(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.0.2 version: 6.0.2(@types/node@24.10.1)(graphql@16.12.0)(typescript@5.9.3) @@ -71,7 +71,7 @@ importers: version: 1.1.0(typescript@5.9.3) vitest: specifier: ^4.0.0 - version: 4.0.10(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) + version: 4.0.12(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.1 version: 1.7.1 @@ -1184,113 +1184,113 @@ packages: '@repeaterjs/repeater@3.0.6': resolution: {integrity: sha512-Javneu5lsuhwNCryN+pXH93VPQ8g0dBX7wItHFgYiwQmzE1sVdg5tWHiOgHywzL2W21XQopa7IwIEnNbmeUJYA==} - '@rollup/rollup-android-arm-eabi@4.53.2': - resolution: {integrity: sha512-yDPzwsgiFO26RJA4nZo8I+xqzh7sJTZIWQOxn+/XOdPE31lAvLIYCKqjV+lNH/vxE2L2iH3plKxDCRK6i+CwhA==} + '@rollup/rollup-android-arm-eabi@4.53.3': + resolution: {integrity: sha512-mRSi+4cBjrRLoaal2PnqH82Wqyb+d3HsPUN/W+WslCXsZsyHa9ZeQQX/pQsZaVIWDkPcpV6jJ+3KLbTbgnwv8w==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.53.2': - resolution: {integrity: sha512-k8FontTxIE7b0/OGKeSN5B6j25EuppBcWM33Z19JoVT7UTXFSo3D9CdU39wGTeb29NO3XxpMNauh09B+Ibw+9g==} + '@rollup/rollup-android-arm64@4.53.3': + resolution: {integrity: sha512-CbDGaMpdE9sh7sCmTrTUyllhrg65t6SwhjlMJsLr+J8YjFuPmCEjbBSx4Z/e4SmDyH3aB5hGaJUP2ltV/vcs4w==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.53.2': - resolution: {integrity: sha512-A6s4gJpomNBtJ2yioj8bflM2oogDwzUiMl2yNJ2v9E7++sHrSrsQ29fOfn5DM/iCzpWcebNYEdXpaK4tr2RhfQ==} + '@rollup/rollup-darwin-arm64@4.53.3': + resolution: {integrity: sha512-Nr7SlQeqIBpOV6BHHGZgYBuSdanCXuw09hon14MGOLGmXAFYjx1wNvquVPmpZnl0tLjg25dEdr4IQ6GgyToCUA==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.53.2': - resolution: {integrity: sha512-e6XqVmXlHrBlG56obu9gDRPW3O3hLxpwHpLsBJvuI8qqnsrtSZ9ERoWUXtPOkY8c78WghyPHZdmPhHLWNdAGEw==} + '@rollup/rollup-darwin-x64@4.53.3': + resolution: {integrity: sha512-DZ8N4CSNfl965CmPktJ8oBnfYr3F8dTTNBQkRlffnUarJ2ohudQD17sZBa097J8xhQ26AwhHJ5mvUyQW8ddTsQ==} cpu: [x64] os: [darwin] - '@rollup/rollup-freebsd-arm64@4.53.2': - resolution: {integrity: sha512-v0E9lJW8VsrwPux5Qe5CwmH/CF/2mQs6xU1MF3nmUxmZUCHazCjLgYvToOk+YuuUqLQBio1qkkREhxhc656ViA==} + '@rollup/rollup-freebsd-arm64@4.53.3': + resolution: {integrity: sha512-yMTrCrK92aGyi7GuDNtGn2sNW+Gdb4vErx4t3Gv/Tr+1zRb8ax4z8GWVRfr3Jw8zJWvpGHNpss3vVlbF58DZ4w==} cpu: [arm64] os: [freebsd] - '@rollup/rollup-freebsd-x64@4.53.2': - resolution: {integrity: sha512-ClAmAPx3ZCHtp6ysl4XEhWU69GUB1D+s7G9YjHGhIGCSrsg00nEGRRZHmINYxkdoJehde8VIsDC5t9C0gb6yqA==} + '@rollup/rollup-freebsd-x64@4.53.3': + resolution: {integrity: sha512-lMfF8X7QhdQzseM6XaX0vbno2m3hlyZFhwcndRMw8fbAGUGL3WFMBdK0hbUBIUYcEcMhVLr1SIamDeuLBnXS+Q==} cpu: [x64] os: [freebsd] - '@rollup/rollup-linux-arm-gnueabihf@4.53.2': - resolution: {integrity: sha512-EPlb95nUsz6Dd9Qy13fI5kUPXNSljaG9FiJ4YUGU1O/Q77i5DYFW5KR8g1OzTcdZUqQQ1KdDqsTohdFVwCwjqg==} + '@rollup/rollup-linux-arm-gnueabihf@4.53.3': + resolution: {integrity: sha512-k9oD15soC/Ln6d2Wv/JOFPzZXIAIFLp6B+i14KhxAfnq76ajt0EhYc5YPeX6W1xJkAdItcVT+JhKl1QZh44/qw==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.53.2': - resolution: {integrity: sha512-BOmnVW+khAUX+YZvNfa0tGTEMVVEerOxN0pDk2E6N6DsEIa2Ctj48FOMfNDdrwinocKaC7YXUZ1pHlKpnkja/Q==} + '@rollup/rollup-linux-arm-musleabihf@4.53.3': + resolution: {integrity: sha512-vTNlKq+N6CK/8UktsrFuc+/7NlEYVxgaEgRXVUVK258Z5ymho29skzW1sutgYjqNnquGwVUObAaxae8rZ6YMhg==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.53.2': - resolution: {integrity: sha512-Xt2byDZ+6OVNuREgBXr4+CZDJtrVso5woFtpKdGPhpTPHcNG7D8YXeQzpNbFRxzTVqJf7kvPMCub/pcGUWgBjA==} + '@rollup/rollup-linux-arm64-gnu@4.53.3': + resolution: {integrity: sha512-RGrFLWgMhSxRs/EWJMIFM1O5Mzuz3Xy3/mnxJp/5cVhZ2XoCAxJnmNsEyeMJtpK+wu0FJFWz+QF4mjCA7AUQ3w==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.53.2': - resolution: {integrity: sha512-+LdZSldy/I9N8+klim/Y1HsKbJ3BbInHav5qE9Iy77dtHC/pibw1SR/fXlWyAk0ThnpRKoODwnAuSjqxFRDHUQ==} + '@rollup/rollup-linux-arm64-musl@4.53.3': + resolution: {integrity: sha512-kASyvfBEWYPEwe0Qv4nfu6pNkITLTb32p4yTgzFCocHnJLAHs+9LjUu9ONIhvfT/5lv4YS5muBHyuV84epBo/A==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-loong64-gnu@4.53.2': - resolution: {integrity: sha512-8ms8sjmyc1jWJS6WdNSA23rEfdjWB30LH8Wqj0Cqvv7qSHnvw6kgMMXRdop6hkmGPlyYBdRPkjJnj3KCUHV/uQ==} + '@rollup/rollup-linux-loong64-gnu@4.53.3': + resolution: {integrity: sha512-JiuKcp2teLJwQ7vkJ95EwESWkNRFJD7TQgYmCnrPtlu50b4XvT5MOmurWNrCj3IFdyjBQ5p9vnrX4JM6I8OE7g==} cpu: [loong64] os: [linux] - '@rollup/rollup-linux-ppc64-gnu@4.53.2': - resolution: {integrity: sha512-3HRQLUQbpBDMmzoxPJYd3W6vrVHOo2cVW8RUo87Xz0JPJcBLBr5kZ1pGcQAhdZgX9VV7NbGNipah1omKKe23/g==} + '@rollup/rollup-linux-ppc64-gnu@4.53.3': + resolution: {integrity: sha512-EoGSa8nd6d3T7zLuqdojxC20oBfNT8nexBbB/rkxgKj5T5vhpAQKKnD+h3UkoMuTyXkP5jTjK/ccNRmQrPNDuw==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.53.2': - resolution: {integrity: sha512-fMjKi+ojnmIvhk34gZP94vjogXNNUKMEYs+EDaB/5TG/wUkoeua7p7VCHnE6T2Tx+iaghAqQX8teQzcvrYpaQA==} + '@rollup/rollup-linux-riscv64-gnu@4.53.3': + resolution: {integrity: sha512-4s+Wped2IHXHPnAEbIB0YWBv7SDohqxobiiPA1FIWZpX+w9o2i4LezzH/NkFUl8LRci/8udci6cLq+jJQlh+0g==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-riscv64-musl@4.53.2': - resolution: {integrity: sha512-XuGFGU+VwUUV5kLvoAdi0Wz5Xbh2SrjIxCtZj6Wq8MDp4bflb/+ThZsVxokM7n0pcbkEr2h5/pzqzDYI7cCgLQ==} + '@rollup/rollup-linux-riscv64-musl@4.53.3': + resolution: {integrity: sha512-68k2g7+0vs2u9CxDt5ktXTngsxOQkSEV/xBbwlqYcUrAVh6P9EgMZvFsnHy4SEiUl46Xf0IObWVbMvPrr2gw8A==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.53.2': - resolution: {integrity: sha512-w6yjZF0P+NGzWR3AXWX9zc0DNEGdtvykB03uhonSHMRa+oWA6novflo2WaJr6JZakG2ucsyb+rvhrKac6NIy+w==} + '@rollup/rollup-linux-s390x-gnu@4.53.3': + resolution: {integrity: sha512-VYsFMpULAz87ZW6BVYw3I6sWesGpsP9OPcyKe8ofdg9LHxSbRMd7zrVrr5xi/3kMZtpWL/wC+UIJWJYVX5uTKg==} cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.53.2': - resolution: {integrity: sha512-yo8d6tdfdeBArzC7T/PnHd7OypfI9cbuZzPnzLJIyKYFhAQ8SvlkKtKBMbXDxe1h03Rcr7u++nFS7tqXz87Gtw==} + '@rollup/rollup-linux-x64-gnu@4.53.3': + resolution: {integrity: sha512-3EhFi1FU6YL8HTUJZ51imGJWEX//ajQPfqWLI3BQq4TlvHy4X0MOr5q3D2Zof/ka0d5FNdPwZXm3Yyib/UEd+w==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.53.2': - resolution: {integrity: sha512-ah59c1YkCxKExPP8O9PwOvs+XRLKwh/mV+3YdKqQ5AMQ0r4M4ZDuOrpWkUaqO7fzAHdINzV9tEVu8vNw48z0lA==} + '@rollup/rollup-linux-x64-musl@4.53.3': + resolution: {integrity: sha512-eoROhjcc6HbZCJr+tvVT8X4fW3/5g/WkGvvmwz/88sDtSJzO7r/blvoBDgISDiCjDRZmHpwud7h+6Q9JxFwq1Q==} cpu: [x64] os: [linux] - '@rollup/rollup-openharmony-arm64@4.53.2': - resolution: {integrity: sha512-4VEd19Wmhr+Zy7hbUsFZ6YXEiP48hE//KPLCSVNY5RMGX2/7HZ+QkN55a3atM1C/BZCGIgqN+xrVgtdak2S9+A==} + '@rollup/rollup-openharmony-arm64@4.53.3': + resolution: {integrity: sha512-OueLAWgrNSPGAdUdIjSWXw+u/02BRTcnfw9PN41D2vq/JSEPnJnVuBgw18VkN8wcd4fjUs+jFHVM4t9+kBSNLw==} cpu: [arm64] os: [openharmony] - '@rollup/rollup-win32-arm64-msvc@4.53.2': - resolution: {integrity: sha512-IlbHFYc/pQCgew/d5fslcy1KEaYVCJ44G8pajugd8VoOEI8ODhtb/j8XMhLpwHCMB3yk2J07ctup10gpw2nyMA==} + '@rollup/rollup-win32-arm64-msvc@4.53.3': + resolution: {integrity: sha512-GOFuKpsxR/whszbF/bzydebLiXIHSgsEUp6M0JI8dWvi+fFa1TD6YQa4aSZHtpmh2/uAlj/Dy+nmby3TJ3pkTw==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.53.2': - resolution: {integrity: sha512-lNlPEGgdUfSzdCWU176ku/dQRnA7W+Gp8d+cWv73jYrb8uT7HTVVxq62DUYxjbaByuf1Yk0RIIAbDzp+CnOTFg==} + '@rollup/rollup-win32-ia32-msvc@4.53.3': + resolution: {integrity: sha512-iah+THLcBJdpfZ1TstDFbKNznlzoxa8fmnFYK4V67HvmuNYkVdAywJSoteUszvBQ9/HqN2+9AZghbajMsFT+oA==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-gnu@4.53.2': - resolution: {integrity: sha512-S6YojNVrHybQis2lYov1sd+uj7K0Q05NxHcGktuMMdIQ2VixGwAfbJ23NnlvvVV1bdpR2m5MsNBViHJKcA4ADw==} + '@rollup/rollup-win32-x64-gnu@4.53.3': + resolution: {integrity: sha512-J9QDiOIZlZLdcot5NXEepDkstocktoVjkaKUtqzgzpt2yWjGlbYiKyp05rWwk4nypbYUNoFAztEgixoLaSETkg==} cpu: [x64] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.53.2': - resolution: {integrity: sha512-k+/Rkcyx//P6fetPoLMb8pBeqJBNGx81uuf7iljX9++yNBVRDQgD04L+SVXmXmh5ZP4/WOp4mWF0kmi06PW2tA==} + '@rollup/rollup-win32-x64-msvc@4.53.3': + resolution: {integrity: sha512-UhTd8u31dXadv0MopwGgNOBpUVROFKWVQgAg5N1ESyCz8AuBcMqm4AuTjrwgQKGDfoFuz02EuMRHQIw/frmYKQ==} cpu: [x64] os: [win32] @@ -1545,11 +1545,11 @@ packages: vitest: optional: true - '@vitest/expect@4.0.10': - resolution: {integrity: sha512-3QkTX/lK39FBNwARCQRSQr0TP9+ywSdxSX+LgbJ2M1WmveXP72anTbnp2yl5fH+dU6SUmBzNMrDHs80G8G2DZg==} + '@vitest/expect@4.0.12': + resolution: {integrity: sha512-is+g0w8V3/ZhRNrRizrJNr8PFQKwYmctWlU4qg8zy5r9aIV5w8IxXLlfbbxJCwSpsVl2PXPTm2/zruqTqz3QSg==} - '@vitest/mocker@4.0.10': - resolution: {integrity: sha512-e2OfdexYkjkg8Hh3L9NVEfbwGXq5IZbDovkf30qW2tOh7Rh9sVtmSr2ztEXOFbymNxS4qjzLXUQIvATvN4B+lg==} + '@vitest/mocker@4.0.12': + resolution: {integrity: sha512-GsmA/tD5Ht3RUFoz41mZsMU1AXch3lhmgbTnoSPTdH231g7S3ytNN1aU0bZDSyxWs8WA7KDyMPD5L4q6V6vj9w==} peerDependencies: msw: ^2.4.9 vite: ^6.0.0 || ^7.0.0-0 @@ -1559,20 +1559,20 @@ packages: vite: optional: true - '@vitest/pretty-format@4.0.10': - resolution: {integrity: sha512-99EQbpa/zuDnvVjthwz5bH9o8iPefoQZ63WV8+bsRJZNw3qQSvSltfut8yu1Jc9mqOYi7pEbsKxYTi/rjaq6PA==} + '@vitest/pretty-format@4.0.12': + resolution: {integrity: sha512-R7nMAcnienG17MvRN8TPMJiCG8rrZJblV9mhT7oMFdBXvS0x+QD6S1G4DxFusR2E0QIS73f7DqSR1n87rrmE+g==} - '@vitest/runner@4.0.10': - resolution: {integrity: sha512-EXU2iSkKvNwtlL8L8doCpkyclw0mc/t4t9SeOnfOFPyqLmQwuceMPA4zJBa6jw0MKsZYbw7kAn+gl7HxrlB8UQ==} + '@vitest/runner@4.0.12': + resolution: {integrity: sha512-hDlCIJWuwlcLumfukPsNfPDOJokTv79hnOlf11V+n7E14rHNPz0Sp/BO6h8sh9qw4/UjZiKyYpVxK2ZNi+3ceQ==} - '@vitest/snapshot@4.0.10': - resolution: {integrity: sha512-2N4X2ZZl7kZw0qeGdQ41H0KND96L3qX1RgwuCfy6oUsF2ISGD/HpSbmms+CkIOsQmg2kulwfhJ4CI0asnZlvkg==} + '@vitest/snapshot@4.0.12': + resolution: {integrity: sha512-2jz9zAuBDUSbnfyixnyOd1S2YDBrZO23rt1bicAb6MA/ya5rHdKFRikPIDpBj/Dwvh6cbImDmudegnDAkHvmRQ==} - '@vitest/spy@4.0.10': - resolution: {integrity: sha512-AsY6sVS8OLb96GV5RoG8B6I35GAbNrC49AO+jNRF9YVGb/g9t+hzNm1H6kD0NDp8tt7VJLs6hb7YMkDXqu03iw==} + '@vitest/spy@4.0.12': + resolution: {integrity: sha512-GZjI9PPhiOYNX8Nsyqdw7JQB+u0BptL5fSnXiottAUBHlcMzgADV58A7SLTXXQwcN1yZ6gfd1DH+2bqjuUlCzw==} - '@vitest/utils@4.0.10': - resolution: {integrity: sha512-kOuqWnEwZNtQxMKg3WmPK1vmhZu9WcoX69iwWjVz+jvKTsF1emzsv3eoPcDr6ykA3qP2bsCQE7CwqfNtAVzsmg==} + '@vitest/utils@4.0.12': + resolution: {integrity: sha512-DVS/TLkLdvGvj1avRy0LSmKfrcI9MNFvNGN6ECjTUHWJdlcgPDOXhjMis5Dh7rBH62nAmSXnkPbE+DZ5YD75Rw==} '@vue/compiler-core@3.5.12': resolution: {integrity: sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw==} @@ -3479,8 +3479,8 @@ packages: rfdc@1.4.1: resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} - rollup@4.53.2: - resolution: {integrity: sha512-MHngMYwGJVi6Fmnk6ISmnk7JAHRNF0UkuucA0CUW3N3a4KnONPEZz+vUanQP/ZC/iY1Qkf3bwPWzyY84wEks1g==} + rollup@4.53.3: + resolution: {integrity: sha512-w8GmOxZfBmKknvdXU1sdM9NHcoQejwF/4mNgj2JuEEdRaHwwF12K7e9eXn1nLZ07ad+du76mkVsyeb2rKGllsA==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true @@ -3866,8 +3866,8 @@ packages: resolution: {integrity: sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==} engines: {node: '>=12'} - vite@7.2.2: - resolution: {integrity: sha512-BxAKBWmIbrDgrokdGZH1IgkIk/5mMHDreLDmCJ0qpyJaAteP8NvMhkwr/ZCQNqNH97bw/dANTE9PDzqwJghfMQ==} + vite@7.2.4: + resolution: {integrity: sha512-NL8jTlbo0Tn4dUEXEsUg8KeyG/Lkmc4Fnzb8JXN/Ykm9G4HNImjtABMJgkQoVjOBN/j2WAwDTRytdqJbZsah7w==} engines: {node: ^20.19.0 || >=22.12.0} hasBin: true peerDependencies: @@ -3906,23 +3906,26 @@ packages: yaml: optional: true - vitest@4.0.10: - resolution: {integrity: sha512-2Fqty3MM9CDwOVet/jaQalYlbcjATZwPYGcqpiYQqgQ/dLC7GuHdISKgTYIVF/kaishKxLzleKWWfbSDklyIKg==} + vitest@4.0.12: + resolution: {integrity: sha512-pmW4GCKQ8t5Ko1jYjC3SqOr7TUKN7uHOHB/XGsAIb69eYu6d1ionGSsb5H9chmPf+WeXt0VE7jTXsB1IvWoNbw==} engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' + '@opentelemetry/api': ^1.9.0 '@types/debug': ^4.1.12 '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0 - '@vitest/browser-playwright': 4.0.10 - '@vitest/browser-preview': 4.0.10 - '@vitest/browser-webdriverio': 4.0.10 - '@vitest/ui': 4.0.10 + '@vitest/browser-playwright': 4.0.12 + '@vitest/browser-preview': 4.0.12 + '@vitest/browser-webdriverio': 4.0.12 + '@vitest/ui': 4.0.12 happy-dom: '*' jsdom: '*' peerDependenciesMeta: '@edge-runtime/vm': optional: true + '@opentelemetry/api': + optional: true '@types/debug': optional: true '@types/node': @@ -4084,7 +4087,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.10(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.12(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -4093,7 +4096,7 @@ snapshots: '@stylistic/eslint-plugin': 5.5.0(eslint@9.39.1(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/parser': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.10(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/eslint-plugin': 1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.12(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.2.0 cac: 6.7.14 eslint: 9.39.1(jiti@2.4.0) @@ -5519,70 +5522,70 @@ snapshots: '@repeaterjs/repeater@3.0.6': {} - '@rollup/rollup-android-arm-eabi@4.53.2': + '@rollup/rollup-android-arm-eabi@4.53.3': optional: true - '@rollup/rollup-android-arm64@4.53.2': + '@rollup/rollup-android-arm64@4.53.3': optional: true - '@rollup/rollup-darwin-arm64@4.53.2': + '@rollup/rollup-darwin-arm64@4.53.3': optional: true - '@rollup/rollup-darwin-x64@4.53.2': + '@rollup/rollup-darwin-x64@4.53.3': optional: true - '@rollup/rollup-freebsd-arm64@4.53.2': + '@rollup/rollup-freebsd-arm64@4.53.3': optional: true - '@rollup/rollup-freebsd-x64@4.53.2': + '@rollup/rollup-freebsd-x64@4.53.3': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.53.2': + '@rollup/rollup-linux-arm-gnueabihf@4.53.3': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.53.2': + '@rollup/rollup-linux-arm-musleabihf@4.53.3': optional: true - '@rollup/rollup-linux-arm64-gnu@4.53.2': + '@rollup/rollup-linux-arm64-gnu@4.53.3': optional: true - '@rollup/rollup-linux-arm64-musl@4.53.2': + '@rollup/rollup-linux-arm64-musl@4.53.3': optional: true - '@rollup/rollup-linux-loong64-gnu@4.53.2': + '@rollup/rollup-linux-loong64-gnu@4.53.3': optional: true - '@rollup/rollup-linux-ppc64-gnu@4.53.2': + '@rollup/rollup-linux-ppc64-gnu@4.53.3': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.53.2': + '@rollup/rollup-linux-riscv64-gnu@4.53.3': optional: true - '@rollup/rollup-linux-riscv64-musl@4.53.2': + '@rollup/rollup-linux-riscv64-musl@4.53.3': optional: true - '@rollup/rollup-linux-s390x-gnu@4.53.2': + '@rollup/rollup-linux-s390x-gnu@4.53.3': optional: true - '@rollup/rollup-linux-x64-gnu@4.53.2': + '@rollup/rollup-linux-x64-gnu@4.53.3': optional: true - '@rollup/rollup-linux-x64-musl@4.53.2': + '@rollup/rollup-linux-x64-musl@4.53.3': optional: true - '@rollup/rollup-openharmony-arm64@4.53.2': + '@rollup/rollup-openharmony-arm64@4.53.3': optional: true - '@rollup/rollup-win32-arm64-msvc@4.53.2': + '@rollup/rollup-win32-arm64-msvc@4.53.3': optional: true - '@rollup/rollup-win32-ia32-msvc@4.53.2': + '@rollup/rollup-win32-ia32-msvc@4.53.3': optional: true - '@rollup/rollup-win32-x64-gnu@4.53.2': + '@rollup/rollup-win32-x64-gnu@4.53.3': optional: true - '@rollup/rollup-win32-x64-msvc@4.53.2': + '@rollup/rollup-win32-x64-msvc@4.53.3': optional: true '@sinclair/typebox@0.34.33': {} @@ -5836,54 +5839,54 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.10(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.12(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.46.2 '@typescript-eslint/utils': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) eslint: 9.39.1(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - vitest: 4.0.10(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) + vitest: 4.0.12(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color - '@vitest/expect@4.0.10': + '@vitest/expect@4.0.12': dependencies: '@standard-schema/spec': 1.0.0 '@types/chai': 5.2.3 - '@vitest/spy': 4.0.10 - '@vitest/utils': 4.0.10 + '@vitest/spy': 4.0.12 + '@vitest/utils': 4.0.12 chai: 6.2.1 tinyrainbow: 3.0.3 - '@vitest/mocker@4.0.10(vite@7.2.2(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@4.0.12(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: - '@vitest/spy': 4.0.10 + '@vitest/spy': 4.0.12 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: - vite: 7.2.2(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) + vite: 7.2.4(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) - '@vitest/pretty-format@4.0.10': + '@vitest/pretty-format@4.0.12': dependencies: tinyrainbow: 3.0.3 - '@vitest/runner@4.0.10': + '@vitest/runner@4.0.12': dependencies: - '@vitest/utils': 4.0.10 + '@vitest/utils': 4.0.12 pathe: 2.0.3 - '@vitest/snapshot@4.0.10': + '@vitest/snapshot@4.0.12': dependencies: - '@vitest/pretty-format': 4.0.10 + '@vitest/pretty-format': 4.0.12 magic-string: 0.30.21 pathe: 2.0.3 - '@vitest/spy@4.0.10': {} + '@vitest/spy@4.0.12': {} - '@vitest/utils@4.0.10': + '@vitest/utils@4.0.12': dependencies: - '@vitest/pretty-format': 4.0.10 + '@vitest/pretty-format': 4.0.12 tinyrainbow: 3.0.3 '@vue/compiler-core@3.5.12': @@ -8168,32 +8171,32 @@ snapshots: rfdc@1.4.1: {} - rollup@4.53.2: + rollup@4.53.3: dependencies: '@types/estree': 1.0.8 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.53.2 - '@rollup/rollup-android-arm64': 4.53.2 - '@rollup/rollup-darwin-arm64': 4.53.2 - '@rollup/rollup-darwin-x64': 4.53.2 - '@rollup/rollup-freebsd-arm64': 4.53.2 - '@rollup/rollup-freebsd-x64': 4.53.2 - '@rollup/rollup-linux-arm-gnueabihf': 4.53.2 - '@rollup/rollup-linux-arm-musleabihf': 4.53.2 - '@rollup/rollup-linux-arm64-gnu': 4.53.2 - '@rollup/rollup-linux-arm64-musl': 4.53.2 - '@rollup/rollup-linux-loong64-gnu': 4.53.2 - '@rollup/rollup-linux-ppc64-gnu': 4.53.2 - '@rollup/rollup-linux-riscv64-gnu': 4.53.2 - '@rollup/rollup-linux-riscv64-musl': 4.53.2 - '@rollup/rollup-linux-s390x-gnu': 4.53.2 - '@rollup/rollup-linux-x64-gnu': 4.53.2 - '@rollup/rollup-linux-x64-musl': 4.53.2 - '@rollup/rollup-openharmony-arm64': 4.53.2 - '@rollup/rollup-win32-arm64-msvc': 4.53.2 - '@rollup/rollup-win32-ia32-msvc': 4.53.2 - '@rollup/rollup-win32-x64-gnu': 4.53.2 - '@rollup/rollup-win32-x64-msvc': 4.53.2 + '@rollup/rollup-android-arm-eabi': 4.53.3 + '@rollup/rollup-android-arm64': 4.53.3 + '@rollup/rollup-darwin-arm64': 4.53.3 + '@rollup/rollup-darwin-x64': 4.53.3 + '@rollup/rollup-freebsd-arm64': 4.53.3 + '@rollup/rollup-freebsd-x64': 4.53.3 + '@rollup/rollup-linux-arm-gnueabihf': 4.53.3 + '@rollup/rollup-linux-arm-musleabihf': 4.53.3 + '@rollup/rollup-linux-arm64-gnu': 4.53.3 + '@rollup/rollup-linux-arm64-musl': 4.53.3 + '@rollup/rollup-linux-loong64-gnu': 4.53.3 + '@rollup/rollup-linux-ppc64-gnu': 4.53.3 + '@rollup/rollup-linux-riscv64-gnu': 4.53.3 + '@rollup/rollup-linux-riscv64-musl': 4.53.3 + '@rollup/rollup-linux-s390x-gnu': 4.53.3 + '@rollup/rollup-linux-x64-gnu': 4.53.3 + '@rollup/rollup-linux-x64-musl': 4.53.3 + '@rollup/rollup-openharmony-arm64': 4.53.3 + '@rollup/rollup-win32-arm64-msvc': 4.53.3 + '@rollup/rollup-win32-ia32-msvc': 4.53.3 + '@rollup/rollup-win32-x64-gnu': 4.53.3 + '@rollup/rollup-win32-x64-msvc': 4.53.3 fsevents: 2.3.3 run-parallel@1.2.0: @@ -8543,13 +8546,13 @@ snapshots: value-or-promise@1.0.12: {} - vite@7.2.2(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1): + vite@7.2.4(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1): dependencies: esbuild: 0.25.12 fdir: 6.5.0(picomatch@4.0.3) picomatch: 4.0.3 postcss: 8.5.6 - rollup: 4.53.2 + rollup: 4.53.3 tinyglobby: 0.2.15 optionalDependencies: '@types/node': 24.10.1 @@ -8557,15 +8560,15 @@ snapshots: jiti: 2.4.0 yaml: 2.8.1 - vitest@4.0.10(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1): + vitest@4.0.12(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1): dependencies: - '@vitest/expect': 4.0.10 - '@vitest/mocker': 4.0.10(vite@7.2.2(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) - '@vitest/pretty-format': 4.0.10 - '@vitest/runner': 4.0.10 - '@vitest/snapshot': 4.0.10 - '@vitest/spy': 4.0.10 - '@vitest/utils': 4.0.10 + '@vitest/expect': 4.0.12 + '@vitest/mocker': 4.0.12(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/pretty-format': 4.0.12 + '@vitest/runner': 4.0.12 + '@vitest/snapshot': 4.0.12 + '@vitest/spy': 4.0.12 + '@vitest/utils': 4.0.12 debug: 4.4.3 es-module-lexer: 1.7.0 expect-type: 1.2.2 @@ -8577,7 +8580,7 @@ snapshots: tinyexec: 0.3.2 tinyglobby: 0.2.15 tinyrainbow: 3.0.3 - vite: 7.2.2(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) + vite: 7.2.4(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) why-is-node-running: 2.3.0 optionalDependencies: '@types/debug': 4.1.12 From dbb144e7d62517a3f18957d34e0d316a03f28a8e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 18:43:30 +0000 Subject: [PATCH 117/133] chore(deps): update graphqlcodegenerator monorepo (#1305) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 363 ++++++++++++++----------------------------------- 2 files changed, 102 insertions(+), 263 deletions(-) diff --git a/package.json b/package.json index c6a159ab..ea890c68 100644 --- a/package.json +++ b/package.json @@ -88,7 +88,7 @@ }, "devDependencies": { "@antfu/eslint-config": "^6.0.0", - "@graphql-codegen/cli": "6.0.2", + "@graphql-codegen/cli": "6.1.0", "@graphql-codegen/typescript": "^5.0.0", "@tsconfig/recommended": "1.0.13", "@types/graphlib": "^2.1.8", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f61fe018..c5ecbf53 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -10,13 +10,13 @@ importers: dependencies: '@graphql-codegen/plugin-helpers': specifier: ^6.0.0 - version: 6.0.0(graphql@16.12.0) + version: 6.1.0(graphql@16.12.0) '@graphql-codegen/schema-ast': specifier: 5.0.0 version: 5.0.0(graphql@16.12.0) '@graphql-codegen/visitor-plugin-common': specifier: ^6.0.0 - version: 6.1.2(graphql@16.12.0) + version: 6.2.0(graphql@16.12.0) '@graphql-tools/utils': specifier: ^10.0.0 version: 10.10.3(graphql@16.12.0) @@ -31,11 +31,11 @@ importers: specifier: ^6.0.0 version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.12(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': - specifier: 6.0.2 - version: 6.0.2(@types/node@24.10.1)(graphql@16.12.0)(typescript@5.9.3) + specifier: 6.1.0 + version: 6.1.0(@types/node@24.10.1)(graphql@16.12.0)(typescript@5.9.3) '@graphql-codegen/typescript': specifier: ^5.0.0 - version: 5.0.4(graphql@16.12.0) + version: 5.0.5(graphql@16.12.0) '@tsconfig/recommended': specifier: 1.0.13 version: 1.0.13 @@ -169,10 +169,6 @@ packages: resolution: {integrity: sha512-ZGhA37l0e/g2s1Cnzdix0O3aLYm66eF8aufiVteOgnwxgnRP8GoyMj7VWsgWnQbVKXyge7hqrFh2K2TQM6t1Hw==} engines: {node: '>=6.9.0'} - '@babel/generator@7.28.3': - resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==} - engines: {node: '>=6.9.0'} - '@babel/generator@7.28.5': resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==} engines: {node: '>=6.9.0'} @@ -601,8 +597,8 @@ packages: peerDependencies: graphql: ^0.8.0 || ^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-codegen/cli@6.0.2': - resolution: {integrity: sha512-W+0ime0xMrCyG77q+5xiPkkqPLuXJcTx0Zr9TTOxF4zIqWKVsuImS3qVxtpeTx+GRbb8VWv9IedWMtt91JGzQg==} + '@graphql-codegen/cli@6.1.0': + resolution: {integrity: sha512-7w3Zq5IFONVOBcyOiP01Nv9WRxGS/TEaBCAb/ALYA3xHq95dqKCpoGnxt/Ut9R18jiS+aMgT0gc8Tr8sHy44jA==} engines: {node: '>=16'} hasBin: true peerDependencies: @@ -612,8 +608,8 @@ packages: '@parcel/watcher': optional: true - '@graphql-codegen/client-preset@5.1.2': - resolution: {integrity: sha512-xFZFVVGD3bKIsetWEq0dG0+yiP5jS9dB+6u3vee3yY5wPaCGr629izndyxIFLtU8o9MCGnjBrFcGnH3OWkuT2A==} + '@graphql-codegen/client-preset@5.2.0': + resolution: {integrity: sha512-I8mcyNmuEoQGaUGiJHl9lAgyqCkMD/3TyUU3W2DS/aF4pwCpys378ZyYIE/Tw0Ods/tdPUvq/6p+JRkPlxtk1A==} engines: {node: '>=16'} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -628,14 +624,14 @@ packages: peerDependencies: graphql: ^0.8.0 || ^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-codegen/gql-tag-operations@5.0.4': - resolution: {integrity: sha512-2PPGSXGR6NQyoOtG/mY1e88CC4pDV162dVYVGzd787ut4Ys76fovdtVojJUiyF5zek1xdGFPeek3N4lFqIpkaQ==} + '@graphql-codegen/gql-tag-operations@5.1.0': + resolution: {integrity: sha512-acb0AKLSpNd5Wx3nl1pWR8+AckMTlzggOzQ7GUORznGkpK5mZBTNaOmIiUqT5bbu0fxADZfYpsiz+xmocFNedg==} engines: {node: '>=16'} peerDependencies: graphql: ^0.8.0 || ^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-codegen/plugin-helpers@6.0.0': - resolution: {integrity: sha512-Z7P89vViJvQakRyMbq/JF2iPLruRFOwOB6IXsuSvV/BptuuEd7fsGPuEf8bdjjDxUY0pJZnFN8oC7jIQ8p9GKA==} + '@graphql-codegen/plugin-helpers@6.1.0': + resolution: {integrity: sha512-JJypehWTcty9kxKiqH7TQOetkGdOYjY78RHlI+23qB59cV2wxjFFVf8l7kmuXS4cpGVUNfIjFhVr7A1W7JMtdA==} engines: {node: '>=16'} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -646,14 +642,14 @@ packages: peerDependencies: graphql: ^0.8.0 || ^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-codegen/typed-document-node@6.1.1': - resolution: {integrity: sha512-tNSpkt9vG+6pgtR6gLjPZtOkrSm8zyhehKZDOxi8JIDL+KIbmU2VelpvZg0QJb/ycQd64n2aJ+UN08fGqgt4Cw==} + '@graphql-codegen/typed-document-node@6.1.3': + resolution: {integrity: sha512-U1+16S3EWnR4T5b9219pu/47InfDB3UZ2E/CihJXgkeSklNteNBtw3D8m9R+ZanIq/GIsEin2hYpR++PO6neLQ==} engines: {node: '>=16'} peerDependencies: graphql: ^0.8.0 || ^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-codegen/typescript-operations@5.0.3': - resolution: {integrity: sha512-eDBphTR7iWwEb12NZqoZ1drZeF+wb3Qps1TEjqZu01YOVVwl/p+OvKMDXYZMuF638Ewr2fmIRhfO6KRvC7wj2A==} + '@graphql-codegen/typescript-operations@5.0.5': + resolution: {integrity: sha512-4PpndN6teJ/mN/QxGYhaBwkpN+Q3/lOeM5sArZ5tiDDI4ItxjPRCEm/gOGv52nRHmB6xoQ5/9uqY52KWcf9AWA==} engines: {node: '>=16'} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -662,20 +658,14 @@ packages: graphql-sock: optional: true - '@graphql-codegen/typescript@5.0.4': - resolution: {integrity: sha512-q6S8hX+aR4BzeGgolac4gp22rBnXbLhedmOwT1UBT9e3lGNmNpYC7WJUEzAPjWf6z1lRSNmojLlwEjTnffhKNA==} + '@graphql-codegen/typescript@5.0.5': + resolution: {integrity: sha512-NwrUTjKALbeOrFyL/741DP/uRfcHKLD+kYL+e1de+X9b1wa1CfpMIdRIhGTuivuD5y6PYh3VePrE98Q5qz0+Ww==} engines: {node: '>=16'} peerDependencies: graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@graphql-codegen/visitor-plugin-common@6.1.1': - resolution: {integrity: sha512-31ZEoa9nA9J1ENJU1EDfnnlFFmW8G54tQpJdJ126JQtJkgSHON29UQ/fDXndSF7v0nO+IoPKWLBVYwHnz8v7ug==} - engines: {node: '>=16'} - peerDependencies: - graphql: ^0.8.0 || ^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-codegen/visitor-plugin-common@6.1.2': - resolution: {integrity: sha512-zYdrhJKgk8kqE1Xz5/m/Ua42zk+rIvYB/FHh3dE1AhZ6b1IDqgKjF3LnkT+K2qenf9EfT4yNjXd5CEKMeXfHyg==} + '@graphql-codegen/visitor-plugin-common@6.2.0': + resolution: {integrity: sha512-8mx5uDDEwhP3G1jdeBdvVm4QhbEdkwXQa1hAXBWGofL87ePs5PUhz4IuQpwiS/CfFa4cqxcAWbe0k74x8iWfKw==} engines: {node: '>=16'} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -756,24 +746,12 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/executor-legacy-ws@1.1.2': - resolution: {integrity: sha512-Bjgny4svnOVOCKXuiS6oSiZB3oy/GVMHh+6CbztlA+YcDu6jUiB7fTQiJuZA/c+e3xTxl9xMe3zOsEKwuHy07A==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/executor-legacy-ws@1.1.23': resolution: {integrity: sha512-wwS6ZlJDaC+zxE1DcfYrPJk1ynQ0xcbOWS/x8dy4hO6ZCjRawkogoqN3Muab0E9RzuwF29LRu+aOH6isO5mQKg==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/executor@1.3.3': - resolution: {integrity: sha512-lpkgokF6vjGHNluANOTsWoSM0vuvUuVpjY1810tvM6Vlyoq2tJ+nmqweGbMsq/GLhmZQP1lY/nOkj2zPJXLWiw==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/executor@1.4.13': resolution: {integrity: sha512-2hTSRfH2kb4ua0ANOV/K6xUoCZsHAE6igE1bimtWUK7v0bowPIxGRKRPpF8JLbImpsJuTCC4HGOCMy7otg3FIQ==} engines: {node: '>=16.0.0'} @@ -828,12 +806,6 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/merge@9.0.24': - resolution: {integrity: sha512-NzWx/Afl/1qHT3Nm1bghGG2l4jub28AdvtG11PoUlmjcIjnFBJMv4vqL0qnxWe8A82peWo4/TkVdjJRLXwgGEw==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/merge@9.1.5': resolution: {integrity: sha512-eVcir6nCcOC/Wzv7ZAng3xec3dj6FehE8+h9TvgvUyrDEKVMdFfrO6etRFZ2hucWVcY8S6drx7zQx04N4lPM8Q==} engines: {node: '>=16.0.0'} @@ -852,12 +824,6 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/schema@10.0.23': - resolution: {integrity: sha512-aEGVpd1PCuGEwqTXCStpEkmheTHNdMayiIKH1xDWqYp9i8yKv9FRDgkGrY4RD8TNxnf7iII+6KOBGaJ3ygH95A==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/schema@10.0.29': resolution: {integrity: sha512-+Htiupnq6U/AWOEAJerIOGT1pAf4u43Q3n2JmFpqFfYJchz6sKWZ7L9Lpe/NusaaUQty/IOF+eQlNFypEaWxhg==} engines: {node: '>=16.0.0'} @@ -1155,9 +1121,6 @@ packages: '@jridgewell/trace-mapping@0.3.31': resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} - '@kamilkisiela/fast-url-parser@1.1.4': - resolution: {integrity: sha512-gbkePEBupNydxCelHCESvFSFM8XPh1Zs/OAVRW/rKpEqPAl5PbOM90Si8mv9bvnR53uPD2s/FiRxdvSejpRJew==} - '@napi-rs/wasm-runtime@0.2.11': resolution: {integrity: sha512-9DPkXtvHydrcOsopiYpUgPHpmj0HWZKMUnL2dZqpvC42lsratuBG06V5ipyno0fUek5VlFsNQ+AcFATSrJXgMA==} @@ -1593,18 +1556,10 @@ packages: resolution: {integrity: sha512-LOtTn+JgJvX8WfBVJtF08TGrdjuFzGJc4mkP8EdDI8ADbvO7kiexYep1o8dwnt0okb0jYclCDXF13xU7Ge4zSw==} engines: {node: '>=18.0.0'} - '@whatwg-node/fetch@0.10.1': - resolution: {integrity: sha512-gmPOLrsjSZWEZlr9Oe5+wWFBq3CG6fN13rGlM91Jsj/vZ95G9CCvrORGBAxMXy0AJGiC83aYiHXn3JzTzXQmbA==} - engines: {node: '>=18.0.0'} - '@whatwg-node/fetch@0.10.13': resolution: {integrity: sha512-b4PhJ+zYj4357zwk4TTuF2nEe0vVtOrwdsrNo5hL+u1ojXNhh1FgJ6pg1jzDlwlT4oBdzfSwaBwMCtFCsIWg8Q==} engines: {node: '>=18.0.0'} - '@whatwg-node/node-fetch@0.7.2': - resolution: {integrity: sha512-OAAEIbyspvQwkcRGutYN3D0a+hzQogvcZ7I3hf6vg742ZEq52yMJTGtkwjl3KZRmzzUltd/oEMxEGsXFLjnuLQ==} - engines: {node: '>=18.0.0'} - '@whatwg-node/node-fetch@0.8.4': resolution: {integrity: sha512-AlKLc57loGoyYlrzDbejB9EeR+pfdJdGzbYnkEuZaGekFboBwzfVYVMsy88PMriqPI1ORpiGYGgSSWpx7a2sDA==} engines: {node: '>=18.0.0'} @@ -1654,6 +1609,10 @@ packages: resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} engines: {node: '>=12'} + ansi-styles@6.2.3: + resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==} + engines: {node: '>=12'} + ansis@4.2.0: resolution: {integrity: sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==} engines: {node: '>=14'} @@ -1751,10 +1710,6 @@ packages: resolution: {integrity: sha512-bkXY9WsVpY7CvMhKSR6pZilZu9Ln5WDrKVBUXf2S443etkmEO4V58heTecXcUIsNsi4Rx8JUO4NfX1IcQl4deg==} engines: {node: '>=18.20'} - busboy@1.6.0: - resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} - engines: {node: '>=10.16.0'} - cac@6.7.14: resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} engines: {node: '>=8'} @@ -1922,9 +1877,6 @@ packages: resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==} engines: {node: '>= 12'} - dataloader@2.2.2: - resolution: {integrity: sha512-8YnDaaf7N3k/q5HnTJVuzSyLETjoZjVmHc4AeKAzOvKHEFQKcn64OKBfzHYtE9zGjctNM7V9I0MfnUVLpi7M5g==} - dataloader@2.2.3: resolution: {integrity: sha512-y2krtASINtPFS1rSDjacrFgn1dcUuoREVabwlOGOe4SdxenREqwjwjElAdwvbGM7kgZz9a3KVicWR7vcz8rnzA==} @@ -2003,8 +1955,8 @@ packages: resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} engines: {node: '>=12'} - emoji-regex@10.5.0: - resolution: {integrity: sha512-lb49vf1Xzfx080OKA0o6l8DQQpV+6Vg95zyCJX9VB/BqKYlhG7N4wgROUUHRA+ZPUefLnteQOad7z1kT2bV7bg==} + emoji-regex@10.6.0: + resolution: {integrity: sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==} emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} @@ -2294,9 +2246,6 @@ packages: resolution: {integrity: sha512-FuoE1qtbJ4bBVvv94CC7s0oTnKUGvQs+Rjf1L2SJFfS+HTVVjhPFtehPdQ0JiGPqVNfSSZvL5yzHHQq2Z4WNhQ==} engines: {node: ^12.20 || >= 14.13} - fast-decode-uri-component@1.0.1: - resolution: {integrity: sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==} - fast-deep-equal@3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} @@ -2310,9 +2259,6 @@ packages: fast-levenshtein@2.0.6: resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} - fast-querystring@1.1.2: - resolution: {integrity: sha512-g6KuKWmFXc0fID8WWH0jit4g0AGBoJhCkJMb1RmbsSEUNvQ+ZC8D6CUZ+GtF8nMzSPXnhiePyyqqipzNNEnHjg==} - fastq@1.17.1: resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} @@ -3006,15 +2952,6 @@ packages: resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} engines: {node: '>= 8'} - meros@1.3.0: - resolution: {integrity: sha512-2BNGOimxEz5hmjUG2FwoxCt5HN7BXdaWyFqEwxPTrJzVdABtrL4TiHTcsWSFAxPQ/tOnEaQEJh3qWq71QRMY+w==} - engines: {node: '>=13'} - peerDependencies: - '@types/node': '>=13' - peerDependenciesMeta: - '@types/node': - optional: true - meros@1.3.2: resolution: {integrity: sha512-Q3mobPbvEx7XbwhnC1J1r60+5H6EZyNccdzSz0eGexJRwouUtTZxPVRGdqKtxlpD84ScK4+tIGldkqDtCKdI0A==} engines: {node: '>=13'} @@ -3592,10 +3529,6 @@ packages: std-env@3.10.0: resolution: {integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==} - streamsearch@1.1.0: - resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} - engines: {node: '>=10.0.0'} - string-env-interpolation@1.0.1: resolution: {integrity: sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg==} @@ -3623,6 +3556,10 @@ packages: resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} engines: {node: '>=12'} + strip-ansi@7.1.2: + resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==} + engines: {node: '>=12'} + strip-bom@4.0.0: resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} engines: {node: '>=8'} @@ -4011,18 +3948,6 @@ packages: resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - ws@8.18.0: - resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==} - engines: {node: '>=10.0.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: '>=5.0.2' - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - ws@8.18.3: resolution: {integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==} engines: {node: '>=10.0.0'} @@ -4085,7 +4010,7 @@ snapshots: '@ampproject/remapping@2.3.0': dependencies: '@jridgewell/gen-mapping': 0.3.13 - '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/trace-mapping': 0.3.31 '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.12(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: @@ -4196,14 +4121,6 @@ snapshots: '@jridgewell/trace-mapping': 0.3.31 jsesc: 3.1.0 - '@babel/generator@7.28.3': - dependencies: - '@babel/parser': 7.28.5 - '@babel/types': 7.28.5 - '@jridgewell/gen-mapping': 0.3.13 - '@jridgewell/trace-mapping': 0.3.31 - jsesc: 3.1.0 - '@babel/generator@7.28.5': dependencies: '@babel/parser': 7.28.5 @@ -4354,7 +4271,7 @@ snapshots: '@babel/traverse@7.27.4': dependencies: '@babel/code-frame': 7.27.1 - '@babel/generator': 7.28.3 + '@babel/generator': 7.28.5 '@babel/parser': 7.28.5 '@babel/template': 7.27.2 '@babel/types': 7.28.5 @@ -4595,18 +4512,18 @@ snapshots: '@graphql-codegen/add@6.0.0(graphql@16.12.0)': dependencies: - '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) + '@graphql-codegen/plugin-helpers': 6.1.0(graphql@16.12.0) graphql: 16.12.0 tslib: 2.6.3 - '@graphql-codegen/cli@6.0.2(@types/node@24.10.1)(graphql@16.12.0)(typescript@5.9.3)': + '@graphql-codegen/cli@6.1.0(@types/node@24.10.1)(graphql@16.12.0)(typescript@5.9.3)': dependencies: - '@babel/generator': 7.28.3 + '@babel/generator': 7.28.5 '@babel/template': 7.27.2 '@babel/types': 7.28.5 - '@graphql-codegen/client-preset': 5.1.2(graphql@16.12.0) + '@graphql-codegen/client-preset': 5.2.0(graphql@16.12.0) '@graphql-codegen/core': 5.0.0(graphql@16.12.0) - '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) + '@graphql-codegen/plugin-helpers': 6.1.0(graphql@16.12.0) '@graphql-tools/apollo-engine-loader': 8.0.4(graphql@16.12.0) '@graphql-tools/code-file-loader': 8.1.5(graphql@16.12.0) '@graphql-tools/git-loader': 8.0.9(graphql@16.12.0) @@ -4617,7 +4534,7 @@ snapshots: '@graphql-tools/url-loader': 9.0.4(@types/node@24.10.1)(graphql@16.12.0) '@graphql-tools/utils': 10.10.3(graphql@16.12.0) '@inquirer/prompts': 7.8.4(@types/node@24.10.1) - '@whatwg-node/fetch': 0.10.1 + '@whatwg-node/fetch': 0.10.13 chalk: 4.1.2 cosmiconfig: 9.0.0(typescript@5.9.3) debounce: 2.2.0 @@ -4649,17 +4566,17 @@ snapshots: - uWebSockets.js - utf-8-validate - '@graphql-codegen/client-preset@5.1.2(graphql@16.12.0)': + '@graphql-codegen/client-preset@5.2.0(graphql@16.12.0)': dependencies: '@babel/helper-plugin-utils': 7.27.1 '@babel/template': 7.27.2 '@graphql-codegen/add': 6.0.0(graphql@16.12.0) - '@graphql-codegen/gql-tag-operations': 5.0.4(graphql@16.12.0) - '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) - '@graphql-codegen/typed-document-node': 6.1.1(graphql@16.12.0) - '@graphql-codegen/typescript': 5.0.4(graphql@16.12.0) - '@graphql-codegen/typescript-operations': 5.0.3(graphql@16.12.0) - '@graphql-codegen/visitor-plugin-common': 6.1.2(graphql@16.12.0) + '@graphql-codegen/gql-tag-operations': 5.1.0(graphql@16.12.0) + '@graphql-codegen/plugin-helpers': 6.1.0(graphql@16.12.0) + '@graphql-codegen/typed-document-node': 6.1.3(graphql@16.12.0) + '@graphql-codegen/typescript': 5.0.5(graphql@16.12.0) + '@graphql-codegen/typescript-operations': 5.0.5(graphql@16.12.0) + '@graphql-codegen/visitor-plugin-common': 6.2.0(graphql@16.12.0) '@graphql-tools/documents': 1.0.1(graphql@16.12.0) '@graphql-tools/utils': 10.10.3(graphql@16.12.0) '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0) @@ -4670,16 +4587,16 @@ snapshots: '@graphql-codegen/core@5.0.0(graphql@16.12.0)': dependencies: - '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) - '@graphql-tools/schema': 10.0.23(graphql@16.12.0) + '@graphql-codegen/plugin-helpers': 6.1.0(graphql@16.12.0) + '@graphql-tools/schema': 10.0.29(graphql@16.12.0) '@graphql-tools/utils': 10.10.3(graphql@16.12.0) graphql: 16.12.0 tslib: 2.6.3 - '@graphql-codegen/gql-tag-operations@5.0.4(graphql@16.12.0)': + '@graphql-codegen/gql-tag-operations@5.1.0(graphql@16.12.0)': dependencies: - '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) - '@graphql-codegen/visitor-plugin-common': 6.1.1(graphql@16.12.0) + '@graphql-codegen/plugin-helpers': 6.1.0(graphql@16.12.0) + '@graphql-codegen/visitor-plugin-common': 6.2.0(graphql@16.12.0) '@graphql-tools/utils': 10.10.3(graphql@16.12.0) auto-bind: 4.0.0 graphql: 16.12.0 @@ -4687,7 +4604,7 @@ snapshots: transitivePeerDependencies: - encoding - '@graphql-codegen/plugin-helpers@6.0.0(graphql@16.12.0)': + '@graphql-codegen/plugin-helpers@6.1.0(graphql@16.12.0)': dependencies: '@graphql-tools/utils': 10.10.3(graphql@16.12.0) change-case-all: 1.0.15 @@ -4699,15 +4616,15 @@ snapshots: '@graphql-codegen/schema-ast@5.0.0(graphql@16.12.0)': dependencies: - '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) + '@graphql-codegen/plugin-helpers': 6.1.0(graphql@16.12.0) '@graphql-tools/utils': 10.10.3(graphql@16.12.0) graphql: 16.12.0 tslib: 2.6.3 - '@graphql-codegen/typed-document-node@6.1.1(graphql@16.12.0)': + '@graphql-codegen/typed-document-node@6.1.3(graphql@16.12.0)': dependencies: - '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) - '@graphql-codegen/visitor-plugin-common': 6.1.1(graphql@16.12.0) + '@graphql-codegen/plugin-helpers': 6.1.0(graphql@16.12.0) + '@graphql-codegen/visitor-plugin-common': 6.2.0(graphql@16.12.0) auto-bind: 4.0.0 change-case-all: 1.0.15 graphql: 16.12.0 @@ -4715,47 +4632,31 @@ snapshots: transitivePeerDependencies: - encoding - '@graphql-codegen/typescript-operations@5.0.3(graphql@16.12.0)': + '@graphql-codegen/typescript-operations@5.0.5(graphql@16.12.0)': dependencies: - '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) - '@graphql-codegen/typescript': 5.0.4(graphql@16.12.0) - '@graphql-codegen/visitor-plugin-common': 6.1.1(graphql@16.12.0) + '@graphql-codegen/plugin-helpers': 6.1.0(graphql@16.12.0) + '@graphql-codegen/typescript': 5.0.5(graphql@16.12.0) + '@graphql-codegen/visitor-plugin-common': 6.2.0(graphql@16.12.0) auto-bind: 4.0.0 graphql: 16.12.0 tslib: 2.6.3 transitivePeerDependencies: - encoding - '@graphql-codegen/typescript@5.0.4(graphql@16.12.0)': + '@graphql-codegen/typescript@5.0.5(graphql@16.12.0)': dependencies: - '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) + '@graphql-codegen/plugin-helpers': 6.1.0(graphql@16.12.0) '@graphql-codegen/schema-ast': 5.0.0(graphql@16.12.0) - '@graphql-codegen/visitor-plugin-common': 6.1.2(graphql@16.12.0) + '@graphql-codegen/visitor-plugin-common': 6.2.0(graphql@16.12.0) auto-bind: 4.0.0 graphql: 16.12.0 tslib: 2.6.3 transitivePeerDependencies: - encoding - '@graphql-codegen/visitor-plugin-common@6.1.1(graphql@16.12.0)': + '@graphql-codegen/visitor-plugin-common@6.2.0(graphql@16.12.0)': dependencies: - '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) - '@graphql-tools/optimize': 2.0.0(graphql@16.12.0) - '@graphql-tools/relay-operation-optimizer': 7.0.25(graphql@16.12.0) - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) - auto-bind: 4.0.0 - change-case-all: 1.0.15 - dependency-graph: 1.0.0 - graphql: 16.12.0 - graphql-tag: 2.12.6(graphql@16.12.0) - parse-filepath: 1.0.2 - tslib: 2.6.3 - transitivePeerDependencies: - - encoding - - '@graphql-codegen/visitor-plugin-common@6.1.2(graphql@16.12.0)': - dependencies: - '@graphql-codegen/plugin-helpers': 6.0.0(graphql@16.12.0) + '@graphql-codegen/plugin-helpers': 6.1.0(graphql@16.12.0) '@graphql-tools/optimize': 2.0.0(graphql@16.12.0) '@graphql-tools/relay-operation-optimizer': 7.0.25(graphql@16.12.0) '@graphql-tools/utils': 10.10.3(graphql@16.12.0) @@ -4775,7 +4676,7 @@ snapshots: dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/utils': 10.10.3(graphql@16.12.0) - '@whatwg-node/fetch': 0.10.1 + '@whatwg-node/fetch': 0.10.13 graphql: 16.12.0 tslib: 2.8.1 transitivePeerDependencies: @@ -4792,7 +4693,7 @@ snapshots: '@graphql-tools/batch-execute@9.0.6(graphql@16.12.0)': dependencies: '@graphql-tools/utils': 10.10.3(graphql@16.12.0) - dataloader: 2.2.2 + dataloader: 2.2.3 graphql: 16.12.0 tslib: 2.8.1 value-or-promise: 1.0.12 @@ -4811,11 +4712,11 @@ snapshots: '@graphql-tools/delegate@10.1.2(graphql@16.12.0)': dependencies: '@graphql-tools/batch-execute': 9.0.6(graphql@16.12.0) - '@graphql-tools/executor': 1.3.3(graphql@16.12.0) - '@graphql-tools/schema': 10.0.23(graphql@16.12.0) + '@graphql-tools/executor': 1.4.13(graphql@16.12.0) + '@graphql-tools/schema': 10.0.29(graphql@16.12.0) '@graphql-tools/utils': 10.10.3(graphql@16.12.0) '@repeaterjs/repeater': 3.0.6 - dataloader: 2.2.2 + dataloader: 2.2.3 dset: 3.1.4 graphql: 16.12.0 tslib: 2.8.1 @@ -4850,9 +4751,9 @@ snapshots: '@types/ws': 8.5.13 graphql: 16.12.0 graphql-ws: 5.16.0(graphql@16.12.0) - isomorphic-ws: 5.0.0(ws@8.18.0) + isomorphic-ws: 5.0.0(ws@8.18.3) tslib: 2.8.1 - ws: 8.18.0 + ws: 8.18.3 transitivePeerDependencies: - bufferutil - utf-8-validate @@ -4878,10 +4779,10 @@ snapshots: dependencies: '@graphql-tools/utils': 10.10.3(graphql@16.12.0) '@repeaterjs/repeater': 3.0.6 - '@whatwg-node/fetch': 0.10.1 + '@whatwg-node/fetch': 0.10.13 extract-files: 11.0.0 graphql: 16.12.0 - meros: 1.3.0(@types/node@24.10.1) + meros: 1.3.2(@types/node@24.10.1) tslib: 2.8.1 value-or-promise: 1.0.12 transitivePeerDependencies: @@ -4902,39 +4803,18 @@ snapshots: transitivePeerDependencies: - '@types/node' - '@graphql-tools/executor-legacy-ws@1.1.2(graphql@16.12.0)': - dependencies: - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) - '@types/ws': 8.5.13 - graphql: 16.12.0 - isomorphic-ws: 5.0.0(ws@8.18.0) - tslib: 2.8.1 - ws: 8.18.0 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - '@graphql-tools/executor-legacy-ws@1.1.23(graphql@16.12.0)': dependencies: '@graphql-tools/utils': 10.10.3(graphql@16.12.0) '@types/ws': 8.5.13 graphql: 16.12.0 - isomorphic-ws: 5.0.0(ws@8.18.0) + isomorphic-ws: 5.0.0(ws@8.18.3) tslib: 2.8.1 - ws: 8.18.0 + ws: 8.18.3 transitivePeerDependencies: - bufferutil - utf-8-validate - '@graphql-tools/executor@1.3.3(graphql@16.12.0)': - dependencies: - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) - '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0) - '@repeaterjs/repeater': 3.0.6 - graphql: 16.12.0 - tslib: 2.8.1 - value-or-promise: 1.0.12 - '@graphql-tools/executor@1.4.13(graphql@16.12.0)': dependencies: '@graphql-tools/utils': 10.10.3(graphql@16.12.0) @@ -5023,18 +4903,12 @@ snapshots: '@graphql-tools/load@8.1.0(graphql@16.12.0)': dependencies: - '@graphql-tools/schema': 10.0.23(graphql@16.12.0) + '@graphql-tools/schema': 10.0.29(graphql@16.12.0) '@graphql-tools/utils': 10.10.3(graphql@16.12.0) graphql: 16.12.0 p-limit: 3.1.0 tslib: 2.8.1 - '@graphql-tools/merge@9.0.24(graphql@16.12.0)': - dependencies: - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) - graphql: 16.12.0 - tslib: 2.8.1 - '@graphql-tools/merge@9.1.5(graphql@16.12.0)': dependencies: '@graphql-tools/utils': 10.10.3(graphql@16.12.0) @@ -5055,13 +4929,6 @@ snapshots: transitivePeerDependencies: - encoding - '@graphql-tools/schema@10.0.23(graphql@16.12.0)': - dependencies: - '@graphql-tools/merge': 9.0.24(graphql@16.12.0) - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) - graphql: 16.12.0 - tslib: 2.8.1 - '@graphql-tools/schema@10.0.29(graphql@16.12.0)': dependencies: '@graphql-tools/merge': 9.1.5(graphql@16.12.0) @@ -5074,16 +4941,16 @@ snapshots: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/executor-graphql-ws': 1.3.2(graphql@16.12.0) '@graphql-tools/executor-http': 1.1.9(@types/node@24.10.1)(graphql@16.12.0) - '@graphql-tools/executor-legacy-ws': 1.1.2(graphql@16.12.0) + '@graphql-tools/executor-legacy-ws': 1.1.23(graphql@16.12.0) '@graphql-tools/utils': 10.10.3(graphql@16.12.0) '@graphql-tools/wrap': 10.0.16(graphql@16.12.0) '@types/ws': 8.5.13 - '@whatwg-node/fetch': 0.10.1 + '@whatwg-node/fetch': 0.10.13 graphql: 16.12.0 - isomorphic-ws: 5.0.0(ws@8.18.0) + isomorphic-ws: 5.0.0(ws@8.18.3) tslib: 2.8.1 value-or-promise: 1.0.12 - ws: 8.18.0 + ws: 8.18.3 transitivePeerDependencies: - '@types/node' - bufferutil @@ -5101,10 +4968,10 @@ snapshots: '@whatwg-node/fetch': 0.10.13 '@whatwg-node/promise-helpers': 1.3.2 graphql: 16.12.0 - isomorphic-ws: 5.0.0(ws@8.18.0) + isomorphic-ws: 5.0.0(ws@8.18.3) sync-fetch: 0.6.0-2 tslib: 2.8.1 - ws: 8.18.0 + ws: 8.18.3 transitivePeerDependencies: - '@fastify/websocket' - '@types/node' @@ -5124,7 +4991,7 @@ snapshots: '@graphql-tools/wrap@10.0.16(graphql@16.12.0)': dependencies: '@graphql-tools/delegate': 10.1.2(graphql@16.12.0) - '@graphql-tools/schema': 10.0.23(graphql@16.12.0) + '@graphql-tools/schema': 10.0.29(graphql@16.12.0) '@graphql-tools/utils': 10.10.3(graphql@16.12.0) graphql: 16.12.0 tslib: 2.8.1 @@ -5494,8 +5361,6 @@ snapshots: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.5.5 - '@kamilkisiela/fast-url-parser@1.1.4': {} - '@napi-rs/wasm-runtime@0.2.11': dependencies: '@emnapi/core': 1.4.3 @@ -5926,23 +5791,11 @@ snapshots: '@whatwg-node/promise-helpers': 1.3.2 tslib: 2.8.1 - '@whatwg-node/fetch@0.10.1': - dependencies: - '@whatwg-node/node-fetch': 0.7.2 - urlpattern-polyfill: 10.0.0 - '@whatwg-node/fetch@0.10.13': dependencies: '@whatwg-node/node-fetch': 0.8.4 urlpattern-polyfill: 10.0.0 - '@whatwg-node/node-fetch@0.7.2': - dependencies: - '@kamilkisiela/fast-url-parser': 1.1.4 - busboy: 1.6.0 - fast-querystring: 1.1.2 - tslib: 2.8.1 - '@whatwg-node/node-fetch@0.8.4': dependencies: '@fastify/busboy': 3.2.0 @@ -5987,6 +5840,8 @@ snapshots: ansi-styles@6.2.1: {} + ansi-styles@6.2.3: {} + ansis@4.2.0: {} anymatch@3.1.3: @@ -6101,10 +5956,6 @@ snapshots: builtin-modules@5.0.0: {} - busboy@1.6.0: - dependencies: - streamsearch: 1.1.0 - cac@6.7.14: {} callsites@3.1.0: {} @@ -6270,8 +6121,6 @@ snapshots: data-uri-to-buffer@4.0.1: {} - dataloader@2.2.2: {} - dataloader@2.2.3: {} debounce@2.2.0: {} @@ -6321,7 +6170,7 @@ snapshots: emittery@0.13.1: {} - emoji-regex@10.5.0: {} + emoji-regex@10.6.0: {} emoji-regex@8.0.0: {} @@ -6703,8 +6552,6 @@ snapshots: extract-files@11.0.0: {} - fast-decode-uri-component@1.0.1: {} - fast-deep-equal@3.1.3: {} fast-glob@3.3.3: @@ -6719,10 +6566,6 @@ snapshots: fast-levenshtein@2.0.6: {} - fast-querystring@1.1.2: - dependencies: - fast-decode-uri-component: 1.0.1 - fastq@1.17.1: dependencies: reusify: 1.0.4 @@ -6875,7 +6718,7 @@ snapshots: '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.12.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.12.0) '@graphql-tools/load': 8.1.0(graphql@16.12.0) - '@graphql-tools/merge': 9.0.24(graphql@16.12.0) + '@graphql-tools/merge': 9.1.5(graphql@16.12.0) '@graphql-tools/url-loader': 8.0.15(@types/node@24.10.1)(graphql@16.12.0) '@graphql-tools/utils': 10.10.3(graphql@16.12.0) cosmiconfig: 8.3.6(typescript@5.9.3) @@ -7022,9 +6865,9 @@ snapshots: isexe@3.1.1: {} - isomorphic-ws@5.0.0(ws@8.18.0): + isomorphic-ws@5.0.0(ws@8.18.3): dependencies: - ws: 8.18.0 + ws: 8.18.3 isows@1.0.7(ws@8.18.3): dependencies: @@ -7477,7 +7320,7 @@ snapshots: ansi-escapes: 7.0.0 cli-cursor: 5.0.0 slice-ansi: 7.1.0 - strip-ansi: 7.1.0 + strip-ansi: 7.1.2 wrap-ansi: 9.0.0 longest-streak@3.1.0: {} @@ -7637,10 +7480,6 @@ snapshots: merge2@1.4.1: {} - meros@1.3.0(@types/node@24.10.1): - optionalDependencies: - '@types/node': 24.10.1 - meros@1.3.2(@types/node@24.10.1): optionalDependencies: '@types/node': 24.10.1 @@ -8247,12 +8086,12 @@ snapshots: slice-ansi@5.0.0: dependencies: - ansi-styles: 6.2.1 + ansi-styles: 6.2.3 is-fullwidth-code-point: 4.0.0 slice-ansi@7.1.0: dependencies: - ansi-styles: 6.2.1 + ansi-styles: 6.2.3 is-fullwidth-code-point: 5.1.0 snake-case@3.0.4: @@ -8292,8 +8131,6 @@ snapshots: std-env@3.10.0: {} - streamsearch@1.1.0: {} - string-env-interpolation@1.0.1: {} string-length@4.0.2: @@ -8315,9 +8152,9 @@ snapshots: string-width@7.2.0: dependencies: - emoji-regex: 10.5.0 + emoji-regex: 10.6.0 get-east-asian-width: 1.3.1 - strip-ansi: 7.1.0 + strip-ansi: 7.1.2 strip-ansi@6.0.1: dependencies: @@ -8327,6 +8164,10 @@ snapshots: dependencies: ansi-regex: 6.1.0 + strip-ansi@7.1.2: + dependencies: + ansi-regex: 6.1.0 + strip-bom@4.0.0: {} strip-final-newline@2.0.0: {} @@ -8663,9 +8504,9 @@ snapshots: wrap-ansi@9.0.0: dependencies: - ansi-styles: 6.2.1 + ansi-styles: 6.2.3 string-width: 7.2.0 - strip-ansi: 7.1.0 + strip-ansi: 7.1.2 wrappy@1.0.2: {} @@ -8674,8 +8515,6 @@ snapshots: imurmurhash: 0.1.4 signal-exit: 4.1.0 - ws@8.18.0: {} - ws@8.18.3: {} xml-name-validator@4.0.0: {} From 58a1b1e1e6d1b2bf73d3199d3fffd5749b4c917b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 18:43:52 +0000 Subject: [PATCH 118/133] chore(deps): update pnpm to v10.23.0 (#1306) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ea890c68..6b975f4c 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "graphql-codegen-typescript-validation-schema", "type": "module", "version": "0.18.1", - "packageManager": "pnpm@10.22.0", + "packageManager": "pnpm@10.23.0", "description": "GraphQL Code Generator plugin to generate form validation schema from your GraphQL schema", "respository": { "type": "git", From fadde6407bd1304fd9d13dcfcc85f20df88dddbe Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 21 Nov 2025 18:58:22 +0000 Subject: [PATCH 119/133] chore(deps): update dependency vitest to v4.0.13 (#1307) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 94 +++++++++++++++++++++++++------------------------- 1 file changed, 47 insertions(+), 47 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c5ecbf53..2bec1804 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.12(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) + version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.13(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.1.0 version: 6.1.0(@types/node@24.10.1)(graphql@16.12.0)(typescript@5.9.3) @@ -71,7 +71,7 @@ importers: version: 1.1.0(typescript@5.9.3) vitest: specifier: ^4.0.0 - version: 4.0.12(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) + version: 4.0.13(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.1 version: 1.7.1 @@ -1508,11 +1508,11 @@ packages: vitest: optional: true - '@vitest/expect@4.0.12': - resolution: {integrity: sha512-is+g0w8V3/ZhRNrRizrJNr8PFQKwYmctWlU4qg8zy5r9aIV5w8IxXLlfbbxJCwSpsVl2PXPTm2/zruqTqz3QSg==} + '@vitest/expect@4.0.13': + resolution: {integrity: sha512-zYtcnNIBm6yS7Gpr7nFTmq8ncowlMdOJkWLqYvhr/zweY6tFbDkDi8BPPOeHxEtK1rSI69H7Fd4+1sqvEGli6w==} - '@vitest/mocker@4.0.12': - resolution: {integrity: sha512-GsmA/tD5Ht3RUFoz41mZsMU1AXch3lhmgbTnoSPTdH231g7S3ytNN1aU0bZDSyxWs8WA7KDyMPD5L4q6V6vj9w==} + '@vitest/mocker@4.0.13': + resolution: {integrity: sha512-eNCwzrI5djoauklwP1fuslHBjrbR8rqIVbvNlAnkq1OTa6XT+lX68mrtPirNM9TnR69XUPt4puBCx2Wexseylg==} peerDependencies: msw: ^2.4.9 vite: ^6.0.0 || ^7.0.0-0 @@ -1522,20 +1522,20 @@ packages: vite: optional: true - '@vitest/pretty-format@4.0.12': - resolution: {integrity: sha512-R7nMAcnienG17MvRN8TPMJiCG8rrZJblV9mhT7oMFdBXvS0x+QD6S1G4DxFusR2E0QIS73f7DqSR1n87rrmE+g==} + '@vitest/pretty-format@4.0.13': + resolution: {integrity: sha512-ooqfze8URWbI2ozOeLDMh8YZxWDpGXoeY3VOgcDnsUxN0jPyPWSUvjPQWqDGCBks+opWlN1E4oP1UYl3C/2EQA==} - '@vitest/runner@4.0.12': - resolution: {integrity: sha512-hDlCIJWuwlcLumfukPsNfPDOJokTv79hnOlf11V+n7E14rHNPz0Sp/BO6h8sh9qw4/UjZiKyYpVxK2ZNi+3ceQ==} + '@vitest/runner@4.0.13': + resolution: {integrity: sha512-9IKlAru58wcVaWy7hz6qWPb2QzJTKt+IOVKjAx5vb5rzEFPTL6H4/R9BMvjZ2ppkxKgTrFONEJFtzvnyEpiT+A==} - '@vitest/snapshot@4.0.12': - resolution: {integrity: sha512-2jz9zAuBDUSbnfyixnyOd1S2YDBrZO23rt1bicAb6MA/ya5rHdKFRikPIDpBj/Dwvh6cbImDmudegnDAkHvmRQ==} + '@vitest/snapshot@4.0.13': + resolution: {integrity: sha512-hb7Usvyika1huG6G6l191qu1urNPsq1iFc2hmdzQY3F5/rTgqQnwwplyf8zoYHkpt7H6rw5UfIw6i/3qf9oSxQ==} - '@vitest/spy@4.0.12': - resolution: {integrity: sha512-GZjI9PPhiOYNX8Nsyqdw7JQB+u0BptL5fSnXiottAUBHlcMzgADV58A7SLTXXQwcN1yZ6gfd1DH+2bqjuUlCzw==} + '@vitest/spy@4.0.13': + resolution: {integrity: sha512-hSu+m4se0lDV5yVIcNWqjuncrmBgwaXa2utFLIrBkQCQkt+pSwyZTPFQAZiiF/63j8jYa8uAeUZ3RSfcdWaYWw==} - '@vitest/utils@4.0.12': - resolution: {integrity: sha512-DVS/TLkLdvGvj1avRy0LSmKfrcI9MNFvNGN6ECjTUHWJdlcgPDOXhjMis5Dh7rBH62nAmSXnkPbE+DZ5YD75Rw==} + '@vitest/utils@4.0.13': + resolution: {integrity: sha512-ydozWyQ4LZuu8rLp47xFUWis5VOKMdHjXCWhs1LuJsTNKww+pTHQNK4e0assIB9K80TxFyskENL6vCu3j34EYA==} '@vue/compiler-core@3.5.12': resolution: {integrity: sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw==} @@ -3843,8 +3843,8 @@ packages: yaml: optional: true - vitest@4.0.12: - resolution: {integrity: sha512-pmW4GCKQ8t5Ko1jYjC3SqOr7TUKN7uHOHB/XGsAIb69eYu6d1ionGSsb5H9chmPf+WeXt0VE7jTXsB1IvWoNbw==} + vitest@4.0.13: + resolution: {integrity: sha512-QSD4I0fN6uZQfftryIXuqvqgBxTvJ3ZNkF6RWECd82YGAYAfhcppBLFXzXJHQAAhVFyYEuFTrq6h0hQqjB7jIQ==} engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: @@ -3852,10 +3852,10 @@ packages: '@opentelemetry/api': ^1.9.0 '@types/debug': ^4.1.12 '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0 - '@vitest/browser-playwright': 4.0.12 - '@vitest/browser-preview': 4.0.12 - '@vitest/browser-webdriverio': 4.0.12 - '@vitest/ui': 4.0.12 + '@vitest/browser-playwright': 4.0.13 + '@vitest/browser-preview': 4.0.13 + '@vitest/browser-webdriverio': 4.0.13 + '@vitest/ui': 4.0.13 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -4012,7 +4012,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.12(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.13(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -4021,7 +4021,7 @@ snapshots: '@stylistic/eslint-plugin': 5.5.0(eslint@9.39.1(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/parser': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.12(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/eslint-plugin': 1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.13(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.2.0 cac: 6.7.14 eslint: 9.39.1(jiti@2.4.0) @@ -5704,54 +5704,54 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.12(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.13(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.46.2 '@typescript-eslint/utils': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) eslint: 9.39.1(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - vitest: 4.0.12(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) + vitest: 4.0.13(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color - '@vitest/expect@4.0.12': + '@vitest/expect@4.0.13': dependencies: '@standard-schema/spec': 1.0.0 '@types/chai': 5.2.3 - '@vitest/spy': 4.0.12 - '@vitest/utils': 4.0.12 + '@vitest/spy': 4.0.13 + '@vitest/utils': 4.0.13 chai: 6.2.1 tinyrainbow: 3.0.3 - '@vitest/mocker@4.0.12(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@4.0.13(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: - '@vitest/spy': 4.0.12 + '@vitest/spy': 4.0.13 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: vite: 7.2.4(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) - '@vitest/pretty-format@4.0.12': + '@vitest/pretty-format@4.0.13': dependencies: tinyrainbow: 3.0.3 - '@vitest/runner@4.0.12': + '@vitest/runner@4.0.13': dependencies: - '@vitest/utils': 4.0.12 + '@vitest/utils': 4.0.13 pathe: 2.0.3 - '@vitest/snapshot@4.0.12': + '@vitest/snapshot@4.0.13': dependencies: - '@vitest/pretty-format': 4.0.12 + '@vitest/pretty-format': 4.0.13 magic-string: 0.30.21 pathe: 2.0.3 - '@vitest/spy@4.0.12': {} + '@vitest/spy@4.0.13': {} - '@vitest/utils@4.0.12': + '@vitest/utils@4.0.13': dependencies: - '@vitest/pretty-format': 4.0.12 + '@vitest/pretty-format': 4.0.13 tinyrainbow: 3.0.3 '@vue/compiler-core@3.5.12': @@ -8401,15 +8401,15 @@ snapshots: jiti: 2.4.0 yaml: 2.8.1 - vitest@4.0.12(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1): + vitest@4.0.13(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1): dependencies: - '@vitest/expect': 4.0.12 - '@vitest/mocker': 4.0.12(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) - '@vitest/pretty-format': 4.0.12 - '@vitest/runner': 4.0.12 - '@vitest/snapshot': 4.0.12 - '@vitest/spy': 4.0.12 - '@vitest/utils': 4.0.12 + '@vitest/expect': 4.0.13 + '@vitest/mocker': 4.0.13(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/pretty-format': 4.0.13 + '@vitest/runner': 4.0.13 + '@vitest/snapshot': 4.0.13 + '@vitest/spy': 4.0.13 + '@vitest/utils': 4.0.13 debug: 4.4.3 es-module-lexer: 1.7.0 expect-type: 1.2.2 From 6f3254088ca324228ac467ad2d96aa978e1cbf82 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 04:45:55 +0000 Subject: [PATCH 120/133] chore(deps): update dependency zod to v4.1.13 (#1308) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 6b975f4c..afb4544e 100644 --- a/package.json +++ b/package.json @@ -103,6 +103,6 @@ "valibot": "1.1.0", "vitest": "^4.0.0", "yup": "1.7.1", - "zod": "4.1.12" + "zod": "4.1.13" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2bec1804..9476e079 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -76,8 +76,8 @@ importers: specifier: 1.7.1 version: 1.7.1 zod: - specifier: 4.1.12 - version: 4.1.12 + specifier: 4.1.13 + version: 4.1.13 packages: @@ -3999,8 +3999,8 @@ packages: yup@1.7.1: resolution: {integrity: sha512-GKHFX2nXul2/4Dtfxhozv701jLQHdf6J34YDh2cEkpqoo8le5Mg6/LrdseVLrFarmFygZTlfIhHx/QKfb/QWXw==} - zod@4.1.12: - resolution: {integrity: sha512-JInaHOamG8pt5+Ey8kGmdcAcg3OL9reK8ltczgHTAwNhMys/6ThXHityHxVV2p3fkw/c+MAvBHFVYHFZDmjMCQ==} + zod@4.1.13: + resolution: {integrity: sha512-AvvthqfqrAhNH9dnfmrfKzX5upOdjUVJYFqNSlkmGf64gRaTzlPwz99IHYnVs28qYAybvAlBV+H7pn0saFY4Ig==} zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} @@ -8553,6 +8553,6 @@ snapshots: toposort: 2.0.2 type-fest: 2.19.0 - zod@4.1.12: {} + zod@4.1.13: {} zwitch@2.0.4: {} From 734c93e71707945deb0533df7a60ad819bc29a85 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 25 Nov 2025 00:47:07 +0000 Subject: [PATCH 121/133] chore(deps): update dependency valibot to v1.2.0 (#1309) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index afb4544e..bd3ec0d5 100644 --- a/package.json +++ b/package.json @@ -100,7 +100,7 @@ "ts-dedent": "^2.2.0", "ts-jest": "29.4.5", "typescript": "5.9.3", - "valibot": "1.1.0", + "valibot": "1.2.0", "vitest": "^4.0.0", "yup": "1.7.1", "zod": "4.1.13" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9476e079..00c22931 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -67,8 +67,8 @@ importers: specifier: 5.9.3 version: 5.9.3 valibot: - specifier: 1.1.0 - version: 1.1.0(typescript@5.9.3) + specifier: 1.2.0 + version: 1.2.0(typescript@5.9.3) vitest: specifier: ^4.0.0 version: 4.0.13(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) @@ -3791,8 +3791,8 @@ packages: resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==} engines: {node: '>=10.12.0'} - valibot@1.1.0: - resolution: {integrity: sha512-Nk8lX30Qhu+9txPYTwM0cFlWLdPFsFr6LblzqIySfbZph9+BFsAHsNvHOymEviUepeIW6KFHzpX8TKhbptBXXw==} + valibot@1.2.0: + resolution: {integrity: sha512-mm1rxUsmOxzrwnX5arGS+U4T25RdvpPjPN4yR0u9pUBov9+zGVtO84tif1eY4r6zWxVxu3KzIyknJy3rxfRZZg==} peerDependencies: typescript: '>=5' peerDependenciesMeta: @@ -8381,7 +8381,7 @@ snapshots: '@types/istanbul-lib-coverage': 2.0.6 convert-source-map: 2.0.0 - valibot@1.1.0(typescript@5.9.3): + valibot@1.2.0(typescript@5.9.3): optionalDependencies: typescript: 5.9.3 From e68770a09f53d7a7703491eb414dd3e247ac9702 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 25 Nov 2025 14:46:05 +0000 Subject: [PATCH 122/133] chore(deps): update dependency vitest to v4.0.14 (#1310) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 106 ++++++++++++++++++++++++------------------------- 1 file changed, 53 insertions(+), 53 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 00c22931..1b0e2f4d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.13(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) + version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.14(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.1.0 version: 6.1.0(@types/node@24.10.1)(graphql@16.12.0)(typescript@5.9.3) @@ -71,7 +71,7 @@ importers: version: 1.2.0(typescript@5.9.3) vitest: specifier: ^4.0.0 - version: 4.0.13(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) + version: 4.0.14(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.1 version: 1.7.1 @@ -1508,11 +1508,11 @@ packages: vitest: optional: true - '@vitest/expect@4.0.13': - resolution: {integrity: sha512-zYtcnNIBm6yS7Gpr7nFTmq8ncowlMdOJkWLqYvhr/zweY6tFbDkDi8BPPOeHxEtK1rSI69H7Fd4+1sqvEGli6w==} + '@vitest/expect@4.0.14': + resolution: {integrity: sha512-RHk63V3zvRiYOWAV0rGEBRO820ce17hz7cI2kDmEdfQsBjT2luEKB5tCOc91u1oSQoUOZkSv3ZyzkdkSLD7lKw==} - '@vitest/mocker@4.0.13': - resolution: {integrity: sha512-eNCwzrI5djoauklwP1fuslHBjrbR8rqIVbvNlAnkq1OTa6XT+lX68mrtPirNM9TnR69XUPt4puBCx2Wexseylg==} + '@vitest/mocker@4.0.14': + resolution: {integrity: sha512-RzS5NujlCzeRPF1MK7MXLiEFpkIXeMdQ+rN3Kk3tDI9j0mtbr7Nmuq67tpkOJQpgyClbOltCXMjLZicJHsH5Cg==} peerDependencies: msw: ^2.4.9 vite: ^6.0.0 || ^7.0.0-0 @@ -1522,20 +1522,20 @@ packages: vite: optional: true - '@vitest/pretty-format@4.0.13': - resolution: {integrity: sha512-ooqfze8URWbI2ozOeLDMh8YZxWDpGXoeY3VOgcDnsUxN0jPyPWSUvjPQWqDGCBks+opWlN1E4oP1UYl3C/2EQA==} + '@vitest/pretty-format@4.0.14': + resolution: {integrity: sha512-SOYPgujB6TITcJxgd3wmsLl+wZv+fy3av2PpiPpsWPZ6J1ySUYfScfpIt2Yv56ShJXR2MOA6q2KjKHN4EpdyRQ==} - '@vitest/runner@4.0.13': - resolution: {integrity: sha512-9IKlAru58wcVaWy7hz6qWPb2QzJTKt+IOVKjAx5vb5rzEFPTL6H4/R9BMvjZ2ppkxKgTrFONEJFtzvnyEpiT+A==} + '@vitest/runner@4.0.14': + resolution: {integrity: sha512-BsAIk3FAqxICqREbX8SetIteT8PiaUL/tgJjmhxJhCsigmzzH8xeadtp7LRnTpCVzvf0ib9BgAfKJHuhNllKLw==} - '@vitest/snapshot@4.0.13': - resolution: {integrity: sha512-hb7Usvyika1huG6G6l191qu1urNPsq1iFc2hmdzQY3F5/rTgqQnwwplyf8zoYHkpt7H6rw5UfIw6i/3qf9oSxQ==} + '@vitest/snapshot@4.0.14': + resolution: {integrity: sha512-aQVBfT1PMzDSA16Y3Fp45a0q8nKexx6N5Amw3MX55BeTeZpoC08fGqEZqVmPcqN0ueZsuUQ9rriPMhZ3Mu19Ag==} - '@vitest/spy@4.0.13': - resolution: {integrity: sha512-hSu+m4se0lDV5yVIcNWqjuncrmBgwaXa2utFLIrBkQCQkt+pSwyZTPFQAZiiF/63j8jYa8uAeUZ3RSfcdWaYWw==} + '@vitest/spy@4.0.14': + resolution: {integrity: sha512-JmAZT1UtZooO0tpY3GRyiC/8W7dCs05UOq9rfsUUgEZEdq+DuHLmWhPsrTt0TiW7WYeL/hXpaE07AZ2RCk44hg==} - '@vitest/utils@4.0.13': - resolution: {integrity: sha512-ydozWyQ4LZuu8rLp47xFUWis5VOKMdHjXCWhs1LuJsTNKww+pTHQNK4e0assIB9K80TxFyskENL6vCu3j34EYA==} + '@vitest/utils@4.0.14': + resolution: {integrity: sha512-hLqXZKAWNg8pI+SQXyXxWCTOpA3MvsqcbVeNgSi8x/CSN2wi26dSzn1wrOhmCmFjEvN9p8/kLFRHa6PI8jHazw==} '@vue/compiler-core@3.5.12': resolution: {integrity: sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw==} @@ -3168,6 +3168,9 @@ packages: object-deep-merge@2.0.0: resolution: {integrity: sha512-3DC3UMpeffLTHiuXSy/UG4NOIYTLlY9u3V82+djSCLYClWobZiS4ivYzpIUWrRY/nfsJ8cWsKyG3QfyLePmhvg==} + obug@2.1.1: + resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==} + once@1.4.0: resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} @@ -3843,19 +3846,18 @@ packages: yaml: optional: true - vitest@4.0.13: - resolution: {integrity: sha512-QSD4I0fN6uZQfftryIXuqvqgBxTvJ3ZNkF6RWECd82YGAYAfhcppBLFXzXJHQAAhVFyYEuFTrq6h0hQqjB7jIQ==} + vitest@4.0.14: + resolution: {integrity: sha512-d9B2J9Cm9dN9+6nxMnnNJKJCtcyKfnHj15N6YNJfaFHRLua/d3sRKU9RuKmO9mB0XdFtUizlxfz/VPbd3OxGhw==} engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' '@opentelemetry/api': ^1.9.0 - '@types/debug': ^4.1.12 '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0 - '@vitest/browser-playwright': 4.0.13 - '@vitest/browser-preview': 4.0.13 - '@vitest/browser-webdriverio': 4.0.13 - '@vitest/ui': 4.0.13 + '@vitest/browser-playwright': 4.0.14 + '@vitest/browser-preview': 4.0.14 + '@vitest/browser-webdriverio': 4.0.14 + '@vitest/ui': 4.0.14 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -3863,8 +3865,6 @@ packages: optional: true '@opentelemetry/api': optional: true - '@types/debug': - optional: true '@types/node': optional: true '@vitest/browser-playwright': @@ -4012,7 +4012,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.13(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.14(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -4021,7 +4021,7 @@ snapshots: '@stylistic/eslint-plugin': 5.5.0(eslint@9.39.1(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/parser': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.13(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/eslint-plugin': 1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.14(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.2.0 cac: 6.7.14 eslint: 9.39.1(jiti@2.4.0) @@ -5704,54 +5704,54 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.13(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.14(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.46.2 '@typescript-eslint/utils': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) eslint: 9.39.1(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - vitest: 4.0.13(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) + vitest: 4.0.14(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color - '@vitest/expect@4.0.13': + '@vitest/expect@4.0.14': dependencies: '@standard-schema/spec': 1.0.0 '@types/chai': 5.2.3 - '@vitest/spy': 4.0.13 - '@vitest/utils': 4.0.13 + '@vitest/spy': 4.0.14 + '@vitest/utils': 4.0.14 chai: 6.2.1 tinyrainbow: 3.0.3 - '@vitest/mocker@4.0.13(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@4.0.14(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: - '@vitest/spy': 4.0.13 + '@vitest/spy': 4.0.14 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: vite: 7.2.4(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) - '@vitest/pretty-format@4.0.13': + '@vitest/pretty-format@4.0.14': dependencies: tinyrainbow: 3.0.3 - '@vitest/runner@4.0.13': + '@vitest/runner@4.0.14': dependencies: - '@vitest/utils': 4.0.13 + '@vitest/utils': 4.0.14 pathe: 2.0.3 - '@vitest/snapshot@4.0.13': + '@vitest/snapshot@4.0.14': dependencies: - '@vitest/pretty-format': 4.0.13 + '@vitest/pretty-format': 4.0.14 magic-string: 0.30.21 pathe: 2.0.3 - '@vitest/spy@4.0.13': {} + '@vitest/spy@4.0.14': {} - '@vitest/utils@4.0.13': + '@vitest/utils@4.0.14': dependencies: - '@vitest/pretty-format': 4.0.13 + '@vitest/pretty-format': 4.0.14 tinyrainbow: 3.0.3 '@vue/compiler-core@3.5.12': @@ -7780,6 +7780,8 @@ snapshots: object-deep-merge@2.0.0: {} + obug@2.1.1: {} + once@1.4.0: dependencies: wrappy: 1.0.2 @@ -8401,19 +8403,19 @@ snapshots: jiti: 2.4.0 yaml: 2.8.1 - vitest@4.0.13(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1): + vitest@4.0.14(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1): dependencies: - '@vitest/expect': 4.0.13 - '@vitest/mocker': 4.0.13(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) - '@vitest/pretty-format': 4.0.13 - '@vitest/runner': 4.0.13 - '@vitest/snapshot': 4.0.13 - '@vitest/spy': 4.0.13 - '@vitest/utils': 4.0.13 - debug: 4.4.3 + '@vitest/expect': 4.0.14 + '@vitest/mocker': 4.0.14(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/pretty-format': 4.0.14 + '@vitest/runner': 4.0.14 + '@vitest/snapshot': 4.0.14 + '@vitest/spy': 4.0.14 + '@vitest/utils': 4.0.14 es-module-lexer: 1.7.0 expect-type: 1.2.2 magic-string: 0.30.21 + obug: 2.1.1 pathe: 2.0.3 picomatch: 4.0.3 std-env: 3.10.0 @@ -8424,7 +8426,6 @@ snapshots: vite: 7.2.4(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) why-is-node-running: 2.3.0 optionalDependencies: - '@types/debug': 4.1.12 '@types/node': 24.10.1 transitivePeerDependencies: - jiti @@ -8435,7 +8436,6 @@ snapshots: - sass-embedded - stylus - sugarss - - supports-color - terser - tsx - yaml From db2e1977cb269115cb747337d7feed185399cc4c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 27 Nov 2025 16:10:17 +0000 Subject: [PATCH 123/133] chore(deps): update pnpm to v10.24.0 (#1311) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index bd3ec0d5..c29efae6 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "graphql-codegen-typescript-validation-schema", "type": "module", "version": "0.18.1", - "packageManager": "pnpm@10.23.0", + "packageManager": "pnpm@10.24.0", "description": "GraphQL Code Generator plugin to generate form validation schema from your GraphQL schema", "respository": { "type": "git", From 947a50fe38513efbdee1266d83c695b935ed0ad2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 28 Nov 2025 15:33:40 +0000 Subject: [PATCH 124/133] chore(deps): update dependency @graphql-tools/utils to v10.11.0 (#1312) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 80 +++++++++++++++++++++++++------------------------- 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1b0e2f4d..1be9f17c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -19,7 +19,7 @@ importers: version: 6.2.0(graphql@16.12.0) '@graphql-tools/utils': specifier: ^10.0.0 - version: 10.10.3(graphql@16.12.0) + version: 10.11.0(graphql@16.12.0) graphlib: specifier: ^2.1.8 version: 2.1.8 @@ -842,8 +842,8 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/utils@10.10.3': - resolution: {integrity: sha512-2EdYiefeLLxsoeZTukSNZJ0E/Z5NnWBUGK2VJa0DQj1scDhVd93HeT1eW9TszJOYmIh3eWAKLv58ri/1XUmdsQ==} + '@graphql-tools/utils@10.11.0': + resolution: {integrity: sha512-iBFR9GXIs0gCD+yc3hoNswViL1O5josI33dUqiNStFI/MHLCEPduasceAcazRH77YONKNiviHBV8f7OgcT4o2Q==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -4532,7 +4532,7 @@ snapshots: '@graphql-tools/json-file-loader': 8.0.3(graphql@16.12.0) '@graphql-tools/load': 8.1.0(graphql@16.12.0) '@graphql-tools/url-loader': 9.0.4(@types/node@24.10.1)(graphql@16.12.0) - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) '@inquirer/prompts': 7.8.4(@types/node@24.10.1) '@whatwg-node/fetch': 0.10.13 chalk: 4.1.2 @@ -4578,7 +4578,7 @@ snapshots: '@graphql-codegen/typescript-operations': 5.0.5(graphql@16.12.0) '@graphql-codegen/visitor-plugin-common': 6.2.0(graphql@16.12.0) '@graphql-tools/documents': 1.0.1(graphql@16.12.0) - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0) graphql: 16.12.0 tslib: 2.6.3 @@ -4589,7 +4589,7 @@ snapshots: dependencies: '@graphql-codegen/plugin-helpers': 6.1.0(graphql@16.12.0) '@graphql-tools/schema': 10.0.29(graphql@16.12.0) - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) graphql: 16.12.0 tslib: 2.6.3 @@ -4597,7 +4597,7 @@ snapshots: dependencies: '@graphql-codegen/plugin-helpers': 6.1.0(graphql@16.12.0) '@graphql-codegen/visitor-plugin-common': 6.2.0(graphql@16.12.0) - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) auto-bind: 4.0.0 graphql: 16.12.0 tslib: 2.6.3 @@ -4606,7 +4606,7 @@ snapshots: '@graphql-codegen/plugin-helpers@6.1.0(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) change-case-all: 1.0.15 common-tags: 1.8.2 graphql: 16.12.0 @@ -4617,7 +4617,7 @@ snapshots: '@graphql-codegen/schema-ast@5.0.0(graphql@16.12.0)': dependencies: '@graphql-codegen/plugin-helpers': 6.1.0(graphql@16.12.0) - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) graphql: 16.12.0 tslib: 2.6.3 @@ -4659,7 +4659,7 @@ snapshots: '@graphql-codegen/plugin-helpers': 6.1.0(graphql@16.12.0) '@graphql-tools/optimize': 2.0.0(graphql@16.12.0) '@graphql-tools/relay-operation-optimizer': 7.0.25(graphql@16.12.0) - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) auto-bind: 4.0.0 change-case-all: 1.0.15 dependency-graph: 1.0.0 @@ -4675,7 +4675,7 @@ snapshots: '@graphql-tools/apollo-engine-loader@8.0.4(graphql@16.12.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) '@whatwg-node/fetch': 0.10.13 graphql: 16.12.0 tslib: 2.8.1 @@ -4684,7 +4684,7 @@ snapshots: '@graphql-tools/batch-execute@10.0.3(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) '@whatwg-node/promise-helpers': 1.3.2 dataloader: 2.2.3 graphql: 16.12.0 @@ -4692,7 +4692,7 @@ snapshots: '@graphql-tools/batch-execute@9.0.6(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) dataloader: 2.2.3 graphql: 16.12.0 tslib: 2.8.1 @@ -4701,7 +4701,7 @@ snapshots: '@graphql-tools/code-file-loader@8.1.5(graphql@16.12.0)': dependencies: '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.12.0) - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) globby: 11.1.0 graphql: 16.12.0 tslib: 2.8.1 @@ -4714,7 +4714,7 @@ snapshots: '@graphql-tools/batch-execute': 9.0.6(graphql@16.12.0) '@graphql-tools/executor': 1.4.13(graphql@16.12.0) '@graphql-tools/schema': 10.0.29(graphql@16.12.0) - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) '@repeaterjs/repeater': 3.0.6 dataloader: 2.2.3 dset: 3.1.4 @@ -4726,7 +4726,7 @@ snapshots: '@graphql-tools/batch-execute': 10.0.3(graphql@16.12.0) '@graphql-tools/executor': 1.4.13(graphql@16.12.0) '@graphql-tools/schema': 10.0.29(graphql@16.12.0) - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/promise-helpers': 1.3.2 dataloader: 2.2.3 @@ -4742,12 +4742,12 @@ snapshots: '@graphql-tools/executor-common@1.0.4(graphql@16.12.0)': dependencies: '@envelop/core': 5.4.0 - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) graphql: 16.12.0 '@graphql-tools/executor-graphql-ws@1.3.2(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) '@types/ws': 8.5.13 graphql: 16.12.0 graphql-ws: 5.16.0(graphql@16.12.0) @@ -4761,7 +4761,7 @@ snapshots: '@graphql-tools/executor-graphql-ws@3.1.2(graphql@16.12.0)': dependencies: '@graphql-tools/executor-common': 1.0.4(graphql@16.12.0) - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) '@whatwg-node/disposablestack': 0.0.6 graphql: 16.12.0 graphql-ws: 6.0.6(graphql@16.12.0)(ws@8.18.3) @@ -4777,7 +4777,7 @@ snapshots: '@graphql-tools/executor-http@1.1.9(@types/node@24.10.1)(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/fetch': 0.10.13 extract-files: 11.0.0 @@ -4792,7 +4792,7 @@ snapshots: dependencies: '@graphql-hive/signal': 2.0.0 '@graphql-tools/executor-common': 1.0.4(graphql@16.12.0) - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/disposablestack': 0.0.6 '@whatwg-node/fetch': 0.10.13 @@ -4805,7 +4805,7 @@ snapshots: '@graphql-tools/executor-legacy-ws@1.1.23(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) '@types/ws': 8.5.13 graphql: 16.12.0 isomorphic-ws: 5.0.0(ws@8.18.3) @@ -4817,7 +4817,7 @@ snapshots: '@graphql-tools/executor@1.4.13(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/disposablestack': 0.0.6 @@ -4828,7 +4828,7 @@ snapshots: '@graphql-tools/git-loader@8.0.9(graphql@16.12.0)': dependencies: '@graphql-tools/graphql-tag-pluck': 8.3.4(graphql@16.12.0) - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) graphql: 16.12.0 is-glob: 4.0.3 micromatch: 4.0.8 @@ -4841,7 +4841,7 @@ snapshots: dependencies: '@graphql-tools/executor-http': 3.0.6(@types/node@24.10.1)(graphql@16.12.0) '@graphql-tools/graphql-tag-pluck': 8.3.25(graphql@16.12.0) - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) '@whatwg-node/fetch': 0.10.13 '@whatwg-node/promise-helpers': 1.3.2 graphql: 16.12.0 @@ -4854,7 +4854,7 @@ snapshots: '@graphql-tools/graphql-file-loader@8.0.3(graphql@16.12.0)': dependencies: '@graphql-tools/import': 7.0.3(graphql@16.12.0) - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) globby: 11.1.0 graphql: 16.12.0 tslib: 2.8.1 @@ -4867,7 +4867,7 @@ snapshots: '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.27.4) '@babel/traverse': 7.27.4 '@babel/types': 7.28.5 - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) graphql: 16.12.0 tslib: 2.8.1 transitivePeerDependencies: @@ -4880,7 +4880,7 @@ snapshots: '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.27.4) '@babel/traverse': 7.27.4 '@babel/types': 7.28.5 - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) graphql: 16.12.0 tslib: 2.8.1 transitivePeerDependencies: @@ -4888,14 +4888,14 @@ snapshots: '@graphql-tools/import@7.0.3(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) graphql: 16.12.0 resolve-from: 5.0.0 tslib: 2.8.1 '@graphql-tools/json-file-loader@8.0.3(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) globby: 11.1.0 graphql: 16.12.0 tslib: 2.8.1 @@ -4904,14 +4904,14 @@ snapshots: '@graphql-tools/load@8.1.0(graphql@16.12.0)': dependencies: '@graphql-tools/schema': 10.0.29(graphql@16.12.0) - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) graphql: 16.12.0 p-limit: 3.1.0 tslib: 2.8.1 '@graphql-tools/merge@9.1.5(graphql@16.12.0)': dependencies: - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) graphql: 16.12.0 tslib: 2.8.1 @@ -4923,7 +4923,7 @@ snapshots: '@graphql-tools/relay-operation-optimizer@7.0.25(graphql@16.12.0)': dependencies: '@ardatan/relay-compiler': 12.0.3(graphql@16.12.0) - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) graphql: 16.12.0 tslib: 2.6.3 transitivePeerDependencies: @@ -4932,7 +4932,7 @@ snapshots: '@graphql-tools/schema@10.0.29(graphql@16.12.0)': dependencies: '@graphql-tools/merge': 9.1.5(graphql@16.12.0) - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) graphql: 16.12.0 tslib: 2.8.1 @@ -4942,7 +4942,7 @@ snapshots: '@graphql-tools/executor-graphql-ws': 1.3.2(graphql@16.12.0) '@graphql-tools/executor-http': 1.1.9(@types/node@24.10.1)(graphql@16.12.0) '@graphql-tools/executor-legacy-ws': 1.1.23(graphql@16.12.0) - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) '@graphql-tools/wrap': 10.0.16(graphql@16.12.0) '@types/ws': 8.5.13 '@whatwg-node/fetch': 0.10.13 @@ -4962,7 +4962,7 @@ snapshots: '@graphql-tools/executor-graphql-ws': 3.1.2(graphql@16.12.0) '@graphql-tools/executor-http': 3.0.6(@types/node@24.10.1)(graphql@16.12.0) '@graphql-tools/executor-legacy-ws': 1.1.23(graphql@16.12.0) - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) '@graphql-tools/wrap': 11.0.4(graphql@16.12.0) '@types/ws': 8.5.13 '@whatwg-node/fetch': 0.10.13 @@ -4980,7 +4980,7 @@ snapshots: - uWebSockets.js - utf-8-validate - '@graphql-tools/utils@10.10.3(graphql@16.12.0)': + '@graphql-tools/utils@10.11.0(graphql@16.12.0)': dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0) '@whatwg-node/promise-helpers': 1.3.2 @@ -4992,7 +4992,7 @@ snapshots: dependencies: '@graphql-tools/delegate': 10.1.2(graphql@16.12.0) '@graphql-tools/schema': 10.0.29(graphql@16.12.0) - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) graphql: 16.12.0 tslib: 2.8.1 value-or-promise: 1.0.12 @@ -5001,7 +5001,7 @@ snapshots: dependencies: '@graphql-tools/delegate': 11.1.2(graphql@16.12.0) '@graphql-tools/schema': 10.0.29(graphql@16.12.0) - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) '@whatwg-node/promise-helpers': 1.3.2 graphql: 16.12.0 tslib: 2.8.1 @@ -6720,7 +6720,7 @@ snapshots: '@graphql-tools/load': 8.1.0(graphql@16.12.0) '@graphql-tools/merge': 9.1.5(graphql@16.12.0) '@graphql-tools/url-loader': 8.0.15(@types/node@24.10.1)(graphql@16.12.0) - '@graphql-tools/utils': 10.10.3(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) cosmiconfig: 8.3.6(typescript@5.9.3) graphql: 16.12.0 jiti: 2.4.0 From 893ac40a7abc8a47a750d45a7ee21c3f627f64b3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 29 Nov 2025 05:44:32 +0000 Subject: [PATCH 125/133] chore(deps): update graphqlcodegenerator monorepo (#1313) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 48 +++++++++++++++++++++++++++++++++++------------- 1 file changed, 35 insertions(+), 13 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1be9f17c..072a145a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -16,7 +16,7 @@ importers: version: 5.0.0(graphql@16.12.0) '@graphql-codegen/visitor-plugin-common': specifier: ^6.0.0 - version: 6.2.0(graphql@16.12.0) + version: 6.2.1(graphql@16.12.0) '@graphql-tools/utils': specifier: ^10.0.0 version: 10.11.0(graphql@16.12.0) @@ -35,7 +35,7 @@ importers: version: 6.1.0(@types/node@24.10.1)(graphql@16.12.0)(typescript@5.9.3) '@graphql-codegen/typescript': specifier: ^5.0.0 - version: 5.0.5(graphql@16.12.0) + version: 5.0.6(graphql@16.12.0) '@tsconfig/recommended': specifier: 1.0.13 version: 1.0.13 @@ -658,8 +658,8 @@ packages: graphql-sock: optional: true - '@graphql-codegen/typescript@5.0.5': - resolution: {integrity: sha512-NwrUTjKALbeOrFyL/741DP/uRfcHKLD+kYL+e1de+X9b1wa1CfpMIdRIhGTuivuD5y6PYh3VePrE98Q5qz0+Ww==} + '@graphql-codegen/typescript@5.0.6': + resolution: {integrity: sha512-rKW3wYInAnmO/DmKjhW3/KLMxUauUCZuMEPQmuoHChnwIuMjn5kVXCdArGyQqv+vVtFj55aS+sJLN4MPNNjSNg==} engines: {node: '>=16'} peerDependencies: graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -670,6 +670,12 @@ packages: peerDependencies: graphql: ^0.8.0 || ^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-codegen/visitor-plugin-common@6.2.1': + resolution: {integrity: sha512-5QT1hCV3286mrmoIC7vlFXsTlwELMexhuFIkjh+oVGGL1E8hxkIPAU0kfH/lsPbQHKi8zKmic2pl3tAdyYxNyg==} + engines: {node: '>=16'} + peerDependencies: + graphql: ^0.8.0 || ^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-hive/signal@2.0.0': resolution: {integrity: sha512-Pz8wB3K0iU6ae9S1fWfsmJX24CcGeTo6hE7T44ucmV/ALKRj+bxClmqrYcDT7v3f0d12Rh4FAXBb6gon+WkDpQ==} engines: {node: '>=20.0.0'} @@ -818,8 +824,8 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/relay-operation-optimizer@7.0.25': - resolution: {integrity: sha512-1S7qq9eyO6ygPNWX2lZd+oxbpl63OhnTTw8+t5OWprM2Tzws9HEosLUpsMR85z1gbezeKtUDt9a2bsSyu4MMFg==} + '@graphql-tools/relay-operation-optimizer@7.0.26': + resolution: {integrity: sha512-cVdS2Hw4hg/WgPVV2wRIzZM975pW5k4vdih3hR4SvEDQVr6MmozmlTQSqzMyi9yg8LKTq540Oz3bYQa286yGmg==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -4574,9 +4580,9 @@ snapshots: '@graphql-codegen/gql-tag-operations': 5.1.0(graphql@16.12.0) '@graphql-codegen/plugin-helpers': 6.1.0(graphql@16.12.0) '@graphql-codegen/typed-document-node': 6.1.3(graphql@16.12.0) - '@graphql-codegen/typescript': 5.0.5(graphql@16.12.0) + '@graphql-codegen/typescript': 5.0.6(graphql@16.12.0) '@graphql-codegen/typescript-operations': 5.0.5(graphql@16.12.0) - '@graphql-codegen/visitor-plugin-common': 6.2.0(graphql@16.12.0) + '@graphql-codegen/visitor-plugin-common': 6.2.1(graphql@16.12.0) '@graphql-tools/documents': 1.0.1(graphql@16.12.0) '@graphql-tools/utils': 10.11.0(graphql@16.12.0) '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0) @@ -4635,7 +4641,7 @@ snapshots: '@graphql-codegen/typescript-operations@5.0.5(graphql@16.12.0)': dependencies: '@graphql-codegen/plugin-helpers': 6.1.0(graphql@16.12.0) - '@graphql-codegen/typescript': 5.0.5(graphql@16.12.0) + '@graphql-codegen/typescript': 5.0.6(graphql@16.12.0) '@graphql-codegen/visitor-plugin-common': 6.2.0(graphql@16.12.0) auto-bind: 4.0.0 graphql: 16.12.0 @@ -4643,11 +4649,11 @@ snapshots: transitivePeerDependencies: - encoding - '@graphql-codegen/typescript@5.0.5(graphql@16.12.0)': + '@graphql-codegen/typescript@5.0.6(graphql@16.12.0)': dependencies: '@graphql-codegen/plugin-helpers': 6.1.0(graphql@16.12.0) '@graphql-codegen/schema-ast': 5.0.0(graphql@16.12.0) - '@graphql-codegen/visitor-plugin-common': 6.2.0(graphql@16.12.0) + '@graphql-codegen/visitor-plugin-common': 6.2.1(graphql@16.12.0) auto-bind: 4.0.0 graphql: 16.12.0 tslib: 2.6.3 @@ -4658,7 +4664,23 @@ snapshots: dependencies: '@graphql-codegen/plugin-helpers': 6.1.0(graphql@16.12.0) '@graphql-tools/optimize': 2.0.0(graphql@16.12.0) - '@graphql-tools/relay-operation-optimizer': 7.0.25(graphql@16.12.0) + '@graphql-tools/relay-operation-optimizer': 7.0.26(graphql@16.12.0) + '@graphql-tools/utils': 10.11.0(graphql@16.12.0) + auto-bind: 4.0.0 + change-case-all: 1.0.15 + dependency-graph: 1.0.0 + graphql: 16.12.0 + graphql-tag: 2.12.6(graphql@16.12.0) + parse-filepath: 1.0.2 + tslib: 2.6.3 + transitivePeerDependencies: + - encoding + + '@graphql-codegen/visitor-plugin-common@6.2.1(graphql@16.12.0)': + dependencies: + '@graphql-codegen/plugin-helpers': 6.1.0(graphql@16.12.0) + '@graphql-tools/optimize': 2.0.0(graphql@16.12.0) + '@graphql-tools/relay-operation-optimizer': 7.0.26(graphql@16.12.0) '@graphql-tools/utils': 10.11.0(graphql@16.12.0) auto-bind: 4.0.0 change-case-all: 1.0.15 @@ -4920,7 +4942,7 @@ snapshots: graphql: 16.12.0 tslib: 2.6.3 - '@graphql-tools/relay-operation-optimizer@7.0.25(graphql@16.12.0)': + '@graphql-tools/relay-operation-optimizer@7.0.26(graphql@16.12.0)': dependencies: '@ardatan/relay-compiler': 12.0.3(graphql@16.12.0) '@graphql-tools/utils': 10.11.0(graphql@16.12.0) From 96f2c480b99800e06b2e9017c2c51c8013bcfb7d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 19:46:07 +0000 Subject: [PATCH 126/133] chore(deps): update dependency ts-jest to v29.4.6 (#1314) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 19 ++++++------------- 2 files changed, 7 insertions(+), 14 deletions(-) diff --git a/package.json b/package.json index c29efae6..aec32301 100644 --- a/package.json +++ b/package.json @@ -98,7 +98,7 @@ "myzod": "1.12.1", "npm-run-all2": "8.0.4", "ts-dedent": "^2.2.0", - "ts-jest": "29.4.5", + "ts-jest": "29.4.6", "typescript": "5.9.3", "valibot": "1.2.0", "vitest": "^4.0.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 072a145a..7ca94bc4 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -61,8 +61,8 @@ importers: specifier: ^2.2.0 version: 2.2.0 ts-jest: - specifier: 29.4.5 - version: 29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@24.10.1))(typescript@5.9.3) + specifier: 29.4.6 + version: 29.4.6(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@24.10.1))(typescript@5.9.3) typescript: specifier: 5.9.3 version: 5.9.3 @@ -3444,11 +3444,6 @@ packages: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true - semver@7.7.2: - resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} - engines: {node: '>=10'} - hasBin: true - semver@7.7.3: resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==} engines: {node: '>=10'} @@ -3676,8 +3671,8 @@ packages: resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} engines: {node: '>=6.10'} - ts-jest@29.4.5: - resolution: {integrity: sha512-HO3GyiWn2qvTQA4kTgjDcXiMwYQt68a1Y8+JuLRVpdIzm+UOLSHgl/XqR4c6nzJkq5rOkjc02O2I7P7l/Yof0Q==} + ts-jest@29.4.6: + resolution: {integrity: sha512-fSpWtOO/1AjSNQguk43hb/JCo16oJDnMJf3CdEGNkqsEX3t0KX96xvyX1D7PfLCpVoKu4MfVrqUkFyblYoY4lA==} engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: @@ -7188,7 +7183,7 @@ snapshots: jest-message-util: 30.2.0 jest-util: 30.2.0 pretty-format: 30.2.0 - semver: 7.7.2 + semver: 7.7.3 synckit: 0.11.11 transitivePeerDependencies: - supports-color @@ -8076,8 +8071,6 @@ snapshots: semver@6.3.1: {} - semver@7.7.2: {} - semver@7.7.3: {} sentence-case@3.0.4: @@ -8281,7 +8274,7 @@ snapshots: ts-dedent@2.2.0: {} - ts-jest@29.4.5(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@24.10.1))(typescript@5.9.3): + ts-jest@29.4.6(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@24.10.1))(typescript@5.9.3): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 From 223fd405d345b342ea95b5e881d0c64ff23b48bc Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 2 Dec 2025 18:53:52 +0000 Subject: [PATCH 127/133] chore(deps): update dependency vitest to v4.0.15 (#1315) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 111 +++++++++++++++++++++++-------------------------- 1 file changed, 53 insertions(+), 58 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7ca94bc4..2dcb9262 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.14(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) + version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) '@graphql-codegen/cli': specifier: 6.1.0 version: 6.1.0(@types/node@24.10.1)(graphql@16.12.0)(typescript@5.9.3) @@ -71,7 +71,7 @@ importers: version: 1.2.0(typescript@5.9.3) vitest: specifier: ^4.0.0 - version: 4.0.14(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) + version: 4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) yup: specifier: 1.7.1 version: 1.7.1 @@ -1514,11 +1514,11 @@ packages: vitest: optional: true - '@vitest/expect@4.0.14': - resolution: {integrity: sha512-RHk63V3zvRiYOWAV0rGEBRO820ce17hz7cI2kDmEdfQsBjT2luEKB5tCOc91u1oSQoUOZkSv3ZyzkdkSLD7lKw==} + '@vitest/expect@4.0.15': + resolution: {integrity: sha512-Gfyva9/GxPAWXIWjyGDli9O+waHDC0Q0jaLdFP1qPAUUfo1FEXPXUfUkp3eZA0sSq340vPycSyOlYUeM15Ft1w==} - '@vitest/mocker@4.0.14': - resolution: {integrity: sha512-RzS5NujlCzeRPF1MK7MXLiEFpkIXeMdQ+rN3Kk3tDI9j0mtbr7Nmuq67tpkOJQpgyClbOltCXMjLZicJHsH5Cg==} + '@vitest/mocker@4.0.15': + resolution: {integrity: sha512-CZ28GLfOEIFkvCFngN8Sfx5h+Se0zN+h4B7yOsPVCcgtiO7t5jt9xQh2E1UkFep+eb9fjyMfuC5gBypwb07fvQ==} peerDependencies: msw: ^2.4.9 vite: ^6.0.0 || ^7.0.0-0 @@ -1528,20 +1528,20 @@ packages: vite: optional: true - '@vitest/pretty-format@4.0.14': - resolution: {integrity: sha512-SOYPgujB6TITcJxgd3wmsLl+wZv+fy3av2PpiPpsWPZ6J1ySUYfScfpIt2Yv56ShJXR2MOA6q2KjKHN4EpdyRQ==} + '@vitest/pretty-format@4.0.15': + resolution: {integrity: sha512-SWdqR8vEv83WtZcrfLNqlqeQXlQLh2iilO1Wk1gv4eiHKjEzvgHb2OVc3mIPyhZE6F+CtfYjNlDJwP5MN6Km7A==} - '@vitest/runner@4.0.14': - resolution: {integrity: sha512-BsAIk3FAqxICqREbX8SetIteT8PiaUL/tgJjmhxJhCsigmzzH8xeadtp7LRnTpCVzvf0ib9BgAfKJHuhNllKLw==} + '@vitest/runner@4.0.15': + resolution: {integrity: sha512-+A+yMY8dGixUhHmNdPUxOh0la6uVzun86vAbuMT3hIDxMrAOmn5ILBHm8ajrqHE0t8R9T1dGnde1A5DTnmi3qw==} - '@vitest/snapshot@4.0.14': - resolution: {integrity: sha512-aQVBfT1PMzDSA16Y3Fp45a0q8nKexx6N5Amw3MX55BeTeZpoC08fGqEZqVmPcqN0ueZsuUQ9rriPMhZ3Mu19Ag==} + '@vitest/snapshot@4.0.15': + resolution: {integrity: sha512-A7Ob8EdFZJIBjLjeO0DZF4lqR6U7Ydi5/5LIZ0xcI+23lYlsYJAfGn8PrIWTYdZQRNnSRlzhg0zyGu37mVdy5g==} - '@vitest/spy@4.0.14': - resolution: {integrity: sha512-JmAZT1UtZooO0tpY3GRyiC/8W7dCs05UOq9rfsUUgEZEdq+DuHLmWhPsrTt0TiW7WYeL/hXpaE07AZ2RCk44hg==} + '@vitest/spy@4.0.15': + resolution: {integrity: sha512-+EIjOJmnY6mIfdXtE/bnozKEvTC4Uczg19yeZ2vtCz5Yyb0QQ31QWVQ8hswJ3Ysx/K2EqaNsVanjr//2+P3FHw==} - '@vitest/utils@4.0.14': - resolution: {integrity: sha512-hLqXZKAWNg8pI+SQXyXxWCTOpA3MvsqcbVeNgSi8x/CSN2wi26dSzn1wrOhmCmFjEvN9p8/kLFRHa6PI8jHazw==} + '@vitest/utils@4.0.15': + resolution: {integrity: sha512-HXjPW2w5dxhTD0dLwtYHDnelK3j8sR8cWIaLxr22evTyY6q8pRCjZSmhRWVjBaOVXChQd6AwMzi9pucorXCPZA==} '@vue/compiler-core@3.5.12': resolution: {integrity: sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw==} @@ -3617,9 +3617,6 @@ packages: tinybench@2.9.0: resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} - tinyexec@0.3.2: - resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} - tinyexec@1.0.2: resolution: {integrity: sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==} engines: {node: '>=18'} @@ -3807,8 +3804,8 @@ packages: resolution: {integrity: sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==} engines: {node: '>=12'} - vite@7.2.4: - resolution: {integrity: sha512-NL8jTlbo0Tn4dUEXEsUg8KeyG/Lkmc4Fnzb8JXN/Ykm9G4HNImjtABMJgkQoVjOBN/j2WAwDTRytdqJbZsah7w==} + vite@7.2.6: + resolution: {integrity: sha512-tI2l/nFHC5rLh7+5+o7QjKjSR04ivXDF4jcgV0f/bTQ+OJiITy5S6gaynVsEM+7RqzufMnVbIon6Sr5x1SDYaQ==} engines: {node: ^20.19.0 || >=22.12.0} hasBin: true peerDependencies: @@ -3847,18 +3844,18 @@ packages: yaml: optional: true - vitest@4.0.14: - resolution: {integrity: sha512-d9B2J9Cm9dN9+6nxMnnNJKJCtcyKfnHj15N6YNJfaFHRLua/d3sRKU9RuKmO9mB0XdFtUizlxfz/VPbd3OxGhw==} + vitest@4.0.15: + resolution: {integrity: sha512-n1RxDp8UJm6N0IbJLQo+yzLZ2sQCDyl1o0LeugbPWf8+8Fttp29GghsQBjYJVmWq3gBFfe9Hs1spR44vovn2wA==} engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' '@opentelemetry/api': ^1.9.0 '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0 - '@vitest/browser-playwright': 4.0.14 - '@vitest/browser-preview': 4.0.14 - '@vitest/browser-webdriverio': 4.0.14 - '@vitest/ui': 4.0.14 + '@vitest/browser-playwright': 4.0.15 + '@vitest/browser-preview': 4.0.15 + '@vitest/browser-webdriverio': 4.0.15 + '@vitest/ui': 4.0.15 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -4013,7 +4010,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.14(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -4022,7 +4019,7 @@ snapshots: '@stylistic/eslint-plugin': 5.5.0(eslint@9.39.1(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/parser': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.14(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/eslint-plugin': 1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) ansis: 4.2.0 cac: 6.7.14 eslint: 9.39.1(jiti@2.4.0) @@ -5721,54 +5718,54 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.14(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: '@typescript-eslint/scope-manager': 8.46.2 '@typescript-eslint/utils': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) eslint: 9.39.1(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - vitest: 4.0.14(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) + vitest: 4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) transitivePeerDependencies: - supports-color - '@vitest/expect@4.0.14': + '@vitest/expect@4.0.15': dependencies: '@standard-schema/spec': 1.0.0 '@types/chai': 5.2.3 - '@vitest/spy': 4.0.14 - '@vitest/utils': 4.0.14 + '@vitest/spy': 4.0.15 + '@vitest/utils': 4.0.15 chai: 6.2.1 tinyrainbow: 3.0.3 - '@vitest/mocker@4.0.14(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@4.0.15(vite@7.2.6(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': dependencies: - '@vitest/spy': 4.0.14 + '@vitest/spy': 4.0.15 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: - vite: 7.2.4(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) + vite: 7.2.6(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) - '@vitest/pretty-format@4.0.14': + '@vitest/pretty-format@4.0.15': dependencies: tinyrainbow: 3.0.3 - '@vitest/runner@4.0.14': + '@vitest/runner@4.0.15': dependencies: - '@vitest/utils': 4.0.14 + '@vitest/utils': 4.0.15 pathe: 2.0.3 - '@vitest/snapshot@4.0.14': + '@vitest/snapshot@4.0.15': dependencies: - '@vitest/pretty-format': 4.0.14 + '@vitest/pretty-format': 4.0.15 magic-string: 0.30.21 pathe: 2.0.3 - '@vitest/spy@4.0.14': {} + '@vitest/spy@4.0.15': {} - '@vitest/utils@4.0.14': + '@vitest/utils@4.0.15': dependencies: - '@vitest/pretty-format': 4.0.14 + '@vitest/pretty-format': 4.0.15 tinyrainbow: 3.0.3 '@vue/compiler-core@3.5.12': @@ -8229,8 +8226,6 @@ snapshots: tinybench@2.9.0: {} - tinyexec@0.3.2: {} - tinyexec@1.0.2: {} tinyglobby@0.2.15: @@ -8404,7 +8399,7 @@ snapshots: value-or-promise@1.0.12: {} - vite@7.2.4(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1): + vite@7.2.6(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1): dependencies: esbuild: 0.25.12 fdir: 6.5.0(picomatch@4.0.3) @@ -8418,15 +8413,15 @@ snapshots: jiti: 2.4.0 yaml: 2.8.1 - vitest@4.0.14(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1): + vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1): dependencies: - '@vitest/expect': 4.0.14 - '@vitest/mocker': 4.0.14(vite@7.2.4(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) - '@vitest/pretty-format': 4.0.14 - '@vitest/runner': 4.0.14 - '@vitest/snapshot': 4.0.14 - '@vitest/spy': 4.0.14 - '@vitest/utils': 4.0.14 + '@vitest/expect': 4.0.15 + '@vitest/mocker': 4.0.15(vite@7.2.6(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/pretty-format': 4.0.15 + '@vitest/runner': 4.0.15 + '@vitest/snapshot': 4.0.15 + '@vitest/spy': 4.0.15 + '@vitest/utils': 4.0.15 es-module-lexer: 1.7.0 expect-type: 1.2.2 magic-string: 0.30.21 @@ -8435,10 +8430,10 @@ snapshots: picomatch: 4.0.3 std-env: 3.10.0 tinybench: 2.9.0 - tinyexec: 0.3.2 + tinyexec: 1.0.2 tinyglobby: 0.2.15 tinyrainbow: 3.0.3 - vite: 7.2.4(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) + vite: 7.2.6(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) why-is-node-running: 2.3.0 optionalDependencies: '@types/node': 24.10.1 From db167b3aab794c097cc649de0f76117b1612969d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 3 Dec 2025 06:44:47 +0000 Subject: [PATCH 128/133] chore(deps): update dependency @antfu/eslint-config to v6.3.0 (#1316) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 324 ++++++++++++++++++++++++------------------------- 1 file changed, 161 insertions(+), 163 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2dcb9262..7f07d6da 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) + version: 6.3.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2)) '@graphql-codegen/cli': specifier: 6.1.0 version: 6.1.0(@types/node@24.10.1)(graphql@16.12.0)(typescript@5.9.3) @@ -71,7 +71,7 @@ importers: version: 1.2.0(typescript@5.9.3) vitest: specifier: ^4.0.0 - version: 4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) + version: 4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2) yup: specifier: 1.7.1 version: 1.7.1 @@ -85,8 +85,8 @@ packages: resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - '@antfu/eslint-config@6.2.0': - resolution: {integrity: sha512-ksasd+mJk441HHodwPh3Nhmwo9jSHUmgQyfTxMQM05U7SjDS0fy2KnXnPx0Vhc/CqKiJnx8wGpQCCJibyASX9Q==} + '@antfu/eslint-config@6.3.0': + resolution: {integrity: sha512-u3bcgwNofE5rHPXxgKOwqnQeT3flg8ikPrFvMmOHUOL27FFleYmog0M4j3SqieekWfV8gkc6m5CScSdSsyUEtg==} hasBin: true peerDependencies: '@eslint-react/eslint-plugin': ^2.0.1 @@ -560,10 +560,6 @@ packages: resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/core@0.16.0': - resolution: {integrity: sha512-nmC8/totwobIiFcGkDza3GIKfAw1+hLiYVrh3I1nIomQ8PEr5cxg34jnkmGawul/ep52wGRAcyeDCNtWKSOj4Q==} - 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} @@ -576,8 +572,8 @@ packages: resolution: {integrity: sha512-S26Stp4zCy88tH94QbBv3XCuzRQiZ9yXofEILmglYTh/Ug/a9/umqvgFtYBAo3Lp0nsI/5/qH1CCrbdK3AP1Tw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/markdown@7.5.0': - resolution: {integrity: sha512-reKloVSpytg4ene3yviPJcUO7zglpNn9kWNRiSQ/8gBbBFMKW5Q042LaCi3wv2vVtbPNnLrl6WvhRAHeBd43QA==} + '@eslint/markdown@7.5.1': + resolution: {integrity: sha512-R8uZemG9dKTbru/DQRPblbJyXpObwKzo8rv1KYGGuPUPtjM4LXBYM9q5CIZAComzZupws3tWbDwam5AFpPLyJQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/object-schema@2.1.7': @@ -1279,8 +1275,8 @@ packages: '@standard-schema/spec@1.0.0': resolution: {integrity: sha512-m2bOd0f2RT9k8QJx1JN85cZYyH1RqFBdlwtkSlf4tBDYLCiiZnv1fIIwacK6cqwXavOydf0NPToMQgpKq+dVlA==} - '@stylistic/eslint-plugin@5.5.0': - resolution: {integrity: sha512-IeZF+8H0ns6prg4VrkhgL+yrvDXWDH2cKchrbh80ejG9dQgZWp10epHMbgRuQvgchLII/lfh6Xn3lu6+6L86Hw==} + '@stylistic/eslint-plugin@5.6.1': + resolution: {integrity: sha512-JCs+MqoXfXrRPGbGmho/zGS/jMcn3ieKl/A8YImqib76C8kjgZwq5uUFzc30lJkMvcchuRn6/v8IApLxli3Jyw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: '>=9.0.0' @@ -1354,63 +1350,63 @@ packages: '@types/yargs@17.0.33': resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==} - '@typescript-eslint/eslint-plugin@8.46.2': - resolution: {integrity: sha512-ZGBMToy857/NIPaaCucIUQgqueOiq7HeAKkhlvqVV4lm089zUFW6ikRySx2v+cAhKeUCPuWVHeimyk6Dw1iY3w==} + '@typescript-eslint/eslint-plugin@8.48.1': + resolution: {integrity: sha512-X63hI1bxl5ohelzr0LY5coufyl0LJNthld+abwxpCoo6Gq+hSqhKwci7MUWkXo67mzgUK6YFByhmaHmUcuBJmA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - '@typescript-eslint/parser': ^8.46.2 + '@typescript-eslint/parser': ^8.48.1 eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/parser@8.46.2': - resolution: {integrity: sha512-BnOroVl1SgrPLywqxyqdJ4l3S2MsKVLDVxZvjI1Eoe8ev2r3kGDo+PcMihNmDE+6/KjkTubSJnmqGZZjQSBq/g==} + '@typescript-eslint/parser@8.48.1': + resolution: {integrity: sha512-PC0PDZfJg8sP7cmKe6L3QIL8GZwU5aRvUFedqSIpw3B+QjRSUZeeITC2M5XKeMXEzL6wccN196iy3JLwKNvDVA==} 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/project-service@8.46.2': - resolution: {integrity: sha512-PULOLZ9iqwI7hXcmL4fVfIsBi6AN9YxRc0frbvmg8f+4hQAjQ5GYNKK0DIArNo+rOKmR/iBYwkpBmnIwin4wBg==} + '@typescript-eslint/project-service@8.48.1': + resolution: {integrity: sha512-HQWSicah4s9z2/HifRPQ6b6R7G+SBx64JlFQpgSSHWPKdvCZX57XCbszg/bapbRsOEv42q5tayTYcEFpACcX1w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/scope-manager@8.46.2': - resolution: {integrity: sha512-LF4b/NmGvdWEHD2H4MsHD8ny6JpiVNDzrSZr3CsckEgCbAGZbYM4Cqxvi9L+WqDMT+51Ozy7lt2M+d0JLEuBqA==} + '@typescript-eslint/scope-manager@8.48.1': + resolution: {integrity: sha512-rj4vWQsytQbLxC5Bf4XwZ0/CKd362DkWMUkviT7DCS057SK64D5lH74sSGzhI6PDD2HCEq02xAP9cX68dYyg1w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/tsconfig-utils@8.46.2': - resolution: {integrity: sha512-a7QH6fw4S57+F5y2FIxxSDyi5M4UfGF+Jl1bCGd7+L4KsaUY80GsiF/t0UoRFDHAguKlBaACWJRmdrc6Xfkkag==} + '@typescript-eslint/tsconfig-utils@8.48.1': + resolution: {integrity: sha512-k0Jhs4CpEffIBm6wPaCXBAD7jxBtrHjrSgtfCjUvPp9AZ78lXKdTR8fxyZO5y4vWNlOvYXRtngSZNSn+H53Jkw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/type-utils@8.46.2': - resolution: {integrity: sha512-HbPM4LbaAAt/DjxXaG9yiS9brOOz6fabal4uvUmaUYe6l3K1phQDMQKBRUrr06BQkxkvIZVVHttqiybM9nJsLA==} + '@typescript-eslint/type-utils@8.48.1': + resolution: {integrity: sha512-1jEop81a3LrJQLTf/1VfPQdhIY4PlGDBc/i67EVWObrtvcziysbLN3oReexHOM6N3jyXgCrkBsZpqwH0hiDOQg==} 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/types@8.46.2': - resolution: {integrity: sha512-lNCWCbq7rpg7qDsQrd3D6NyWYu+gkTENkG5IKYhUIcxSb59SQC/hEQ+MrG4sTgBVghTonNWq42bA/d4yYumldQ==} + '@typescript-eslint/types@8.48.1': + resolution: {integrity: sha512-+fZ3LZNeiELGmimrujsDCT4CRIbq5oXdHe7chLiW8qzqyPMnn1puNstCrMNVAqwcl2FdIxkuJ4tOs/RFDBVc/Q==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/typescript-estree@8.46.2': - resolution: {integrity: sha512-f7rW7LJ2b7Uh2EiQ+7sza6RDZnajbNbemn54Ob6fRwQbgcIn+GWfyuHDHRYgRoZu1P4AayVScrRW+YfbTvPQoQ==} + '@typescript-eslint/typescript-estree@8.48.1': + resolution: {integrity: sha512-/9wQ4PqaefTK6POVTjJaYS0bynCgzh6ClJHGSBj06XEHjkfylzB+A3qvyaXnErEZSaxhIo4YdyBgq6j4RysxDg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/utils@8.46.2': - resolution: {integrity: sha512-sExxzucx0Tud5tE0XqR0lT0psBQvEpnpiul9XbGUB1QwpWJJAps1O/Z7hJxLGiZLBKMCutjTzDgmd1muEhBnVg==} + '@typescript-eslint/utils@8.48.1': + resolution: {integrity: sha512-fAnhLrDjiVfey5wwFRwrweyRlCmdz5ZxXz2G/4cLn0YDLjTapmN4gcCsTBR1N2rWnZSDeWpYtgLDsJt+FpmcwA==} 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/visitor-keys@8.46.2': - resolution: {integrity: sha512-tUFMXI4gxzzMXt4xpGJEsBsTox0XbNQ1y94EwlD/CuZwFcQP79xfQqMhau9HsRc/J0cAPA/HZt1dZPtGn9V/7w==} + '@typescript-eslint/visitor-keys@8.48.1': + resolution: {integrity: sha512-BmxxndzEWhE4TIEEMBs8lP3MBWN3jFPs/p6gPm/wkv02o41hI6cq9AuSmGAaTTHPtA1FTi2jBre4A9rm5ZmX+Q==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@ungap/structured-clone@1.3.0': @@ -1501,8 +1497,8 @@ packages: cpu: [x64] os: [win32] - '@vitest/eslint-plugin@1.4.0': - resolution: {integrity: sha512-TMzJ0Vqdsc71stblzI0ZdqSnt6Bp4mJ+amD3Hv3qhKK82hBUnznYfnLwA80gdGfe5V24ysndMOoSGrol6fyvbA==} + '@vitest/eslint-plugin@1.5.1': + resolution: {integrity: sha512-t49CNERe/YadnLn90NTTKJLKzs99xBkXElcoUTLodG6j1G0Q7jy3mXqqiHd3N5aryG2KkgOg4UAoGwgwSrZqKQ==} engines: {node: '>=18'} peerDependencies: eslint: '>=8.57.0' @@ -1680,8 +1676,8 @@ packages: balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - baseline-browser-mapping@2.8.21: - resolution: {integrity: sha512-JU0h5APyQNsHOlAM7HnQnPToSDQoEBZqzu/YBlqDnEeymPnZDREeXJA3KBMQee+dKteAxZ2AtvQEvVYdZf241Q==} + baseline-browser-mapping@2.8.32: + resolution: {integrity: sha512-OPz5aBThlyLFgxyhdwf/s2+8ab3OvT7AdTNvKHBwpXomIYeXqpUUuT8LrdtxZSsWJ4R4CU1un4XGh5Ez3nlTpw==} hasBin: true boolbase@1.0.0: @@ -1697,8 +1693,8 @@ packages: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} - browserslist@4.27.0: - resolution: {integrity: sha512-AXVQwdhot1eqLihwasPElhX2tAZiBjWdJ9i/Zcj2S6QYIjkx62OKSfnobkriB81C3l4w0rVy3Nt4jaTBltYEpw==} + browserslist@4.28.0: + resolution: {integrity: sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true @@ -1735,8 +1731,8 @@ packages: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} - caniuse-lite@1.0.30001751: - resolution: {integrity: sha512-A0QJhug0Ly64Ii3eIqHu5X51ebln3k4yTUkY1j8drqpWHVreg/VLijN48cZ1bYPiqOQuqpkIKnzr/Ul8V+p6Cw==} + caniuse-lite@1.0.30001757: + resolution: {integrity: sha512-r0nnL/I28Zi/yjk1el6ilj27tKcdjLsNqAOZr0yVjWPrSQyHgKI2INaEWw21bAQSv2LXRt1XuCS/GomNpWOxsQ==} capital-case@1.0.4: resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} @@ -1842,8 +1838,8 @@ packages: convert-source-map@2.0.0: resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} - core-js-compat@3.46.0: - resolution: {integrity: sha512-p9hObIIEENxSV8xIu+V68JjSeARg6UVMG5mR+JEUguG3sI6MsiS1njz2jHmyJDvA+8jX/sytkBHup6kxhM9law==} + core-js-compat@3.47.0: + resolution: {integrity: sha512-IGfuznZ/n7Kp9+nypamBhvwdwLsW6KC8IOaURw2doAK5e98AG3acVLdh0woOnEqCfUtS+Vu882JE4k/DAm3ItQ==} cosmiconfig@8.3.6: resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} @@ -1954,8 +1950,8 @@ packages: eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - electron-to-chromium@1.5.244: - resolution: {integrity: sha512-OszpBN7xZX4vWMPJwB9illkN/znA8M36GQqQxi6MNy9axWxhOfJyZZJtSLQCpEFLHP2xK33BiWx9aIuIEXVCcw==} + electron-to-chromium@1.5.263: + resolution: {integrity: sha512-DrqJ11Knd+lo+dv+lltvfMDLU27g14LMdH2b0O3Pio4uk0x+z7OR+JrmyacTPN2M8w3BrZ7/RTwG3R9B7irPlg==} emittery@0.13.1: resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} @@ -2083,8 +2079,8 @@ packages: typescript: optional: true - eslint-plugin-jsdoc@61.1.11: - resolution: {integrity: sha512-c+NQQOFd+ZTjFt0pfFMB8OTumExg0vf8mlJsOtLj6qTDGewtLh7bhwoDgBg6rIiTziYc8N4u4dYmSdAIn0yTEQ==} + eslint-plugin-jsdoc@61.4.1: + resolution: {integrity: sha512-3c1QW/bV25sJ1MsIvsvW+EtLtN6yZMduw7LVQNVt72y2/5BbV5Pg5b//TE5T48LRUxoEQGaZJejCmcj3wCxBzw==} engines: {node: '>=20.11.0'} peerDependencies: eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 @@ -2143,8 +2139,8 @@ packages: '@typescript-eslint/eslint-plugin': optional: true - eslint-plugin-vue@10.5.1: - resolution: {integrity: sha512-SbR9ZBUFKgvWAbq3RrdCtWaW0IKm6wwUiApxf3BVTNfqUIo4IQQmreMg2iHFJJ6C/0wss3LXURBJ1OwS/MhFcQ==} + eslint-plugin-vue@10.6.2: + resolution: {integrity: sha512-nA5yUs/B1KmKzvC42fyD0+l9Yd+LtEpVhWRbXuDj0e+ZURcTtyRbMDWUeJmTAh2wC6jC83raS63anNM2YT3NPw==} 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 @@ -2245,8 +2241,8 @@ packages: resolution: {integrity: sha512-u/feCi0GPsI+988gU2FLcsHyAHTU0MX1Wg68NhAnN7z/+C5wqG+CY8J53N9ioe8RXgaoz0nBR/TYMf3AycUuPw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - exsolve@1.0.7: - resolution: {integrity: sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==} + exsolve@1.0.8: + resolution: {integrity: sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==} extract-files@11.0.0: resolution: {integrity: sha512-FuoE1qtbJ4bBVvv94CC7s0oTnKUGvQs+Rjf1L2SJFfS+HTVVjhPFtehPdQ0JiGPqVNfSSZvL5yzHHQq2Z4WNhQ==} @@ -2394,8 +2390,8 @@ packages: resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==} engines: {node: '>=18'} - globals@16.4.0: - resolution: {integrity: sha512-ob/2LcVVaVGCYN+r14cnwnoDPUufjiYgSqRhiFD0Q1iI4Odora5RE8Iv1D24hAz5oMophRGkGz+yuvQmmUMnMw==} + globals@16.5.0: + resolution: {integrity: sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==} engines: {node: '>=18'} globby@11.1.0: @@ -3215,8 +3211,8 @@ packages: package-json-from-dist@1.0.1: resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} - package-manager-detector@1.5.0: - resolution: {integrity: sha512-uBj69dVlYe/+wxj8JOpr97XfsxH/eumMt6HqjNTmJDf/6NO9s+0uxeOneIz3AsPt2m6y9PqzDzd3ATcU17MNfw==} + package-manager-detector@1.6.0: + resolution: {integrity: sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==} param-case@3.0.4: resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} @@ -3321,8 +3317,8 @@ packages: pnpm-workspace-yaml@1.3.0: resolution: {integrity: sha512-Krb5q8Totd5mVuLx7we+EFHq/AfxA75nbfTm25Q1pIf606+RlaKUG+PXH8SDihfe5b5k4H09gE+sL47L1t5lbw==} - 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.6: @@ -3969,8 +3965,8 @@ packages: yallist@3.1.1: resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} - yaml-eslint-parser@1.3.0: - resolution: {integrity: sha512-E/+VitOorXSLiAqtTd7Yqax0/pAS3xaYMP+AUUJGOK1OZG3rhcj9fcJOM5HJ2VrP1FrStVCWr1muTfQCdj4tAA==} + yaml-eslint-parser@1.3.1: + resolution: {integrity: sha512-MdSgP9YA9QjtAO2+lt4O7V2bnH22LPnfeVLiQqjY3cOyn8dy/Ief8otjIe6SPPTK03nM7O3Yl0LTfWuF7l+9yw==} engines: {node: ^14.17.0 || >=16.0.0} yaml@2.8.1: @@ -3978,6 +3974,11 @@ packages: engines: {node: '>= 14.6'} hasBin: true + yaml@2.8.2: + resolution: {integrity: sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==} + engines: {node: '>= 14.6'} + hasBin: true + yargs-parser@21.1.1: resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} engines: {node: '>=12'} @@ -4010,16 +4011,16 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - '@antfu/eslint-config@6.2.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': + '@antfu/eslint-config@6.3.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.39.1(jiti@2.4.0)) - '@eslint/markdown': 7.5.0 - '@stylistic/eslint-plugin': 5.5.0(eslint@9.39.1(jiti@2.4.0)) - '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) - '@typescript-eslint/parser': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) + '@eslint/markdown': 7.5.1 + '@stylistic/eslint-plugin': 5.6.1(eslint@9.39.1(jiti@2.4.0)) + '@typescript-eslint/eslint-plugin': 8.48.1(@typescript-eslint/parser@8.48.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/parser': 8.48.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) + '@vitest/eslint-plugin': 1.5.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2)) ansis: 4.2.0 cac: 6.7.14 eslint: 9.39.1(jiti@2.4.0) @@ -4029,7 +4030,7 @@ snapshots: eslint-plugin-antfu: 3.1.1(eslint@9.39.1(jiti@2.4.0)) eslint-plugin-command: 3.3.1(eslint@9.39.1(jiti@2.4.0)) eslint-plugin-import-lite: 0.3.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-jsdoc: 61.1.11(eslint@9.39.1(jiti@2.4.0)) + eslint-plugin-jsdoc: 61.4.1(eslint@9.39.1(jiti@2.4.0)) eslint-plugin-jsonc: 2.21.0(eslint@9.39.1(jiti@2.4.0)) eslint-plugin-n: 17.23.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) eslint-plugin-no-only-tests: 3.3.0 @@ -4038,17 +4039,17 @@ snapshots: eslint-plugin-regexp: 2.10.0(eslint@9.39.1(jiti@2.4.0)) eslint-plugin-toml: 0.12.0(eslint@9.39.1(jiti@2.4.0)) eslint-plugin-unicorn: 62.0.0(eslint@9.39.1(jiti@2.4.0)) - eslint-plugin-unused-imports: 4.3.0(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0)) - eslint-plugin-vue: 10.5.1(@stylistic/eslint-plugin@5.5.0(eslint@9.39.1(jiti@2.4.0)))(@typescript-eslint/parser@8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.39.1(jiti@2.4.0))) + eslint-plugin-unused-imports: 4.3.0(@typescript-eslint/eslint-plugin@8.48.1(@typescript-eslint/parser@8.48.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0)) + eslint-plugin-vue: 10.6.2(@stylistic/eslint-plugin@5.6.1(eslint@9.39.1(jiti@2.4.0)))(@typescript-eslint/parser@8.48.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.39.1(jiti@2.4.0))) eslint-plugin-yml: 1.19.0(eslint@9.39.1(jiti@2.4.0)) eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0)) - globals: 16.4.0 + globals: 16.5.0 jsonc-eslint-parser: 2.4.1 local-pkg: 1.1.2 parse-gitignore: 2.0.0 toml-eslint-parser: 0.10.0 vue-eslint-parser: 10.2.0(eslint@9.39.1(jiti@2.4.0)) - yaml-eslint-parser: 1.3.0 + yaml-eslint-parser: 1.3.1 transitivePeerDependencies: - '@eslint/json' - '@vue/compiler-sfc' @@ -4058,7 +4059,7 @@ snapshots: '@antfu/install-pkg@1.1.0': dependencies: - package-manager-detector: 1.5.0 + package-manager-detector: 1.6.0 tinyexec: 1.0.2 '@ardatan/relay-compiler@12.0.3(graphql@16.12.0)': @@ -4131,7 +4132,7 @@ snapshots: dependencies: '@babel/compat-data': 7.27.5 '@babel/helper-validator-option': 7.27.1 - browserslist: 4.27.0 + browserslist: 4.28.0 lru-cache: 5.1.1 semver: 6.3.1 @@ -4337,7 +4338,7 @@ snapshots: '@es-joy/jsdoccomment@0.50.2': dependencies: '@types/estree': 1.0.8 - '@typescript-eslint/types': 8.46.2 + '@typescript-eslint/types': 8.48.1 comment-parser: 1.4.1 esquery: 1.6.0 jsdoc-type-pratt-parser: 4.1.0 @@ -4345,7 +4346,7 @@ snapshots: '@es-joy/jsdoccomment@0.76.0': dependencies: '@types/estree': 1.0.8 - '@typescript-eslint/types': 8.46.2 + '@typescript-eslint/types': 8.48.1 comment-parser: 1.4.1 esquery: 1.6.0 jsdoc-type-pratt-parser: 6.10.0 @@ -4461,10 +4462,6 @@ snapshots: dependencies: '@eslint/core': 0.17.0 - '@eslint/core@0.16.0': - dependencies: - '@types/json-schema': 7.0.15 - '@eslint/core@0.17.0': dependencies: '@types/json-schema': 7.0.15 @@ -4485,9 +4482,9 @@ snapshots: '@eslint/js@9.39.1': {} - '@eslint/markdown@7.5.0': + '@eslint/markdown@7.5.1': dependencies: - '@eslint/core': 0.16.0 + '@eslint/core': 0.17.0 '@eslint/plugin-kit': 0.4.1 github-slugger: 2.0.0 mdast-util-from-markdown: 2.0.2 @@ -5481,10 +5478,10 @@ snapshots: '@standard-schema/spec@1.0.0': {} - '@stylistic/eslint-plugin@5.5.0(eslint@9.39.1(jiti@2.4.0))': + '@stylistic/eslint-plugin@5.6.1(eslint@9.39.1(jiti@2.4.0))': dependencies: '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.4.0)) - '@typescript-eslint/types': 8.46.2 + '@typescript-eslint/types': 8.48.1 eslint: 9.39.1(jiti@2.4.0) eslint-visitor-keys: 4.2.1 espree: 10.4.0 @@ -5570,14 +5567,14 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)': + '@typescript-eslint/eslint-plugin@8.48.1(@typescript-eslint/parser@8.48.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)': dependencies: '@eslint-community/regexpp': 4.12.2 - '@typescript-eslint/parser': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) - '@typescript-eslint/scope-manager': 8.46.2 - '@typescript-eslint/type-utils': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) - '@typescript-eslint/utils': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) - '@typescript-eslint/visitor-keys': 8.46.2 + '@typescript-eslint/parser': 8.48.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/scope-manager': 8.48.1 + '@typescript-eslint/type-utils': 8.48.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/utils': 8.48.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 8.48.1 eslint: 9.39.1(jiti@2.4.0) graphemer: 1.4.0 ignore: 7.0.5 @@ -5587,41 +5584,41 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)': + '@typescript-eslint/parser@8.48.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)': dependencies: - '@typescript-eslint/scope-manager': 8.46.2 - '@typescript-eslint/types': 8.46.2 - '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.9.3) - '@typescript-eslint/visitor-keys': 8.46.2 + '@typescript-eslint/scope-manager': 8.48.1 + '@typescript-eslint/types': 8.48.1 + '@typescript-eslint/typescript-estree': 8.48.1(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 8.48.1 debug: 4.4.3 eslint: 9.39.1(jiti@2.4.0) typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/project-service@8.46.2(typescript@5.9.3)': + '@typescript-eslint/project-service@8.48.1(typescript@5.9.3)': dependencies: - '@typescript-eslint/tsconfig-utils': 8.46.2(typescript@5.9.3) - '@typescript-eslint/types': 8.46.2 + '@typescript-eslint/tsconfig-utils': 8.48.1(typescript@5.9.3) + '@typescript-eslint/types': 8.48.1 debug: 4.4.3 typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@8.46.2': + '@typescript-eslint/scope-manager@8.48.1': dependencies: - '@typescript-eslint/types': 8.46.2 - '@typescript-eslint/visitor-keys': 8.46.2 + '@typescript-eslint/types': 8.48.1 + '@typescript-eslint/visitor-keys': 8.48.1 - '@typescript-eslint/tsconfig-utils@8.46.2(typescript@5.9.3)': + '@typescript-eslint/tsconfig-utils@8.48.1(typescript@5.9.3)': dependencies: typescript: 5.9.3 - '@typescript-eslint/type-utils@8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)': + '@typescript-eslint/type-utils@8.48.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)': dependencies: - '@typescript-eslint/types': 8.46.2 - '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.9.3) - '@typescript-eslint/utils': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/types': 8.48.1 + '@typescript-eslint/typescript-estree': 8.48.1(typescript@5.9.3) + '@typescript-eslint/utils': 8.48.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) debug: 4.4.3 eslint: 9.39.1(jiti@2.4.0) ts-api-utils: 2.1.0(typescript@5.9.3) @@ -5629,38 +5626,37 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/types@8.46.2': {} + '@typescript-eslint/types@8.48.1': {} - '@typescript-eslint/typescript-estree@8.46.2(typescript@5.9.3)': + '@typescript-eslint/typescript-estree@8.48.1(typescript@5.9.3)': dependencies: - '@typescript-eslint/project-service': 8.46.2(typescript@5.9.3) - '@typescript-eslint/tsconfig-utils': 8.46.2(typescript@5.9.3) - '@typescript-eslint/types': 8.46.2 - '@typescript-eslint/visitor-keys': 8.46.2 + '@typescript-eslint/project-service': 8.48.1(typescript@5.9.3) + '@typescript-eslint/tsconfig-utils': 8.48.1(typescript@5.9.3) + '@typescript-eslint/types': 8.48.1 + '@typescript-eslint/visitor-keys': 8.48.1 debug: 4.4.3 - fast-glob: 3.3.3 - is-glob: 4.0.3 minimatch: 9.0.5 semver: 7.7.3 + tinyglobby: 0.2.15 ts-api-utils: 2.1.0(typescript@5.9.3) typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)': + '@typescript-eslint/utils@8.48.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)': dependencies: '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.4.0)) - '@typescript-eslint/scope-manager': 8.46.2 - '@typescript-eslint/types': 8.46.2 - '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.9.3) + '@typescript-eslint/scope-manager': 8.48.1 + '@typescript-eslint/types': 8.48.1 + '@typescript-eslint/typescript-estree': 8.48.1(typescript@5.9.3) eslint: 9.39.1(jiti@2.4.0) typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/visitor-keys@8.46.2': + '@typescript-eslint/visitor-keys@8.48.1': dependencies: - '@typescript-eslint/types': 8.46.2 + '@typescript-eslint/types': 8.48.1 eslint-visitor-keys: 4.2.1 '@ungap/structured-clone@1.3.0': {} @@ -5718,14 +5714,14 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.4.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/eslint-plugin@1.5.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2))': dependencies: - '@typescript-eslint/scope-manager': 8.46.2 - '@typescript-eslint/utils': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/scope-manager': 8.48.1 + '@typescript-eslint/utils': 8.48.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) eslint: 9.39.1(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - vitest: 4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) + vitest: 4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2) transitivePeerDependencies: - supports-color @@ -5738,13 +5734,13 @@ snapshots: chai: 6.2.1 tinyrainbow: 3.0.3 - '@vitest/mocker@4.0.15(vite@7.2.6(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1))': + '@vitest/mocker@4.0.15(vite@7.2.6(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2))': dependencies: '@vitest/spy': 4.0.15 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: - vite: 7.2.6(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) + vite: 7.2.6(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2) '@vitest/pretty-format@4.0.15': dependencies: @@ -5933,7 +5929,7 @@ snapshots: balanced-match@1.0.2: {} - baseline-browser-mapping@2.8.21: {} + baseline-browser-mapping@2.8.32: {} boolbase@1.0.0: {} @@ -5950,13 +5946,13 @@ snapshots: dependencies: fill-range: 7.1.1 - browserslist@4.27.0: + browserslist@4.28.0: dependencies: - baseline-browser-mapping: 2.8.21 - caniuse-lite: 1.0.30001751 - electron-to-chromium: 1.5.244 + baseline-browser-mapping: 2.8.32 + caniuse-lite: 1.0.30001757 + electron-to-chromium: 1.5.263 node-releases: 2.0.27 - update-browserslist-db: 1.1.4(browserslist@4.27.0) + update-browserslist-db: 1.1.4(browserslist@4.28.0) bs-logger@0.2.6: dependencies: @@ -5983,7 +5979,7 @@ snapshots: camelcase@6.3.0: {} - caniuse-lite@1.0.30001751: {} + caniuse-lite@1.0.30001757: {} capital-case@1.0.4: dependencies: @@ -6093,9 +6089,9 @@ snapshots: convert-source-map@2.0.0: {} - core-js-compat@3.46.0: + core-js-compat@3.47.0: dependencies: - browserslist: 4.27.0 + browserslist: 4.28.0 cosmiconfig@8.3.6(typescript@5.9.3): dependencies: @@ -6180,7 +6176,7 @@ snapshots: eastasianwidth@0.2.0: {} - electron-to-chromium@1.5.244: {} + electron-to-chromium@1.5.263: {} emittery@0.13.1: {} @@ -6296,12 +6292,12 @@ snapshots: eslint-plugin-import-lite@0.3.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3): dependencies: '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.4.0)) - '@typescript-eslint/types': 8.46.2 + '@typescript-eslint/types': 8.48.1 eslint: 9.39.1(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - eslint-plugin-jsdoc@61.1.11(eslint@9.39.1(jiti@2.4.0)): + eslint-plugin-jsdoc@61.4.1(eslint@9.39.1(jiti@2.4.0)): dependencies: '@es-joy/jsdoccomment': 0.76.0 '@es-joy/resolve.exports': 1.2.0 @@ -6355,8 +6351,8 @@ snapshots: eslint-plugin-perfectionist@4.15.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3): dependencies: - '@typescript-eslint/types': 8.46.2 - '@typescript-eslint/utils': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/types': 8.48.1 + '@typescript-eslint/utils': 8.48.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) eslint: 9.39.1(jiti@2.4.0) natural-orderby: 5.0.0 transitivePeerDependencies: @@ -6371,7 +6367,7 @@ snapshots: pathe: 2.0.3 pnpm-workspace-yaml: 1.3.0 tinyglobby: 0.2.15 - yaml-eslint-parser: 1.3.0 + yaml-eslint-parser: 1.3.1 eslint-plugin-regexp@2.10.0(eslint@9.39.1(jiti@2.4.0)): dependencies: @@ -6402,11 +6398,11 @@ snapshots: change-case: 5.4.4 ci-info: 4.3.1 clean-regexp: 1.0.0 - core-js-compat: 3.46.0 + core-js-compat: 3.47.0 eslint: 9.39.1(jiti@2.4.0) esquery: 1.6.0 find-up-simple: 1.0.1 - globals: 16.4.0 + globals: 16.5.0 indent-string: 5.0.0 is-builtin-module: 5.0.0 jsesc: 3.1.0 @@ -6416,25 +6412,25 @@ snapshots: semver: 7.7.3 strip-indent: 4.1.1 - eslint-plugin-unused-imports@4.3.0(@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0)): + eslint-plugin-unused-imports@4.3.0(@typescript-eslint/eslint-plugin@8.48.1(@typescript-eslint/parser@8.48.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0)): dependencies: eslint: 9.39.1(jiti@2.4.0) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) + '@typescript-eslint/eslint-plugin': 8.48.1(@typescript-eslint/parser@8.48.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-vue@10.5.1(@stylistic/eslint-plugin@5.5.0(eslint@9.39.1(jiti@2.4.0)))(@typescript-eslint/parser@8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.39.1(jiti@2.4.0))): + eslint-plugin-vue@10.6.2(@stylistic/eslint-plugin@5.6.1(eslint@9.39.1(jiti@2.4.0)))(@typescript-eslint/parser@8.48.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(vue-eslint-parser@10.2.0(eslint@9.39.1(jiti@2.4.0))): dependencies: '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.4.0)) eslint: 9.39.1(jiti@2.4.0) natural-compare: 1.4.0 nth-check: 2.1.1 - postcss-selector-parser: 6.1.2 + postcss-selector-parser: 7.1.1 semver: 7.7.3 vue-eslint-parser: 10.2.0(eslint@9.39.1(jiti@2.4.0)) xml-name-validator: 4.0.0 optionalDependencies: - '@stylistic/eslint-plugin': 5.5.0(eslint@9.39.1(jiti@2.4.0)) - '@typescript-eslint/parser': 8.46.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) + '@stylistic/eslint-plugin': 5.6.1(eslint@9.39.1(jiti@2.4.0)) + '@typescript-eslint/parser': 8.48.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) eslint-plugin-yml@1.19.0(eslint@9.39.1(jiti@2.4.0)): dependencies: @@ -6444,7 +6440,7 @@ snapshots: eslint: 9.39.1(jiti@2.4.0) eslint-compat-utils: 0.6.5(eslint@9.39.1(jiti@2.4.0)) natural-compare: 1.4.0 - yaml-eslint-parser: 1.3.0 + yaml-eslint-parser: 1.3.1 transitivePeerDependencies: - supports-color @@ -6562,7 +6558,7 @@ snapshots: jest-mock: 30.2.0 jest-util: 30.2.0 - exsolve@1.0.7: {} + exsolve@1.0.8: {} extract-files@11.0.0: {} @@ -6706,7 +6702,7 @@ snapshots: globals@15.15.0: {} - globals@16.4.0: {} + globals@16.5.0: {} globby@11.1.0: dependencies: @@ -7837,7 +7833,7 @@ snapshots: package-json-from-dist@1.0.1: {} - package-manager-detector@1.5.0: {} + package-manager-detector@1.6.0: {} param-case@3.0.4: dependencies: @@ -7925,16 +7921,16 @@ snapshots: pkg-types@2.3.0: dependencies: confbox: 0.2.2 - exsolve: 1.0.7 + exsolve: 1.0.8 pathe: 2.0.3 pluralize@8.0.0: {} pnpm-workspace-yaml@1.3.0: dependencies: - yaml: 2.8.1 + yaml: 2.8.2 - postcss-selector-parser@6.1.2: + postcss-selector-parser@7.1.1: dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 @@ -8365,9 +8361,9 @@ snapshots: '@unrs/resolver-binding-win32-ia32-msvc': 1.7.13 '@unrs/resolver-binding-win32-x64-msvc': 1.7.13 - update-browserslist-db@1.1.4(browserslist@4.27.0): + update-browserslist-db@1.1.4(browserslist@4.28.0): dependencies: - browserslist: 4.27.0 + browserslist: 4.28.0 escalade: 3.2.0 picocolors: 1.1.1 @@ -8399,7 +8395,7 @@ snapshots: value-or-promise@1.0.12: {} - vite@7.2.6(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1): + vite@7.2.6(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2): dependencies: esbuild: 0.25.12 fdir: 6.5.0(picomatch@4.0.3) @@ -8411,12 +8407,12 @@ snapshots: '@types/node': 24.10.1 fsevents: 2.3.3 jiti: 2.4.0 - yaml: 2.8.1 + yaml: 2.8.2 - vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1): + vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2): dependencies: '@vitest/expect': 4.0.15 - '@vitest/mocker': 4.0.15(vite@7.2.6(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1)) + '@vitest/mocker': 4.0.15(vite@7.2.6(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2)) '@vitest/pretty-format': 4.0.15 '@vitest/runner': 4.0.15 '@vitest/snapshot': 4.0.15 @@ -8433,7 +8429,7 @@ snapshots: tinyexec: 1.0.2 tinyglobby: 0.2.15 tinyrainbow: 3.0.3 - vite: 7.2.6(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.1) + vite: 7.2.6(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2) why-is-node-running: 2.3.0 optionalDependencies: '@types/node': 24.10.1 @@ -8533,13 +8529,15 @@ snapshots: yallist@3.1.1: {} - yaml-eslint-parser@1.3.0: + yaml-eslint-parser@1.3.1: dependencies: eslint-visitor-keys: 3.4.3 - yaml: 2.8.1 + yaml: 2.8.2 yaml@2.8.1: {} + yaml@2.8.2: {} + yargs-parser@21.1.1: {} yargs@17.7.2: From b2d4b96716f06b1d24eab5808c5ac769bc46c7b4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 4 Dec 2025 08:38:00 +0000 Subject: [PATCH 129/133] chore(deps): update dependency @antfu/eslint-config to v6.4.1 (#1317) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 81 +++++++++++++++++++++++++------------------------- 1 file changed, 41 insertions(+), 40 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7f07d6da..58a12fa7 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.3.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2)) + version: 6.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2)) '@graphql-codegen/cli': specifier: 6.1.0 version: 6.1.0(@types/node@24.10.1)(graphql@16.12.0)(typescript@5.9.3) @@ -85,8 +85,8 @@ packages: resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - '@antfu/eslint-config@6.3.0': - resolution: {integrity: sha512-u3bcgwNofE5rHPXxgKOwqnQeT3flg8ikPrFvMmOHUOL27FFleYmog0M4j3SqieekWfV8gkc6m5CScSdSsyUEtg==} + '@antfu/eslint-config@6.4.1': + resolution: {integrity: sha512-9Fj5AK2VJcmfCGF5yJ3TWbygCM8TcnP/oYgC0hqM62j8BTEd7XCI0IxU+STl0duotI4EjXdcGhHdrOjFoB58qw==} hasBin: true peerDependencies: '@eslint-react/eslint-plugin': ^2.0.1 @@ -1676,8 +1676,8 @@ packages: balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - baseline-browser-mapping@2.8.32: - resolution: {integrity: sha512-OPz5aBThlyLFgxyhdwf/s2+8ab3OvT7AdTNvKHBwpXomIYeXqpUUuT8LrdtxZSsWJ4R4CU1un4XGh5Ez3nlTpw==} + baseline-browser-mapping@2.9.0: + resolution: {integrity: sha512-Mh++g+2LPfzZToywfE1BUzvZbfOY52Nil0rn9H1CPC5DJ7fX+Vir7nToBeoiSbB1zTNeGYbELEvJESujgGrzXw==} hasBin: true boolbase@1.0.0: @@ -1693,8 +1693,8 @@ packages: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} - browserslist@4.28.0: - resolution: {integrity: sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==} + browserslist@4.28.1: + resolution: {integrity: sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true @@ -1731,8 +1731,8 @@ packages: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} - caniuse-lite@1.0.30001757: - resolution: {integrity: sha512-r0nnL/I28Zi/yjk1el6ilj27tKcdjLsNqAOZr0yVjWPrSQyHgKI2INaEWw21bAQSv2LXRt1XuCS/GomNpWOxsQ==} + caniuse-lite@1.0.30001759: + resolution: {integrity: sha512-Pzfx9fOKoKvevQf8oCXoyNRQ5QyxJj+3O0Rqx2V5oxT61KGx8+n6hV/IUyJeifUci2clnmmKVpvtiqRzgiWjSw==} capital-case@1.0.4: resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} @@ -1950,8 +1950,8 @@ packages: eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - electron-to-chromium@1.5.263: - resolution: {integrity: sha512-DrqJ11Knd+lo+dv+lltvfMDLU27g14LMdH2b0O3Pio4uk0x+z7OR+JrmyacTPN2M8w3BrZ7/RTwG3R9B7irPlg==} + electron-to-chromium@1.5.264: + resolution: {integrity: sha512-1tEf0nLgltC3iy9wtlYDlQDc5Rg9lEKVjEmIHJ21rI9OcqkvD45K1oyNIRA4rR1z3LgJ7KeGzEBojVcV6m4qjA==} emittery@0.13.1: resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} @@ -2107,8 +2107,8 @@ packages: peerDependencies: eslint: '>=8.45.0' - eslint-plugin-pnpm@1.3.0: - resolution: {integrity: sha512-Lkdnj3afoeUIkDUu8X74z60nrzjQ2U55EbOeI+qz7H1He4IO4gmUKT2KQIl0It52iMHJeuyLDWWNgjr6UIK8nw==} + eslint-plugin-pnpm@1.4.0: + resolution: {integrity: sha512-kp2aO7wzncLPXdWYGv2VEVuEEiZWnVtdavVvO0whbLWHYe4NjKkcEiYBNLBq4/uTOSUFYCouzuhw5cMMAlWIkg==} peerDependencies: eslint: ^9.0.0 @@ -3314,8 +3314,8 @@ packages: resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} engines: {node: '>=4'} - pnpm-workspace-yaml@1.3.0: - resolution: {integrity: sha512-Krb5q8Totd5mVuLx7we+EFHq/AfxA75nbfTm25Q1pIf606+RlaKUG+PXH8SDihfe5b5k4H09gE+sL47L1t5lbw==} + pnpm-workspace-yaml@1.4.0: + resolution: {integrity: sha512-6e4NEk1s9GpuPXqWqbwL7vL2uAHAT06aPcYMk4wnCnD9VGNawPNYVy2Se678u4YpThwjKJjJE+00gsR6eHSpiA==} postcss-selector-parser@7.1.1: resolution: {integrity: sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==} @@ -3763,8 +3763,8 @@ packages: unrs-resolver@1.7.13: resolution: {integrity: sha512-QUjCYKAgrdJpf3wA73zWjOrO7ra19lfnwQ8HRkNOLah5AVDqOS38UunnyhzsSL8AE+2/AGnAHxlr8cGshCP35A==} - update-browserslist-db@1.1.4: - resolution: {integrity: sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==} + update-browserslist-db@1.2.1: + resolution: {integrity: sha512-R9NcHbbZ45RoWfTdhn1J9SS7zxNvlddv4YRrHTUaFdtjbmfncfedB45EC9IaqJQ97iAR1GZgOfyRQO+ExIF6EQ==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' @@ -3965,8 +3965,8 @@ packages: yallist@3.1.1: resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} - yaml-eslint-parser@1.3.1: - resolution: {integrity: sha512-MdSgP9YA9QjtAO2+lt4O7V2bnH22LPnfeVLiQqjY3cOyn8dy/Ief8otjIe6SPPTK03nM7O3Yl0LTfWuF7l+9yw==} + yaml-eslint-parser@1.3.2: + resolution: {integrity: sha512-odxVsHAkZYYglR30aPYRY4nUGJnoJ2y1ww2HDvZALo0BDETv9kWbi16J52eHs+PWRNmF4ub6nZqfVOeesOvntg==} engines: {node: ^14.17.0 || >=16.0.0} yaml@2.8.1: @@ -4011,7 +4011,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - '@antfu/eslint-config@6.3.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2))': + '@antfu/eslint-config@6.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -4035,7 +4035,7 @@ snapshots: eslint-plugin-n: 17.23.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) eslint-plugin-no-only-tests: 3.3.0 eslint-plugin-perfectionist: 4.15.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-pnpm: 1.3.0(eslint@9.39.1(jiti@2.4.0)) + eslint-plugin-pnpm: 1.4.0(eslint@9.39.1(jiti@2.4.0)) eslint-plugin-regexp: 2.10.0(eslint@9.39.1(jiti@2.4.0)) eslint-plugin-toml: 0.12.0(eslint@9.39.1(jiti@2.4.0)) eslint-plugin-unicorn: 62.0.0(eslint@9.39.1(jiti@2.4.0)) @@ -4049,7 +4049,7 @@ snapshots: parse-gitignore: 2.0.0 toml-eslint-parser: 0.10.0 vue-eslint-parser: 10.2.0(eslint@9.39.1(jiti@2.4.0)) - yaml-eslint-parser: 1.3.1 + yaml-eslint-parser: 1.3.2 transitivePeerDependencies: - '@eslint/json' - '@vue/compiler-sfc' @@ -4132,7 +4132,7 @@ snapshots: dependencies: '@babel/compat-data': 7.27.5 '@babel/helper-validator-option': 7.27.1 - browserslist: 4.28.0 + browserslist: 4.28.1 lru-cache: 5.1.1 semver: 6.3.1 @@ -5929,7 +5929,7 @@ snapshots: balanced-match@1.0.2: {} - baseline-browser-mapping@2.8.32: {} + baseline-browser-mapping@2.9.0: {} boolbase@1.0.0: {} @@ -5946,13 +5946,13 @@ snapshots: dependencies: fill-range: 7.1.1 - browserslist@4.28.0: + browserslist@4.28.1: dependencies: - baseline-browser-mapping: 2.8.32 - caniuse-lite: 1.0.30001757 - electron-to-chromium: 1.5.263 + baseline-browser-mapping: 2.9.0 + caniuse-lite: 1.0.30001759 + electron-to-chromium: 1.5.264 node-releases: 2.0.27 - update-browserslist-db: 1.1.4(browserslist@4.28.0) + update-browserslist-db: 1.2.1(browserslist@4.28.1) bs-logger@0.2.6: dependencies: @@ -5979,7 +5979,7 @@ snapshots: camelcase@6.3.0: {} - caniuse-lite@1.0.30001757: {} + caniuse-lite@1.0.30001759: {} capital-case@1.0.4: dependencies: @@ -6091,7 +6091,7 @@ snapshots: core-js-compat@3.47.0: dependencies: - browserslist: 4.28.0 + browserslist: 4.28.1 cosmiconfig@8.3.6(typescript@5.9.3): dependencies: @@ -6176,7 +6176,7 @@ snapshots: eastasianwidth@0.2.0: {} - electron-to-chromium@1.5.263: {} + electron-to-chromium@1.5.264: {} emittery@0.13.1: {} @@ -6359,15 +6359,16 @@ snapshots: - supports-color - typescript - eslint-plugin-pnpm@1.3.0(eslint@9.39.1(jiti@2.4.0)): + eslint-plugin-pnpm@1.4.0(eslint@9.39.1(jiti@2.4.0)): dependencies: empathic: 2.0.0 eslint: 9.39.1(jiti@2.4.0) jsonc-eslint-parser: 2.4.1 pathe: 2.0.3 - pnpm-workspace-yaml: 1.3.0 + pnpm-workspace-yaml: 1.4.0 tinyglobby: 0.2.15 - yaml-eslint-parser: 1.3.1 + yaml: 2.8.2 + yaml-eslint-parser: 1.3.2 eslint-plugin-regexp@2.10.0(eslint@9.39.1(jiti@2.4.0)): dependencies: @@ -6440,7 +6441,7 @@ snapshots: eslint: 9.39.1(jiti@2.4.0) eslint-compat-utils: 0.6.5(eslint@9.39.1(jiti@2.4.0)) natural-compare: 1.4.0 - yaml-eslint-parser: 1.3.1 + yaml-eslint-parser: 1.3.2 transitivePeerDependencies: - supports-color @@ -7926,7 +7927,7 @@ snapshots: pluralize@8.0.0: {} - pnpm-workspace-yaml@1.3.0: + pnpm-workspace-yaml@1.4.0: dependencies: yaml: 2.8.2 @@ -8361,9 +8362,9 @@ snapshots: '@unrs/resolver-binding-win32-ia32-msvc': 1.7.13 '@unrs/resolver-binding-win32-x64-msvc': 1.7.13 - update-browserslist-db@1.1.4(browserslist@4.28.0): + update-browserslist-db@1.2.1(browserslist@4.28.1): dependencies: - browserslist: 4.28.0 + browserslist: 4.28.1 escalade: 3.2.0 picocolors: 1.1.1 @@ -8529,7 +8530,7 @@ snapshots: yallist@3.1.1: {} - yaml-eslint-parser@1.3.1: + yaml-eslint-parser@1.3.2: dependencies: eslint-visitor-keys: 3.4.3 yaml: 2.8.2 From c30046a7fd0a60353a202268e0d42cd7fb42c320 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 5 Dec 2025 06:54:12 +0000 Subject: [PATCH 130/133] chore(deps): update dependency @antfu/eslint-config to v6.4.2 (#1318) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 58a12fa7..8fa37439 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2)) + version: 6.4.2(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2)) '@graphql-codegen/cli': specifier: 6.1.0 version: 6.1.0(@types/node@24.10.1)(graphql@16.12.0)(typescript@5.9.3) @@ -85,8 +85,8 @@ packages: resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - '@antfu/eslint-config@6.4.1': - resolution: {integrity: sha512-9Fj5AK2VJcmfCGF5yJ3TWbygCM8TcnP/oYgC0hqM62j8BTEd7XCI0IxU+STl0duotI4EjXdcGhHdrOjFoB58qw==} + '@antfu/eslint-config@6.4.2': + resolution: {integrity: sha512-kj6tZEKXMu07pCBH9TjPyRsQf8oZCwd3I6RFycKz8gPP5/uALictvUJsEA9bXBqZvtqA8SUEwLPLhVRZTSUTWQ==} hasBin: true peerDependencies: '@eslint-react/eslint-plugin': ^2.0.1 @@ -1676,8 +1676,8 @@ packages: balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - baseline-browser-mapping@2.9.0: - resolution: {integrity: sha512-Mh++g+2LPfzZToywfE1BUzvZbfOY52Nil0rn9H1CPC5DJ7fX+Vir7nToBeoiSbB1zTNeGYbELEvJESujgGrzXw==} + baseline-browser-mapping@2.9.2: + resolution: {integrity: sha512-PxSsosKQjI38iXkmb3d0Y32efqyA0uW4s41u4IVBsLlWLhCiYNpH/AfNOVWRqCQBlD8TFJTz6OUWNd4DFJCnmw==} hasBin: true boolbase@1.0.0: @@ -1950,8 +1950,8 @@ packages: eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - electron-to-chromium@1.5.264: - resolution: {integrity: sha512-1tEf0nLgltC3iy9wtlYDlQDc5Rg9lEKVjEmIHJ21rI9OcqkvD45K1oyNIRA4rR1z3LgJ7KeGzEBojVcV6m4qjA==} + electron-to-chromium@1.5.265: + resolution: {integrity: sha512-B7IkLR1/AE+9jR2LtVF/1/6PFhY5TlnEHnlrKmGk7PvkJibg5jr+mLXLLzq3QYl6PA1T/vLDthQPqIPAlS/PPA==} emittery@0.13.1: resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} @@ -2107,8 +2107,8 @@ packages: peerDependencies: eslint: '>=8.45.0' - eslint-plugin-pnpm@1.4.0: - resolution: {integrity: sha512-kp2aO7wzncLPXdWYGv2VEVuEEiZWnVtdavVvO0whbLWHYe4NjKkcEiYBNLBq4/uTOSUFYCouzuhw5cMMAlWIkg==} + eslint-plugin-pnpm@1.4.1: + resolution: {integrity: sha512-BVb2/cDN8YmgW+lu0bDeCP7a8CzE8CiKfztd46Ide71qbqR5uKD9TaD1W9FSRf36Pa8noEVuH73CAQ6rdgSu0w==} peerDependencies: eslint: ^9.0.0 @@ -3314,8 +3314,8 @@ packages: resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} engines: {node: '>=4'} - pnpm-workspace-yaml@1.4.0: - resolution: {integrity: sha512-6e4NEk1s9GpuPXqWqbwL7vL2uAHAT06aPcYMk4wnCnD9VGNawPNYVy2Se678u4YpThwjKJjJE+00gsR6eHSpiA==} + pnpm-workspace-yaml@1.4.1: + resolution: {integrity: sha512-k3TFyIjKf4bJnZ/jnqTfdytcsZfoglnb26kTXP3E8pYYaPyvvqxTd7tL4aJ5Wotc8Oi/+YADYwdkOu3snFS+Hg==} postcss-selector-parser@7.1.1: resolution: {integrity: sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==} @@ -3763,8 +3763,8 @@ packages: unrs-resolver@1.7.13: resolution: {integrity: sha512-QUjCYKAgrdJpf3wA73zWjOrO7ra19lfnwQ8HRkNOLah5AVDqOS38UunnyhzsSL8AE+2/AGnAHxlr8cGshCP35A==} - update-browserslist-db@1.2.1: - resolution: {integrity: sha512-R9NcHbbZ45RoWfTdhn1J9SS7zxNvlddv4YRrHTUaFdtjbmfncfedB45EC9IaqJQ97iAR1GZgOfyRQO+ExIF6EQ==} + update-browserslist-db@1.2.2: + resolution: {integrity: sha512-E85pfNzMQ9jpKkA7+TJAi4TJN+tBCuWh5rUcS/sv6cFi+1q9LYDwDI5dpUL0u/73EElyQ8d3TEaeW4sPedBqYA==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' @@ -4011,7 +4011,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - '@antfu/eslint-config@6.4.1(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2))': + '@antfu/eslint-config@6.4.2(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -4035,7 +4035,7 @@ snapshots: eslint-plugin-n: 17.23.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) eslint-plugin-no-only-tests: 3.3.0 eslint-plugin-perfectionist: 4.15.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-pnpm: 1.4.0(eslint@9.39.1(jiti@2.4.0)) + eslint-plugin-pnpm: 1.4.1(eslint@9.39.1(jiti@2.4.0)) eslint-plugin-regexp: 2.10.0(eslint@9.39.1(jiti@2.4.0)) eslint-plugin-toml: 0.12.0(eslint@9.39.1(jiti@2.4.0)) eslint-plugin-unicorn: 62.0.0(eslint@9.39.1(jiti@2.4.0)) @@ -5929,7 +5929,7 @@ snapshots: balanced-match@1.0.2: {} - baseline-browser-mapping@2.9.0: {} + baseline-browser-mapping@2.9.2: {} boolbase@1.0.0: {} @@ -5948,11 +5948,11 @@ snapshots: browserslist@4.28.1: dependencies: - baseline-browser-mapping: 2.9.0 + baseline-browser-mapping: 2.9.2 caniuse-lite: 1.0.30001759 - electron-to-chromium: 1.5.264 + electron-to-chromium: 1.5.265 node-releases: 2.0.27 - update-browserslist-db: 1.2.1(browserslist@4.28.1) + update-browserslist-db: 1.2.2(browserslist@4.28.1) bs-logger@0.2.6: dependencies: @@ -6176,7 +6176,7 @@ snapshots: eastasianwidth@0.2.0: {} - electron-to-chromium@1.5.264: {} + electron-to-chromium@1.5.265: {} emittery@0.13.1: {} @@ -6359,13 +6359,13 @@ snapshots: - supports-color - typescript - eslint-plugin-pnpm@1.4.0(eslint@9.39.1(jiti@2.4.0)): + eslint-plugin-pnpm@1.4.1(eslint@9.39.1(jiti@2.4.0)): dependencies: empathic: 2.0.0 eslint: 9.39.1(jiti@2.4.0) jsonc-eslint-parser: 2.4.1 pathe: 2.0.3 - pnpm-workspace-yaml: 1.4.0 + pnpm-workspace-yaml: 1.4.1 tinyglobby: 0.2.15 yaml: 2.8.2 yaml-eslint-parser: 1.3.2 @@ -7927,7 +7927,7 @@ snapshots: pluralize@8.0.0: {} - pnpm-workspace-yaml@1.4.0: + pnpm-workspace-yaml@1.4.1: dependencies: yaml: 2.8.2 @@ -8362,7 +8362,7 @@ snapshots: '@unrs/resolver-binding-win32-ia32-msvc': 1.7.13 '@unrs/resolver-binding-win32-x64-msvc': 1.7.13 - update-browserslist-db@1.2.1(browserslist@4.28.1): + update-browserslist-db@1.2.2(browserslist@4.28.1): dependencies: browserslist: 4.28.1 escalade: 3.2.0 From 9ac9eb064fa8bc161136a14f2d4fe2da92a6d272 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 8 Dec 2025 10:14:19 +0000 Subject: [PATCH 131/133] chore(deps): update dependency @antfu/eslint-config to v6.5.1 (#1319) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 84 +++++++++++++++++++++++++------------------------- 1 file changed, 42 insertions(+), 42 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8fa37439..a94109b8 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,7 +29,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.4.2(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2)) + version: 6.5.1(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2)) '@graphql-codegen/cli': specifier: 6.1.0 version: 6.1.0(@types/node@24.10.1)(graphql@16.12.0)(typescript@5.9.3) @@ -85,8 +85,8 @@ packages: resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - '@antfu/eslint-config@6.4.2': - resolution: {integrity: sha512-kj6tZEKXMu07pCBH9TjPyRsQf8oZCwd3I6RFycKz8gPP5/uALictvUJsEA9bXBqZvtqA8SUEwLPLhVRZTSUTWQ==} + '@antfu/eslint-config@6.5.1': + resolution: {integrity: sha512-EZI2H7CWEYbNWe3DYtpwFnA3TDGPtxb3V4oVQXKwI4QXrqoZCU9iHImuyre1NmHjadlF8JYFGg0O5IOZ1jdZ+w==} hasBin: true peerDependencies: '@eslint-react/eslint-plugin': ^2.0.1 @@ -1497,8 +1497,8 @@ packages: cpu: [x64] os: [win32] - '@vitest/eslint-plugin@1.5.1': - resolution: {integrity: sha512-t49CNERe/YadnLn90NTTKJLKzs99xBkXElcoUTLodG6j1G0Q7jy3mXqqiHd3N5aryG2KkgOg4UAoGwgwSrZqKQ==} + '@vitest/eslint-plugin@1.5.2': + resolution: {integrity: sha512-2t1F2iecXB/b1Ox4U137lhD3chihEE3dRVtu3qMD35tc6UqUjg1VGRJoS1AkFKwpT8zv8OQInzPQO06hrRkeqw==} engines: {node: '>=18'} peerDependencies: eslint: '>=8.57.0' @@ -1676,8 +1676,8 @@ packages: balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - baseline-browser-mapping@2.9.2: - resolution: {integrity: sha512-PxSsosKQjI38iXkmb3d0Y32efqyA0uW4s41u4IVBsLlWLhCiYNpH/AfNOVWRqCQBlD8TFJTz6OUWNd4DFJCnmw==} + baseline-browser-mapping@2.9.4: + resolution: {integrity: sha512-ZCQ9GEWl73BVm8bu5Fts8nt7MHdbt5vY9bP6WGnUh+r3l8M7CgfyTlwsgCbMC66BNxPr6Xoce3j66Ms5YUQTNA==} hasBin: true boolbase@1.0.0: @@ -1950,8 +1950,8 @@ packages: eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - electron-to-chromium@1.5.265: - resolution: {integrity: sha512-B7IkLR1/AE+9jR2LtVF/1/6PFhY5TlnEHnlrKmGk7PvkJibg5jr+mLXLLzq3QYl6PA1T/vLDthQPqIPAlS/PPA==} + electron-to-chromium@1.5.266: + resolution: {integrity: sha512-kgWEglXvkEfMH7rxP5OSZZwnaDWT7J9EoZCujhnpLbfi0bbNtRkgdX2E3gt0Uer11c61qCYktB3hwkAS325sJg==} emittery@0.13.1: resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} @@ -2079,8 +2079,8 @@ packages: typescript: optional: true - eslint-plugin-jsdoc@61.4.1: - resolution: {integrity: sha512-3c1QW/bV25sJ1MsIvsvW+EtLtN6yZMduw7LVQNVt72y2/5BbV5Pg5b//TE5T48LRUxoEQGaZJejCmcj3wCxBzw==} + eslint-plugin-jsdoc@61.5.0: + resolution: {integrity: sha512-PR81eOGq4S7diVnV9xzFSBE4CDENRQGP0Lckkek8AdHtbj+6Bm0cItwlFnxsLFriJHspiE3mpu8U20eODyToIg==} engines: {node: '>=20.11.0'} peerDependencies: eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 @@ -2107,8 +2107,8 @@ packages: peerDependencies: eslint: '>=8.45.0' - eslint-plugin-pnpm@1.4.1: - resolution: {integrity: sha512-BVb2/cDN8YmgW+lu0bDeCP7a8CzE8CiKfztd46Ide71qbqR5uKD9TaD1W9FSRf36Pa8noEVuH73CAQ6rdgSu0w==} + eslint-plugin-pnpm@1.4.2: + resolution: {integrity: sha512-em/HEUlud5G3G4VZe2dhgsLm2ey6CG+Y+Lq3fS/RsbnmKhi+D+LcLz31GphTJhizCoKl2oAVndMltOHbuBYe+A==} peerDependencies: eslint: ^9.0.0 @@ -2814,8 +2814,8 @@ packages: engines: {node: '>=6'} hasBin: true - jsonc-eslint-parser@2.4.1: - resolution: {integrity: sha512-uuPNLJkKN8NXAlZlQ6kmUF9qO+T6Kyd7oV4+/7yy8Jz6+MZNyhPq8EdLpdfnPVzUC8qSf1b4j1azKaGnFsjmsw==} + jsonc-eslint-parser@2.4.2: + resolution: {integrity: sha512-1e4qoRgnn448pRuMvKGsFFymUCquZV0mpGgOyIKNgD3JVDTsVJyRBGH/Fm0tBb8WsWGgmB1mDe6/yJMQM37DUA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} keyv@4.5.4: @@ -3314,8 +3314,8 @@ packages: resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} engines: {node: '>=4'} - pnpm-workspace-yaml@1.4.1: - resolution: {integrity: sha512-k3TFyIjKf4bJnZ/jnqTfdytcsZfoglnb26kTXP3E8pYYaPyvvqxTd7tL4aJ5Wotc8Oi/+YADYwdkOu3snFS+Hg==} + pnpm-workspace-yaml@1.4.2: + resolution: {integrity: sha512-L2EKuOeV8aSt3z0RNtdwkg96BHV4WRN9pN2oTHKkMQQRxVEHFXPTbB+nly6ip1qV+JQM6qBebSiMgPRBx8S0Vw==} postcss-selector-parser@7.1.1: resolution: {integrity: sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==} @@ -3639,8 +3639,8 @@ packages: resolution: {integrity: sha512-41wJyvKep3yT2tyPqX/4blcfybknGB4D+oETKLs7Q76UiPqRpUJK3hr1nxelyYO0PHKVzJwlu0aCeEAsGI6rpw==} engines: {node: '>=20'} - toml-eslint-parser@0.10.0: - resolution: {integrity: sha512-khrZo4buq4qVmsGzS5yQjKe/WsFvV8fGfOjDQN0q4iy9FjRfPWRgTFrU8u1R2iu/SfWLhY9WnCi4Jhdrcbtg+g==} + toml-eslint-parser@0.10.1: + resolution: {integrity: sha512-9mjy3frhioGIVGcwamlVlUyJ9x+WHw/TXiz9R4YOlmsIuBN43r9Dp8HZ35SF9EKjHrn3BUZj04CF+YqZ2oJ+7w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} toposort@2.0.2: @@ -4011,7 +4011,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - '@antfu/eslint-config@6.4.2(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2))': + '@antfu/eslint-config@6.5.1(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -4020,7 +4020,7 @@ snapshots: '@stylistic/eslint-plugin': 5.6.1(eslint@9.39.1(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.48.1(@typescript-eslint/parser@8.48.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/parser': 8.48.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.5.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2)) + '@vitest/eslint-plugin': 1.5.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2)) ansis: 4.2.0 cac: 6.7.14 eslint: 9.39.1(jiti@2.4.0) @@ -4030,12 +4030,12 @@ snapshots: eslint-plugin-antfu: 3.1.1(eslint@9.39.1(jiti@2.4.0)) eslint-plugin-command: 3.3.1(eslint@9.39.1(jiti@2.4.0)) eslint-plugin-import-lite: 0.3.0(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-jsdoc: 61.4.1(eslint@9.39.1(jiti@2.4.0)) + eslint-plugin-jsdoc: 61.5.0(eslint@9.39.1(jiti@2.4.0)) eslint-plugin-jsonc: 2.21.0(eslint@9.39.1(jiti@2.4.0)) eslint-plugin-n: 17.23.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) eslint-plugin-no-only-tests: 3.3.0 eslint-plugin-perfectionist: 4.15.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) - eslint-plugin-pnpm: 1.4.1(eslint@9.39.1(jiti@2.4.0)) + eslint-plugin-pnpm: 1.4.2(eslint@9.39.1(jiti@2.4.0)) eslint-plugin-regexp: 2.10.0(eslint@9.39.1(jiti@2.4.0)) eslint-plugin-toml: 0.12.0(eslint@9.39.1(jiti@2.4.0)) eslint-plugin-unicorn: 62.0.0(eslint@9.39.1(jiti@2.4.0)) @@ -4044,10 +4044,10 @@ snapshots: eslint-plugin-yml: 1.19.0(eslint@9.39.1(jiti@2.4.0)) eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0)) globals: 16.5.0 - jsonc-eslint-parser: 2.4.1 + jsonc-eslint-parser: 2.4.2 local-pkg: 1.1.2 parse-gitignore: 2.0.0 - toml-eslint-parser: 0.10.0 + toml-eslint-parser: 0.10.1 vue-eslint-parser: 10.2.0(eslint@9.39.1(jiti@2.4.0)) yaml-eslint-parser: 1.3.2 transitivePeerDependencies: @@ -5714,7 +5714,7 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.5.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2))': + '@vitest/eslint-plugin@1.5.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2))': dependencies: '@typescript-eslint/scope-manager': 8.48.1 '@typescript-eslint/utils': 8.48.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) @@ -5929,7 +5929,7 @@ snapshots: balanced-match@1.0.2: {} - baseline-browser-mapping@2.9.2: {} + baseline-browser-mapping@2.9.4: {} boolbase@1.0.0: {} @@ -5948,9 +5948,9 @@ snapshots: browserslist@4.28.1: dependencies: - baseline-browser-mapping: 2.9.2 + baseline-browser-mapping: 2.9.4 caniuse-lite: 1.0.30001759 - electron-to-chromium: 1.5.265 + electron-to-chromium: 1.5.266 node-releases: 2.0.27 update-browserslist-db: 1.2.2(browserslist@4.28.1) @@ -6176,7 +6176,7 @@ snapshots: eastasianwidth@0.2.0: {} - electron-to-chromium@1.5.265: {} + electron-to-chromium@1.5.266: {} emittery@0.13.1: {} @@ -6263,11 +6263,11 @@ snapshots: dependencies: pathe: 2.0.3 - eslint-json-compat-utils@0.2.1(eslint@9.39.1(jiti@2.4.0))(jsonc-eslint-parser@2.4.1): + eslint-json-compat-utils@0.2.1(eslint@9.39.1(jiti@2.4.0))(jsonc-eslint-parser@2.4.2): dependencies: eslint: 9.39.1(jiti@2.4.0) esquery: 1.6.0 - jsonc-eslint-parser: 2.4.1 + jsonc-eslint-parser: 2.4.2 eslint-merge-processors@2.0.0(eslint@9.39.1(jiti@2.4.0)): dependencies: @@ -6297,7 +6297,7 @@ snapshots: optionalDependencies: typescript: 5.9.3 - eslint-plugin-jsdoc@61.4.1(eslint@9.39.1(jiti@2.4.0)): + eslint-plugin-jsdoc@61.5.0(eslint@9.39.1(jiti@2.4.0)): dependencies: '@es-joy/jsdoccomment': 0.76.0 '@es-joy/resolve.exports': 1.2.0 @@ -6323,10 +6323,10 @@ snapshots: diff-sequences: 27.5.1 eslint: 9.39.1(jiti@2.4.0) eslint-compat-utils: 0.6.5(eslint@9.39.1(jiti@2.4.0)) - eslint-json-compat-utils: 0.2.1(eslint@9.39.1(jiti@2.4.0))(jsonc-eslint-parser@2.4.1) + eslint-json-compat-utils: 0.2.1(eslint@9.39.1(jiti@2.4.0))(jsonc-eslint-parser@2.4.2) espree: 10.4.0 graphemer: 1.4.0 - jsonc-eslint-parser: 2.4.1 + jsonc-eslint-parser: 2.4.2 natural-compare: 1.4.0 synckit: 0.11.11 transitivePeerDependencies: @@ -6359,13 +6359,13 @@ snapshots: - supports-color - typescript - eslint-plugin-pnpm@1.4.1(eslint@9.39.1(jiti@2.4.0)): + eslint-plugin-pnpm@1.4.2(eslint@9.39.1(jiti@2.4.0)): dependencies: empathic: 2.0.0 eslint: 9.39.1(jiti@2.4.0) - jsonc-eslint-parser: 2.4.1 + jsonc-eslint-parser: 2.4.2 pathe: 2.0.3 - pnpm-workspace-yaml: 1.4.1 + pnpm-workspace-yaml: 1.4.2 tinyglobby: 0.2.15 yaml: 2.8.2 yaml-eslint-parser: 1.3.2 @@ -6387,7 +6387,7 @@ snapshots: eslint: 9.39.1(jiti@2.4.0) eslint-compat-utils: 0.6.5(eslint@9.39.1(jiti@2.4.0)) lodash: 4.17.21 - toml-eslint-parser: 0.10.0 + toml-eslint-parser: 0.10.1 transitivePeerDependencies: - supports-color @@ -7270,7 +7270,7 @@ snapshots: json5@2.2.3: {} - jsonc-eslint-parser@2.4.1: + jsonc-eslint-parser@2.4.2: dependencies: acorn: 8.15.0 eslint-visitor-keys: 3.4.3 @@ -7927,7 +7927,7 @@ snapshots: pluralize@8.0.0: {} - pnpm-workspace-yaml@1.4.1: + pnpm-workspace-yaml@1.4.2: dependencies: yaml: 2.8.2 @@ -8247,7 +8247,7 @@ snapshots: '@sindresorhus/base62': 1.0.0 reserved-identifiers: 1.2.0 - toml-eslint-parser@0.10.0: + toml-eslint-parser@0.10.1: dependencies: eslint-visitor-keys: 3.4.3 From 46958edb65649392e92cc6b0d226e2f0f44cdeec Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 8 Dec 2025 20:14:43 +0000 Subject: [PATCH 132/133] chore(deps): update pnpm to v10.25.0 (#1320) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index aec32301..cd3999bf 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "graphql-codegen-typescript-validation-schema", "type": "module", "version": "0.18.1", - "packageManager": "pnpm@10.24.0", + "packageManager": "pnpm@10.25.0", "description": "GraphQL Code Generator plugin to generate form validation schema from your GraphQL schema", "respository": { "type": "git", From 0f8482e4d6fc4d8d4c174e437181bc3b11f5da3b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 8 Dec 2025 23:35:38 +0000 Subject: [PATCH 133/133] chore(deps): update dependency @types/node to v24.10.2 (#1321) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- pnpm-lock.yaml | 256 ++++++++++++++++++++++++------------------------- 1 file changed, 128 insertions(+), 128 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a94109b8..db716c19 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,10 +29,10 @@ importers: devDependencies: '@antfu/eslint-config': specifier: ^6.0.0 - version: 6.5.1(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2)) + version: 6.5.1(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.2)(jiti@2.4.0)(yaml@2.8.2)) '@graphql-codegen/cli': specifier: 6.1.0 - version: 6.1.0(@types/node@24.10.1)(graphql@16.12.0)(typescript@5.9.3) + version: 6.1.0(@types/node@24.10.2)(graphql@16.12.0)(typescript@5.9.3) '@graphql-codegen/typescript': specifier: ^5.0.0 version: 5.0.6(graphql@16.12.0) @@ -44,13 +44,13 @@ importers: version: 2.1.12 '@types/node': specifier: ^24.0.0 - version: 24.10.1 + version: 24.10.2 eslint: specifier: 9.39.1 version: 9.39.1(jiti@2.4.0) jest: specifier: 30.2.0 - version: 30.2.0(@types/node@24.10.1) + version: 30.2.0(@types/node@24.10.2) myzod: specifier: 1.12.1 version: 1.12.1 @@ -62,7 +62,7 @@ importers: version: 2.2.0 ts-jest: specifier: 29.4.6 - version: 29.4.6(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@24.10.1))(typescript@5.9.3) + version: 29.4.6(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@24.10.2))(typescript@5.9.3) typescript: specifier: 5.9.3 version: 5.9.3 @@ -71,7 +71,7 @@ importers: version: 1.2.0(typescript@5.9.3) vitest: specifier: ^4.0.0 - version: 4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2) + version: 4.0.15(@types/node@24.10.2)(jiti@2.4.0)(yaml@2.8.2) yup: specifier: 1.7.1 version: 1.7.1 @@ -1332,8 +1332,8 @@ packages: '@types/ms@2.1.0': resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} - '@types/node@24.10.1': - resolution: {integrity: sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ==} + '@types/node@24.10.2': + resolution: {integrity: sha512-WOhQTZ4G8xZ1tjJTvKOpyEVSGgOTvJAfDK3FNFgELyaTpzhdgHVHeqW8V+UJvzF5BT+/B54T/1S2K6gd9c7bbA==} '@types/stack-utils@2.0.3': resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} @@ -4011,7 +4011,7 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - '@antfu/eslint-config@6.5.1(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2))': + '@antfu/eslint-config@6.5.1(@vue/compiler-sfc@3.5.12)(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.2)(jiti@2.4.0)(yaml@2.8.2))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 @@ -4020,7 +4020,7 @@ snapshots: '@stylistic/eslint-plugin': 5.6.1(eslint@9.39.1(jiti@2.4.0)) '@typescript-eslint/eslint-plugin': 8.48.1(@typescript-eslint/parser@8.48.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3))(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) '@typescript-eslint/parser': 8.48.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) - '@vitest/eslint-plugin': 1.5.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2)) + '@vitest/eslint-plugin': 1.5.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.2)(jiti@2.4.0)(yaml@2.8.2)) ansis: 4.2.0 cac: 6.7.14 eslint: 9.39.1(jiti@2.4.0) @@ -4511,7 +4511,7 @@ snapshots: graphql: 16.12.0 tslib: 2.6.3 - '@graphql-codegen/cli@6.1.0(@types/node@24.10.1)(graphql@16.12.0)(typescript@5.9.3)': + '@graphql-codegen/cli@6.1.0(@types/node@24.10.2)(graphql@16.12.0)(typescript@5.9.3)': dependencies: '@babel/generator': 7.28.5 '@babel/template': 7.27.2 @@ -4522,20 +4522,20 @@ snapshots: '@graphql-tools/apollo-engine-loader': 8.0.4(graphql@16.12.0) '@graphql-tools/code-file-loader': 8.1.5(graphql@16.12.0) '@graphql-tools/git-loader': 8.0.9(graphql@16.12.0) - '@graphql-tools/github-loader': 9.0.4(@types/node@24.10.1)(graphql@16.12.0) + '@graphql-tools/github-loader': 9.0.4(@types/node@24.10.2)(graphql@16.12.0) '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.12.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.12.0) '@graphql-tools/load': 8.1.0(graphql@16.12.0) - '@graphql-tools/url-loader': 9.0.4(@types/node@24.10.1)(graphql@16.12.0) + '@graphql-tools/url-loader': 9.0.4(@types/node@24.10.2)(graphql@16.12.0) '@graphql-tools/utils': 10.11.0(graphql@16.12.0) - '@inquirer/prompts': 7.8.4(@types/node@24.10.1) + '@inquirer/prompts': 7.8.4(@types/node@24.10.2) '@whatwg-node/fetch': 0.10.13 chalk: 4.1.2 cosmiconfig: 9.0.0(typescript@5.9.3) debounce: 2.2.0 detect-indent: 6.1.0 graphql: 16.12.0 - graphql-config: 5.1.3(@types/node@24.10.1)(graphql@16.12.0)(typescript@5.9.3) + graphql-config: 5.1.3(@types/node@24.10.2)(graphql@16.12.0)(typescript@5.9.3) is-glob: 4.0.3 jiti: 2.4.0 json-to-pretty-yaml: 1.2.2 @@ -4786,20 +4786,20 @@ snapshots: - uWebSockets.js - utf-8-validate - '@graphql-tools/executor-http@1.1.9(@types/node@24.10.1)(graphql@16.12.0)': + '@graphql-tools/executor-http@1.1.9(@types/node@24.10.2)(graphql@16.12.0)': dependencies: '@graphql-tools/utils': 10.11.0(graphql@16.12.0) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/fetch': 0.10.13 extract-files: 11.0.0 graphql: 16.12.0 - meros: 1.3.2(@types/node@24.10.1) + meros: 1.3.2(@types/node@24.10.2) tslib: 2.8.1 value-or-promise: 1.0.12 transitivePeerDependencies: - '@types/node' - '@graphql-tools/executor-http@3.0.6(@types/node@24.10.1)(graphql@16.12.0)': + '@graphql-tools/executor-http@3.0.6(@types/node@24.10.2)(graphql@16.12.0)': dependencies: '@graphql-hive/signal': 2.0.0 '@graphql-tools/executor-common': 1.0.4(graphql@16.12.0) @@ -4809,7 +4809,7 @@ snapshots: '@whatwg-node/fetch': 0.10.13 '@whatwg-node/promise-helpers': 1.3.2 graphql: 16.12.0 - meros: 1.3.2(@types/node@24.10.1) + meros: 1.3.2(@types/node@24.10.2) tslib: 2.8.1 transitivePeerDependencies: - '@types/node' @@ -4848,9 +4848,9 @@ snapshots: transitivePeerDependencies: - supports-color - '@graphql-tools/github-loader@9.0.4(@types/node@24.10.1)(graphql@16.12.0)': + '@graphql-tools/github-loader@9.0.4(@types/node@24.10.2)(graphql@16.12.0)': dependencies: - '@graphql-tools/executor-http': 3.0.6(@types/node@24.10.1)(graphql@16.12.0) + '@graphql-tools/executor-http': 3.0.6(@types/node@24.10.2)(graphql@16.12.0) '@graphql-tools/graphql-tag-pluck': 8.3.25(graphql@16.12.0) '@graphql-tools/utils': 10.11.0(graphql@16.12.0) '@whatwg-node/fetch': 0.10.13 @@ -4947,11 +4947,11 @@ snapshots: graphql: 16.12.0 tslib: 2.8.1 - '@graphql-tools/url-loader@8.0.15(@types/node@24.10.1)(graphql@16.12.0)': + '@graphql-tools/url-loader@8.0.15(@types/node@24.10.2)(graphql@16.12.0)': dependencies: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/executor-graphql-ws': 1.3.2(graphql@16.12.0) - '@graphql-tools/executor-http': 1.1.9(@types/node@24.10.1)(graphql@16.12.0) + '@graphql-tools/executor-http': 1.1.9(@types/node@24.10.2)(graphql@16.12.0) '@graphql-tools/executor-legacy-ws': 1.1.23(graphql@16.12.0) '@graphql-tools/utils': 10.11.0(graphql@16.12.0) '@graphql-tools/wrap': 10.0.16(graphql@16.12.0) @@ -4968,10 +4968,10 @@ snapshots: - encoding - utf-8-validate - '@graphql-tools/url-loader@9.0.4(@types/node@24.10.1)(graphql@16.12.0)': + '@graphql-tools/url-loader@9.0.4(@types/node@24.10.2)(graphql@16.12.0)': dependencies: '@graphql-tools/executor-graphql-ws': 3.1.2(graphql@16.12.0) - '@graphql-tools/executor-http': 3.0.6(@types/node@24.10.1)(graphql@16.12.0) + '@graphql-tools/executor-http': 3.0.6(@types/node@24.10.2)(graphql@16.12.0) '@graphql-tools/executor-legacy-ws': 1.1.23(graphql@16.12.0) '@graphql-tools/utils': 10.11.0(graphql@16.12.0) '@graphql-tools/wrap': 11.0.4(graphql@16.12.0) @@ -5032,27 +5032,27 @@ snapshots: '@humanwhocodes/retry@0.4.3': {} - '@inquirer/checkbox@4.2.2(@types/node@24.10.1)': + '@inquirer/checkbox@4.2.2(@types/node@24.10.2)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.10.1) + '@inquirer/core': 10.2.0(@types/node@24.10.2) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.10.1) + '@inquirer/type': 3.0.8(@types/node@24.10.2) ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.10.1 + '@types/node': 24.10.2 - '@inquirer/confirm@5.1.16(@types/node@24.10.1)': + '@inquirer/confirm@5.1.16(@types/node@24.10.2)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.10.1) - '@inquirer/type': 3.0.8(@types/node@24.10.1) + '@inquirer/core': 10.2.0(@types/node@24.10.2) + '@inquirer/type': 3.0.8(@types/node@24.10.2) optionalDependencies: - '@types/node': 24.10.1 + '@types/node': 24.10.2 - '@inquirer/core@10.2.0(@types/node@24.10.1)': + '@inquirer/core@10.2.0(@types/node@24.10.2)': dependencies: '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.10.1) + '@inquirer/type': 3.0.8(@types/node@24.10.2) ansi-escapes: 4.3.2 cli-width: 4.1.0 mute-stream: 2.0.0 @@ -5060,100 +5060,100 @@ snapshots: wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.10.1 + '@types/node': 24.10.2 - '@inquirer/editor@4.2.18(@types/node@24.10.1)': + '@inquirer/editor@4.2.18(@types/node@24.10.2)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.10.1) - '@inquirer/external-editor': 1.0.1(@types/node@24.10.1) - '@inquirer/type': 3.0.8(@types/node@24.10.1) + '@inquirer/core': 10.2.0(@types/node@24.10.2) + '@inquirer/external-editor': 1.0.1(@types/node@24.10.2) + '@inquirer/type': 3.0.8(@types/node@24.10.2) optionalDependencies: - '@types/node': 24.10.1 + '@types/node': 24.10.2 - '@inquirer/expand@4.0.18(@types/node@24.10.1)': + '@inquirer/expand@4.0.18(@types/node@24.10.2)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.10.1) - '@inquirer/type': 3.0.8(@types/node@24.10.1) + '@inquirer/core': 10.2.0(@types/node@24.10.2) + '@inquirer/type': 3.0.8(@types/node@24.10.2) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.10.1 + '@types/node': 24.10.2 - '@inquirer/external-editor@1.0.1(@types/node@24.10.1)': + '@inquirer/external-editor@1.0.1(@types/node@24.10.2)': dependencies: chardet: 2.1.0 iconv-lite: 0.6.3 optionalDependencies: - '@types/node': 24.10.1 + '@types/node': 24.10.2 '@inquirer/figures@1.0.13': {} - '@inquirer/input@4.2.2(@types/node@24.10.1)': + '@inquirer/input@4.2.2(@types/node@24.10.2)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.10.1) - '@inquirer/type': 3.0.8(@types/node@24.10.1) + '@inquirer/core': 10.2.0(@types/node@24.10.2) + '@inquirer/type': 3.0.8(@types/node@24.10.2) optionalDependencies: - '@types/node': 24.10.1 + '@types/node': 24.10.2 - '@inquirer/number@3.0.18(@types/node@24.10.1)': + '@inquirer/number@3.0.18(@types/node@24.10.2)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.10.1) - '@inquirer/type': 3.0.8(@types/node@24.10.1) + '@inquirer/core': 10.2.0(@types/node@24.10.2) + '@inquirer/type': 3.0.8(@types/node@24.10.2) optionalDependencies: - '@types/node': 24.10.1 + '@types/node': 24.10.2 - '@inquirer/password@4.0.18(@types/node@24.10.1)': + '@inquirer/password@4.0.18(@types/node@24.10.2)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.10.1) - '@inquirer/type': 3.0.8(@types/node@24.10.1) + '@inquirer/core': 10.2.0(@types/node@24.10.2) + '@inquirer/type': 3.0.8(@types/node@24.10.2) ansi-escapes: 4.3.2 optionalDependencies: - '@types/node': 24.10.1 - - '@inquirer/prompts@7.8.4(@types/node@24.10.1)': - dependencies: - '@inquirer/checkbox': 4.2.2(@types/node@24.10.1) - '@inquirer/confirm': 5.1.16(@types/node@24.10.1) - '@inquirer/editor': 4.2.18(@types/node@24.10.1) - '@inquirer/expand': 4.0.18(@types/node@24.10.1) - '@inquirer/input': 4.2.2(@types/node@24.10.1) - '@inquirer/number': 3.0.18(@types/node@24.10.1) - '@inquirer/password': 4.0.18(@types/node@24.10.1) - '@inquirer/rawlist': 4.1.6(@types/node@24.10.1) - '@inquirer/search': 3.1.1(@types/node@24.10.1) - '@inquirer/select': 4.3.2(@types/node@24.10.1) + '@types/node': 24.10.2 + + '@inquirer/prompts@7.8.4(@types/node@24.10.2)': + dependencies: + '@inquirer/checkbox': 4.2.2(@types/node@24.10.2) + '@inquirer/confirm': 5.1.16(@types/node@24.10.2) + '@inquirer/editor': 4.2.18(@types/node@24.10.2) + '@inquirer/expand': 4.0.18(@types/node@24.10.2) + '@inquirer/input': 4.2.2(@types/node@24.10.2) + '@inquirer/number': 3.0.18(@types/node@24.10.2) + '@inquirer/password': 4.0.18(@types/node@24.10.2) + '@inquirer/rawlist': 4.1.6(@types/node@24.10.2) + '@inquirer/search': 3.1.1(@types/node@24.10.2) + '@inquirer/select': 4.3.2(@types/node@24.10.2) optionalDependencies: - '@types/node': 24.10.1 + '@types/node': 24.10.2 - '@inquirer/rawlist@4.1.6(@types/node@24.10.1)': + '@inquirer/rawlist@4.1.6(@types/node@24.10.2)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.10.1) - '@inquirer/type': 3.0.8(@types/node@24.10.1) + '@inquirer/core': 10.2.0(@types/node@24.10.2) + '@inquirer/type': 3.0.8(@types/node@24.10.2) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.10.1 + '@types/node': 24.10.2 - '@inquirer/search@3.1.1(@types/node@24.10.1)': + '@inquirer/search@3.1.1(@types/node@24.10.2)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.10.1) + '@inquirer/core': 10.2.0(@types/node@24.10.2) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.10.1) + '@inquirer/type': 3.0.8(@types/node@24.10.2) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.10.1 + '@types/node': 24.10.2 - '@inquirer/select@4.3.2(@types/node@24.10.1)': + '@inquirer/select@4.3.2(@types/node@24.10.2)': dependencies: - '@inquirer/core': 10.2.0(@types/node@24.10.1) + '@inquirer/core': 10.2.0(@types/node@24.10.2) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.10.1) + '@inquirer/type': 3.0.8(@types/node@24.10.2) ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.10.1 + '@types/node': 24.10.2 - '@inquirer/type@3.0.8(@types/node@24.10.1)': + '@inquirer/type@3.0.8(@types/node@24.10.2)': optionalDependencies: - '@types/node': 24.10.1 + '@types/node': 24.10.2 '@isaacs/cliui@8.0.2': dependencies: @@ -5177,7 +5177,7 @@ snapshots: '@jest/console@30.2.0': dependencies: '@jest/types': 30.2.0 - '@types/node': 24.10.1 + '@types/node': 24.10.2 chalk: 4.1.2 jest-message-util: 30.2.0 jest-util: 30.2.0 @@ -5191,14 +5191,14 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.10.1 + '@types/node': 24.10.2 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 4.3.0 exit-x: 0.2.2 graceful-fs: 4.2.11 jest-changed-files: 30.2.0 - jest-config: 30.2.0(@types/node@24.10.1) + jest-config: 30.2.0(@types/node@24.10.2) jest-haste-map: 30.2.0 jest-message-util: 30.2.0 jest-regex-util: 30.0.1 @@ -5225,7 +5225,7 @@ snapshots: dependencies: '@jest/fake-timers': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.10.1 + '@types/node': 24.10.2 jest-mock: 30.2.0 '@jest/expect-utils@30.2.0': @@ -5243,7 +5243,7 @@ snapshots: dependencies: '@jest/types': 30.2.0 '@sinonjs/fake-timers': 13.0.5 - '@types/node': 24.10.1 + '@types/node': 24.10.2 jest-message-util: 30.2.0 jest-mock: 30.2.0 jest-util: 30.2.0 @@ -5261,7 +5261,7 @@ snapshots: '@jest/pattern@30.0.1': dependencies: - '@types/node': 24.10.1 + '@types/node': 24.10.2 jest-regex-util: 30.0.1 '@jest/reporters@30.2.0': @@ -5272,7 +5272,7 @@ snapshots: '@jest/transform': 30.2.0 '@jest/types': 30.2.0 '@jridgewell/trace-mapping': 0.3.25 - '@types/node': 24.10.1 + '@types/node': 24.10.2 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit-x: 0.2.2 @@ -5349,7 +5349,7 @@ snapshots: '@jest/schemas': 30.0.5 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 24.10.1 + '@types/node': 24.10.2 '@types/yargs': 17.0.33 chalk: 4.1.2 @@ -5549,7 +5549,7 @@ snapshots: '@types/ms@2.1.0': {} - '@types/node@24.10.1': + '@types/node@24.10.2': dependencies: undici-types: 7.16.0 @@ -5559,7 +5559,7 @@ snapshots: '@types/ws@8.5.13': dependencies: - '@types/node': 24.10.1 + '@types/node': 24.10.2 '@types/yargs-parser@21.0.3': {} @@ -5714,14 +5714,14 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.7.13': optional: true - '@vitest/eslint-plugin@1.5.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2))': + '@vitest/eslint-plugin@1.5.2(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3)(vitest@4.0.15(@types/node@24.10.2)(jiti@2.4.0)(yaml@2.8.2))': dependencies: '@typescript-eslint/scope-manager': 8.48.1 '@typescript-eslint/utils': 8.48.1(eslint@9.39.1(jiti@2.4.0))(typescript@5.9.3) eslint: 9.39.1(jiti@2.4.0) optionalDependencies: typescript: 5.9.3 - vitest: 4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2) + vitest: 4.0.15(@types/node@24.10.2)(jiti@2.4.0)(yaml@2.8.2) transitivePeerDependencies: - supports-color @@ -5734,13 +5734,13 @@ snapshots: chai: 6.2.1 tinyrainbow: 3.0.3 - '@vitest/mocker@4.0.15(vite@7.2.6(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2))': + '@vitest/mocker@4.0.15(vite@7.2.6(@types/node@24.10.2)(jiti@2.4.0)(yaml@2.8.2))': dependencies: '@vitest/spy': 4.0.15 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: - vite: 7.2.6(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2) + vite: 7.2.6(@types/node@24.10.2)(jiti@2.4.0)(yaml@2.8.2) '@vitest/pretty-format@4.0.15': dependencies: @@ -6724,13 +6724,13 @@ snapshots: dependencies: lodash: 4.17.21 - graphql-config@5.1.3(@types/node@24.10.1)(graphql@16.12.0)(typescript@5.9.3): + graphql-config@5.1.3(@types/node@24.10.2)(graphql@16.12.0)(typescript@5.9.3): dependencies: '@graphql-tools/graphql-file-loader': 8.0.3(graphql@16.12.0) '@graphql-tools/json-file-loader': 8.0.3(graphql@16.12.0) '@graphql-tools/load': 8.1.0(graphql@16.12.0) '@graphql-tools/merge': 9.1.5(graphql@16.12.0) - '@graphql-tools/url-loader': 8.0.15(@types/node@24.10.1)(graphql@16.12.0) + '@graphql-tools/url-loader': 8.0.15(@types/node@24.10.2)(graphql@16.12.0) '@graphql-tools/utils': 10.11.0(graphql@16.12.0) cosmiconfig: 8.3.6(typescript@5.9.3) graphql: 16.12.0 @@ -6933,7 +6933,7 @@ snapshots: '@jest/expect': 30.2.0 '@jest/test-result': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.10.1 + '@types/node': 24.10.2 chalk: 4.1.2 co: 4.6.0 dedent: 1.6.0 @@ -6953,7 +6953,7 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@30.2.0(@types/node@24.10.1): + jest-cli@30.2.0(@types/node@24.10.2): dependencies: '@jest/core': 30.2.0 '@jest/test-result': 30.2.0 @@ -6961,7 +6961,7 @@ snapshots: chalk: 4.1.2 exit-x: 0.2.2 import-local: 3.2.0 - jest-config: 30.2.0(@types/node@24.10.1) + jest-config: 30.2.0(@types/node@24.10.2) jest-util: 30.2.0 jest-validate: 30.2.0 yargs: 17.7.2 @@ -6972,7 +6972,7 @@ snapshots: - supports-color - ts-node - jest-config@30.2.0(@types/node@24.10.1): + jest-config@30.2.0(@types/node@24.10.2): dependencies: '@babel/core': 7.27.4 '@jest/get-type': 30.1.0 @@ -6999,7 +6999,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 24.10.1 + '@types/node': 24.10.2 transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -7028,7 +7028,7 @@ snapshots: '@jest/environment': 30.2.0 '@jest/fake-timers': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.10.1 + '@types/node': 24.10.2 jest-mock: 30.2.0 jest-util: 30.2.0 jest-validate: 30.2.0 @@ -7036,7 +7036,7 @@ snapshots: jest-haste-map@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 24.10.1 + '@types/node': 24.10.2 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -7075,7 +7075,7 @@ snapshots: jest-mock@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 24.10.1 + '@types/node': 24.10.2 jest-util: 30.2.0 jest-pnp-resolver@1.2.3(jest-resolve@30.2.0): @@ -7109,7 +7109,7 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.10.1 + '@types/node': 24.10.2 chalk: 4.1.2 emittery: 0.13.1 exit-x: 0.2.2 @@ -7138,7 +7138,7 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.10.1 + '@types/node': 24.10.2 chalk: 4.1.2 cjs-module-lexer: 2.1.0 collect-v8-coverage: 1.0.2 @@ -7185,7 +7185,7 @@ snapshots: jest-util@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 24.10.1 + '@types/node': 24.10.2 chalk: 4.1.2 ci-info: 4.3.0 graceful-fs: 4.2.11 @@ -7204,7 +7204,7 @@ snapshots: dependencies: '@jest/test-result': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.10.1 + '@types/node': 24.10.2 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -7213,18 +7213,18 @@ snapshots: jest-worker@30.2.0: dependencies: - '@types/node': 24.10.1 + '@types/node': 24.10.2 '@ungap/structured-clone': 1.3.0 jest-util: 30.2.0 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@30.2.0(@types/node@24.10.1): + jest@30.2.0(@types/node@24.10.2): dependencies: '@jest/core': 30.2.0 '@jest/types': 30.2.0 import-local: 3.2.0 - jest-cli: 30.2.0(@types/node@24.10.1) + jest-cli: 30.2.0(@types/node@24.10.2) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -7491,9 +7491,9 @@ snapshots: merge2@1.4.1: {} - meros@1.3.2(@types/node@24.10.1): + meros@1.3.2(@types/node@24.10.2): optionalDependencies: - '@types/node': 24.10.1 + '@types/node': 24.10.2 micromark-core-commonmark@2.0.3: dependencies: @@ -8266,12 +8266,12 @@ snapshots: ts-dedent@2.2.0: {} - ts-jest@29.4.6(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@24.10.1))(typescript@5.9.3): + ts-jest@29.4.6(@babel/core@7.27.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.27.4))(jest-util@30.2.0)(jest@30.2.0(@types/node@24.10.2))(typescript@5.9.3): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 handlebars: 4.7.8 - jest: 30.2.0(@types/node@24.10.1) + jest: 30.2.0(@types/node@24.10.2) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -8396,7 +8396,7 @@ snapshots: value-or-promise@1.0.12: {} - vite@7.2.6(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2): + vite@7.2.6(@types/node@24.10.2)(jiti@2.4.0)(yaml@2.8.2): dependencies: esbuild: 0.25.12 fdir: 6.5.0(picomatch@4.0.3) @@ -8405,15 +8405,15 @@ snapshots: rollup: 4.53.3 tinyglobby: 0.2.15 optionalDependencies: - '@types/node': 24.10.1 + '@types/node': 24.10.2 fsevents: 2.3.3 jiti: 2.4.0 yaml: 2.8.2 - vitest@4.0.15(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2): + vitest@4.0.15(@types/node@24.10.2)(jiti@2.4.0)(yaml@2.8.2): dependencies: '@vitest/expect': 4.0.15 - '@vitest/mocker': 4.0.15(vite@7.2.6(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2)) + '@vitest/mocker': 4.0.15(vite@7.2.6(@types/node@24.10.2)(jiti@2.4.0)(yaml@2.8.2)) '@vitest/pretty-format': 4.0.15 '@vitest/runner': 4.0.15 '@vitest/snapshot': 4.0.15 @@ -8430,10 +8430,10 @@ snapshots: tinyexec: 1.0.2 tinyglobby: 0.2.15 tinyrainbow: 3.0.3 - vite: 7.2.6(@types/node@24.10.1)(jiti@2.4.0)(yaml@2.8.2) + vite: 7.2.6(@types/node@24.10.2)(jiti@2.4.0)(yaml@2.8.2) why-is-node-running: 2.3.0 optionalDependencies: - '@types/node': 24.10.1 + '@types/node': 24.10.2 transitivePeerDependencies: - jiti - less